結果
問題 | No.1696 Nonnil |
ユーザー | eSeF |
提出日時 | 2020-10-28 18:21:36 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,106 bytes |
コンパイル時間 | 2,136 ms |
コンパイル使用メモリ | 204,668 KB |
実行使用メモリ | 19,456 KB |
最終ジャッジ日時 | 2024-07-19 09:38:01 |
合計ジャッジ時間 | 9,543 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 449 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 400 ms
5,376 KB |
testcase_09 | AC | 154 ms
5,760 KB |
testcase_10 | AC | 304 ms
6,784 KB |
testcase_11 | AC | 144 ms
6,016 KB |
testcase_12 | AC | 246 ms
6,400 KB |
testcase_13 | AC | 133 ms
5,760 KB |
testcase_14 | TLE | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0;i<n;i++) using namespace std; typedef long long ll; const ll inf = 4611686018427387903LL; const int MOD=998244353; //ll dp1[2001][2001][2];//縦 //ll dp2[2001][2001][2];//斜め ll dp[1501][1501][2]; ll mp(ll x,ll n){ if(n==0)return 1; if(n%2==0)return mp((x*x)%MOD,n/2); return (x*mp(x,n-1))%MOD; } int main() { int N,K,M; cin >> N >> K; cin >> M; vector<int>R(K+1,-1); rep(i,M){ int l,r; cin >> l >> r; R[r]=max(R[r],l); } for(int i=K;i>=1;i--){ bool ok=true; for(int j=i-1;j>=0;j--){ ok&=(R[j]<R[i]); } if(!ok)R[i]=-1; } dp[0][0][0]=1; for(int j=1;j<=K;j++){ for(int k=0;k<=K;k++){ if(R[j]!=-1&&k>0){ int L=R[j]; for(int l=0;l<2;l++){ for(int m=j-1;m>=L&&k-(j-m)>=0;m--){ dp[j][k][l]+=dp[m][k-(j-m)][l^1]; dp[j][k][l]%=MOD; } for(int m=L-1;m>=0&&k-(j-L)-1>=0;m--){ dp[j][k][l]+=dp[m][k-(j-L)-1][l^1]; dp[j][k][l]%=MOD; } } } } } ll ans=0; for(int i=0;i<=K;i++){ for(int j=0;j<=K;j++){ //printf("i=%d,j=%d,dp=%lld,mp=%lld\n",i,j,(dp[i][j][0]-dp[i][j][1]+MOD)%MOD,mp(K-j,N)); ans+=(dp[i][j][0]-dp[i][j][1]+MOD)*mp(K-j,N); ans%=MOD; } } cout << ans << endl; /*dp1[0][0][0]=dp2[0][0][0]=1; for(int j=1;j<=K;j++){ for(int k=0;k<=K;k++){ ll nx[2]={0,0}; if(R[j]!=-1&&k>0){ int L=R[j]; for(int l=0;l<2;l++){ nx[l]+=dp2[j-1][k-1][l^1]; if(k-(j-L)-1>=0)nx[l]-=dp2[L-1][k-(j-L)-1][l^1]; if(k-(j-L)-1>=0)nx[l]+=dp1[L-1][k-(j-L)-1][l^1]; nx[l]%=MOD; if(nx[l]<0)nx[l]+=MOD; } } for(int l=0;l<2;l++){ dp1[j][k][l]=(dp1[j-1][k][l]+nx[l])%MOD; dp2[j][k][l]=nx[l]; if(j-1>=0&&k-1>=0)dp2[j][k][l]+=dp2[j-1][k-1][l]; dp2[j][k][l]%=MOD; } } } ll ans=0; for(int i=0;i<=K;i++){ ans+=(dp1[K][i][0]-dp1[K][i][1]+MOD)*mp(K-i,N); ans%=MOD; } cout << ans << endl;*/ return 0; }