結果
| 問題 |
No.807 umg tours
|
| コンテスト | |
| ユーザー |
buey_t
|
| 提出日時 | 2023-03-19 13:13:12 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 1,844 bytes |
| コンパイル時間 | 206 ms |
| コンパイル使用メモリ | 82,220 KB |
| 実行使用メモリ | 176,820 KB |
| 最終ジャッジ日時 | 2024-09-18 13:46:05 |
| 合計ジャッジ時間 | 34,964 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 22 TLE * 4 |
ソースコード
def main():
try:
import pypyjit
pypyjit.set_param('max_unroll_recursion=-1')
except:
pass
try:
import sys
sys.setrecursionlimit(10**7)
except:
pass
from math import sqrt,sin,cos,tan,ceil,radians,floor,gcd,exp,log,log10,log2,factorial,fsum
from heapq import heapify, heappop, heappush
from bisect import bisect_left, bisect_right
from copy import deepcopy
import copy
import random
from collections import deque,Counter,defaultdict
from itertools import permutations,combinations
from decimal import Decimal,ROUND_HALF_UP
#tmp = Decimal(mid).quantize(Decimal('0'), rounding=ROUND_HALF_UP)
from functools import lru_cache, reduce
#@lru_cache(maxsize=None)
from operator import add,sub,mul,xor,and_,or_,itemgetter
INF = 10**18
mod1 = 10**9+7
mod2 = 998244353
#DecimalならPython
'''
'''
N,M = map(int, input().split())
G = [[] for _ in range(N+1)]
for _ in range(M):
a,b,c = map(int, input().split())
G[a].append((b,c))
G[b].append((a,c))
Q = []
heappush(Q,(0,1,0))
dis = [[INF]*2 for _ in range(N+1)]
while len(Q) > 0:
cnt,pos,f = heappop(Q)
if dis[pos][f] != INF:
continue
dis[pos][f] = cnt
for nx,d in G[pos]:
if dis[nx][f] == INF:
heappush(Q,(cnt+d,nx,f))
if f == 0:
heappush(Q,(cnt,nx,1))
for i in range(1,N+1):
print(dis[i][0]+min(dis[i][0],dis[i][1]))
if __name__ == '__main__':
main()
buey_t