結果

問題 No.2915 辺更新価値最大化
ユーザー titiatitia
提出日時 2024-10-31 02:13:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 893 bytes
コンパイル時間 515 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 98,824 KB
最終ジャッジ日時 2024-10-31 02:13:40
合計ジャッジ時間 12,620 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 40 ms
53,776 KB
testcase_02 AC 41 ms
53,976 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 43 ms
54,220 KB
testcase_06 WA -
testcase_07 AC 233 ms
77,796 KB
testcase_08 AC 231 ms
78,292 KB
testcase_09 AC 239 ms
77,732 KB
testcase_10 AC 240 ms
78,248 KB
testcase_11 AC 239 ms
77,980 KB
testcase_12 AC 282 ms
78,276 KB
testcase_13 AC 379 ms
79,296 KB
testcase_14 AC 348 ms
78,784 KB
testcase_15 AC 477 ms
80,072 KB
testcase_16 WA -
testcase_17 AC 350 ms
79,984 KB
testcase_18 AC 459 ms
80,728 KB
testcase_19 AC 433 ms
81,236 KB
testcase_20 AC 433 ms
80,216 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 244 ms
81,412 KB
testcase_24 WA -
testcase_25 AC 668 ms
87,712 KB
testcase_26 AC 486 ms
85,528 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