結果
問題 | No.1963 Subset Mex |
ユーザー | 1kri |
提出日時 | 2022-07-14 10:30:09 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 27 ms / 4,000 ms |
コード長 | 1,377 bytes |
コンパイル時間 | 621 ms |
コンパイル使用メモリ | 66,368 KB |
実行使用メモリ | 13,568 KB |
最終ジャッジ日時 | 2024-06-25 17:32:47 |
合計ジャッジ時間 | 1,792 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
13,440 KB |
testcase_01 | AC | 5 ms
13,440 KB |
testcase_02 | AC | 6 ms
13,428 KB |
testcase_03 | AC | 6 ms
13,440 KB |
testcase_04 | AC | 5 ms
13,440 KB |
testcase_05 | AC | 6 ms
13,568 KB |
testcase_06 | AC | 5 ms
13,432 KB |
testcase_07 | AC | 6 ms
13,432 KB |
testcase_08 | AC | 5 ms
13,440 KB |
testcase_09 | AC | 6 ms
13,440 KB |
testcase_10 | AC | 5 ms
13,432 KB |
testcase_11 | AC | 6 ms
13,436 KB |
testcase_12 | AC | 6 ms
13,564 KB |
testcase_13 | AC | 6 ms
13,440 KB |
testcase_14 | AC | 8 ms
13,432 KB |
testcase_15 | AC | 8 ms
13,428 KB |
testcase_16 | AC | 8 ms
13,312 KB |
testcase_17 | AC | 10 ms
13,440 KB |
testcase_18 | AC | 11 ms
13,436 KB |
testcase_19 | AC | 17 ms
13,436 KB |
testcase_20 | AC | 19 ms
13,436 KB |
testcase_21 | AC | 24 ms
13,568 KB |
testcase_22 | AC | 27 ms
13,440 KB |
testcase_23 | AC | 25 ms
13,436 KB |
testcase_24 | AC | 23 ms
13,436 KB |
testcase_25 | AC | 22 ms
13,432 KB |
testcase_26 | AC | 10 ms
13,312 KB |
testcase_27 | AC | 14 ms
13,312 KB |
testcase_28 | AC | 18 ms
13,312 KB |
testcase_29 | AC | 15 ms
13,440 KB |
ソースコード
#include <iostream> #include <cstdio> #include <cstring> #define mod 998244353 using namespace std; int t,n,m,x,cnt[115],sum[115],f[115][105][105],ok[115][105][105]; void upd(int &x,int y){ x+=y; if (x>=mod)x-=mod; return; } int check(int now,int rest,int d){ if ((now+1)*d>n)return 0; if (now==0){ if (d<=rest+cnt[now])return 1; return 0; } if (ok[now][rest][d]!=-1)return ok[now][rest][d]; if (cnt[now]>=d)return ok[now][rest][d]=check(now-1,rest+cnt[now]-d,d); return ok[now][rest][d]=check(now-1,rest,d+(d-cnt[now])); } int dfs(int now,int rest,int d){ if ((now+1)*d>n)return 0; if (f[now][rest][d]!=-1)return f[now][rest][d]; int ans=0; for (int i=0;i<=n;i++){ int _rest=rest,_d=d; if (cnt[now]>=i+d)_rest+=cnt[now]-(i+d); else _d+=(i+d)-cnt[now]; if (now>0)upd(ans,dfs(now-1,_rest,_d)); if (i>0){ if (now==0){ if (i+d<=rest+cnt[now])upd(ans,1); } else{ if (_d>0){ if (check(now-1,_rest,_d))upd(ans,1); } else if ((_rest==0&&sum[now-1]==0)||check(now-1,_rest+1,1))upd(ans,1); } } } return f[now][rest][d]=ans; } int main(){ t=1; while(t--){ cin>>n; memset(cnt,0,sizeof(cnt)); for (int i=1;i<=n;i++){ cin>>x; cnt[x]++; } m=114; sum[0]=cnt[0]; for (int i=1;i<=m;i++)sum[i]=cnt[i]+sum[i-1]; memset(f,-1,sizeof(f)); memset(ok,-1,sizeof(ok)); cout<<dfs(m,0,0)<<endl; } return 0; }