結果
問題 | No.2040 010-1 Deletion |
ユーザー | publfl2 |
提出日時 | 2022-08-12 23:16:50 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 190 ms / 3,000 ms |
コード長 | 1,190 bytes |
コンパイル時間 | 212 ms |
コンパイル使用メモリ | 32,896 KB |
実行使用メモリ | 144,512 KB |
最終ジャッジ日時 | 2024-11-09 00:49:17 |
合計ジャッジ時間 | 6,874 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 98 ms
144,384 KB |
testcase_01 | AC | 97 ms
144,256 KB |
testcase_02 | AC | 97 ms
144,256 KB |
testcase_03 | AC | 97 ms
144,384 KB |
testcase_04 | AC | 98 ms
144,512 KB |
testcase_05 | AC | 99 ms
144,384 KB |
testcase_06 | AC | 98 ms
144,256 KB |
testcase_07 | AC | 97 ms
144,256 KB |
testcase_08 | AC | 98 ms
144,384 KB |
testcase_09 | AC | 98 ms
144,256 KB |
testcase_10 | AC | 98 ms
144,256 KB |
testcase_11 | AC | 184 ms
144,384 KB |
testcase_12 | AC | 186 ms
144,384 KB |
testcase_13 | AC | 187 ms
144,384 KB |
testcase_14 | AC | 183 ms
144,384 KB |
testcase_15 | AC | 190 ms
144,384 KB |
testcase_16 | AC | 182 ms
144,384 KB |
testcase_17 | AC | 100 ms
144,256 KB |
testcase_18 | AC | 182 ms
144,384 KB |
testcase_19 | AC | 108 ms
144,512 KB |
testcase_20 | AC | 103 ms
144,256 KB |
testcase_21 | AC | 130 ms
144,384 KB |
testcase_22 | AC | 140 ms
144,384 KB |
testcase_23 | AC | 170 ms
144,384 KB |
testcase_24 | AC | 182 ms
144,512 KB |
testcase_25 | AC | 160 ms
144,384 KB |
testcase_26 | AC | 153 ms
144,512 KB |
testcase_27 | AC | 165 ms
144,384 KB |
testcase_28 | AC | 151 ms
144,384 KB |
testcase_29 | AC | 166 ms
144,512 KB |
testcase_30 | AC | 139 ms
144,512 KB |
testcase_31 | AC | 177 ms
144,384 KB |
testcase_32 | AC | 183 ms
144,384 KB |
testcase_33 | AC | 182 ms
144,384 KB |
testcase_34 | AC | 179 ms
144,384 KB |
testcase_35 | AC | 181 ms
144,384 KB |
testcase_36 | AC | 176 ms
144,384 KB |
コンパイルメッセージ
main.cpp: In function 'long long int func(int, int, int)': main.cpp:41:39: warning: 'ans' may be used uninitialized [-Wmaybe-uninitialized] 41 | return check[s][t+1500][type] = ans; | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~ main.cpp:16:23: note: 'ans' was declared here 16 | long long int ans; | ^~~
ソースコード
#include <stdio.h> #define MOD 998244353 int a; long long int check[1510][3010][4]; char x[1510]; long long int func(int s, int t, int type) { if(s>a) { if(t<=0&& (-t)%2==0) return 1; else return 0; } if(check[s][t+1500][type]!=-1) return check[s][t+1500][type]; long long int ans; if(type==0) // last = 0 { long long int s1 = func(s+1,t+1,0); long long int s2 = func(s+1,t,1); if(x[s]=='0') s2 = 0; if(x[s]=='1') s1 = 0; ans = (s1+s2)%MOD; } if(type==1) // last = 01 { long long int s1 = func(s+1,t-1,2); long long int s2 = func(s+1,t,1); if(x[s]=='0') s2 = 0; if(x[s]=='1') s1 = 0; ans = (s1+s2)%MOD; } if(type==2) // last = 010 { long long int s1 = func(s+1,t+1,0); long long int s2 = func(s+1,t,1); if(x[s]=='0') s2 = 0; if(x[s]=='1') s1 = 0; ans = (s1+s2)%MOD; } return check[s][t+1500][type] = ans; } int main() { scanf("%d",&a); for(int i=0;i<=1500;i++) for(int j=0;j<=3000;j++) for(int k=0;k<=2;k++) check[i][j][k] = -1; scanf("%s",x+1); long long int ans = 0; for(int i=1;i<=a;i++) { if(x[i]=='1') continue; ans += func(i+1,1,0), ans %= MOD; if(x[i]=='0') goto u; } ans++, ans %= MOD; u:; printf("%lld",ans); }