結果

問題 No.1856 Mex Sum 2
ユーザー ytqm3ytqm3
提出日時 2022-02-25 23:06:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,004 bytes
コンパイル時間 4,313 ms
コンパイル使用メモリ 270,348 KB
実行使用メモリ 26,928 KB
最終ジャッジ日時 2024-07-03 18:06:42
合計ジャッジ時間 18,476 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 40 ms
26,808 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 42 ms
26,624 KB
testcase_08 AC 40 ms
26,752 KB
testcase_09 AC 41 ms
26,752 KB
testcase_10 AC 41 ms
26,748 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 41 ms
26,704 KB
testcase_14 AC 40 ms
26,752 KB
testcase_15 WA -
testcase_16 AC 42 ms
26,752 KB
testcase_17 AC 43 ms
26,760 KB
testcase_18 AC 43 ms
26,624 KB
testcase_19 AC 42 ms
26,624 KB
testcase_20 AC 41 ms
26,720 KB
testcase_21 AC 40 ms
26,752 KB
testcase_22 AC 42 ms
26,752 KB
testcase_23 AC 41 ms
26,752 KB
testcase_24 AC 41 ms
26,752 KB
testcase_25 AC 41 ms
26,624 KB
testcase_26 AC 41 ms
26,624 KB
testcase_27 AC 41 ms
26,820 KB
testcase_28 AC 41 ms
26,624 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 398 ms
26,768 KB
testcase_43 AC 362 ms
26,772 KB
testcase_44 AC 374 ms
26,792 KB
testcase_45 AC 394 ms
26,880 KB
testcase_46 AC 357 ms
26,876 KB
testcase_47 AC 380 ms
26,752 KB
testcase_48 AC 407 ms
26,820 KB
testcase_49 AC 403 ms
26,752 KB
testcase_50 AC 324 ms
26,840 KB
testcase_51 AC 408 ms
26,880 KB
testcase_52 AC 411 ms
26,688 KB
testcase_53 AC 412 ms
26,808 KB
testcase_54 AC 409 ms
26,692 KB
testcase_55 AC 407 ms
26,752 KB
testcase_56 AC 415 ms
26,752 KB
testcase_57 AC 413 ms
26,728 KB
testcase_58 AC 411 ms
26,820 KB
testcase_59 AC 410 ms
26,872 KB
testcase_60 AC 413 ms
26,928 KB
testcase_61 AC 415 ms
26,888 KB
testcase_62 AC 410 ms
26,816 KB
testcase_63 AC 410 ms
26,788 KB
testcase_64 AC 407 ms
26,880 KB
testcase_65 AC 410 ms
26,752 KB
testcase_66 AC 413 ms
26,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
typedef uint64_t u64;
typedef int64_t i64;
template<u64 mod> using modint=atcoder::static_modint<mod>;
using namespace std;

template<typename T> struct comb{
  vector<T> dat,idat;
  comb(int mx=3000000):dat(mx+1,1),idat(mx+1,1){
    for(int i=1;i<=mx;++i){
      dat[i]=dat[i-1]*i;
    }
    idat[mx]/=dat[mx];
    for(int i=mx;i>0;--i){
      idat[i-1]=idat[i]*i;
    }
  }
  T operator()(int n,int k){
    if(n<0||k<0||n<k){
      return 0;
    }
    return dat[n]*idat[k]*idat[n-k];
  }
};

int main(){
  constexpr u64 mod=998244353;
  typedef modint<mod> mint;
  comb<mint> C;
  int N,M;
  cin>>N>>M;
  vector<mint> f(N+1);
  for(int i=0;i<=N;++i){
    f[i]=(mint(2).pow(i)-1)*C.idat[i];
  }
  vector<mint> g(N+1);
  g[0]=1;
  mint ans=0;
  for(int i=0;i<min(N,M);++i){
  	g=atcoder::convolution(f,g);
  	g.resize(N+1);
  	mint now=1;
  	for(int j=N;j>i;--j){
  		ans+=C.dat[N]*C.idat[N-j]*now*g[j];
  		now*=2*(M-i);
  	}
  }
  cout<<ans.val()<<endl;
}
0