# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
582593 | juggernaut | Kpart (eJOI21_kpart) | C++14 | 177 ms | 340 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define fr first
#define sc second
using namespace std;
typedef long long ll;
typedef long double ld;
#define USING_ORDERED_SET 0
#if USING_ORDERED_SET
#include<bits/extc++.h>
using namespace __gnu_pbds;
template<class T>using ordered_set=tree<T,null_type,less<T>,rb_tree_tag,tree_order_statistics_node_update>;
#endif
template<class T>void umax(T &a,T b){if(a<b)a=b;}
template<class T>void umin(T &a,T b){if(b<a)a=b;}
#ifdef juggernaut
#define printl(args...) printf(args)
#else
#define printl(args...) 0
#endif
bool can[125];
int a[125];
bitset<50005>dp;
int main(){
int test;
scanf("%d",&test);
while(test--){
int n;
scanf("%d",&n);
for(int i=1;i<=n;i++)scanf("%d",&a[i]);
for(int i=1;i<=n;i++)can[i]=1;
for(int i=1;i<=n;i++){
dp=0;
dp[0]=1;
int sum=0;
for(int j=i;j<=n;j++){
sum+=a[j];
dp|=(dp<<a[j]);
if((sum&1)||(!dp[sum>>1]))can[j-i+1]=0;
}
}
int cnt=0;
for(int i=1;i<=n;i++)cnt+=can[i];
printf("%d ",cnt);
for(int i=1;i<=n;i++)if(can[i])printf("%d ",i);
printf("\n");
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |