結果

問題 No.2712 Play more!
ユーザー RYOH2718RYOH2718
提出日時 2024-03-31 15:16:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,033 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 77,872 KB
最終ジャッジ日時 2024-09-30 20:30:20
合計ジャッジ時間 3,275 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,252 KB
testcase_01 AC 40 ms
53,672 KB
testcase_02 AC 41 ms
53,860 KB
testcase_03 AC 41 ms
54,544 KB
testcase_04 WA -
testcase_05 AC 40 ms
53,912 KB
testcase_06 AC 42 ms
53,084 KB
testcase_07 AC 89 ms
77,524 KB
testcase_08 AC 84 ms
76,708 KB
testcase_09 AC 87 ms
77,456 KB
testcase_10 WA -
testcase_11 AC 52 ms
62,952 KB
testcase_12 AC 58 ms
65,896 KB
testcase_13 AC 45 ms
56,160 KB
testcase_14 AC 87 ms
77,332 KB
testcase_15 AC 62 ms
68,676 KB
testcase_16 AC 43 ms
55,004 KB
testcase_17 AC 42 ms
54,916 KB
testcase_18 AC 52 ms
62,724 KB
testcase_19 AC 44 ms
55,376 KB
testcase_20 AC 53 ms
62,504 KB
testcase_21 AC 44 ms
54,660 KB
testcase_22 AC 64 ms
67,192 KB
testcase_23 AC 43 ms
54,516 KB
testcase_24 AC 44 ms
55,344 KB
testcase_25 AC 41 ms
53,356 KB
testcase_26 AC 56 ms
63,612 KB
testcase_27 AC 66 ms
70,052 KB
testcase_28 AC 64 ms
68,768 KB
testcase_29 AC 47 ms
55,624 KB
testcase_30 AC 84 ms
77,872 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 41 ms
53,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 標準入力された値を整数に変換する
def INT():
    return int(input())


# 標準入力された複数の値を整数に変換する
def MI():
    return map(int, input().split())


# 標準入力された複数の値を整数のリストに変換する
def LI():
    return list(map(int, input().split()))


class UnionFind:
    def __init__(self, N):
        self.root = [_ for _ in range(N)]
        self.rank = [0] * N
        self.size = [1] * N

    def find(self, x):
        if self.root[x] == x:
            return x
        else:
            # 根を予め取得し,経路圧縮する
            self.root[x] = self.find(self.root[x])
            return self.root[x]

    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)

        if x == y:
            return
        else:
            if self.rank[x] > self.rank[y]:
                self.size[x] += self.size[y]
                self.root[y] = x
            else:
                self.size[y] += self.size[x]
                self.root[x] = y
                if self.rank[x] == self.rank[y]:
                    self.rank[y] += 1

    def same(self, x, y):
        return self.find(x) == self.find(y)

    def getSizeOfSet(self, x):
        return self.size[self.find(x)]


import heapq


def dijkstra(n, G, start=0):
    INF = 10**18
    dist = [INF] * n
    dist[start] = 0
    pq = []
    heapq.heappush(pq, (0, start))
    visited = [False] * n

    while pq:
        now = heapq.heappop(pq)[1]
        visited[now] = True
        for nxt, cost in G[now]:
            if dist[nxt] > dist[now] + cost and not visited[nxt]:
                dist[nxt] = dist[now] + cost
                heapq.heappush(pq, (dist[now] + cost, nxt))

    return dist


N, M = MI()
A = LI()
G = [[] for i in range(N)]
dsu = UnionFind(N)
for _ in range(M):
    a, b, c = MI()
    a -= 1
    b -= 1
    G[a].append((b, A[b] - c))
    if dsu.same(a, b):
        print("inf")
        exit(0)
    dsu.union(a, b)

dist = dijkstra(N, G)
print(dist[-1] + A[0])
0