結果

問題 No.1545 [Cherry 2nd Tune N] Anthem
ユーザー 👑 KazunKazun
提出日時 2021-04-03 19:57:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,053 ms / 3,000 ms
コード長 1,375 bytes
コンパイル時間 507 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 180,548 KB
最終ジャッジ日時 2024-05-08 14:44:52
合計ジャッジ時間 24,226 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,736 KB
testcase_01 AC 41 ms
53,248 KB
testcase_02 AC 41 ms
52,608 KB
testcase_03 AC 41 ms
53,120 KB
testcase_04 AC 149 ms
95,868 KB
testcase_05 AC 419 ms
114,144 KB
testcase_06 AC 294 ms
96,460 KB
testcase_07 AC 362 ms
107,208 KB
testcase_08 AC 654 ms
110,740 KB
testcase_09 AC 292 ms
87,212 KB
testcase_10 AC 174 ms
99,796 KB
testcase_11 AC 221 ms
97,664 KB
testcase_12 AC 264 ms
105,608 KB
testcase_13 AC 131 ms
88,272 KB
testcase_14 AC 132 ms
91,468 KB
testcase_15 AC 81 ms
79,248 KB
testcase_16 AC 156 ms
97,800 KB
testcase_17 AC 193 ms
82,560 KB
testcase_18 AC 280 ms
109,448 KB
testcase_19 AC 269 ms
96,464 KB
testcase_20 AC 327 ms
86,004 KB
testcase_21 AC 211 ms
110,152 KB
testcase_22 AC 226 ms
111,928 KB
testcase_23 AC 321 ms
92,836 KB
testcase_24 AC 139 ms
78,648 KB
testcase_25 AC 163 ms
77,960 KB
testcase_26 AC 72 ms
71,168 KB
testcase_27 AC 130 ms
77,836 KB
testcase_28 AC 157 ms
77,952 KB
testcase_29 AC 156 ms
78,556 KB
testcase_30 AC 153 ms
78,208 KB
testcase_31 AC 142 ms
78,608 KB
testcase_32 AC 125 ms
78,240 KB
testcase_33 AC 183 ms
79,276 KB
testcase_34 AC 167 ms
78,368 KB
testcase_35 AC 199 ms
78,400 KB
testcase_36 AC 206 ms
78,756 KB
testcase_37 AC 116 ms
77,328 KB
testcase_38 AC 159 ms
77,696 KB
testcase_39 AC 135 ms
77,916 KB
testcase_40 AC 157 ms
77,968 KB
testcase_41 AC 113 ms
76,596 KB
testcase_42 AC 185 ms
79,364 KB
testcase_43 AC 195 ms
79,156 KB
testcase_44 AC 76 ms
77,440 KB
testcase_45 AC 44 ms
59,520 KB
testcase_46 AC 161 ms
79,724 KB
testcase_47 AC 168 ms
81,264 KB
testcase_48 AC 238 ms
89,364 KB
testcase_49 AC 233 ms
85,360 KB
testcase_50 AC 315 ms
93,044 KB
testcase_51 AC 143 ms
78,028 KB
testcase_52 AC 316 ms
92,472 KB
testcase_53 AC 191 ms
85,548 KB
testcase_54 AC 109 ms
78,156 KB
testcase_55 AC 281 ms
90,364 KB
testcase_56 AC 75 ms
78,056 KB
testcase_57 AC 266 ms
85,976 KB
testcase_58 AC 230 ms
85,744 KB
testcase_59 AC 138 ms
78,180 KB
testcase_60 AC 92 ms
78,080 KB
testcase_61 AC 195 ms
80,612 KB
testcase_62 AC 235 ms
83,836 KB
testcase_63 AC 225 ms
81,316 KB
testcase_64 AC 1,053 ms
180,548 KB
testcase_65 AC 159 ms
78,524 KB
testcase_66 AC 293 ms
149,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Heap_Point:
        def __init__(self,x,d):
            self.d=d
            self.x=x

        def __str__(self):
            return "(point:{}, dist:{})".format(self.x,self.d)

        def __repr__(self):
            return str(self)

        def __lt__(self,other):
            return self.d<other.d

        def __iter__(self):
            yield from (self.x,self.d)
#================================================
import sys
from heapq import heapify,heappop,heappush

input=sys.stdin.readline
N,S,T,K=map(int,input().split())
X=["*"]+list(map(int,input().split()))

M=int(input())
E=[[] for _ in range(N+1)]
for _ in range(M):
    A,B,Y=map(int,input().split())
    E[A].append((B,Y))

inf=float("inf")

DP=[[inf]*(K+1) for _ in range(N+1)]
DP[S][1]=X[S]

Reverse=[[(0,0) for _ in range(K+1)] for _ in range(N+1)]

Q=[Heap_Point((S,1),0)]
heapify(Q)

while Q:
    (x,k),d=heappop(Q)

    if DP[x][k]<d:
        continue

    if x==T and k==K:
        break

    l=min(k+1,K)
    for y,m in E[x]:
        if DP[x][k]+m+X[y]<DP[y][l]:
            DP[y][l]=DP[x][k]+m+X[y]
            Reverse[y][l]=(x,k)
            heappush(Q,Heap_Point((y,l),DP[y][l]))

V=DP[T][K]

if V<inf:
    x,k=T,K
    P=[]

    while k>0:
        P.append(x)
        x,k=Reverse[x][k]

    print("Possible")
    print(V)
    print(len(P))
    print(*P[::-1])
else:
    print("Impossible")
0