結果

問題 No.2951 Similar to Mex
ユーザー ぷらぷら
提出日時 2024-10-25 21:40:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 4,999 bytes
コンパイル時間 1,438 ms
コンパイル使用メモリ 139,064 KB
実行使用メモリ 8,904 KB
最終ジャッジ日時 2024-10-25 21:40:27
合計ジャッジ時間 4,714 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
8,004 KB
testcase_01 AC 6 ms
8,640 KB
testcase_02 AC 5 ms
8,260 KB
testcase_03 AC 5 ms
8,256 KB
testcase_04 AC 6 ms
8,260 KB
testcase_05 AC 6 ms
8,260 KB
testcase_06 AC 5 ms
8,640 KB
testcase_07 AC 5 ms
8,260 KB
testcase_08 AC 6 ms
8,264 KB
testcase_09 AC 6 ms
8,256 KB
testcase_10 AC 7 ms
8,132 KB
testcase_11 AC 31 ms
8,388 KB
testcase_12 AC 7 ms
8,516 KB
testcase_13 AC 7 ms
8,904 KB
testcase_14 AC 50 ms
8,648 KB
testcase_15 AC 63 ms
8,772 KB
testcase_16 AC 34 ms
8,644 KB
testcase_17 AC 33 ms
8,772 KB
testcase_18 AC 52 ms
8,768 KB
testcase_19 AC 33 ms
8,516 KB
testcase_20 AC 50 ms
8,520 KB
testcase_21 AC 65 ms
8,648 KB
testcase_22 AC 50 ms
8,644 KB
testcase_23 AC 99 ms
8,772 KB
testcase_24 AC 83 ms
8,644 KB
testcase_25 AC 95 ms
8,776 KB
testcase_26 AC 79 ms
8,648 KB
testcase_27 AC 116 ms
8,768 KB
testcase_28 AC 110 ms
8,900 KB
testcase_29 AC 114 ms
8,768 KB
testcase_30 AC 113 ms
8,772 KB
testcase_31 AC 109 ms
8,900 KB
testcase_32 AC 110 ms
8,772 KB
testcase_33 AC 109 ms
8,768 KB
testcase_34 AC 113 ms
8,896 KB
testcase_35 AC 113 ms
8,904 KB
testcase_36 AC 6 ms
8,004 KB
testcase_37 AC 6 ms
8,004 KB
testcase_38 AC 5 ms
8,004 KB
testcase_39 AC 6 ms
8,512 KB
testcase_40 AC 25 ms
8,516 KB
testcase_41 AC 6 ms
8,004 KB
testcase_42 AC 26 ms
8,904 KB
testcase_43 AC 6 ms
8,388 KB
testcase_44 AC 114 ms
8,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <string.h>
#include <algorithm>
#include <array>
#include <bitset>
#include <cassert>
#include <cfloat>
#include <climits>
#include <cmath>
#include <complex>
#include <ctime>
#include <deque>
#include <fstream>
#include <functional>
#include <iomanip>
#include <iostream>
#include <iterator>
#include <list>
#include <map>
#include <memory>
#include <queue>
#include <random>
#include <set>
#include <stack>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <utility>
#include <vector>
using namespace std;

using ll = long long;
using pii = pair<int,int>;
using pll = pair<ll,ll>;
template <typename T> using vc = vector<T>;
template <typename T> using vvc = vector<vector<T>>;
template <typename T> using vvvc = vector<vector<vector<T>>>;
template<class T> using pq = priority_queue<T,vector<T>,greater<T>>;
template <class T, class S> inline bool chmax(T &a, const S &b) { return (a < b ? a = b, 1 : 0); }
template <class T, class S> inline bool chmin(T &a, const S &b) { return (a > b ? a = b, 1 : 0); }

int dx4[] = {1,0,-1,0};
int dy4[] = {0,1,0,-1};

#define overload5(a, b, c, d, e, name, ...) name
#define overload4(a, b, c, d, name, ...) name
#define REP0(n) for(ll jidlsjf = 0; jidlsjf < n; ++jidlsjf)
#define REP1(i, n) for(ll i = 0; i < (n); ++i)
#define REP2(i, a, b) for(ll i = (a); i < (b); ++i)
#define REP3(i, a, b, c) for(ll i = (a); i < (b); i += (c))
#define rep(...) overload4(__VA_ARGS__, REP3, REP2, REP1, REP0)(__VA_ARGS__)
#define per0(n) for(int jidlsjf = 0; jidlsjf < (n); ++jidlsjf)
#define per1(i, n) for(ll i = (n)-1; i >= 0; --i)
#define per2(i, a, b) for(ll i = (a)-1; i >= b; --i)
#define per3(i, a, b, c) for(ll i = (a)-1; i >= (b); i -= (c))
#define per(...) overload4(__VA_ARGS__, per3, per2, per1, per0)(__VA_ARGS__)
#define setbits(j, n) for(ll iiiii = (n), j = lowbit(iiiii); iiiii; iiiii ^= 1 << j, j = lowbit(iiiii))
#define perm(v) for(bool permrepflag = true; (permrepflag ? exchange(permrepflag, false) : next_permutation(all(v)));)
#define fi first
#define se second
#define pb push_back
#define ppb pop_back
#define ppf pop_front
#define drop(s) cout << #s << endl, exit(0)
#define si(c) (int)(c).size()
#define lb(c, x) distance((c).begin(), lower_bound(all(c), (x)))
#define lbg(c, x) distance((c).begin(), lower_bound(all(c), (x), greater{}))
#define ub(c, x) distance((c).begin(), upper_bound(all(c), (x)))
#define ubg(c, x) distance((c).begin(), upper_bound(all(c), (x), greater{}))
#define rng(v, l, r) v.begin() + (l), v.begin() + (r)
#define all(c) c.begin(), c.end()
#define rall(c) c.rbegin(), c.rend()
#define SORT(v) sort(all(v))
#define REV(v) reverse(all(v))
#define UNIQUE(x) SORT(x), x.erase(unique(all(x)), x.end())
#define MIN(v) *min_element(all(v))
#define MAX(v) *max_element(all(v))
#define overload2(_1, _2, name, ...) name
#define vec(type, name, ...) vector<type> name(__VA_ARGS__)
#define vv(type, name, h, ...) vector<vector<type>> name(h, vector<type>(__VA_ARGS__))
#define vvv(type, name, h, w, ...) vector<vector<vector<type>>> name(h, vector<vector<type>>(w, vector<type>(__VA_ARGS__)))

constexpr int mod = 998244353;

void mpl(int &x,int y) {
    x += y;
    if(x >= mod) x -= mod;
}

long long modpow(long long a,long long b) {
    long long ans = 1;
    while(b) {
        if(b & 1) {
            (ans *= a) %= mod;
        }
        (a *= a) %= mod;
        b /= 2;
    }
    return ans;
}

long long fac[200005], finv[200005], inv[200005];

void COMinit() {
    fac[0] = fac[1] = finv[0] = finv[1] = inv[1] = 1;
    for (int i = 2; i < 200005; 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;
}

// n のボールを横一列に並んだ k の箱に入れる
long long choose(int n,int k) {
    if(n < 0 || k < 0) return 0;
    if(n == 0) return 1;
    return COM(n+k-1,k-1);
}

int dp[330][330];

int dp2[330][330];

int main() {
    COMinit();
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int n,m,K;
    cin >> n >> m >> K;
    dp[m+1][0] = 1;
    per(i,m+1) {
        rep(j,i+1,m+2) {
            rep(k,m+1) {
                if(!dp[j][k]) continue;
                int now = dp[j][k];
                int n2 = k+j-i-1;
                int tmp = 0;
                if(K >= i+1) {
                    tmp = min(j,(ll)K)-i;
                }
                mpl(dp[i][n2],now*modpow(j,tmp)%mod);
            }
        }
    }
    int sum = 1;
    while(K > m+1) {
        sum = 1ll*sum*K%mod;
        K--;
    }
    int ans = 0;
    dp2[0][0] = 1;
    rep(i,n) {
        rep(j,m+1) {
            mpl(dp2[i+1][j+1],dp2[i][j]);
            mpl(dp2[i+1][j],1ll*dp2[i][j]*j%mod);
        }
    }
    rep(i,1,m+1) {
        mpl(ans,1ll*dp[0][i]*dp2[n][i]%mod*fac[i]%mod);
    }
    cout << 1ll*ans*sum%mod << "\n";
}
0