結果

問題 No.2733 Just K-times TSP
ユーザー detteiuudetteiuu
提出日時 2024-04-24 21:19:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 877 ms / 2,000 ms
コード長 532 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 140,928 KB
最終ジャッジ日時 2024-11-07 06:25:38
合計ジャッジ時間 5,718 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,352 KB
testcase_01 AC 45 ms
52,480 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 42 ms
51,712 KB
testcase_04 AC 41 ms
51,712 KB
testcase_05 AC 41 ms
52,096 KB
testcase_06 AC 42 ms
52,096 KB
testcase_07 AC 41 ms
52,096 KB
testcase_08 AC 41 ms
52,096 KB
testcase_09 AC 56 ms
61,568 KB
testcase_10 AC 41 ms
51,968 KB
testcase_11 AC 41 ms
52,096 KB
testcase_12 AC 57 ms
62,592 KB
testcase_13 AC 43 ms
52,480 KB
testcase_14 AC 63 ms
65,152 KB
testcase_15 AC 64 ms
65,408 KB
testcase_16 AC 59 ms
63,488 KB
testcase_17 AC 87 ms
75,264 KB
testcase_18 AC 111 ms
83,200 KB
testcase_19 AC 131 ms
83,200 KB
testcase_20 AC 54 ms
62,336 KB
testcase_21 AC 75 ms
72,320 KB
testcase_22 AC 323 ms
140,800 KB
testcase_23 AC 97 ms
81,920 KB
testcase_24 AC 345 ms
108,544 KB
testcase_25 AC 311 ms
108,672 KB
testcase_26 AC 42 ms
52,480 KB
testcase_27 AC 61 ms
64,000 KB
testcase_28 AC 79 ms
69,248 KB
testcase_29 AC 94 ms
71,552 KB
testcase_30 AC 155 ms
82,304 KB
testcase_31 AC 268 ms
91,776 KB
testcase_32 AC 466 ms
108,672 KB
testcase_33 AC 877 ms
140,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, K = map(int, input().split())
G = [[] for _ in range(N)]
for _ in range(M):
    u, v = map(int, input().split())
    G[u-1].append(v-1)
    G[v-1].append(u-1)

MOD = 998244353
dp = [[0]*N for _ in range((K+1)**N)]
for i in range(N):
    dp[(K+1)**i][i] = 1

for i in range((K+1)**N):
    for j in range(N):
        if dp[i][j] >= 1:
            for v in G[j]:
                if i//((K+1)**v)%(K+1) < K:
                    dp[i+((K+1)**v)][v] += dp[i][j]
                    dp[i+((K+1)**v)][v] %= MOD

print(sum(dp[-1])%MOD)
0