結果

問題 No.2915 辺更新価値最大化
ユーザー titiatitia
提出日時 2024-10-31 02:14:05
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 893 bytes
コンパイル時間 507 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 100,600 KB
最終ジャッジ日時 2024-10-31 02:14:17
合計ジャッジ時間 11,863 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
59,644 KB
testcase_01 AC 39 ms
53,824 KB
testcase_02 AC 38 ms
52,944 KB
testcase_03 AC 39 ms
53,288 KB
testcase_04 AC 39 ms
53,436 KB
testcase_05 AC 40 ms
54,180 KB
testcase_06 AC 39 ms
53,668 KB
testcase_07 AC 189 ms
77,832 KB
testcase_08 AC 226 ms
78,548 KB
testcase_09 AC 229 ms
77,744 KB
testcase_10 AC 230 ms
77,968 KB
testcase_11 AC 236 ms
78,100 KB
testcase_12 AC 284 ms
78,396 KB
testcase_13 AC 374 ms
79,288 KB
testcase_14 AC 345 ms
78,760 KB
testcase_15 AC 468 ms
80,064 KB
testcase_16 AC 533 ms
81,660 KB
testcase_17 AC 346 ms
80,128 KB
testcase_18 AC 457 ms
80,876 KB
testcase_19 AC 428 ms
81,396 KB
testcase_20 AC 384 ms
80,312 KB
testcase_21 AC 363 ms
80,044 KB
testcase_22 AC 154 ms
77,552 KB
testcase_23 AC 236 ms
81,460 KB
testcase_24 AC 141 ms
78,012 KB
testcase_25 AC 638 ms
87,664 KB
testcase_26 AC 485 ms
85,264 KB
testcase_27 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from heapq import heappop,heappush

N,M,C=map(int,input().split())

EDGE=[list(map(int,input().split())) for i in range(M)]

for i in range(M):
    EDGE[i][0]-=1
    EDGE[i][1]-=1

Q=list(map(int,input().split()))

for i in range(C):
    Q[i]-=1

USE=[1]*M

for q in Q:
    USE[q]^=1
    
    DP=[-1<<63]*N
    DP[0]=0
    Q=[(0,0)]

    E=[[] for i in range(N)]

    for i in range(M):
        if USE[i]==0:
            continue
        x,y,dis=EDGE[i]
        E[x].append((y,dis))

    #print(E)

    while Q:
        now,ind=heappop(Q)

        if DP[ind]!=-now:
            continue

        now=-now

        for to,w in E[ind]:
            if DP[to]<now+w:
                DP[to]=now+w
                heappush(Q,(-DP[to],to))

    if DP[-1]<-1000000000:
        print("NaN")
    else:
        print(DP[-1])
                
            

        
0