結果

問題 No.1545 [Cherry 2nd Tune N] Anthem
ユーザー ygd.ygd.
提出日時 2021-06-15 23:07:21
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 2,097 bytes
コンパイル時間 621 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 238,676 KB
最終ジャッジ日時 2024-06-08 15:36:52
合計ジャッジ時間 26,604 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,864 KB
testcase_01 AC 41 ms
53,120 KB
testcase_02 AC 40 ms
53,120 KB
testcase_03 AC 40 ms
52,992 KB
testcase_04 AC 168 ms
95,464 KB
testcase_05 AC 420 ms
120,688 KB
testcase_06 AC 365 ms
107,148 KB
testcase_07 AC 235 ms
117,416 KB
testcase_08 AC 716 ms
114,168 KB
testcase_09 AC 512 ms
96,580 KB
testcase_10 AC 202 ms
109,932 KB
testcase_11 AC 243 ms
103,936 KB
testcase_12 AC 299 ms
114,500 KB
testcase_13 AC 155 ms
82,304 KB
testcase_14 AC 161 ms
100,480 KB
testcase_15 AC 113 ms
83,328 KB
testcase_16 AC 196 ms
108,568 KB
testcase_17 AC 502 ms
90,876 KB
testcase_18 AC 350 ms
136,896 KB
testcase_19 AC 284 ms
101,760 KB
testcase_20 AC 313 ms
86,380 KB
testcase_21 AC 231 ms
111,196 KB
testcase_22 AC 252 ms
125,548 KB
testcase_23 AC 350 ms
98,672 KB
testcase_24 AC 157 ms
79,712 KB
testcase_25 AC 157 ms
78,464 KB
testcase_26 AC 59 ms
64,384 KB
testcase_27 AC 138 ms
78,208 KB
testcase_28 AC 157 ms
79,872 KB
testcase_29 AC 172 ms
80,512 KB
testcase_30 AC 159 ms
79,104 KB
testcase_31 AC 174 ms
80,000 KB
testcase_32 AC 128 ms
76,928 KB
testcase_33 AC 193 ms
80,576 KB
testcase_34 AC 184 ms
79,552 KB
testcase_35 AC 229 ms
80,368 KB
testcase_36 AC 222 ms
80,344 KB
testcase_37 AC 117 ms
77,184 KB
testcase_38 AC 186 ms
78,720 KB
testcase_39 AC 134 ms
77,952 KB
testcase_40 AC 161 ms
78,720 KB
testcase_41 AC 117 ms
76,856 KB
testcase_42 AC 182 ms
80,152 KB
testcase_43 AC 183 ms
80,924 KB
testcase_44 AC 71 ms
73,344 KB
testcase_45 AC 56 ms
73,216 KB
testcase_46 AC 189 ms
92,416 KB
testcase_47 AC 192 ms
91,264 KB
testcase_48 AC 246 ms
96,256 KB
testcase_49 AC 318 ms
95,104 KB
testcase_50 AC 461 ms
99,712 KB
testcase_51 AC 180 ms
107,136 KB
testcase_52 AC 474 ms
101,504 KB
testcase_53 AC 231 ms
92,032 KB
testcase_54 AC 141 ms
98,304 KB
testcase_55 AC 387 ms
97,792 KB
testcase_56 AC 72 ms
73,984 KB
testcase_57 AC 382 ms
108,032 KB
testcase_58 AC 248 ms
92,032 KB
testcase_59 AC 158 ms
94,720 KB
testcase_60 AC 103 ms
88,064 KB
testcase_61 AC 204 ms
94,208 KB
testcase_62 AC 327 ms
100,480 KB
testcase_63 AC 238 ms
101,376 KB
testcase_64 TLE -
testcase_65 AC 432 ms
89,480 KB
testcase_66 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify, heappop, heappush
from math import inf

def main():
    N,S,T,K = map(int,input().split()); INF = float("inf")
    S-=1;T-=1 #0-index
    X = list(map(int,input().split()))
    G = [[] for _ in range(N)]
    M = int(input())
    for _ in range(M):
        A,B,Y = map(int,input().split())
        A-=1;B-=1
        G[A].append((Y,B))

    
    

    def dijkstra_heap2(s,G,t,K):
        INF = float("inf")
        #S:start, V: node, E: Edge, G: Graph
        V = len(G)
        #dp[i][j]: i番目の歌を歌って今j曲目(i番目の歌を含む)
        if K <= 10:
            MAX = 20
        elif K <= 130:
            MAX = 1000
        else:
            MAX = pow(10,5)
        dp = [[INF]*MAX for _ in range(V)]
        #d = [INF for _ in range(V)]
        dp[s][1] = X[s]
        prev = [[-1]*MAX for _ in range(V)]
        PQ = []
        heappush(PQ,(X[s],s,1)) #時間, 位置, 何曲目

        while PQ:
            c,v,n = heappop(PQ)
            if v == t and n >= K:
                break
            if dp[v][n] < c:
                continue
            dp[v][n] = c
            if n+1 >= MAX: #これ以上は配列外参照
                continue
            for cost,u in G[v]:
                if dp[u][n+1] <= cost + X[u] + dp[v][n]:
                    continue
                dp[u][n+1] = cost + X[u] + dp[v][n]
                prev[u][n+1] = v
                heappush(PQ,(dp[u][n+1], u, n+1))

        return dp, prev

    d, keiro = dijkstra_heap2(S,G,T,K)
    #print(d)
    #print(keiro)
    ans = INF
    num = INF #何曲か
    for i in range(K,len(d[T])):
        if d[T][i] < ans:
            ans = d[T][i]
            num = i
    if ans == INF:
        print("Impossible")
    else:
        print("Possible")
        print(ans)
        print(num)
        ret = [T+1] #1-index
        #num -= 1
        now = T
        while num > 1:
            pre = keiro[now][num]
            ret.append(pre+1) #1-index
            now = pre
            num -= 1
        ret.reverse()
        print(*ret)



if __name__ == '__main__':
    main()
0