結果

問題 No.2915 辺更新価値最大化
ユーザー titiatitia
提出日時 2024-11-01 07:02:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,539 bytes
コンパイル時間 449 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 77,876 KB
最終ジャッジ日時 2024-11-01 07:02:05
合計ジャッジ時間 4,636 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,172 KB
testcase_01 AC 37 ms
52,868 KB
testcase_02 AC 38 ms
53,004 KB
testcase_03 AC 39 ms
52,588 KB
testcase_04 AC 38 ms
53,512 KB
testcase_05 AC 39 ms
53,544 KB
testcase_06 AC 39 ms
53,092 KB
testcase_07 AC 93 ms
76,984 KB
testcase_08 AC 96 ms
76,608 KB
testcase_09 AC 118 ms
76,836 KB
testcase_10 AC 109 ms
76,936 KB
testcase_11 AC 108 ms
76,892 KB
testcase_12 AC 111 ms
76,908 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 148 ms
77,424 KB
testcase_18 AC 133 ms
77,500 KB
testcase_19 AC 133 ms
77,184 KB
testcase_20 AC 135 ms
77,384 KB
testcase_21 AC 131 ms
77,224 KB
testcase_22 AC 98 ms
76,768 KB
testcase_23 AC 123 ms
77,868 KB
testcase_24 AC 126 ms
77,588 KB
testcase_25 AC 122 ms
77,876 KB
testcase_26 AC 130 ms
77,712 KB
testcase_27 AC 135 ms
77,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

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

for i in range(M):
    u,v,w=EDGE[i]
    E[u].append(v)
    E_INV[v].append(u)


def Top_sort(E):
    Parent=[-1]*N
    USEIND=[0]*N
    TOP=[]

    for ROOT in range(1):
        if Parent[ROOT]!=-1:
            continue
        Parent[ROOT]=ROOT

        NOW=ROOT

        while NOW!=ROOT or USEIND[ROOT]!=len(E[ROOT]):

            if USEIND[NOW]==len(E[NOW]):
                TOP.append(NOW)
                NOW=Parent[NOW]
            elif E[NOW][USEIND[NOW]]==Parent[NOW]:
                USEIND[NOW]+=1
            else:
                NEXT=E[NOW][USEIND[NOW]]
                USEIND[NOW]+=1
                if Parent[NEXT]==-1:
                    Parent[NEXT]=NOW
                    NOW=NEXT
        TOP.append(ROOT)
        
    return TOP[::-1]

TOP=Top_sort(E)


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:
            continue
        x,y,dis=EDGE[i]
        E[x].append((y,dis))

    for ind in TOP:
        for to,w in E[ind]:
            if DP[to]<DP[ind]+w:
                DP[to]=DP[ind]+w

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

        
0