結果

問題 No.1388 Less than K
ユーザー 蜜蜂蜜蜂
提出日時 2021-01-15 16:21:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,063 ms / 3,000 ms
コード長 2,273 bytes
コンパイル時間 1,786 ms
コンパイル使用メモリ 173,072 KB
実行使用メモリ 104,832 KB
最終ジャッジ日時 2024-05-04 17:41:25
合計ジャッジ時間 16,285 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
12,928 KB
testcase_01 AC 10 ms
12,928 KB
testcase_02 AC 10 ms
12,928 KB
testcase_03 AC 12 ms
12,928 KB
testcase_04 AC 12 ms
13,020 KB
testcase_05 AC 13 ms
12,932 KB
testcase_06 AC 10 ms
12,928 KB
testcase_07 AC 11 ms
12,928 KB
testcase_08 AC 13 ms
12,928 KB
testcase_09 AC 12 ms
13,312 KB
testcase_10 AC 11 ms
13,400 KB
testcase_11 AC 11 ms
13,184 KB
testcase_12 AC 14 ms
13,056 KB
testcase_13 AC 17 ms
12,912 KB
testcase_14 AC 23 ms
12,920 KB
testcase_15 AC 52 ms
12,928 KB
testcase_16 AC 74 ms
12,928 KB
testcase_17 AC 107 ms
13,028 KB
testcase_18 AC 184 ms
12,852 KB
testcase_19 AC 261 ms
12,940 KB
testcase_20 AC 283 ms
12,928 KB
testcase_21 AC 44 ms
29,520 KB
testcase_22 AC 15 ms
13,056 KB
testcase_23 AC 17 ms
16,128 KB
testcase_24 AC 13 ms
12,916 KB
testcase_25 AC 13 ms
12,928 KB
testcase_26 AC 11 ms
12,928 KB
testcase_27 AC 11 ms
13,048 KB
testcase_28 AC 11 ms
13,308 KB
testcase_29 AC 11 ms
13,036 KB
testcase_30 AC 10 ms
12,968 KB
testcase_31 AC 12 ms
13,312 KB
testcase_32 AC 11 ms
12,924 KB
testcase_33 AC 14 ms
12,928 KB
testcase_34 AC 14 ms
12,832 KB
testcase_35 AC 13 ms
12,928 KB
testcase_36 AC 15 ms
12,828 KB
testcase_37 AC 15 ms
12,992 KB
testcase_38 AC 76 ms
43,264 KB
testcase_39 AC 32 ms
24,620 KB
testcase_40 AC 58 ms
33,988 KB
testcase_41 AC 175 ms
86,856 KB
testcase_42 AC 28 ms
22,108 KB
testcase_43 AC 226 ms
12,800 KB
testcase_44 AC 539 ms
12,928 KB
testcase_45 AC 277 ms
12,928 KB
testcase_46 AC 378 ms
13,056 KB
testcase_47 AC 350 ms
12,928 KB
testcase_48 AC 467 ms
13,056 KB
testcase_49 AC 393 ms
12,788 KB
testcase_50 AC 367 ms
12,928 KB
testcase_51 AC 310 ms
12,900 KB
testcase_52 AC 242 ms
13,040 KB
testcase_53 AC 190 ms
94,464 KB
testcase_54 AC 128 ms
65,024 KB
testcase_55 AC 29 ms
23,628 KB
testcase_56 AC 2,063 ms
13,036 KB
testcase_57 AC 793 ms
12,812 KB
testcase_58 AC 404 ms
12,928 KB
testcase_59 AC 332 ms
12,928 KB
testcase_60 AC 270 ms
12,964 KB
testcase_61 AC 20 ms
12,928 KB
testcase_62 AC 16 ms
12,928 KB
testcase_63 AC 32 ms
23,680 KB
testcase_64 AC 43 ms
29,952 KB
testcase_65 AC 130 ms
67,536 KB
testcase_66 AC 192 ms
95,600 KB
testcase_67 AC 210 ms
104,832 KB
testcase_68 AC 1,130 ms
12,928 KB
testcase_69 AC 848 ms
12,928 KB
testcase_70 AC 578 ms
12,928 KB
testcase_71 AC 373 ms
12,944 KB
testcase_72 AC 23 ms
12,928 KB
testcase_73 AC 19 ms
12,844 KB
testcase_74 AC 17 ms
12,928 KB
testcase_75 AC 16 ms
12,928 KB
testcase_76 AC 16 ms
12,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

using ll = long long;
#define fi first
#define se second

constexpr ll mod=998244353;

const int MAX = 405000;

ll fac[MAX], finv[MAX], inv[MAX];

// テーブルを作る前処理
void COMinit(){
    fac[0]=fac[1]=1;
    finv[0]=finv[1]=1;
    inv[1]=1;
    for(int i=2;i<MAX;i++){
        fac[i]=fac[i-1]*i%mod;
        inv[i]=mod-inv[mod%i]*(mod/i)%mod;
        finv[i]=finv[i-1]*inv[i]%mod;
    }
}

// 二項係数計算
ll COM(int n,int k){
    if(n<k) return 0;
    if(n<0||k<0) return 0;
    return fac[n]*(finv[k]*finv[n-k]%mod)%mod;
}

void solve1(int h,int w,int k){
  int x=min(h,w);
  vector<vector<int>> dp(x+1,vector<int>(2*k+1,0));
  //dp[i][j] := move2 i times & distance j-k
  dp[0][k]=1;
  for(int i=0;i<=x;i++){
    for(int j=2*k;j>=0;j--){
      if(j-2>=0){
        dp[i][j-2]+=dp[i][j];
        if(dp[i][j-2]>mod){
          dp[i][j-2]-=mod;
        }
      }
    }    
    if(i!=x){
      for(int j=0;j<=k;j++){
        int r=k-j,s=k+j;
        if(r+2<=2*k){
          dp[i+1][r+2]+=dp[i][r];
          if(dp[i+1][r+2]>mod){
            dp[i+1][r+2]-=mod;
          }
        }
        if(r!=s){
          r=s;
          if(r+2<=2*k){
            dp[i+1][r+2]+=dp[i][r];
            if(dp[i+1][r+2]>mod){
              dp[i+1][r+2]-=mod;
            }
          }
        }
      }
    }    
  }
      
  ll ans=0;
  for(int i=0;i<=x;i++){
    ll way=dp[i][k];
    way*=(COM(h+w,h-i)*COM(w+i,w-i))%mod;
    way%=mod;
    ans+=way;
    ans%=mod;
  }
  cout<<ans<<endl;
}

void solve2(int h,int w,int k){
  int x=min(h,w);
  ll ans=0;
  int kk,a;
  ll way;
  for(int i=0;i<=x;i++){
    kk=(k+2)/2;
    a=1;
    way=COM(2*i,i);
    while(i-a*kk>=0){
      if(a%2==1){
        way-=2*COM(2*i,i-a*kk);
        if(way>mod){
          way%=mod;
        }
      }
      else{
        way+=2*COM(2*i,i-a*kk);
        if(way>mod){
          way%=mod;
        }
      }
      a++;
    }
    if(way<0){
      way+=mod*100;
      way%=mod;
    }
    way*=(COM(h+w,h-i)*COM(w+i,w-i))%mod;
    way%=mod;
    ans+=way;
    if(ans>mod){
      ans%=mod;
    }
  }
  cout<<ans<<endl;
}

int main(){
  COMinit();
  int h,w,k;
  cin>>h>>w>>k;
  h--;
  w--;
  if(k<=75){
    solve1(h,w,k);
  }
  else{
    solve2(h,w,k);
  }
}
0