제출 #581549

#제출 시각아이디문제언어결과실행 시간메모리
581549TimDeeKpart (eJOI21_kpart)C++14
0 / 100
2067 ms1488 KiB
#include <bits/stdc++.h> using namespace std; #define paiu return #define moment 0; #define int long long #define ll long long #define forr(i,x) for (int i=0; i<x; i++) #define forn(i,x) for (int i=0; i<x; i++) #define forrr(i,j,x) for (int i=j; i<x; i++) #define di(a,n) deque<int> a(n,0) #define dll(a,n) deque<ll> a(n,0) #define vi(a,n) vector<int> a(n,0) #define vll(a,n) vector<ll> a(n,0) //cringe define #define vii(a,n) vi(a,n); forr(i,n) cin>>a[i]; vector<int> ___makeprefsum(vector<int>&a) { int n=a.size(); vi(pr,n+1); forn(i,n) pr[i+1]=pr[i]+a[i]; return pr; } #define prefsum(pr,a) vector<int> pr=___makeprefsum(a); #define all(v) v.begin(),v.end() #define rall(v) v.rbegin(),v.rend() #define pb(x) push_back(x) #define pf pop_front(); #define last(c) c[c.size()-1] #define f first #define s second #define pi pair<int, int> #define mp(x,y) make_pair(x, y) const ll mod = 1000000007; const double ppi = acos(0) * 2; //const int maxn = 3e5+1; const int inf = INT_MAX; const ll linf = LLONG_MAX; const ll mmod = 998244353; vector<vector<int>> ks(deque<int> a, int s) { int n = a.size(); vector<vector<int>> dp(n+1); forn(i,n+1) dp[i].assign(s/2+3,0); dp[0][0]=1; for (int i=1; i<=n; i++) { for (int j=1; j<=s/2; j++) { dp[i][j]|=dp[i-1][j]; if (j-a[i-1]>=0) dp[i][j]|=dp[i-1][j-a[i-1]]; } } //forn(i,n+1) { // forn(j,25) cout<<dp[i][j]<<' '; cout<<'\n'; //} //cout<<'\n'; return dp; } void solve() { int n; cin>>n; vii(a,n); vector<int> ans; vector<int> pos(n+1,1); for (int i=0; i<n; i++) { unordered_map<int,int> m; m[0]=1; int s=0; for (int j=i; j<n; j++) { s+=a[j]; for (auto it:m) { m[it.f+a[j]]=1; } if (m[s/2] && s%2==0 && pos[j+1-i]) { continue; } else { m.erase(m.find(s/2)); pos[j+1-i]=0; } } } for (int i=1; i<=n; ++i) if (pos[i]) ans.pb(i); n=ans.size(); cout<<n<<' '; forn(i,n) cout<<ans[i]<<' '; cout<<'\n'; } int32_t main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); //init_primes(); int t=1; cin>>t; while(t--) solve(); paiu moment }

컴파일 시 표준 에러 (stderr) 메시지

Main.cpp: In function 'void solve()':
Main.cpp:11:19: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
   11 | #define forn(i,x) for (int i=0; i<x; i++)
      |                   ^~~
Main.cpp:107:5: note: in expansion of macro 'forn'
  107 |     forn(i,n) cout<<ans[i]<<' '; cout<<'\n';
      |     ^~~~
Main.cpp:107:34: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
  107 |     forn(i,n) cout<<ans[i]<<' '; cout<<'\n';
      |                                  ^~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...