結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,992 KB
testcase_01 AC 44 ms
52,480 KB
testcase_02 AC 44 ms
52,480 KB
testcase_03 AC 44 ms
52,608 KB
testcase_04 AC 122 ms
84,532 KB
testcase_05 AC 402 ms
91,872 KB
testcase_06 AC 234 ms
83,712 KB
testcase_07 AC 231 ms
88,576 KB
testcase_08 AC 365 ms
87,180 KB
testcase_09 AC 212 ms
82,352 KB
testcase_10 AC 134 ms
90,240 KB
testcase_11 AC 254 ms
85,876 KB
testcase_12 WA -
testcase_13 AC 188 ms
82,816 KB
testcase_14 AC 175 ms
84,736 KB
testcase_15 AC 130 ms
79,872 KB
testcase_16 WA -
testcase_17 AC 179 ms
80,256 KB
testcase_18 AC 405 ms
95,708 KB
testcase_19 AC 275 ms
84,856 KB
testcase_20 AC 173 ms
79,692 KB
testcase_21 AC 231 ms
90,496 KB
testcase_22 AC 182 ms
94,208 KB
testcase_23 AC 303 ms
87,536 KB
testcase_24 AC 94 ms
76,416 KB
testcase_25 AC 73 ms
66,816 KB
testcase_26 AC 53 ms
61,056 KB
testcase_27 AC 61 ms
63,744 KB
testcase_28 AC 81 ms
69,376 KB
testcase_29 AC 78 ms
70,784 KB
testcase_30 AC 72 ms
67,968 KB
testcase_31 AC 76 ms
68,736 KB
testcase_32 AC 59 ms
62,976 KB
testcase_33 AC 76 ms
69,504 KB
testcase_34 AC 73 ms
67,456 KB
testcase_35 AC 94 ms
73,344 KB
testcase_36 AC 83 ms
70,400 KB
testcase_37 AC 61 ms
63,868 KB
testcase_38 AC 75 ms
67,200 KB
testcase_39 AC 61 ms
63,104 KB
testcase_40 AC 71 ms
66,944 KB
testcase_41 AC 58 ms
62,208 KB
testcase_42 WA -
testcase_43 AC 77 ms
70,016 KB
testcase_44 AC 72 ms
70,400 KB
testcase_45 AC 44 ms
52,736 KB
testcase_46 AC 81 ms
72,320 KB
testcase_47 AC 97 ms
80,512 KB
testcase_48 AC 114 ms
87,296 KB
testcase_49 AC 109 ms
82,816 KB
testcase_50 AC 126 ms
86,912 KB
testcase_51 AC 64 ms
63,872 KB
testcase_52 AC 154 ms
86,912 KB
testcase_53 AC 104 ms
83,456 KB
testcase_54 AC 76 ms
68,480 KB
testcase_55 AC 120 ms
85,632 KB
testcase_56 AC 73 ms
71,424 KB
testcase_57 AC 107 ms
80,640 KB
testcase_58 AC 108 ms
82,688 KB
testcase_59 AC 83 ms
72,832 KB
testcase_60 AC 78 ms
73,344 KB
testcase_61 AC 83 ms
71,808 KB
testcase_62 AC 112 ms
80,512 KB
testcase_63 AC 84 ms
72,448 KB
testcase_64 AC 324 ms
101,896 KB
testcase_65 AC 69 ms
65,920 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