結果

問題 No.807 umg tours
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-18 19:01:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,177 ms / 4,000 ms
コード長 734 bytes
コンパイル時間 404 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 189,484 KB
最終ジャッジ日時 2024-09-18 19:01:53
合計ジャッジ時間 23,937 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
62,720 KB
testcase_01 AC 57 ms
63,868 KB
testcase_02 AC 64 ms
66,688 KB
testcase_03 AC 62 ms
65,792 KB
testcase_04 AC 54 ms
62,080 KB
testcase_05 AC 57 ms
62,720 KB
testcase_06 AC 69 ms
68,480 KB
testcase_07 AC 61 ms
65,280 KB
testcase_08 AC 40 ms
53,120 KB
testcase_09 AC 42 ms
53,632 KB
testcase_10 AC 43 ms
53,632 KB
testcase_11 AC 1,245 ms
144,892 KB
testcase_12 AC 1,318 ms
138,236 KB
testcase_13 AC 1,655 ms
159,956 KB
testcase_14 AC 831 ms
113,048 KB
testcase_15 AC 669 ms
105,248 KB
testcase_16 AC 1,702 ms
163,336 KB
testcase_17 AC 2,177 ms
183,580 KB
testcase_18 AC 2,150 ms
182,908 KB
testcase_19 AC 2,098 ms
180,952 KB
testcase_20 AC 964 ms
131,280 KB
testcase_21 AC 1,016 ms
133,424 KB
testcase_22 AC 532 ms
100,980 KB
testcase_23 AC 407 ms
95,312 KB
testcase_24 AC 872 ms
169,388 KB
testcase_25 AC 2,164 ms
189,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
e=[[] for i in range(n*2)]
for i in range(m):
  a,b,c=map(int,input().split())
  a-=1
  b-=1
  e[a]+=[(b,c)]
  e[a]+=[(b+n,0)]
  e[a+n]+=[(b+n,c)]
  e[b]+=[(a,c)]
  e[b]+=[(a+n,0)]
  e[b+n]+=[(a+n,c)]
X=10**20
from heapq import heappush,heappop
v=[X]*n*2
s=0
v[s]=0
q=[(v[s],s)]
while len(q)>0:
  sc,sp=heappop(q)
  if sc>v[sp]:
    continue
  for tp,tc in e[sp]:
    if v[tp]>sc+tc:
      v[tp]=sc+tc
      heappush(q,(v[tp],tp))
v1=v.copy()
v=[X]*n*2
s=0+n
v[s]=0
q=[(v[s],s)]
while len(q)>0:
  sc,sp=heappop(q)
  if sc>v[sp]:
    continue
  for tp,tc in e[sp]:
    if v[tp]>sc+tc:
      v[tp]=sc+tc
      heappush(q,(v[tp],tp))
v2=v.copy()
for i in range(n):
  print(min(v1[i]+v2[i+n],v1[i+n]+v2[i+n]))
0