이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <vector>
#include <algorithm>
#include <set>
typedef long long ll;
using namespace std;
const int N = 1e5 + 10;
int a[N], cnt[N];
bool Used[N];
void solve() {
int n;
cin >> n;
for (int i = 1; i <= n; i++) {
cin >> a[i];
cnt[i - 1] = 0;
}
Used[0] = true;
for (int i = 1; i <= n; i++) {
Used[0] = true;
for (int i = 1; i < N; i++)
Used[i] = false;
int cur = 0;
for (int j = i; j <= n; j++) {
for (int k = cur; k >= 0; k--)
if (Used[k]) Used[k + a[j]] = true;
cur += a[j];
if (cur % 2 == 0 && Used[cur / 2]) cnt[j - i]++;
}
}
vector <int> ans;
for (int i = 0; i < n; i++) {
if (cnt[i] == n - i) ans.push_back(i + 1);
}
cout << ans.size() << " ";
for (auto it : ans)
cout << it << " ";
cout << "\n";
}
int main() {
int t;
cin >> t;
while (t--)
solve();
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |