結果

問題 No.2733 Just K-times TSP
ユーザー hato336hato336
提出日時 2024-04-19 21:56:14
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 825 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 851,108 KB
最終ジャッジ日時 2024-10-11 14:57:54
合計ジャッジ時間 9,569 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
65,024 KB
testcase_01 AC 63 ms
65,664 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 41 ms
52,224 KB
testcase_05 AC 40 ms
51,584 KB
testcase_06 AC 59 ms
64,384 KB
testcase_07 AC 40 ms
51,968 KB
testcase_08 AC 41 ms
52,736 KB
testcase_09 AC 70 ms
70,528 KB
testcase_10 AC 56 ms
62,464 KB
testcase_11 AC 60 ms
63,104 KB
testcase_12 AC 80 ms
73,472 KB
testcase_13 AC 65 ms
66,048 KB
testcase_14 AC 139 ms
82,560 KB
testcase_15 AC 149 ms
82,432 KB
testcase_16 AC 94 ms
78,592 KB
testcase_17 AC 1,159 ms
168,960 KB
testcase_18 AC 1,228 ms
168,576 KB
testcase_19 AC 1,420 ms
168,576 KB
testcase_20 AC 249 ms
93,440 KB
testcase_21 AC 735 ms
141,568 KB
testcase_22 MLE -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,k = map(int,input().split())
edge = [[] for i in range(n)]
for i in range(m):
    u,v = map(int,input().split())
    u-=1
    v-=1
    edge[u].append(v)
    edge[v].append(u)
mod = 998244353
x = (k+1)**n
dp = [[[0 for j in range((k+1)**n)] for erf in range(n)] for erg3rg in range(n*k)]
kk = [(k+1)**i for i in range(n)]
for i in range(n):
    dp[0][i][(k+1)**i] = 1
for i in range(n*k-1):
    for y in range(x):
        yy = y
        temp = []
        for wfw in range(n):
            temp.append(yy%(k+1))
            yy //= k+1
        for f in range(n):
            for to in edge[f]:
                if temp[to] >= k:
                    continue
                dp[i+1][to][y + kk[to]] += dp[i][f][y]
                dp[i+1][to][y + kk[to]] %= mod
ans = 0
for i in range(n):
    ans += dp[-1][i][-1]
print(ans%mod)
0