結果

問題 No.1545 [Cherry 2nd Tune N] Anthem
ユーザー titiatitia
提出日時 2021-06-11 23:23:34
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,527 bytes
コンパイル時間 635 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 850,832 KB
最終ジャッジ日時 2024-12-15 02:44:43
合計ジャッジ時間 43,391 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
118,400 KB
testcase_01 AC 136 ms
121,344 KB
testcase_02 AC 42 ms
52,736 KB
testcase_03 AC 127 ms
111,872 KB
testcase_04 AC 107 ms
84,992 KB
testcase_05 AC 396 ms
91,748 KB
testcase_06 AC 223 ms
83,968 KB
testcase_07 AC 229 ms
88,576 KB
testcase_08 MLE -
testcase_09 AC 198 ms
82,040 KB
testcase_10 AC 123 ms
90,460 KB
testcase_11 AC 250 ms
85,616 KB
testcase_12 MLE -
testcase_13 AC 181 ms
82,376 KB
testcase_14 AC 165 ms
84,216 KB
testcase_15 AC 121 ms
79,228 KB
testcase_16 MLE -
testcase_17 AC 163 ms
80,292 KB
testcase_18 AC 387 ms
95,280 KB
testcase_19 AC 258 ms
84,992 KB
testcase_20 MLE -
testcase_21 AC 220 ms
89,920 KB
testcase_22 AC 172 ms
94,392 KB
testcase_23 AC 293 ms
87,612 KB
testcase_24 MLE -
testcase_25 AC 410 ms
284,696 KB
testcase_26 AC 234 ms
198,708 KB
testcase_27 AC 556 ms
371,840 KB
testcase_28 AC 629 ms
428,712 KB
testcase_29 AC 720 ms
459,700 KB
testcase_30 AC 562 ms
366,228 KB
testcase_31 MLE -
testcase_32 AC 263 ms
209,808 KB
testcase_33 AC 746 ms
472,532 KB
testcase_34 AC 567 ms
366,012 KB
testcase_35 AC 769 ms
491,356 KB
testcase_36 AC 620 ms
409,268 KB
testcase_37 AC 290 ms
232,384 KB
testcase_38 AC 435 ms
290,816 KB
testcase_39 AC 305 ms
251,076 KB
testcase_40 AC 455 ms
309,980 KB
testcase_41 AC 241 ms
188,476 KB
testcase_42 AC 664 ms
447,244 KB
testcase_43 AC 765 ms
484,696 KB
testcase_44 AC 145 ms
112,900 KB
testcase_45 AC 40 ms
52,624 KB
testcase_46 AC 164 ms
124,648 KB
testcase_47 AC 171 ms
124,900 KB
testcase_48 AC 211 ms
139,424 KB
testcase_49 AC 189 ms
129,052 KB
testcase_50 AC 209 ms
136,376 KB
testcase_51 AC 181 ms
140,296 KB
testcase_52 AC 222 ms
136,756 KB
testcase_53 AC 180 ms
126,592 KB
testcase_54 AC 175 ms
134,148 KB
testcase_55 AC 201 ms
132,772 KB
testcase_56 AC 143 ms
112,844 KB
testcase_57 AC 212 ms
140,684 KB
testcase_58 AC 183 ms
126,644 KB
testcase_59 AC 165 ms
127,896 KB
testcase_60 AC 162 ms
124,548 KB
testcase_61 AC 173 ms
127,680 KB
testcase_62 AC 205 ms
134,432 KB
testcase_63 AC 181 ms
134,360 KB
testcase_64 MLE -
testcase_65 TLE -
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(2*10**5+1)]
FR=[[-1]*(N+1) for i in range(2*10**5+1)]

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

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

for i in range(2*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