結果
問題 | No.2206 Popcount Sum 2 |
ユーザー | umezo |
提出日時 | 2023-02-07 07:22:30 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,234 bytes |
コンパイル時間 | 2,222 ms |
コンパイル使用メモリ | 202,368 KB |
実行使用メモリ | 812,952 KB |
最終ジャッジ日時 | 2024-07-05 06:21:19 |
合計ジャッジ時間 | 23,092 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | MLE | - |
testcase_02 | MLE | - |
testcase_03 | MLE | - |
testcase_04 | MLE | - |
testcase_05 | MLE | - |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
ソースコード
#define rep(i, n) for(int i=0;i<(int)(n);i++) #define ALL(v) v.begin(), v.end() typedef long long ll; #include <bits/stdc++.h> using namespace std; const int p=450; const int MAX=500500; const int MOD=998244353; ll fac[MAX],finv[MAX],inv[MAX]; ll S[510][200200]; void init(){ 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 nCr(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; } ll modpow(ll x,ll n){ ll ans=1; while(n){ if(n&1) ans=ans*x%MOD; x=x*x%MOD; n/=2; } return ans; } ll nSr(int n,int k){ int a=n/p,b=n%p; ll ret=0; for(int i=0;i<=b;i++){ if(k<i) break; ret=(ret+S[a][k-i]*nCr(b,i)%MOD)%MOD; } return ret; }; int main() { ios::sync_with_stdio(false); std::cin.tie(nullptr); init(); for(int i=0;i<510;i++){ S[i][0]=1; for(int j=1;j<=i;j++) S[i][j]=(S[i][j-1]+nCr(i*p,j))%MOD; for(int j=i+1;j<200200;j++) S[i][j]=S[i][i]; } int t; cin>>t; while(t--){ ll n,m; cin>>n>>m; cout<<nSr(n-1,m-1)*(modpow(2,n)-1)%MOD<<'\n'; } return 0; }