結果

問題 No.1545 [Cherry 2nd Tune N] Anthem
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-06-12 16:20:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,989 ms / 3,000 ms
コード長 913 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,068 KB
実行使用メモリ 230,052 KB
最終ジャッジ日時 2024-05-09 19:58:14
合計ジャッジ時間 25,679 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,216 KB
testcase_01 AC 38 ms
53,416 KB
testcase_02 AC 36 ms
52,944 KB
testcase_03 AC 36 ms
53,044 KB
testcase_04 AC 222 ms
118,924 KB
testcase_05 AC 539 ms
160,048 KB
testcase_06 AC 355 ms
115,972 KB
testcase_07 AC 387 ms
125,020 KB
testcase_08 AC 739 ms
123,652 KB
testcase_09 AC 289 ms
88,188 KB
testcase_10 AC 205 ms
102,036 KB
testcase_11 AC 289 ms
122,860 KB
testcase_12 AC 368 ms
147,820 KB
testcase_13 AC 163 ms
93,660 KB
testcase_14 AC 188 ms
111,172 KB
testcase_15 AC 104 ms
81,996 KB
testcase_16 AC 246 ms
132,048 KB
testcase_17 AC 199 ms
82,496 KB
testcase_18 AC 333 ms
115,788 KB
testcase_19 AC 289 ms
109,852 KB
testcase_20 AC 242 ms
85,756 KB
testcase_21 AC 317 ms
160,128 KB
testcase_22 AC 283 ms
128,268 KB
testcase_23 AC 301 ms
93,528 KB
testcase_24 AC 124 ms
78,484 KB
testcase_25 AC 135 ms
78,596 KB
testcase_26 AC 52 ms
65,048 KB
testcase_27 AC 130 ms
78,612 KB
testcase_28 AC 139 ms
78,812 KB
testcase_29 AC 139 ms
78,340 KB
testcase_30 AC 126 ms
78,636 KB
testcase_31 AC 154 ms
78,864 KB
testcase_32 AC 124 ms
77,520 KB
testcase_33 AC 166 ms
79,252 KB
testcase_34 AC 156 ms
78,784 KB
testcase_35 AC 213 ms
80,716 KB
testcase_36 AC 164 ms
78,984 KB
testcase_37 AC 106 ms
77,048 KB
testcase_38 AC 146 ms
78,552 KB
testcase_39 AC 119 ms
77,488 KB
testcase_40 AC 136 ms
78,440 KB
testcase_41 AC 101 ms
76,896 KB
testcase_42 AC 139 ms
78,864 KB
testcase_43 AC 143 ms
78,828 KB
testcase_44 AC 59 ms
72,212 KB
testcase_45 AC 44 ms
68,144 KB
testcase_46 AC 176 ms
83,460 KB
testcase_47 AC 194 ms
91,116 KB
testcase_48 AC 281 ms
116,268 KB
testcase_49 AC 315 ms
101,296 KB
testcase_50 AC 501 ms
125,828 KB
testcase_51 AC 114 ms
77,132 KB
testcase_52 AC 485 ms
123,764 KB
testcase_53 AC 246 ms
101,032 KB
testcase_54 AC 96 ms
77,720 KB
testcase_55 AC 415 ms
116,880 KB
testcase_56 AC 60 ms
73,524 KB
testcase_57 AC 373 ms
105,432 KB
testcase_58 AC 264 ms
100,260 KB
testcase_59 AC 145 ms
81,396 KB
testcase_60 AC 85 ms
82,000 KB
testcase_61 AC 189 ms
84,324 KB
testcase_62 AC 313 ms
97,328 KB
testcase_63 AC 210 ms
86,096 KB
testcase_64 AC 1,989 ms
230,052 KB
testcase_65 AC 156 ms
79,976 KB
testcase_66 AC 430 ms
221,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *

n,s,t,k = map(int,input().split())
s,t = s-1,t-1
X = list(map(int,input().split()))
m = int(input())
e = [[] for i in range(n)]
for i in range(m):
    a,b,y = map(int,input().split())
    e[a-1].append((b-1,y))


inf = 10**20
dis = [[inf]*k for i in range(n)]
par = [[[-1,-1]for _ in range(k) ]for i in range(n)]
dis[s][0] = X[s]
h = [(X[s],s,0)]

while h:
    d,now,l = heappop(h)
    if now == t and l == k-1:
        print("Possible")
        print(d)
        ans = []
        while now != -1:
            ans.append(now+1)
            now,l = par[now][l]
        print(len(ans))
        print(*ans[::-1])
        exit()
    if d != dis[now][l]:
        continue
    for nex, y in e[now]:
        nd = d+y+X[nex]
        nl = min(l+1,k-1)
        if dis[nex][nl] > nd:
            dis[nex][nl] = nd
            heappush(h,(nd,nex,nl))
            par[nex][nl] = [now,l]
print("Impossible")
0