結果

問題 No.1320 Two Type Min Cost Cycle
ユーザー qibqib
提出日時 2023-04-09 00:08:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,066 ms / 2,000 ms
コード長 896 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 82,804 KB
最終ジャッジ日時 2024-10-03 21:36:35
合計ジャッジ時間 16,002 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,264 KB
testcase_01 AC 40 ms
53,464 KB
testcase_02 AC 40 ms
53,772 KB
testcase_03 AC 41 ms
54,416 KB
testcase_04 AC 40 ms
52,824 KB
testcase_05 AC 39 ms
53,820 KB
testcase_06 AC 40 ms
53,292 KB
testcase_07 AC 84 ms
76,956 KB
testcase_08 AC 113 ms
76,752 KB
testcase_09 AC 733 ms
79,636 KB
testcase_10 AC 102 ms
77,016 KB
testcase_11 AC 674 ms
79,684 KB
testcase_12 AC 233 ms
79,096 KB
testcase_13 AC 402 ms
78,660 KB
testcase_14 AC 54 ms
66,608 KB
testcase_15 AC 109 ms
77,108 KB
testcase_16 AC 175 ms
77,528 KB
testcase_17 AC 76 ms
76,156 KB
testcase_18 AC 69 ms
74,452 KB
testcase_19 AC 444 ms
78,608 KB
testcase_20 AC 52 ms
64,332 KB
testcase_21 AC 732 ms
79,788 KB
testcase_22 AC 41 ms
53,884 KB
testcase_23 AC 40 ms
53,700 KB
testcase_24 AC 40 ms
52,864 KB
testcase_25 AC 40 ms
52,952 KB
testcase_26 AC 41 ms
54,260 KB
testcase_27 AC 40 ms
54,120 KB
testcase_28 AC 61 ms
71,024 KB
testcase_29 AC 182 ms
77,804 KB
testcase_30 AC 52 ms
62,352 KB
testcase_31 AC 86 ms
76,248 KB
testcase_32 AC 40 ms
53,092 KB
testcase_33 AC 354 ms
77,684 KB
testcase_34 AC 210 ms
77,768 KB
testcase_35 AC 141 ms
77,296 KB
testcase_36 AC 118 ms
76,796 KB
testcase_37 AC 97 ms
76,428 KB
testcase_38 AC 142 ms
76,980 KB
testcase_39 AC 119 ms
76,724 KB
testcase_40 AC 40 ms
53,216 KB
testcase_41 AC 41 ms
53,560 KB
testcase_42 AC 42 ms
53,124 KB
testcase_43 AC 145 ms
77,468 KB
testcase_44 AC 122 ms
77,684 KB
testcase_45 AC 1,066 ms
79,660 KB
testcase_46 AC 90 ms
76,332 KB
testcase_47 AC 203 ms
77,648 KB
testcase_48 AC 500 ms
79,108 KB
testcase_49 AC 101 ms
76,496 KB
testcase_50 AC 41 ms
53,032 KB
testcase_51 AC 40 ms
52,660 KB
testcase_52 AC 202 ms
77,124 KB
testcase_53 AC 151 ms
76,872 KB
testcase_54 AC 787 ms
81,792 KB
testcase_55 AC 783 ms
81,668 KB
testcase_56 AC 778 ms
81,780 KB
testcase_57 AC 845 ms
82,804 KB
testcase_58 AC 845 ms
82,292 KB
testcase_59 AC 846 ms
82,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

INF = 1 << 60

t = int(input())
n, m = map(int, input().split())
edges = []
for _ in range(m):
  u, v, w = map(int, input().split())
  edges.append((u - 1, v - 1, w))

g = [[] for _ in range(n)]
if t == 0:
  for i in range(m):
    u, v, w = edges[i]
    g[u].append((v, w, i))
    g[v].append((u, w, i))
else:
  for i in range(m):
    u, v, w = edges[i]
    g[u].append((v, w, i))

ans = INF
for i in range(m):
  dst, src, w = edges[i]
  dist = [INF for _ in range(n)]
  dist[src] = 0
  hp = [(0, src)]
  while len(hp) > 0:
    cd, cur = heapq.heappop(hp)
    if cur == dst:
      break
    if cd > dist[cur]:
      continue
    for nxt, cost, j in g[cur]:
      if j == i or dist[nxt] <= dist[cur] + cost:
        continue
      dist[nxt] = dist[cur] + cost
      heapq.heappush(hp, (dist[nxt], nxt))

  ans = min(ans, dist[dst] + w)

if ans < INF:
  print(ans)
else:
  print("-1")
0