이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#pragma GCC optimize ("unroll-loops,Ofast,O3")
#pragma GCC target("avx,avx2,fma")
#define F first
#define S second
#define int long long
#define sz(x) (int)x.size()
#define pb push_back
#define eb emplace_back
#define all(x) (x).begin(),(x).end()
const int E = 5e5+777;
const long long inf = 1e18+777;
const int N = 3e3+777;
const int MOD = 1e9+7;
int n, a[E], pref[E];
int get(int l, int r){
return pref[r] - pref[l-1];
}
signed main(){
ios_base::sync_with_stdio(0),
cin.tie(0),cout.tie(0);
cin >> n;
for(int i = 1; i <= n; ++i){
cin >> a[i];
pref[i] = pref[i-1] + a[i];
}
int res = 0;
for(int mask = 0; mask < (1 << n); ++mask){
vector<int> v;
for(int a = 0; a < n; ++a){
if((mask >> a) & 1){
v.pb(a + 1);
}
}
int last = 0, ans = 0, w = 0;
bool ok = true;
for(int x : v){
if(w <= get(last + 1, x)){
ans++;
}else{
ok = false;
break;
}
w = get(last + 1, x);
last = x;
}
if(ok){
// if(res < ans){
// cerr << "ANS: " << ans << '\n';
// for(auto it : v){
// cerr << it << ' ';
// }cerr << '\n';
// }
res = max(res, ans);
}
}
cout << res;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |