結果

問題 No.1545 [Cherry 2nd Tune N] Anthem
ユーザー titiatitia
提出日時 2021-06-11 23:26:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 1,521 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 1,076,096 KB
最終ジャッジ日時 2024-12-15 02:47:35
合計ジャッジ時間 65,381 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 238 ms
38,176 KB
testcase_01 AC 243 ms
34,432 KB
testcase_02 AC 32 ms
11,008 KB
testcase_03 AC 224 ms
28,160 KB
testcase_04 AC 225 ms
26,732 KB
testcase_05 AC 902 ms
47,936 KB
testcase_06 AC 412 ms
28,408 KB
testcase_07 AC 384 ms
33,272 KB
testcase_08 MLE -
testcase_09 AC 437 ms
28,416 KB
testcase_10 AC 267 ms
31,664 KB
testcase_11 AC 494 ms
32,948 KB
testcase_12 MLE -
testcase_13 AC 341 ms
23,680 KB
testcase_14 AC 229 ms
25,108 KB
testcase_15 AC 99 ms
16,256 KB
testcase_16 MLE -
testcase_17 AC 303 ms
22,144 KB
testcase_18 AC 867 ms
53,668 KB
testcase_19 AC 472 ms
31,420 KB
testcase_20 MLE -
testcase_21 AC 386 ms
36,900 KB
testcase_22 AC 367 ms
40,292 KB
testcase_23 AC 678 ms
39,916 KB
testcase_24 AC 1,154 ms
229,120 KB
testcase_25 AC 670 ms
114,560 KB
testcase_26 AC 385 ms
72,064 KB
testcase_27 AC 814 ms
156,544 KB
testcase_28 AC 1,081 ms
185,344 KB
testcase_29 AC 1,093 ms
201,088 KB
testcase_30 AC 828 ms
153,600 KB
testcase_31 AC 1,146 ms
228,736 KB
testcase_32 AC 470 ms
78,720 KB
testcase_33 AC 1,138 ms
206,848 KB
testcase_34 AC 848 ms
153,600 KB
testcase_35 AC 1,419 ms
216,960 KB
testcase_36 AC 1,176 ms
176,000 KB
testcase_37 AC 464 ms
87,808 KB
testcase_38 AC 742 ms
117,120 KB
testcase_39 AC 506 ms
94,976 KB
testcase_40 AC 668 ms
125,440 KB
testcase_41 AC 380 ms
66,176 KB
testcase_42 AC 1,028 ms
194,432 KB
testcase_43 AC 1,153 ms
213,248 KB
testcase_44 AC 244 ms
29,184 KB
testcase_45 AC 31 ms
10,880 KB
testcase_46 AC 410 ms
36,608 KB
testcase_47 AC 536 ms
38,528 KB
testcase_48 AC 532 ms
47,488 KB
testcase_49 AC 744 ms
43,752 KB
testcase_50 AC 1,135 ms
52,660 KB
testcase_51 AC 314 ms
44,032 KB
testcase_52 AC 1,630 ms
52,468 KB
testcase_53 AC 714 ms
40,576 KB
testcase_54 AC 322 ms
41,344 KB
testcase_55 AC 1,110 ms
47,784 KB
testcase_56 AC 256 ms
29,312 KB
testcase_57 AC 968 ms
51,072 KB
testcase_58 AC 668 ms
40,448 KB
testcase_59 AC 356 ms
39,040 KB
testcase_60 AC 287 ms
35,968 KB
testcase_61 AC 474 ms
39,808 KB
testcase_62 AC 879 ms
46,336 KB
testcase_63 AC 516 ms
43,392 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(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