# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
595254 |
2022-07-13T13:31:38 Z |
Urvuk3 |
Kpart (eJOI21_kpart) |
C++17 |
|
145 ms |
26320 KB |
#include <bits/stdc++.h>
using namespace std;
#define ll long long
ll INF=1e9,LINF=1e18,MOD=1e9+7; const ll MAXN=1e3+1,MAXA=5e4+1;
#define fi first
#define se second
#define pii pair<int,int>
#define mid ((l+r)/2)
#define sz(a) (int((a).size()))
#define all(a) a.begin(),a.end()
#define endl "\n"
#define PRINT(x) cerr<<#x<<'-'<<x<<endl<<flush;
#define pb push_back
#define PRINTvec(x) { cerr<<#x<<"-"; for(int i=0;i<sz(x);i++) cerr<<x[i]<<" "; cerr<<endl; }
int a[MAXN],dp[MAXN][MAXA],pref[MAXN];
void Solve(){
int N; cin>>N;
fill(pref,pref+N+1,0);
for(int i=1;i<=N;i++){
cin>>a[i];
pref[i]=a[i]+pref[i-1];
}
dp[1][a[1]]=1;
for(int i=2;i<=N;i++){
for(int A=0;A<MAXA/2;A++){
//PRINT(i); PRINT(A);
dp[i][A]=dp[i-1][A];
if(A>a[i]){
dp[i][A]=max(dp[i][A],dp[i-1][A-a[i]]);
}
else if(A==a[i]) dp[i][A]=i;
}
}
vector<int> ans;
for(int K=2;K<=N;K++){
bool ok=true;
for(int l=1;l+K-1<=N;l++){
int r=l+K-1;
int sum=pref[r]-pref[l-1];
ok&=(sum%2==0 && dp[r][sum/2]>=l);
}
if(ok) ans.pb(K);
}
cout<<sz(ans)<<" ";
for(auto x:ans){
cout<<x<<" ";
}
cout<<endl;
}
int main(){
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int t;
cin>>t;
//t=1;
while(t--){
Solve();
}
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
12 ms |
3284 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
46 ms |
7056 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
145 ms |
26320 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |