結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,864 KB
testcase_01 AC 41 ms
53,120 KB
testcase_02 AC 42 ms
52,992 KB
testcase_03 AC 39 ms
52,864 KB
testcase_04 AC 109 ms
85,160 KB
testcase_05 AC 350 ms
91,896 KB
testcase_06 AC 204 ms
84,096 KB
testcase_07 AC 215 ms
88,576 KB
testcase_08 AC 381 ms
90,628 KB
testcase_09 AC 194 ms
82,688 KB
testcase_10 AC 122 ms
90,496 KB
testcase_11 AC 282 ms
85,972 KB
testcase_12 AC 549 ms
101,844 KB
testcase_13 AC 170 ms
82,688 KB
testcase_14 AC 162 ms
84,480 KB
testcase_15 AC 118 ms
79,872 KB
testcase_16 AC 342 ms
99,080 KB
testcase_17 AC 154 ms
80,768 KB
testcase_18 AC 362 ms
96,160 KB
testcase_19 AC 241 ms
85,120 KB
testcase_20 WA -
testcase_21 AC 198 ms
90,708 KB
testcase_22 AC 170 ms
94,336 KB
testcase_23 AC 274 ms
87,636 KB
testcase_24 AC 90 ms
76,800 KB
testcase_25 AC 71 ms
68,352 KB
testcase_26 AC 50 ms
61,312 KB
testcase_27 AC 61 ms
64,384 KB
testcase_28 WA -
testcase_29 AC 81 ms
73,216 KB
testcase_30 AC 73 ms
69,504 KB
testcase_31 WA -
testcase_32 AC 58 ms
63,872 KB
testcase_33 WA -
testcase_34 AC 73 ms
69,248 KB
testcase_35 AC 91 ms
74,496 KB
testcase_36 AC 86 ms
72,704 KB
testcase_37 AC 58 ms
63,872 KB
testcase_38 WA -
testcase_39 AC 57 ms
63,616 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 73 ms
70,144 KB
testcase_43 WA -
testcase_44 AC 66 ms
71,040 KB
testcase_45 AC 41 ms
52,736 KB
testcase_46 AC 76 ms
72,704 KB
testcase_47 AC 87 ms
78,592 KB
testcase_48 AC 103 ms
87,040 KB
testcase_49 WA -
testcase_50 AC 114 ms
87,552 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 92 ms
80,896 KB
testcase_54 WA -
testcase_55 AC 112 ms
85,888 KB
testcase_56 AC 70 ms
71,680 KB
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 AC 74 ms
73,984 KB
testcase_61 AC 73 ms
72,192 KB
testcase_62 WA -
testcase_63 WA -
testcase_64 AC 407 ms
105,924 KB
testcase_65 AC 74 ms
68,608 KB
testcase_66 AC 352 ms
117,672 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