結果

問題 No.2712 Play more!
ユーザー YuuuTYuuuT
提出日時 2024-03-31 14:26:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 982 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 78,100 KB
最終ジャッジ日時 2024-09-30 19:32:22
合計ジャッジ時間 3,399 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,424 KB
testcase_01 AC 46 ms
54,928 KB
testcase_02 AC 47 ms
55,272 KB
testcase_03 AC 46 ms
55,140 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 58 ms
67,584 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 57 ms
67,380 KB
testcase_17 AC 58 ms
67,052 KB
testcase_18 WA -
testcase_19 AC 59 ms
65,904 KB
testcase_20 WA -
testcase_21 AC 59 ms
69,652 KB
testcase_22 WA -
testcase_23 AC 58 ms
68,412 KB
testcase_24 AC 57 ms
67,096 KB
testcase_25 AC 56 ms
66,840 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 59 ms
66,636 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 62 ms
69,964 KB
testcase_33 AC 46 ms
56,468 KB
testcase_34 AC 46 ms
54,476 KB
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

# oj t -c "python3 main.py"
import sys,math
from collections import defaultdict,deque
from itertools import combinations,permutations,accumulate,product
from bisect import bisect,bisect_left,bisect_right
from heapq import heappop,heappush,heapify
#from sortedcontainers import SortedList,SortedSet
def input(): return sys.stdin.readline().rstrip()
def ii(): return int(input())
def ms(): return map(int, input().split())
def li(): return list(map(int,input().split()))
inf = pow(10,18)
#////////////////////////////////////
N,M = ms()
A = [-1]+li()
G = [set() for _ in range(N+1)]
for _ in range(M):
  u,v,c = ms()
  G[u].add((v,c))
H = []
heappush(H,(-A[1],1))
visited = [False]*(N+1)
while H:
  c,v = heappop(H)
  if visited[v]: continue
  c *= -1
  if v==N: 
    print(c)
    exit()
  visited[v] = True
  for v2,c2 in G[v]:
    if A[v2]<c2: continue
    if A[v2]>c2 and visited[v2]:
      print('inf')
      exit()
    if visited[v2]: continue
    heappush(H,(-(c+A[v2]-c2),v2))
0