This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <iostream>
#include <algorithm>
#include <vector>
#include <set>
#include <cstring>
#include <queue>
#include <map>
#include <cmath>
#include <iomanip>
using namespace std;
#define ff first
#define sc second
#define pb push_back
#define ll long long
#define pll pair<ll, ll>
#define pii pair <int, int>
#define ull unsigned long long
// #define int long long
// #define int unsigned long long
const ll inf = 1e9 + 7;
const ll weirdMod = 998244353;
void solve() {
int n;
cin >> n;
int arr[n + 1], pref[n + 1]; pref[0] = 0;
for (int i = 1; i <= n; i++) {
cin >> arr[i]; pref[i] = arr[i] + pref[i - 1];
} int sum = pref[n], dp[sum / 2 + 5], cur;
for (int j = 0; j <= sum / 2; j++) dp[j] = 0;
bool good[n + 1] = {};
for (int i = 1; i <= n; i++) good[i] = 1;
for (int i = 1; i <= n; i++) {
for (int j = min(pref[i], sum / 2); j > arr[i]; j--)
dp[j] = max(dp[j], dp[j - arr[i]]);
dp[arr[i]] = i;
for (int j = i; j >= 1; j--) {
cur = pref[i] - pref[j - 1];
if (cur % 2 == 1 || dp[cur / 2] < j)
good[i - j + 1] = 0;
}
} int num = 0;
for (int i = 1; i <= n; i++)
num += good[i];
cout << num << ' ';
for (int i = 1; i <= n; i++)
if (good[i]) cout << i << ' ';
}
int32_t main() {
ios_base::sync_with_stdio(false);
cin.tie(nullptr); cout.tie(nullptr);
int t = 1;
cin >> t;
while (t--) {
solve();
cout << '\n';
} return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |