結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,448 KB
testcase_01 AC 41 ms
55,812 KB
testcase_02 AC 42 ms
54,960 KB
testcase_03 AC 42 ms
55,548 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 54 ms
66,952 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 54 ms
66,920 KB
testcase_17 AC 54 ms
65,904 KB
testcase_18 WA -
testcase_19 AC 52 ms
65,880 KB
testcase_20 WA -
testcase_21 AC 54 ms
68,784 KB
testcase_22 WA -
testcase_23 AC 54 ms
67,976 KB
testcase_24 AC 52 ms
66,636 KB
testcase_25 AC 53 ms
68,460 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 54 ms
67,632 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 59 ms
70,388 KB
testcase_33 AC 43 ms
57,092 KB
testcase_34 AC 41 ms
55,312 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] and A[v2]!=c2: continue
    heappush(H,(-(c+A[v2]-c2),v2))
0