結果

問題 No.1545 [Cherry 2nd Tune N] Anthem
ユーザー titiatitia
提出日時 2021-06-11 23:25:08
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,521 bytes
コンパイル時間 482 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 852,564 KB
最終ジャッジ日時 2024-12-15 02:46:24
合計ジャッジ時間 33,066 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
97,104 KB
testcase_01 AC 100 ms
98,484 KB
testcase_02 AC 43 ms
52,992 KB
testcase_03 AC 93 ms
93,604 KB
testcase_04 AC 109 ms
84,660 KB
testcase_05 AC 363 ms
91,232 KB
testcase_06 AC 211 ms
83,932 KB
testcase_07 AC 220 ms
88,548 KB
testcase_08 MLE -
testcase_09 AC 211 ms
82,552 KB
testcase_10 AC 122 ms
90,540 KB
testcase_11 AC 246 ms
85,620 KB
testcase_12 MLE -
testcase_13 AC 187 ms
82,688 KB
testcase_14 AC 159 ms
84,068 KB
testcase_15 AC 119 ms
79,564 KB
testcase_16 MLE -
testcase_17 AC 165 ms
80,304 KB
testcase_18 AC 365 ms
95,904 KB
testcase_19 AC 240 ms
85,220 KB
testcase_20 MLE -
testcase_21 AC 211 ms
90,308 KB
testcase_22 AC 176 ms
94,072 KB
testcase_23 AC 291 ms
87,480 KB
testcase_24 AC 407 ms
297,056 KB
testcase_25 AC 221 ms
179,592 KB
testcase_26 AC 158 ms
138,048 KB
testcase_27 AC 271 ms
222,752 KB
testcase_28 AC 306 ms
251,584 KB
testcase_29 AC 358 ms
268,088 KB
testcase_30 AC 267 ms
220,416 KB
testcase_31 AC 393 ms
296,156 KB
testcase_32 AC 173 ms
143,036 KB
testcase_33 AC 379 ms
274,688 KB
testcase_34 AC 268 ms
220,020 KB
testcase_35 AC 400 ms
284,040 KB
testcase_36 AC 303 ms
241,872 KB
testcase_37 AC 190 ms
154,108 KB
testcase_38 AC 230 ms
182,568 KB
testcase_39 AC 201 ms
163,892 KB
testcase_40 AC 246 ms
191,908 KB
testcase_41 AC 158 ms
132,676 KB
testcase_42 AC 321 ms
261,368 KB
testcase_43 AC 379 ms
281,088 KB
testcase_44 AC 113 ms
94,272 KB
testcase_45 AC 44 ms
52,480 KB
testcase_46 AC 130 ms
100,904 KB
testcase_47 AC 137 ms
101,336 KB
testcase_48 AC 160 ms
108,856 KB
testcase_49 AC 153 ms
103,144 KB
testcase_50 AC 169 ms
107,768 KB
testcase_51 AC 134 ms
108,352 KB
testcase_52 AC 182 ms
108,256 KB
testcase_53 AC 145 ms
102,428 KB
testcase_54 AC 131 ms
105,652 KB
testcase_55 AC 162 ms
105,728 KB
testcase_56 AC 115 ms
94,288 KB
testcase_57 AC 165 ms
108,716 KB
testcase_58 AC 147 ms
101,908 KB
testcase_59 AC 127 ms
102,092 KB
testcase_60 AC 123 ms
100,992 KB
testcase_61 AC 130 ms
102,604 KB
testcase_62 AC 163 ms
105,640 KB
testcase_63 AC 138 ms
105,560 KB
testcase_64 MLE -
testcase_65 AC 1,556 ms
299,212 KB
testcase_66 MLE -
権限があれば一括ダウンロードができます

ソースコード

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(10**5+1)]
FR=[[-1]*(N+1) for i in range(10**5+1)]

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

ANSX=1<<60
Q=[S]
ANSC=-1

for i in range(10**5):
    NQ=[]
    while Q:
        x=Q.pop()
        for to,cost in E[x]:
            if DP[i+1][to]>DP[i][x]+cost+X[to] and DP[i][x]+cost+X[to]<ANSX:
                DP[i+1][to]=DP[i][x]+cost+X[to]
                FR[i+1][to]=x
                NQ.append(to)
                
    Q=list(set(NQ))

    if ANSX>DP[i][T] and i>=K-1:
        ANSX=DP[i][T]
        ANSC=i

if ANSC==-1:
    print("Impossible")
else:
    print("Possible")
    print(ANSX)
    ANS=[T]
    for j in range(ANSC,0,-1):
        ANS.append(FR[j][ANS[-1]])
    print(len(ANS))
    print(*ANS[::-1])
    

            
            
0