結果

問題 No.1601 With Animals into Institute
ユーザー __matyaki____matyaki__
提出日時 2022-03-21 13:45:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,424 ms / 3,000 ms
コード長 933 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 81,912 KB
実行使用メモリ 152,460 KB
最終ジャッジ日時 2024-10-08 19:57:58
合計ジャッジ時間 22,881 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
52,736 KB
testcase_01 AC 44 ms
52,608 KB
testcase_02 AC 44 ms
53,120 KB
testcase_03 AC 151 ms
78,464 KB
testcase_04 AC 140 ms
78,208 KB
testcase_05 AC 150 ms
77,952 KB
testcase_06 AC 1,338 ms
148,928 KB
testcase_07 AC 1,378 ms
150,192 KB
testcase_08 AC 1,360 ms
149,500 KB
testcase_09 AC 1,424 ms
150,568 KB
testcase_10 AC 1,346 ms
152,380 KB
testcase_11 AC 1,351 ms
150,068 KB
testcase_12 AC 1,347 ms
150,528 KB
testcase_13 AC 1,369 ms
152,460 KB
testcase_14 AC 1,401 ms
148,788 KB
testcase_15 AC 1,396 ms
150,892 KB
testcase_16 AC 1,361 ms
151,012 KB
testcase_17 AC 1,396 ms
149,028 KB
testcase_18 AC 133 ms
78,208 KB
testcase_19 AC 151 ms
78,652 KB
testcase_20 AC 140 ms
77,952 KB
testcase_21 AC 144 ms
78,208 KB
testcase_22 AC 129 ms
78,336 KB
testcase_23 AC 136 ms
78,720 KB
testcase_24 AC 142 ms
78,336 KB
testcase_25 AC 139 ms
78,336 KB
testcase_26 AC 135 ms
78,080 KB
testcase_27 AC 38 ms
52,608 KB
testcase_28 AC 38 ms
52,480 KB
testcase_29 AC 40 ms
52,608 KB
testcase_30 AC 40 ms
52,864 KB
testcase_31 AC 40 ms
52,864 KB
testcase_32 AC 41 ms
52,480 KB
testcase_33 AC 40 ms
52,864 KB
testcase_34 AC 39 ms
52,992 KB
testcase_35 AC 40 ms
53,248 KB
testcase_36 AC 40 ms
53,368 KB
testcase_37 AC 41 ms
52,864 KB
testcase_38 AC 41 ms
52,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
import sys
input=sys.stdin.readline
n,m=map(int,input().split())

G=[[] for i in range(n)]

for i in range(m):
  a,b,c,x=map(int,input().split())
  G[a-1].append((b-1,c,x))
  G[b-1].append((a-1,c,x))

d=[float('inf') for i in range(n)]
d_passed=[float('inf') for i in range(n)]



def f(d_now,now,ani):
  return (d_now*n+now)*2+ani
def invf(pop):
  ani=pop%2
  pop//=2
  now=pop%n
  d_now=pop//n
  return d_now,now,ani

q=[]
heapq.heappush(q,f(0,n-1,0))

while q:
  #print(q)
  pop=heapq.heappop(q)
  d_now,now,ani=invf(pop)
  #print(d_now,now,ani)
  if ani:
    if d_now>=d_passed[now]:continue
    d_passed[now]=d_now
    for nxt,c,x in G[now]:heapq.heappush(q,f(d_now+c,nxt,1))
  else:
    if d_now>=d[now] or d_now>=d_passed[now]:continue
    d[now]=d_now
    for nxt,c,x in G[now]:
      if x:heapq.heappush(q,f(d_now+c,nxt,1))
      else:heapq.heappush(q,f(d_now+c,nxt,0))
for i in range(n-1):
  print(d_passed[i])
0