結果

問題 No.2915 辺更新価値最大化
ユーザー titiatitia
提出日時 2024-11-02 03:18:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 932 ms / 2,000 ms
コード長 1,065 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 88,048 KB
最終ジャッジ日時 2024-11-02 03:18:41
合計ジャッジ時間 11,731 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,472 KB
testcase_01 AC 39 ms
53,108 KB
testcase_02 AC 38 ms
53,748 KB
testcase_03 AC 40 ms
54,132 KB
testcase_04 AC 43 ms
59,348 KB
testcase_05 AC 45 ms
60,148 KB
testcase_06 AC 45 ms
61,448 KB
testcase_07 AC 290 ms
78,348 KB
testcase_08 AC 288 ms
78,632 KB
testcase_09 AC 373 ms
79,744 KB
testcase_10 AC 335 ms
79,516 KB
testcase_11 AC 366 ms
79,496 KB
testcase_12 AC 369 ms
79,700 KB
testcase_13 AC 492 ms
80,372 KB
testcase_14 AC 579 ms
81,584 KB
testcase_15 AC 609 ms
82,644 KB
testcase_16 AC 932 ms
86,524 KB
testcase_17 AC 556 ms
82,952 KB
testcase_18 AC 565 ms
82,812 KB
testcase_19 AC 614 ms
82,856 KB
testcase_20 AC 574 ms
83,136 KB
testcase_21 AC 526 ms
82,828 KB
testcase_22 AC 220 ms
77,932 KB
testcase_23 AC 284 ms
83,432 KB
testcase_24 AC 176 ms
78,436 KB
testcase_25 AC 653 ms
88,048 KB
testcase_26 AC 178 ms
77,864 KB
testcase_27 AC 522 ms
83,748 KB
権限があれば一括ダウンロードができます

ソースコード

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

P=[1<<63]*N
P[0]=0

for i in range(N+10):
    for x,y,w in EDGE:
        if P[y]>P[x]-w:
            P[y]=P[x]-w

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

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

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

    Q=[(0,0)]

    while Q:
        now,ind=heappop(Q)

        if DP[ind]!=now:
            continue

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

    ANS=DP[-1]+P[-1]

    if ANS>1000000000:
        print("NaN")
    else:
        print(-ANS)
                
                   

        
0