結果
問題 | No.2712 Play more! |
ユーザー | RYOH2718 |
提出日時 | 2024-03-31 15:26:48 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,241 bytes |
コンパイル時間 | 413 ms |
コンパイル使用メモリ | 82,372 KB |
実行使用メモリ | 130,636 KB |
最終ジャッジ日時 | 2024-09-30 20:42:43 |
合計ジャッジ時間 | 15,977 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
54,364 KB |
testcase_01 | AC | 42 ms
53,260 KB |
testcase_02 | AC | 40 ms
53,032 KB |
testcase_03 | AC | 42 ms
53,248 KB |
testcase_04 | WA | - |
testcase_05 | AC | 42 ms
53,620 KB |
testcase_06 | AC | 41 ms
53,872 KB |
testcase_07 | AC | 376 ms
126,524 KB |
testcase_08 | AC | 319 ms
124,320 KB |
testcase_09 | AC | 426 ms
126,656 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 1,036 ms
126,356 KB |
testcase_15 | TLE | - |
testcase_16 | WA | - |
testcase_17 | AC | 135 ms
77,508 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 638 ms
86,248 KB |
testcase_21 | AC | 224 ms
78,280 KB |
testcase_22 | WA | - |
testcase_23 | AC | 204 ms
77,888 KB |
testcase_24 | WA | - |
testcase_25 | AC | 191 ms
77,700 KB |
testcase_26 | WA | - |
testcase_27 | AC | 215 ms
117,332 KB |
testcase_28 | AC | 202 ms
108,968 KB |
testcase_29 | WA | - |
testcase_30 | AC | 1,374 ms
128,752 KB |
testcase_31 | AC | 279 ms
123,912 KB |
testcase_32 | AC | 308 ms
123,972 KB |
testcase_33 | AC | 60 ms
65,676 KB |
testcase_34 | AC | 43 ms
54,284 KB |
testcase_35 | AC | 41 ms
53,328 KB |
ソースコード
# 標準入力された値を整数に変換する def INT(): return int(input()) # 標準入力された複数の値を整数に変換する def MI(): return map(int, input().split()) # 標準入力された複数の値を整数のリストに変換する def LI(): return list(map(int, input().split())) import heapq def dijkstra(n, G, start=0): MINF = -(10**18) dist = [MINF] * 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)] for _ in range(M): a, b, c = MI() a -= 1 b -= 1 G[a].append((b, A[b] - c)) dist = [] for i in range(N): d = dijkstra(N, G, i) dist.append(d) for i in range(N): for j in range(N): if i == j: continue if dist[0][i] > 0 and dist[i][j] > 0 and dist[j][i] > 0: print("inf") exit() print(dist[0][N - 1] + A[0])