結果

問題 No.1545 [Cherry 2nd Tune N] Anthem
ユーザー 👑 KazunKazun
提出日時 2021-04-06 03:07:19
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,409 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 186,344 KB
最終ジャッジ日時 2024-05-08 14:46:31
合計ジャッジ時間 23,566 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
58,752 KB
testcase_01 AC 40 ms
53,376 KB
testcase_02 AC 40 ms
52,992 KB
testcase_03 AC 40 ms
53,120 KB
testcase_04 AC 145 ms
96,180 KB
testcase_05 AC 381 ms
114,360 KB
testcase_06 AC 283 ms
96,840 KB
testcase_07 AC 330 ms
105,492 KB
testcase_08 AC 530 ms
111,124 KB
testcase_09 AC 266 ms
86,816 KB
testcase_10 AC 162 ms
99,292 KB
testcase_11 AC 201 ms
97,792 KB
testcase_12 AC 244 ms
105,628 KB
testcase_13 AC 130 ms
88,064 KB
testcase_14 AC 124 ms
91,288 KB
testcase_15 AC 80 ms
79,104 KB
testcase_16 AC 154 ms
97,332 KB
testcase_17 AC 182 ms
82,560 KB
testcase_18 AC 246 ms
109,512 KB
testcase_19 AC 237 ms
96,208 KB
testcase_20 AC 275 ms
84,976 KB
testcase_21 AC 187 ms
110,008 KB
testcase_22 AC 201 ms
112,020 KB
testcase_23 AC 281 ms
93,100 KB
testcase_24 AC 132 ms
78,520 KB
testcase_25 AC 132 ms
77,996 KB
testcase_26 AC 60 ms
66,304 KB
testcase_27 AC 120 ms
77,404 KB
testcase_28 AC 136 ms
78,556 KB
testcase_29 AC 149 ms
78,208 KB
testcase_30 AC 134 ms
78,444 KB
testcase_31 AC 138 ms
78,080 KB
testcase_32 AC 110 ms
77,256 KB
testcase_33 AC 166 ms
78,080 KB
testcase_34 AC 149 ms
78,552 KB
testcase_35 AC 202 ms
78,832 KB
testcase_36 AC 204 ms
78,784 KB
testcase_37 AC 106 ms
76,800 KB
testcase_38 AC 146 ms
78,080 KB
testcase_39 AC 106 ms
77,068 KB
testcase_40 AC 131 ms
78,096 KB
testcase_41 AC 111 ms
76,480 KB
testcase_42 AC 142 ms
78,148 KB
testcase_43 AC 142 ms
78,208 KB
testcase_44 AC 74 ms
77,568 KB
testcase_45 AC 43 ms
59,648 KB
testcase_46 AC 145 ms
79,544 KB
testcase_47 AC 158 ms
81,280 KB
testcase_48 AC 215 ms
89,184 KB
testcase_49 AC 236 ms
85,084 KB
testcase_50 AC 300 ms
92,952 KB
testcase_51 AC 115 ms
77,232 KB
testcase_52 AC 342 ms
92,564 KB
testcase_53 AC 182 ms
85,368 KB
testcase_54 AC 104 ms
77,204 KB
testcase_55 AC 267 ms
89,992 KB
testcase_56 AC 75 ms
77,696 KB
testcase_57 AC 244 ms
85,340 KB
testcase_58 AC 188 ms
86,064 KB
testcase_59 AC 125 ms
78,348 KB
testcase_60 AC 92 ms
77,952 KB
testcase_61 AC 168 ms
79,292 KB
testcase_62 AC 220 ms
84,024 KB
testcase_63 AC 170 ms
79,824 KB
testcase_64 TLE -
testcase_65 -- -
testcase_66 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#TLE想定 continue 忘れ

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