結果

問題 No.2712 Play more!
ユーザー sepa38sepa38
提出日時 2024-03-30 21:39:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 573 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,824 KB
最終ジャッジ日時 2024-09-30 17:45:41
合計ジャッジ時間 4,289 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,272 KB
testcase_01 AC 41 ms
54,016 KB
testcase_02 AC 42 ms
53,868 KB
testcase_03 AC 42 ms
53,760 KB
testcase_04 WA -
testcase_05 AC 41 ms
53,888 KB
testcase_06 AC 39 ms
53,776 KB
testcase_07 AC 77 ms
74,332 KB
testcase_08 AC 80 ms
75,008 KB
testcase_09 AC 79 ms
75,136 KB
testcase_10 WA -
testcase_11 AC 81 ms
74,600 KB
testcase_12 AC 85 ms
77,184 KB
testcase_13 AC 81 ms
73,728 KB
testcase_14 AC 77 ms
73,344 KB
testcase_15 AC 96 ms
77,568 KB
testcase_16 AC 74 ms
73,728 KB
testcase_17 AC 73 ms
72,576 KB
testcase_18 AC 69 ms
70,912 KB
testcase_19 AC 71 ms
71,552 KB
testcase_20 AC 82 ms
76,928 KB
testcase_21 AC 81 ms
77,248 KB
testcase_22 AC 87 ms
77,056 KB
testcase_23 AC 77 ms
74,368 KB
testcase_24 AC 74 ms
73,216 KB
testcase_25 AC 76 ms
73,856 KB
testcase_26 AC 76 ms
72,064 KB
testcase_27 AC 72 ms
71,680 KB
testcase_28 AC 63 ms
66,816 KB
testcase_29 AC 78 ms
73,536 KB
testcase_30 AC 78 ms
74,752 KB
testcase_31 AC 89 ms
77,652 KB
testcase_32 AC 89 ms
77,824 KB
testcase_33 AC 48 ms
56,064 KB
testcase_34 AC 40 ms
53,504 KB
testcase_35 AC 39 ms
53,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n, m = map(int, input().split())
a = list(map(int, input().split()))
e = [[] for _ in range(n)]
for _ in range(m):
  u, v, c = map(int, input().split())
  u -= 1
  v -= 1
  c = a[v] - c
  e[u].append([v, c])
inf = 1 << 60
sat = [-inf] * n
sat[0] = a[0]
d = deque([0])
while d:
  u = d.popleft()
  for v, c in e[u]:
    if sat[v] < sat[u] + c:
      if sat[v] == -inf:
        d.append(v)
      sat[v] = sat[u] + c
sat2 = sat[:]
for u in range(n):
  for v, c in e[u]:
    if sat2[v] < sat2[u] + c:
      print("inf")
      exit()
print(sat[-1])
0