結果

問題 No.2733 Just K-times TSP
ユーザー Today03Today03
提出日時 2024-04-19 23:18:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,346 bytes
コンパイル時間 4,037 ms
コンパイル使用メモリ 228,508 KB
実行使用メモリ 88,448 KB
最終ジャッジ日時 2024-10-11 17:50:56
合計ジャッジ時間 15,838 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 3 ms
5,248 KB
testcase_15 AC 12 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 57 ms
7,936 KB
testcase_18 AC 130 ms
10,880 KB
testcase_19 AC 270 ms
15,232 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 13 ms
5,248 KB
testcase_22 AC 981 ms
49,536 KB
testcase_23 AC 55 ms
7,424 KB
testcase_24 AC 1,576 ms
53,632 KB
testcase_25 AC 1,398 ms
50,176 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 3 ms
5,248 KB
testcase_28 AC 15 ms
5,248 KB
testcase_29 AC 64 ms
6,784 KB
testcase_30 AC 256 ms
14,208 KB
testcase_31 AC 843 ms
31,488 KB
testcase_32 TLE -
testcase_33 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const int INF = 1e9 + 10;
const ll INFL = 4e18;

const int MOD = 998244353;

int N, M, K;
vector<int> G[6];
map<int, int> dp[6];
vector<int> v;

int g(vector<int> &v) {
    int ret = 0;
    int tmp = 1;
    for (int x : v) {
        ret += x * tmp;
        tmp *= K + 1;
    }
    return ret;
}

int cnt = 0;

int F(int now) {
    cnt++;
    if (dp[now].count(g(v))) {
        return dp[now][g(v)];
    }

    bool ok = true;
    for (int i = 0; i < N; i++) {
        if (v[i] != K) {
            ok = false;
        }
    }

    if (ok) {
        return dp[now][g(v)] = 1;
    }

    int ret = 0;
    for (int nxt : G[now]) {
        if (v[nxt] < K) {
            v[nxt]++;
            ret += F(nxt);
            ret %= MOD;
            v[nxt]--;
        }
    }

    return dp[now][g(v)] = ret;
};

int main() {
    cin >> N >> M >> K;

    for (int i = 0; i < M; i++) {
        int u, v;
        cin >> u >> v;
        u--;
        v--;
        G[u].push_back(v);
        G[v].push_back(u);
    }

    v = vector<int>(N, 0);

    int ans = 0;
    for (int i = 0; i < N; i++) {
        v[i]++;
        ans += F(i);
        ans %= MOD;
        v[i]--;
    }

    cout << ans << endl;
}
0