結果
問題 | No.2437 Fragile Multiples of 11 |
ユーザー | Nzt3 |
提出日時 | 2024-04-26 16:42:35 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,966 bytes |
コンパイル時間 | 2,267 ms |
コンパイル使用メモリ | 205,384 KB |
実行使用メモリ | 77,376 KB |
最終ジャッジ日時 | 2024-11-14 06:00:55 |
合計ジャッジ時間 | 73,542 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 696 ms
45,800 KB |
testcase_01 | AC | 746 ms
77,320 KB |
testcase_02 | AC | 1,368 ms
45,564 KB |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | AC | 636 ms
45,796 KB |
testcase_16 | AC | 637 ms
45,952 KB |
testcase_17 | AC | 635 ms
45,684 KB |
testcase_18 | AC | 636 ms
77,256 KB |
testcase_19 | AC | 636 ms
45,548 KB |
testcase_20 | AC | 636 ms
77,308 KB |
testcase_21 | AC | 635 ms
45,824 KB |
testcase_22 | AC | 636 ms
45,640 KB |
testcase_23 | AC | 636 ms
77,376 KB |
testcase_24 | TLE | - |
testcase_25 | AC | 1,400 ms
38,712 KB |
testcase_26 | AC | 1,283 ms
38,676 KB |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | TLE | - |
testcase_32 | TLE | - |
testcase_33 | TLE | - |
ソースコード
#include<bits/stdc++.h> using namespace std; using ll=long long; constexpr int MOD=998244353; int N; string X; ll dp[100][1<<11][11][2]; ll next_s[1<<11][10]; void ch(ll &a,ll b){ a=(a+b)%MOD; } ll rec(int k=0,int s=0,int leading_0=1,int mod11=0, bool less=false){ if(k==N){ if(mod11==0&&(s&1)==0&&leading_0==0)return 1ll; return 0ll; } if(less && dp[k][s][mod11][leading_0]!=-1)return dp[k][s][mod11][leading_0]; if(less){ ll ret=0; if(leading_0){ for(int i=1;i<10;i++){ ch(ret,rec(k+1,next_s[s][i]|(1<<mod11),0,(mod11*10+i)%11,true)); } ch(ret,rec(k+1,next_s[s][0],1,(mod11*10)%11,true)); }else{ for(int i=0;i<10;i++){ ch(ret,rec(k+1,next_s[s][i]|(1<<mod11),0,(mod11*10+i)%11,true)); } } return dp[k][s][mod11][leading_0]=ret; }else{ ll ret=0; // Xの最上位桁は0ではない -> not less && leading_0 は最初の1回だけ if(leading_0){ for(int i=1;i<X[k];i++){ ch(ret,rec(k+1,next_s[s][i]|(1<<mod11),0,(mod11*10+i)%11,true)); } ch(ret,rec(k+1,next_s[s][0],1,(mod11*10)%11,true)); ch(ret,rec(k+1,next_s[s][X[k]]|(1<<mod11),0,(mod11*10+X[k])%11,false)); }else{ for(int i=0;i<X[k];i++){ ch(ret,rec(k+1,next_s[s][i]|(1<<mod11),0,(mod11*10+i)%11,true)); } ch(ret,rec(k+1,next_s[s][X[k]]|(1<<mod11),0,(mod11*10+X[k])%11,false)); } return ret; } } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); cin>>N>>X; for(auto &i:X)i-='0'; fill(dp[0][0][0],dp[99][(1<<11)-1][11],-1ll); for(int i=0;i<1<<11;i++){ for(int j=0;j<10;j++){ int t=0; for(int k=0;k<11;k++){ if(i>>k&1)t|=1<<((k*10+j)%11); } next_s[i][j]=t; } } cout<<rec()<<'\n'; X.clear(); for(int i=0;i<100;i++)X.push_back(0); for(ll i=0;i<1000000;i++){ ll t=(i*i+10)%MOD; for(int j=0;j<100;j++){ X[j]=t%10; t=(t*t+1)%MOD; } rec(); } }