結果

問題 No.2915 辺更新価値最大化
ユーザー titiatitia
提出日時 2024-10-31 02:16:57
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 873 bytes
コンパイル時間 509 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 112,860 KB
最終ジャッジ日時 2024-10-31 02:17:04
合計ジャッジ時間 6,438 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
61,220 KB
testcase_01 AC 38 ms
53,344 KB
testcase_02 AC 38 ms
53,212 KB
testcase_03 AC 39 ms
53,148 KB
testcase_04 AC 39 ms
53,076 KB
testcase_05 AC 45 ms
59,736 KB
testcase_06 AC 39 ms
54,248 KB
testcase_07 AC 259 ms
78,332 KB
testcase_08 AC 235 ms
77,892 KB
testcase_09 AC 290 ms
78,360 KB
testcase_10 AC 276 ms
78,500 KB
testcase_11 AC 365 ms
78,424 KB
testcase_12 AC 286 ms
78,320 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
権限があれば一括ダウンロードができます

ソースコード

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

        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