結果

問題 No.1545 [Cherry 2nd Tune N] Anthem
ユーザー titiatitia
提出日時 2021-06-11 23:34:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,833 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 117,664 KB
最終ジャッジ日時 2024-12-15 03:10:22
合計ジャッジ時間 15,654 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,944 KB
testcase_01 AC 34 ms
53,000 KB
testcase_02 AC 33 ms
53,348 KB
testcase_03 AC 36 ms
54,104 KB
testcase_04 AC 88 ms
84,952 KB
testcase_05 AC 325 ms
91,776 KB
testcase_06 AC 186 ms
84,048 KB
testcase_07 AC 181 ms
88,836 KB
testcase_08 AC 354 ms
90,920 KB
testcase_09 AC 163 ms
82,552 KB
testcase_10 AC 112 ms
90,456 KB
testcase_11 AC 199 ms
85,852 KB
testcase_12 AC 505 ms
101,708 KB
testcase_13 AC 157 ms
83,036 KB
testcase_14 AC 137 ms
84,792 KB
testcase_15 AC 103 ms
79,668 KB
testcase_16 AC 316 ms
99,148 KB
testcase_17 AC 127 ms
80,948 KB
testcase_18 AC 323 ms
96,000 KB
testcase_19 AC 199 ms
85,020 KB
testcase_20 WA -
testcase_21 AC 187 ms
90,540 KB
testcase_22 AC 138 ms
94,308 KB
testcase_23 AC 226 ms
87,888 KB
testcase_24 AC 68 ms
76,532 KB
testcase_25 AC 53 ms
68,832 KB
testcase_26 AC 43 ms
61,332 KB
testcase_27 AC 47 ms
65,760 KB
testcase_28 WA -
testcase_29 AC 61 ms
74,056 KB
testcase_30 AC 54 ms
70,236 KB
testcase_31 WA -
testcase_32 AC 49 ms
64,796 KB
testcase_33 WA -
testcase_34 AC 58 ms
69,396 KB
testcase_35 AC 73 ms
74,536 KB
testcase_36 AC 67 ms
72,792 KB
testcase_37 AC 49 ms
65,044 KB
testcase_38 WA -
testcase_39 AC 47 ms
64,004 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 57 ms
70,320 KB
testcase_43 WA -
testcase_44 AC 54 ms
71,712 KB
testcase_45 AC 35 ms
52,968 KB
testcase_46 AC 58 ms
73,124 KB
testcase_47 AC 68 ms
78,628 KB
testcase_48 AC 83 ms
87,388 KB
testcase_49 WA -
testcase_50 AC 93 ms
87,428 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 81 ms
80,692 KB
testcase_54 WA -
testcase_55 AC 97 ms
85,736 KB
testcase_56 AC 55 ms
72,628 KB
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 AC 56 ms
75,132 KB
testcase_61 AC 59 ms
73,580 KB
testcase_62 WA -
testcase_63 WA -
testcase_64 AC 355 ms
105,900 KB
testcase_65 AC 59 ms
70,696 KB
testcase_66 AC 321 ms
117,664 KB
権限があれば一括ダウンロードができます

ソースコード

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()



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

ANSX=DP[K-1][T]

DP=DP[K-1]
FR2=[-1]*(N+1)

Q=[]

for i in range(N+1):
    Q.append((DP[i],i))

heapq.heapify(Q)

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
            FR2[to]=ind
            heapq.heappush(Q,(DP[to],to))

if DP[T]==1<<60:
    print("Impossible")
    exit()
else:
    print("Possible")
    print(DP[T])
    ANS=[T]
    now=T
    while now!=-1 and DP[FR2[now]]<DP[now]:
        now=FR2[now]
        ANS.append(now)

    for j in range(K-1,0,-1):
        ANS.append(FR[j][ANS[-1]])

    print(len(ANS))
    print(*ANS[::-1])
    
    

            
            
0