結果

問題 No.1601 With Animals into Institute
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-07-11 09:16:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,320 ms / 3,000 ms
コード長 712 bytes
コンパイル時間 370 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 176,792 KB
最終ジャッジ日時 2024-07-02 02:59:44
合計ジャッジ時間 31,806 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,864 KB
testcase_01 AC 43 ms
52,608 KB
testcase_02 AC 43 ms
52,352 KB
testcase_03 AC 157 ms
78,976 KB
testcase_04 AC 160 ms
79,104 KB
testcase_05 AC 164 ms
79,360 KB
testcase_06 AC 2,148 ms
175,332 KB
testcase_07 AC 2,172 ms
175,760 KB
testcase_08 AC 2,188 ms
175,532 KB
testcase_09 AC 2,320 ms
174,376 KB
testcase_10 AC 2,229 ms
176,792 KB
testcase_11 AC 2,225 ms
175,640 KB
testcase_12 AC 2,246 ms
174,248 KB
testcase_13 AC 2,268 ms
176,080 KB
testcase_14 AC 2,222 ms
174,512 KB
testcase_15 AC 2,219 ms
174,500 KB
testcase_16 AC 2,299 ms
174,688 KB
testcase_17 AC 2,312 ms
174,244 KB
testcase_18 AC 161 ms
78,976 KB
testcase_19 AC 166 ms
79,488 KB
testcase_20 AC 186 ms
79,488 KB
testcase_21 AC 165 ms
79,232 KB
testcase_22 AC 171 ms
79,360 KB
testcase_23 AC 168 ms
79,232 KB
testcase_24 AC 167 ms
78,976 KB
testcase_25 AC 166 ms
78,976 KB
testcase_26 AC 171 ms
79,104 KB
testcase_27 AC 42 ms
51,968 KB
testcase_28 AC 42 ms
52,480 KB
testcase_29 AC 43 ms
52,736 KB
testcase_30 AC 44 ms
52,352 KB
testcase_31 AC 43 ms
52,224 KB
testcase_32 AC 43 ms
52,864 KB
testcase_33 AC 43 ms
52,224 KB
testcase_34 AC 43 ms
52,736 KB
testcase_35 AC 43 ms
52,224 KB
testcase_36 AC 43 ms
52,608 KB
testcase_37 AC 43 ms
52,736 KB
testcase_38 AC 43 ms
52,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
abcx=[list(map(int,input().split())) for _ in range(m)]
g=[[] for _ in range(n)]
for a,b,c,x in abcx:
  a,b=a-1,b-1
  g[a].append([b,c,x])
  g[b].append([a,c,x])
inf=float('inf')
seen=[inf]*(2*n)
todo=[[0,2*n-1]]
seen[-1]=0
from heapq import heappop,heappush
while todo:
  d,v=heappop(todo)
  if v>=n:
    for nv,nd,x in g[v-n]:
      if x==1:
        if seen[nv]>d+nd:
          seen[nv]=d+nd
          heappush(todo,[d+nd,nv])
      else:
        if seen[nv+n]>d+nd:
          seen[nv+n]=d+nd
          heappush(todo,[d+nd,nv+n])
  else:
    for nv,nd,x in g[v]:
      if seen[nv]>d+nd:
        seen[nv]=d+nd
        heappush(todo,[d+nd,nv])
for i in range(n-1):
  print(seen[i])

0