結果

問題 No.1545 [Cherry 2nd Tune N] Anthem
ユーザー titiatitia
提出日時 2021-06-11 22:25:53
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 800 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 96,112 KB
最終ジャッジ日時 2024-05-08 18:21:05
合計ジャッジ時間 17,566 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 41 ms
52,864 KB
testcase_03 RE -
testcase_04 AC 117 ms
84,696 KB
testcase_05 AC 398 ms
92,304 KB
testcase_06 AC 228 ms
84,488 KB
testcase_07 AC 225 ms
88,320 KB
testcase_08 RE -
testcase_09 AC 203 ms
83,060 KB
testcase_10 AC 128 ms
90,816 KB
testcase_11 AC 259 ms
85,452 KB
testcase_12 RE -
testcase_13 AC 182 ms
82,812 KB
testcase_14 AC 166 ms
84,608 KB
testcase_15 AC 155 ms
80,000 KB
testcase_16 RE -
testcase_17 AC 153 ms
80,880 KB
testcase_18 AC 396 ms
96,112 KB
testcase_19 AC 256 ms
85,608 KB
testcase_20 RE -
testcase_21 AC 210 ms
90,496 KB
testcase_22 AC 169 ms
94,700 KB
testcase_23 AC 305 ms
87,876 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
testcase_43 RE -
testcase_44 RE -
testcase_45 AC 41 ms
52,480 KB
testcase_46 RE -
testcase_47 RE -
testcase_48 RE -
testcase_49 RE -
testcase_50 RE -
testcase_51 RE -
testcase_52 RE -
testcase_53 RE -
testcase_54 RE -
testcase_55 RE -
testcase_56 RE -
testcase_57 RE -
testcase_58 RE -
testcase_59 RE -
testcase_60 RE -
testcase_61 RE -
testcase_62 RE -
testcase_63 RE -
testcase_64 RE -
testcase_65 RE -
testcase_66 RE -
権限があれば一括ダウンロードができます

ソースコード

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!=-1:
    ANS.append(now)
    now=FR[now]

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