結果

問題 No.1601 With Animals into Institute
ユーザー qibqib
提出日時 2022-12-03 17:45:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,249 ms / 3,000 ms
コード長 738 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 141,240 KB
最終ジャッジ日時 2024-10-10 20:26:05
合計ジャッジ時間 19,949 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,180 KB
testcase_01 AC 39 ms
54,864 KB
testcase_02 AC 38 ms
53,568 KB
testcase_03 AC 135 ms
78,568 KB
testcase_04 AC 132 ms
78,392 KB
testcase_05 AC 126 ms
78,124 KB
testcase_06 AC 1,162 ms
140,248 KB
testcase_07 AC 1,226 ms
141,240 KB
testcase_08 AC 1,143 ms
141,212 KB
testcase_09 AC 1,199 ms
139,600 KB
testcase_10 AC 1,156 ms
139,140 KB
testcase_11 AC 1,186 ms
139,848 KB
testcase_12 AC 1,249 ms
140,720 KB
testcase_13 AC 1,145 ms
139,704 KB
testcase_14 AC 1,179 ms
139,928 KB
testcase_15 AC 1,230 ms
140,052 KB
testcase_16 AC 1,228 ms
139,984 KB
testcase_17 AC 1,218 ms
139,632 KB
testcase_18 AC 133 ms
78,116 KB
testcase_19 AC 121 ms
78,100 KB
testcase_20 AC 130 ms
78,604 KB
testcase_21 AC 130 ms
78,548 KB
testcase_22 AC 132 ms
78,196 KB
testcase_23 AC 129 ms
78,396 KB
testcase_24 AC 128 ms
78,220 KB
testcase_25 AC 132 ms
78,388 KB
testcase_26 AC 139 ms
78,356 KB
testcase_27 AC 39 ms
53,408 KB
testcase_28 AC 39 ms
53,136 KB
testcase_29 AC 39 ms
53,140 KB
testcase_30 AC 40 ms
54,004 KB
testcase_31 AC 40 ms
54,008 KB
testcase_32 AC 39 ms
53,700 KB
testcase_33 AC 39 ms
53,404 KB
testcase_34 AC 39 ms
53,064 KB
testcase_35 AC 39 ms
53,608 KB
testcase_36 AC 39 ms
52,748 KB
testcase_37 AC 39 ms
52,964 KB
testcase_38 AC 39 ms
54,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

INF = 1 << 60

n, m = map(int, input().split())
g = [[] for _ in range(2 * n)]
for _ in range(m):
  a, b, c, x = map(int, input().split())
  a -= 1
  b -= 1
  if x == 0:
    g[a].append((b, c))
    g[b].append((a, c))
    g[a + n].append((b + n, c))
    g[b + n].append((a + n, c))
  else:
    g[a + n].append((b, c))
    g[b + n].append((a, c))
    g[a].append((b, c))
    g[b].append((a, c))

src = 2 * n - 1
dist = [INF for _ in range(2 * n)]
dist[src] = 0
hp = [(0, src)]
while len(hp) > 0:
  cd, cur = heapq.heappop(hp)
  if cd > dist[cur]:
    continue

  for nxt, c in g[cur]:
    if dist[cur] + c < dist[nxt]:
      dist[nxt] = dist[cur] + c
      heapq.heappush(hp, (dist[nxt], nxt))

print(*dist[:n - 1], sep='\n')
0