제출 #592949

#제출 시각아이디문제언어결과실행 시간메모리
592949TimDeeKpart (eJOI21_kpart)C++14
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h> using namespace std; #define paiu return #define moment 0; #define int long long #define double long double #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 vi(a,n) vector<int> 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 = 2e5; const int inf = INT_MAX; const ll linf = LLONG_MAX; const ll mmod = 998244353; int dp[1000][4e5+1]; void solve() { int n; cin>>n; vii(a,n); vector<int> pr = ___makeprefsum(a); forn(i,n) forn(j,pr[n]+1) dp[i][j]=-1; forn(i,n) dp[i][a[i]]=i; for (int i=1; i<n; ++i) { for (int j=1; j<=pr[n]; ++j) { dp[i][j]=max(dp[i][j],dp[i-1][j]); if (j-a[i]>=0) dp[i][j]=max(dp[i][j],dp[i-1][j-a[i]]); } } vector<int> ans; for (int k=2; k<=n; ++k) { int foo=1; for (int i=0; i+k<=n; ++i) { int s = pr[i+k]-pr[i]; if (s%2) {foo=0; break;} if (dp[i+k-1][s/2]<i) {foo=0; break;} } if (foo) ans.pb(k); } cout<<ans.size()<<' '; forn(i,ans.size()) 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:47:17: error: conversion from 'double' to 'long unsigned int' in a converted constant expression
   47 | int dp[1000][4e5+1];
      |              ~~~^~
Main.cpp:47:17: error: could not convert '(4.0e+5 + (double)1)' from 'double' to 'long unsigned int'
Main.cpp:47:17: error: size of array 'dp' has non-integral type 'double'
Main.cpp: In function 'void solve()':
Main.cpp:12:34: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   12 | #define forn(i,x) for (int i=0; i<x; i++)
......
   74 |     forn(i,ans.size()) cout<<ans[i]<<' '; cout<<'\n';
      |          ~~~~~~~~~~~~             
Main.cpp:74:5: note: in expansion of macro 'forn'
   74 |     forn(i,ans.size()) cout<<ans[i]<<' '; cout<<'\n';
      |     ^~~~
Main.cpp:12:19: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
   12 | #define forn(i,x) for (int i=0; i<x; i++)
      |                   ^~~
Main.cpp:74:5: note: in expansion of macro 'forn'
   74 |     forn(i,ans.size()) cout<<ans[i]<<' '; cout<<'\n';
      |     ^~~~
Main.cpp:74:43: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
   74 |     forn(i,ans.size()) cout<<ans[i]<<' '; cout<<'\n';
      |                                           ^~~~