이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define sf scanf
#define pf printf
#define getchar_unlocked getchar
inline int rd(){
int x=0;
char ch=getchar_unlocked();
while(!(ch&16))ch=getchar();//keep reading while current character is whitespace
while(ch&16){//this will break when ‘\n’ or ‘ ‘ is encountered
x=(x<<3)+(x<<1)+(ch&15);
ch=getchar_unlocked();
}
return x;
}
int t,n,a[1005],p[1005],dp[1005][50005],die[1005];
int main(){
t=rd();
for(int i=1;i<=1000;++i)dp[i-1][0]=i;
while(t--){
n=rd();
for(int i=1;i<=n;++i){
a[i]=rd(),p[i]=a[i]+p[i-1];
}
memset(die,0,sizeof die);
for(int i=1;i<=n;++i){
for(int v=1;v<=50000;++v){
dp[i][v]=max(dp[i-1][v],dp[i-1][v-a[i]]);
}
}
for(int k=1;k<=n;++k){
for(int i=1;i+k-1<=n;++i){
int j=i+k-1;
if(die[k])break;
if(((p[j]-p[i-1])&1)==1)die[k]=1;
if(dp[j][(p[j]-p[i-1])/2]<i)die[k]=1;
}
}
int cnt=0;
for(int i=1;i<=n;++i)if(!die[i])++cnt;
pf("%d ",cnt);
for(int i=1;i<=n;++i)if(!die[i])pf("%d ",i);
pf("\n");
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |