結果

問題 No.1388 Less than K
ユーザー 蜜蜂蜜蜂
提出日時 2020-11-23 00:17:35
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 2,039 bytes
コンパイル時間 1,631 ms
コンパイル使用メモリ 173,324 KB
実行使用メモリ 734,976 KB
最終ジャッジ日時 2024-05-04 17:32:03
合計ジャッジ時間 20,132 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
15,384 KB
testcase_01 AC 14 ms
15,232 KB
testcase_02 AC 13 ms
15,272 KB
testcase_03 AC 13 ms
15,152 KB
testcase_04 AC 14 ms
15,360 KB
testcase_05 AC 21 ms
19,840 KB
testcase_06 AC 17 ms
17,852 KB
testcase_07 AC 13 ms
15,272 KB
testcase_08 AC 32 ms
25,080 KB
testcase_09 AC 15 ms
15,708 KB
testcase_10 AC 14 ms
15,744 KB
testcase_11 AC 14 ms
15,360 KB
testcase_12 AC 30 ms
23,456 KB
testcase_13 AC 43 ms
30,232 KB
testcase_14 AC 58 ms
39,040 KB
testcase_15 AC 142 ms
80,564 KB
testcase_16 AC 207 ms
114,048 KB
testcase_17 AC 321 ms
171,392 KB
testcase_18 AC 529 ms
284,288 KB
testcase_19 AC 800 ms
409,224 KB
testcase_20 AC 830 ms
435,712 KB
testcase_21 AC 47 ms
31,772 KB
testcase_22 AC 16 ms
15,360 KB
testcase_23 AC 20 ms
18,560 KB
testcase_24 AC 27 ms
22,832 KB
testcase_25 AC 34 ms
25,496 KB
testcase_26 AC 25 ms
21,404 KB
testcase_27 AC 18 ms
17,920 KB
testcase_28 AC 14 ms
15,616 KB
testcase_29 AC 12 ms
15,360 KB
testcase_30 AC 13 ms
15,356 KB
testcase_31 AC 13 ms
15,692 KB
testcase_32 AC 14 ms
15,312 KB
testcase_33 AC 16 ms
15,176 KB
testcase_34 AC 17 ms
15,336 KB
testcase_35 AC 15 ms
15,264 KB
testcase_36 AC 16 ms
15,232 KB
testcase_37 AC 15 ms
15,312 KB
testcase_38 AC 77 ms
45,536 KB
testcase_39 AC 32 ms
26,936 KB
testcase_40 AC 57 ms
36,292 KB
testcase_41 AC 172 ms
89,216 KB
testcase_42 AC 29 ms
24,568 KB
testcase_43 AC 281 ms
15,272 KB
testcase_44 MLE -
testcase_45 AC 296 ms
15,356 KB
testcase_46 AC 431 ms
15,256 KB
testcase_47 AC 427 ms
15,324 KB
testcase_48 MLE -
testcase_49 AC 494 ms
15,208 KB
testcase_50 AC 394 ms
15,360 KB
testcase_51 AC 333 ms
15,360 KB
testcase_52 AC 304 ms
15,296 KB
testcase_53 AC 187 ms
96,756 KB
testcase_54 AC 126 ms
67,300 KB
testcase_55 AC 32 ms
26,112 KB
testcase_56 AC 340 ms
179,072 KB
testcase_57 AC 958 ms
491,468 KB
testcase_58 AC 453 ms
15,232 KB
testcase_59 AC 346 ms
15,272 KB
testcase_60 AC 272 ms
15,360 KB
testcase_61 AC 19 ms
15,336 KB
testcase_62 AC 16 ms
15,360 KB
testcase_63 AC 34 ms
26,112 KB
testcase_64 AC 43 ms
32,280 KB
testcase_65 AC 127 ms
69,708 KB
testcase_66 AC 185 ms
98,004 KB
testcase_67 AC 202 ms
107,244 KB
testcase_68 AC 646 ms
335,488 KB
testcase_69 AC 802 ms
413,548 KB
testcase_70 MLE -
testcase_71 AC 445 ms
15,392 KB
testcase_72 AC 24 ms
15,276 KB
testcase_73 AC 21 ms
15,216 KB
testcase_74 AC 19 ms
15,484 KB
testcase_75 AC 18 ms
15,360 KB
testcase_76 AC 20 ms
15,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using ll = long long;

constexpr ll mod=998244353;
const int MAX=505000;

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;
    }
}
long long 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[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;
  for(int i=0;i<=x;i++){
    int kk=(k+2)/2;
    int a=1;
    ll way=COM(2*i,i);
    while(i-a*kk>=0){
      if(a%2==1){
        way-=2*COM(2*i,i-a*kk);
        way%=mod;
      }
      else{
        way+=2*COM(2*i,i-a*kk);
        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;
    ans%=mod;
  }
  cout<<ans<<endl;
}

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