結果

問題 No.2712 Play more!
ユーザー ra5anchorra5anchor
提出日時 2024-04-13 10:08:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 476 ms / 2,000 ms
コード長 1,647 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 78,392 KB
最終ジャッジ日時 2024-10-02 23:57:53
合計ジャッジ時間 6,092 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,888 KB
testcase_01 AC 43 ms
53,760 KB
testcase_02 AC 43 ms
53,504 KB
testcase_03 AC 43 ms
53,888 KB
testcase_04 AC 47 ms
53,888 KB
testcase_05 AC 43 ms
54,016 KB
testcase_06 AC 43 ms
53,760 KB
testcase_07 AC 258 ms
78,320 KB
testcase_08 AC 234 ms
78,080 KB
testcase_09 AC 231 ms
77,824 KB
testcase_10 AC 43 ms
53,632 KB
testcase_11 AC 183 ms
77,516 KB
testcase_12 AC 287 ms
78,040 KB
testcase_13 AC 170 ms
77,392 KB
testcase_14 AC 206 ms
77,768 KB
testcase_15 AC 476 ms
78,392 KB
testcase_16 AC 123 ms
77,264 KB
testcase_17 AC 91 ms
77,056 KB
testcase_18 AC 118 ms
76,928 KB
testcase_19 AC 103 ms
76,928 KB
testcase_20 AC 211 ms
77,568 KB
testcase_21 AC 138 ms
77,568 KB
testcase_22 AC 312 ms
78,304 KB
testcase_23 AC 97 ms
77,440 KB
testcase_24 AC 138 ms
77,568 KB
testcase_25 AC 90 ms
77,176 KB
testcase_26 AC 125 ms
77,056 KB
testcase_27 AC 137 ms
77,440 KB
testcase_28 AC 73 ms
67,712 KB
testcase_29 AC 137 ms
77,696 KB
testcase_30 AC 292 ms
77,696 KB
testcase_31 AC 87 ms
77,312 KB
testcase_32 AC 94 ms
77,424 KB
testcase_33 AC 48 ms
56,448 KB
testcase_34 AC 42 ms
53,760 KB
testcase_35 AC 43 ms
54,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
A = list(map(int, input().split()))

G = [[] for _ in range(N)]
Grev = [[] for _ in range(N)]
E = []
for i in range(M):
    a, b, c = map(int, input().split())
    a -= 1
    b -= 1
    G[a].append(b)
    c *= -1
    c += A[b]
    E.append((a, b, c))
    Grev[b].append(a)

def BF(start):
    # Bellman-Ford
    score = [-float('inf')] * N # スタート地点からの最小距離
    score[start] = A[start]

    for i in range(N):
        update = False # 更新が行われたか
        for u, v, weight in E:
            if score[v] < score[u] + weight:
                score[v] = score[u] + weight
                update = True
        if not update:
            break
        # 負閉路が存在するときは負閉路内の頂点リストを返す
        if i == N - 1:
            st = set()
            for u, v, weight in E:
                if score[v] < score[u] + weight:
                    score[v] = score[u] + weight
                    st.add(v)
            return 1, score, st
    return 0, score, 0

from collections import deque
# print(E)
state, score, st = BF(0) # ノード0から各地点の最短距離
if state == 0:
    print(score[N-1])
else:
    sctmp = score[N-1]
    goal = st
    que = deque()
    visited = [False]*N
    stt = N-1
    visited[stt] = True
    que.append(stt)
    # print(goal)
    while que:
        now = que.popleft()
        for to in Grev[now]:
            if visited[to] == False:
                if to in goal:
                    print('inf')
                    exit()
                visited[to] = True
                que.append(to)
    print(sctmp)
0