Submission #769868

#TimeUsernameProblemLanguageResultExecution timeMemory
769868NintsiChkhaidzeBootfall (IZhO17_bootfall)C++17
6 / 100
1073 ms500 KiB
#include <bits/stdc++.h> #define ll long long #define f first #define s second #define pb push_back #define pii pair <int,ll> #define left (h<<1),l,((l + r)>>1) #define right ((h<<1)|1),((l + r)>>1) + 1,r using namespace std; int sum,a[505]; vector <int> ans; bitset <500001> dp; signed main() { ios_base::sync_with_stdio(0),cin.tie(NULL),cout.tie(NULL); int n; cin>>n; for (int i = 1; i <= n; i++) cin>>a[i],sum += a[i]; ++n; for (int x = 1; x <= sum; x++){ //x-s vamatebt axla a[n] = x; int can = 1; for (int j = 1; j <= n; j++){ //j amovagdot int target = (sum + x - a[j]); if (target&1){ can=0; break; } target/=2; dp = 0; dp[0] = 1; for (int i = 1; i <= n; i++){ if (i != j) dp |= (dp << a[i]); } if (!dp[target]) { can = 0; break; } } if (can){ ans.pb(x); } } cout<<ans.size()<<endl; for (int x: ans) cout<<x<<" "; }
#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...