結果

問題 No.2915 辺更新価値最大化
ユーザー titiatitia
提出日時 2024-10-31 02:16:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 850 bytes
コンパイル時間 509 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 85,456 KB
最終ジャッジ日時 2024-10-31 02:16:24
合計ジャッジ時間 8,554 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,224 KB
testcase_01 AC 38 ms
53,060 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 37 ms
53,044 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 126 ms
77,108 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

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