Codeforces Round #723 (Rated for Div 2)

Posted quinn18

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces Round #723 (Rated for Div 2)相关的知识,希望对你有一定的参考价值。

题解

A - Mean Inequality

题意:
想也不想直接暴力
数组开小了也没有报re然后。。就挺sb的。。。

#include<bits/stdc++.h>
using namespace std;
typedef unsigned long long ll;
int t, n, m, q;
ll a[100], ans[100];//n*2了就不是25了。。
int main() {
    ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
    cin>>t;
    while(t--) {
        cin>>n;
        n*=2;
        int k=0;
        int q=n;
        for(int i=1; i<=n; i++) cin>>a[i];
        sort(a+1, a+1+n);
        for(int i=1; i<=n; i++) {
            if(i%2) ans[i]=a[++k];
            else ans[i]=a[q--];
        }
        for(int i=1; i<=n; i++) {
            cout<<ans[i]<<" \\n"[i==n];
        }
    }
	return 0;
}

B - I Hate 1111

打表 说是个定理

#include<bits/stdc++.h>
using namespace std;
long long n, t, a[2005];
int flag;
bool dfs(int x, int i) {
    if (x==0) {
        flag=1;return 1;
    }
    if (i==1)return 0;
    if (x-a[i]>=0) dfs(x-a[i], i);
    if (flag)return 1;
    return dfs(x, i-1);
}
int main() {
    a[1]=1;
    for (int i=2; i<=10; i++) {
        a[i]=a[i-1]*10+1;
    }
    cin>>t;
    while(t--) {
        cin>>n;
        flag=0;
        if(dfs(n,10)) cout<<"YES"<<endl;
        else cout<<"NO"<<endl;
    }
 return 0;
}

C1 - Potions (Easy Version)

C2 - Potions (Hard Version)

就没什么好说的。。。。使劲贪。。。。写的时候太在乎位置了把所有负数都push了。。。

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N = 200005;
string s;
int t, n, ans;
ll a[N], sum;
int main() {
    ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
    cin>>n;
    priority_queue<ll, vector<ll >, greater<ll>> q;
    for(int i=1; i<=n; i++) {
        cin>>a[i];
        sum+=a[i];
        q.push(a[i]);
        ans++;
        while(!q.empty()&&sum<0) {
            ll k=q.top();
            q.pop();
            sum-=k;
            ans--;
        }
    }
    cout<<ans<<endl;
    return 0;
}

自闭场555
在这里插入图片描述

以上是关于Codeforces Round #723 (Rated for Div 2)的主要内容,如果未能解决你的问题,请参考以下文章

Codeforces Round #723 (Div. 2)Codeforces-1526ABCD

Codeforces Round #723 (Div. 2)Codeforces-1526ABCD

Codeforces Round #723 (Div. 2)

Codeforces Round #723 (Div. 2), A. Mean Inequality

Codeforces Round #723 (Div. 2)B. I Hate 1111

Codeforces Round #723 (Div. 2)