結果

問題 No.2733 Just K-times TSP
ユーザー titiatitia
提出日時 2024-04-19 23:28:38
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 861 bytes
コンパイル時間 418 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 241,140 KB
最終ジャッジ日時 2024-10-11 18:08:17
合計ジャッジ時間 7,579 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
65,024 KB
testcase_01 AC 62 ms
63,232 KB
testcase_02 AC 48 ms
54,144 KB
testcase_03 AC 48 ms
54,016 KB
testcase_04 AC 47 ms
54,144 KB
testcase_05 AC 47 ms
53,888 KB
testcase_06 AC 47 ms
54,272 KB
testcase_07 AC 47 ms
54,016 KB
testcase_08 AC 47 ms
54,144 KB
testcase_09 AC 125 ms
76,928 KB
testcase_10 AC 46 ms
53,888 KB
testcase_11 AC 47 ms
54,016 KB
testcase_12 AC 68 ms
66,688 KB
testcase_13 AC 63 ms
64,384 KB
testcase_14 AC 188 ms
78,528 KB
testcase_15 AC 454 ms
94,252 KB
testcase_16 AC 117 ms
77,916 KB
testcase_17 AC 1,481 ms
171,424 KB
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from heapq import heappop,heappush
from collections import Counter
mod=998244353

N,M,K=map(int,input().split())
E=[[] for i in range(N)]

for i in range(M):
    u,v=map(int,input().split())
    u-=1
    v-=1
    E[u].append(v)
    E[v].append(u)

Q=[]
DP=Counter()
for i in range(N):
    x=[i]+[0]*N
    x[i+1]+=1
    DP[tuple(x)]=1
    Q.append((1,tuple(x)))

#print(DP)
USE=set()
while Q:
    #print(DP)
    SUM,L=heappop(Q)
    if L in USE:
        continue
    USE.add(L)
    #print(SUM,L)
    L2=list(L[1:])

    for to in E[L[0]]:
        if L2[to]+1<=K:
            L2[to]+=1
            DP[tuple([to]+L2)]+=DP[L]
            DP[tuple([to]+L2)]%=mod
            heappush(Q,(SUM+1,tuple([to]+L2)))
            L2[to]-=1

ANS=0
for i in range(N):
    x=[i]+[K]*N
    ANS+=DP[tuple(x)]

print(ANS%mod)
        

    
0