Submission #566677

#TimeUsernameProblemLanguageResultExecution timeMemory
566677RifalBootfall (IZhO17_bootfall)C++14
13 / 100
122 ms2296 KiB
#include <bits/stdc++.h> #include <fstream> #define endl '\n' #define mod 998244353 #define INF -100000000000000000 //#define ll long long //#define cin fin //#define cout fout using namespace std; //ofstream fout("convention.out"); //ifstream fin("convention.in"); const int M = 250005; long long dp[M]; long long cnt[M]; void add(long long x) { for(int i = M-1; i >= x; i--) { dp[i] += dp[i-x]%mod; dp[i] %= mod; } } void remo(long long x) { for(int i = x; i < M; i++) { dp[i] -= dp[i-x]%mod; dp[i] %= mod; } } int main() { ios_base::sync_with_stdio(0);cout.tie(0);cin.tie(0); int n; cin >> n; long long arr[n]; long long sum = 0; dp[0] = 1; for(int i = 0; i < n; i++) { cin >> arr[i]; add(arr[i]); sum += arr[i]; } if(sum%2 == 1 || dp[sum/2] == 0) { cout << 0 << endl; return 0; } for(int i = 0; i < n; i++) { remo(arr[i]); sum -= arr[i]; for(long long j = 0; j <= sum/2; j++) { if(dp[j] >= 1) { if(sum-(j*2) != 0) cnt[sum-(j*2)]++; } } add(arr[i]); sum += arr[i]; } vector<int> ans; for(int i = 0; i < M; i++) { if(cnt[i] == n) ans.push_back(i); } cout << ans.size() << endl; for(int i = 0; i < ans.size(); i++) cout << ans[i] << ' '; return 0; }

Compilation message (stderr)

bootfall.cpp: In function 'int main()':
bootfall.cpp:73:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   73 |     for(int i = 0; i < ans.size(); i++)
      |                    ~~^~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...