結果

問題 No.2529 Treasure Hunter
ユーザー momoyuumomoyuu
提出日時 2023-11-04 22:39:00
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 1,163 bytes
コンパイル時間 2,720 ms
コンパイル使用メモリ 252,580 KB
実行使用メモリ 16,256 KB
最終ジャッジ日時 2024-09-25 22:20:45
合計ジャッジ時間 5,625 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
5,728 KB
testcase_01 AC 102 ms
5,632 KB
testcase_02 AC 91 ms
5,504 KB
testcase_03 AC 101 ms
5,632 KB
testcase_04 AC 97 ms
5,504 KB
testcase_05 AC 102 ms
5,632 KB
testcase_06 AC 100 ms
5,632 KB
testcase_07 AC 98 ms
5,632 KB
testcase_08 AC 96 ms
5,632 KB
testcase_09 AC 84 ms
5,504 KB
testcase_10 AC 99 ms
5,632 KB
testcase_11 AC 96 ms
5,632 KB
testcase_12 AC 99 ms
15,744 KB
testcase_13 AC 100 ms
15,860 KB
testcase_14 AC 98 ms
15,872 KB
testcase_15 AC 100 ms
15,988 KB
testcase_16 AC 103 ms
16,128 KB
testcase_17 AC 102 ms
16,000 KB
testcase_18 AC 97 ms
15,808 KB
testcase_19 AC 100 ms
16,000 KB
testcase_20 AC 100 ms
16,000 KB
testcase_21 AC 105 ms
16,080 KB
testcase_22 AC 105 ms
16,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


#include<atcoder/modint>
using mint = atcoder::modint998244353;

const int mx = 2<<17;
mint fac[mx+1],ifac[mx+1];
int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    int t;
    cin>>t;
    while(t--){
        int n,m;
        cin>>m>>n;
        vector<vector<mint>> dp(n+1,vector<mint>(3,0));
        dp[0][0] = 1;
        for(int i = 0;i<n;i++){
            dp[i+1][0] += dp[i][0] + dp[i][1] + dp[i][2];
            if(m>3){
                mint tmp = mint(m) * mint(m-1) / mint(2);
                tmp -= m;
                dp[i+1][2] += tmp * dp[i][0];
                tmp = mint(m-1) * mint(m-2) / mint(2);
                tmp -= m - 2;
                dp[i+1][2] += tmp * dp[i][1];
                tmp = mint(m-2) * mint(m-3) / mint(2);
                tmp -= m - 4;
                dp[i+1][2] += tmp * dp[i][2];
            }
            dp[i+1][1] += mint(m) * dp[i][0];
            dp[i+1][1] += mint(m-1) * dp[i][1];
            dp[i+1][1] += mint(m-2) * dp[i][2];
        }
        mint ans = dp[n][0] + dp[n][1] + dp[n][2];
        cout<<ans.val()<<endl;
    }
}
0