Submission #630133

#TimeUsernameProblemLanguageResultExecution timeMemory
630133kidesoKpart (eJOI21_kpart)C++17
30 / 100
2106 ms393980 KiB
#include <iostream>
#include <queue>
#include <algorithm>

using namespace std;

const int maxN = 1000, maxS = 100000;

vector<int> ans, x, s;
vector<vector<int> > dp;
int N;

int main(){
    ios_base::sync_with_stdio(false);
    cin.tie(0), cout.tie(0);

    int T;
    cin >> T;
    x.assign(maxN + 1, 0);
    s.assign(maxN + 1, 0);
    dp.assign(maxN + 1, vector<int> (maxS + 1, 0));

    while(T--){
        ans.clear();

        cin >> N;
        for(int i = 1; i <= N; ++i){
            cin >> x[i];
            s[i] = s[i - 1] + x[i];
        }

        for(int j = 0; j <= s[N]; ++j)
            dp[0][j] = 0;

        for(int i = 1; i <= N; ++i){
            for(int j = s[N]; j >= x[i]; --j)
                dp[i][j] = max(dp[i - 1][j], dp[i - 1][j - x[i]]);
            
            dp[i][x[i]] = i;
            
            for(int j = x[i] - 1; j >= 0; --j)
                dp[i][j] = dp[i - 1][j];
        }

        bool ok;

        for(int i = 2; i <= N; ++i){
            ok = true;

            for(int j = 1; j <= N - i + 1; ++j){
                int sum = s[j + i - 1] - s[j - 1];
                if(sum % 2 || dp[j + i - 1][sum / 2] < j) ok = false;
            }

            if(ok) ans.push_back(i);
        }

        cout << ans.size() << ' ';
        for(auto e:ans)
            cout << e << ' ';
        cout << '\n';
    }

    return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...