#include <bits/stdc++.h>
using namespace std;
//#define int long long
#define pi pair<int, int>
#define pii pair<int, pi>
#define fi first
#define se second
#ifdef _WIN32
#define getchar_unlocked _getchar_nolock
#endif
mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
pair <bool, int> dp[2][100005];
int n, A[1005], bruh[1005], P[1005];
void solve(){
cin >> n;
int sm = 0;
for(int i=1;i<=n;i++)cin >> A[i], sm += A[i], P[i] = P[i-1] + A[i], bruh[i] = 1;
dp[0][0] = {1, n + 1};
for(int i=1;i<=n;i++){
int x = i & 1;
for(int j=0;j<=sm;j++){
dp[x][j] = dp[x^1][j];
if(j >= A[i]){
if(dp[x^1][j - A[i]].fi){
int mn = min(dp[x ^ 1][j - A[i]].se, i);
if(dp[x][j].fi)dp[x][j].se = max(dp[x][j].se, mn);
else dp[x][j].se = mn;
dp[x][j].fi = 1;
}
}
}
for(int j = 1; j <= i; j++){
if((P[i] - P[i - j]) % 2)bruh[j] = 0;
if(!dp[x][(P[i] - P[i - j]) / 2].fi)bruh[j] = 0;
if(dp[x][(P[i] - P[i - j]) / 2].se <= i - j)bruh[j] = 0;
}
}
vector <int> pos;
for(int i=1;i<=n;i++){
if(bruh[i])pos.push_back(i);
}
cout << (int)pos.size() << ' ';
for(auto i : pos)cout << i << ' ';
cout << '\n';
}
main(){
ios::sync_with_stdio(0);cin.tie(0);
int tc = 1;
cin >> tc;
for(int tc1=1;tc1<=tc;tc1++){
// cout << "Case #" << tc1 << ": ";
solve();
}
}
Compilation message
Main.cpp:49:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
49 | main(){
| ^~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
3 ms |
504 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
13 ms |
604 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
174 ms |
856 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |