結果

問題 No.2733 Just K-times TSP
ユーザー Iroha_3856Iroha_3856
提出日時 2024-09-21 19:03:49
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 657 ms / 2,000 ms
コード長 2,197 bytes
コンパイル時間 5,522 ms
コンパイル使用メモリ 259,504 KB
実行使用メモリ 32,224 KB
最終ジャッジ日時 2024-09-21 19:03:59
合計ジャッジ時間 6,871 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 3 ms
6,944 KB
testcase_14 AC 5 ms
6,940 KB
testcase_15 AC 6 ms
6,944 KB
testcase_16 AC 3 ms
6,944 KB
testcase_17 AC 36 ms
6,944 KB
testcase_18 AC 42 ms
6,940 KB
testcase_19 AC 51 ms
6,940 KB
testcase_20 AC 10 ms
6,940 KB
testcase_21 AC 28 ms
6,944 KB
testcase_22 AC 338 ms
32,148 KB
testcase_23 AC 37 ms
6,944 KB
testcase_24 AC 284 ms
17,572 KB
testcase_25 AC 236 ms
17,552 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 3 ms
6,940 KB
testcase_28 AC 6 ms
6,940 KB
testcase_29 AC 19 ms
6,940 KB
testcase_30 AC 54 ms
6,944 KB
testcase_31 AC 133 ms
9,480 KB
testcase_32 AC 296 ms
17,536 KB
testcase_33 AC 657 ms
32,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/modint>
using mint = atcoder::modint998244353;

#define rep(i, l, r) for (int i = (int)(l); i<(int)(r); i++)
#define ll long long

//vector<T>であらわされるn進数を10進数に変換する
template<class T>
T change_base_to_ten(const vector<T>& A, T n) {
    T ret = 0;
    T mul = 1;
    for (int i = (int)A.size()-1; i >= 0; i--) {
        ret += mul * A[i];
        mul *= n;
    }
    return ret;
}

//10進数でxのものをn進数に変換する
template<class T>
vector<T> change_base_from_ten(T x, T n, int siz) {
    vector<T> ret;
    while(x != 0) {
        ret.push_back(x%n);
        x /= n;
    }
    while((int)ret.size() < siz) ret.push_back(0);
    reverse(ret.begin(), ret.end());
    return ret;
}

//n進法の桁のvectorであるSをm進法に変換する
template<class T>
vector<T> change_base(const vector<T>& S, T n, T m) {
    T ten = change_base_to_ten(S, n);
    return change_base_from_ten(ten, m);
} 

int pow(int x, int k) {
    int ret = 1;
    rep(_, 0, k) ret *= x;
    return ret;
}

int main() {
    int N, M, K; cin >> N >> M >> K;
    vector<vector<int>> G(N);
    rep(i, 0, M) {
        int u, v; cin >> u >> v;
        u--; v--;
        G[u].push_back(v);
        G[v].push_back(u);
    }
    vector<vector<mint>> dp(pow(K+1, N), vector<mint>(N));
    rep(i, 0, N) {
        vector<int> T(N, 0);
        T[i]++;
        // cout << change_base_to_ten(T, K+1) << endl;
        dp[change_base_to_ten(T, K+1)][i] = 1;
    }
    rep(S, 0, pow(K+1, N)) {
        // cout << "S = " << S << endl;
        vector<int> T = change_base_from_ten(S, K+1, N);
        // cout << "T = " << endl;
        // for (auto v : T) cout << v << " ";
        // cout << endl;
        rep(i, 0, N) {
            // cout << "i = " << i << endl;
            for (int to : G[i]) {
                // cout << "to = " << to << endl;
                if (T[to] >= K) continue;
                auto nT = T;
                nT[to]++;
                dp[change_base_to_ten(nT, K+1)][to] += dp[S][i];
            }
        }
    }
    mint ans = 0;
    rep(i, 0, N) ans += dp.back()[i];
    cout << ans.val() << endl;
}
0