結果

問題 No.1696 Nonnil
ユーザー eSeFeSeF
提出日時 2020-10-28 17:41:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 176 ms / 3,500 ms
コード長 1,370 bytes
コンパイル時間 2,120 ms
コンパイル使用メモリ 204,564 KB
実行使用メモリ 88,368 KB
最終ジャッジ日時 2024-07-19 09:37:36
合計ジャッジ時間 8,405 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 62 ms
88,368 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 75 ms
85,888 KB
testcase_09 AC 21 ms
10,496 KB
testcase_10 AC 32 ms
13,440 KB
testcase_11 AC 25 ms
8,960 KB
testcase_12 AC 28 ms
12,928 KB
testcase_13 AC 23 ms
9,216 KB
testcase_14 AC 141 ms
76,288 KB
testcase_15 AC 60 ms
16,000 KB
testcase_16 AC 166 ms
85,504 KB
testcase_17 AC 105 ms
70,016 KB
testcase_18 AC 92 ms
38,144 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 80 ms
56,704 KB
testcase_22 AC 103 ms
53,888 KB
testcase_23 AC 99 ms
48,896 KB
testcase_24 AC 96 ms
45,696 KB
testcase_25 AC 142 ms
67,712 KB
testcase_26 AC 115 ms
69,504 KB
testcase_27 AC 140 ms
84,096 KB
testcase_28 AC 130 ms
50,048 KB
testcase_29 AC 97 ms
62,208 KB
testcase_30 AC 75 ms
44,416 KB
testcase_31 AC 104 ms
73,984 KB
testcase_32 AC 117 ms
80,512 KB
testcase_33 AC 135 ms
57,216 KB
testcase_34 AC 87 ms
59,392 KB
testcase_35 AC 109 ms
65,664 KB
testcase_36 AC 175 ms
85,760 KB
testcase_37 AC 176 ms
85,760 KB
testcase_38 AC 176 ms
85,760 KB
testcase_39 AC 170 ms
85,376 KB
testcase_40 AC 172 ms
84,864 KB
testcase_41 AC 101 ms
20,992 KB
testcase_42 AC 68 ms
75,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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 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;
  }
  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;
}
0