結果

問題 No.2733 Just K-times TSP
ユーザー titiatitia
提出日時 2024-04-20 00:35:40
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,150 bytes
コンパイル時間 618 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 158,212 KB
最終ジャッジ日時 2024-10-11 19:34:52
合計ジャッジ時間 10,536 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
66,688 KB
testcase_01 AC 59 ms
62,336 KB
testcase_02 AC 46 ms
54,016 KB
testcase_03 AC 47 ms
54,016 KB
testcase_04 AC 47 ms
54,144 KB
testcase_05 AC 47 ms
54,144 KB
testcase_06 AC 48 ms
54,400 KB
testcase_07 AC 47 ms
54,400 KB
testcase_08 AC 47 ms
54,272 KB
testcase_09 AC 117 ms
77,312 KB
testcase_10 AC 47 ms
54,400 KB
testcase_11 AC 48 ms
54,272 KB
testcase_12 AC 72 ms
68,480 KB
testcase_13 AC 63 ms
64,768 KB
testcase_14 AC 153 ms
78,592 KB
testcase_15 AC 193 ms
78,048 KB
testcase_16 AC 108 ms
77,172 KB
testcase_17 AC 368 ms
85,220 KB
testcase_18 AC 539 ms
86,928 KB
testcase_19 AC 923 ms
91,096 KB
testcase_20 AC 66 ms
66,944 KB
testcase_21 AC 222 ms
83,340 KB
testcase_22 TLE -
testcase_23 AC 347 ms
84,316 KB
testcase_24 TLE -
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)

def enc(x):
    now=1
    ANS=0
    for i in range(1,len(x)):
        ANS+=now*x[i]
        now*=K+1
    ANS+=now*x[0]
    return ANS

def dec(x):
    X=[]
    for i in range(N):
        X.append(x%(K+1))
        x//=K+1
    X=[x]+X

    return X

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

while Q:
    S,i=heappop(Q)

    X=dec(i)
    #print(X,DP[i])
    kk=X[0]

    for to in E[kk]:
        if X[to+1]+1<=K:
            X[to+1]+=1
            X[0]=to
            #print("!",X)
            DP[enc(X)]=(DP[enc(X)]+DP[i])%mod

            if USE[enc(X)]==0:
                heappush(Q,(S+1,enc(X)))
                USE[enc(X)]=1
            X[to+1]-=1

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

print(ANS%mod)
        

    
0