結果

問題 No.1545 [Cherry 2nd Tune N] Anthem
ユーザー titiatitia
提出日時 2021-06-11 22:10:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,399 bytes
コンパイル時間 718 ms
コンパイル使用メモリ 82,704 KB
実行使用メモリ 107,328 KB
最終ジャッジ日時 2024-05-08 18:01:12
合計ジャッジ時間 16,731 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,408 KB
testcase_01 AC 41 ms
53,676 KB
testcase_02 AC 41 ms
53,704 KB
testcase_03 AC 41 ms
53,292 KB
testcase_04 AC 111 ms
84,732 KB
testcase_05 AC 375 ms
92,336 KB
testcase_06 AC 221 ms
84,112 KB
testcase_07 AC 223 ms
88,572 KB
testcase_08 AC 357 ms
87,696 KB
testcase_09 AC 197 ms
82,672 KB
testcase_10 AC 123 ms
90,864 KB
testcase_11 AC 259 ms
86,140 KB
testcase_12 WA -
testcase_13 AC 181 ms
82,736 KB
testcase_14 AC 161 ms
84,588 KB
testcase_15 AC 114 ms
79,788 KB
testcase_16 WA -
testcase_17 AC 148 ms
80,724 KB
testcase_18 AC 385 ms
95,792 KB
testcase_19 AC 253 ms
85,316 KB
testcase_20 AC 154 ms
79,712 KB
testcase_21 AC 210 ms
90,736 KB
testcase_22 AC 172 ms
94,724 KB
testcase_23 AC 292 ms
88,048 KB
testcase_24 AC 81 ms
76,896 KB
testcase_25 AC 63 ms
67,440 KB
testcase_26 AC 48 ms
61,804 KB
testcase_27 AC 57 ms
65,416 KB
testcase_28 AC 70 ms
71,652 KB
testcase_29 AC 66 ms
72,620 KB
testcase_30 AC 63 ms
68,772 KB
testcase_31 AC 65 ms
69,288 KB
testcase_32 AC 55 ms
64,576 KB
testcase_33 AC 68 ms
71,296 KB
testcase_34 AC 63 ms
68,568 KB
testcase_35 AC 80 ms
73,044 KB
testcase_36 AC 71 ms
71,856 KB
testcase_37 AC 54 ms
64,304 KB
testcase_38 AC 63 ms
67,912 KB
testcase_39 AC 54 ms
64,068 KB
testcase_40 AC 62 ms
68,488 KB
testcase_41 AC 52 ms
62,916 KB
testcase_42 WA -
testcase_43 AC 66 ms
71,224 KB
testcase_44 AC 62 ms
72,416 KB
testcase_45 AC 41 ms
54,660 KB
testcase_46 AC 69 ms
73,708 KB
testcase_47 AC 84 ms
80,556 KB
testcase_48 AC 99 ms
87,556 KB
testcase_49 AC 94 ms
82,676 KB
testcase_50 AC 110 ms
87,400 KB
testcase_51 AC 56 ms
66,336 KB
testcase_52 AC 137 ms
87,140 KB
testcase_53 AC 90 ms
83,636 KB
testcase_54 AC 65 ms
69,032 KB
testcase_55 AC 107 ms
86,072 KB
testcase_56 AC 61 ms
73,124 KB
testcase_57 AC 90 ms
80,964 KB
testcase_58 AC 94 ms
83,060 KB
testcase_59 AC 70 ms
74,256 KB
testcase_60 AC 67 ms
74,056 KB
testcase_61 AC 69 ms
72,020 KB
testcase_62 AC 101 ms
80,996 KB
testcase_63 AC 73 ms
73,608 KB
testcase_64 AC 308 ms
102,256 KB
testcase_65 AC 61 ms
66,360 KB
testcase_66 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
import heapq

N,S,T,K=map(int,input().split())
X=[0]+list(map(int,input().split()))
M=int(input())

E=[[] for i in range(N+1)]
for i in range(M):
    a,b,y=map(int,input().split())
    E[a].append((b,y))

DP=[1<<60]*(N+1)
FR=[-1]*(N+1)

DP[S]=X[S]
Q=[(X[S],S)]

while Q:
    time,ind=heapq.heappop(Q)
    if time>DP[ind]:
        continue

    for to,cost in E[ind]:
        if DP[to]>DP[ind]+X[to]+cost:
            DP[to]=DP[ind]+X[to]+cost
            FR[to]=ind
            heapq.heappush(Q,(DP[to],to))

if DP[T]==1<<60:
    print("Impossible")
    exit()

ANS=[]
now=T
while now!=S:
    ANS.append(now)
    now=FR[now]
ANS.append(S)

if len(ANS)>=K:
    print("Possible")
    print(DP[T])
    print(len(ANS))
    print(*ANS[::-1])
    exit()



DP=[[1<<60]*(N+1) for i in range(K)]
FR=[[-1]*(N+1) for i in range(K)]

DP[0][S]=X[S]

for i in range(K-1):
    for j in range(1,N+1):
        if DP[i][j]==1<<60:
            continue

        for to,cost in E[j]:
            if DP[i+1][to]>DP[i][j]+cost+X[to]:
                DP[i+1][to]=DP[i][j]+cost+X[to]
                FR[i+1][to]=j

if DP[K-1][T]!=1<<60:
    print("Possible")
    print(DP[K-1][T])
    ANS=[T]
    for j in range(K-1,0,-1):
        ANS.append(FR[j][ANS[-1]])
    print(len(ANS))
    print(*ANS[::-1])
    exit()
    
    
    

else:
    print("Impossible")

            
            
0