結果

問題 No.1601 With Animals into Institute
ユーザー mkawa2mkawa2
提出日時 2023-05-19 15:23:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,078 ms / 3,000 ms
コード長 1,555 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 118,624 KB
最終ジャッジ日時 2024-05-10 02:21:07
合計ジャッジ時間 18,856 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,288 KB
testcase_01 AC 40 ms
53,640 KB
testcase_02 AC 41 ms
54,968 KB
testcase_03 AC 129 ms
77,888 KB
testcase_04 AC 125 ms
78,052 KB
testcase_05 AC 130 ms
77,916 KB
testcase_06 AC 979 ms
117,324 KB
testcase_07 AC 1,057 ms
118,372 KB
testcase_08 AC 964 ms
117,656 KB
testcase_09 AC 890 ms
117,596 KB
testcase_10 AC 994 ms
118,624 KB
testcase_11 AC 1,012 ms
117,560 KB
testcase_12 AC 1,058 ms
117,604 KB
testcase_13 AC 998 ms
117,016 KB
testcase_14 AC 1,049 ms
117,876 KB
testcase_15 AC 1,046 ms
118,260 KB
testcase_16 AC 1,078 ms
118,120 KB
testcase_17 AC 1,029 ms
118,188 KB
testcase_18 AC 126 ms
77,880 KB
testcase_19 AC 128 ms
77,860 KB
testcase_20 AC 130 ms
78,160 KB
testcase_21 AC 130 ms
78,172 KB
testcase_22 AC 136 ms
77,980 KB
testcase_23 AC 129 ms
77,960 KB
testcase_24 AC 128 ms
78,544 KB
testcase_25 AC 127 ms
78,088 KB
testcase_26 AC 137 ms
77,872 KB
testcase_27 AC 41 ms
53,668 KB
testcase_28 AC 39 ms
53,556 KB
testcase_29 AC 40 ms
53,220 KB
testcase_30 AC 41 ms
54,576 KB
testcase_31 AC 40 ms
54,512 KB
testcase_32 AC 41 ms
53,912 KB
testcase_33 AC 41 ms
53,200 KB
testcase_34 AC 41 ms
54,668 KB
testcase_35 AC 41 ms
54,712 KB
testcase_36 AC 42 ms
54,432 KB
testcase_37 AC 39 ms
53,288 KB
testcase_38 AC 42 ms
54,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = (1 << 63)-1
# md = 10**9+7
md = 998244353

from heapq import *

n,m=LI()
s=n
to=[[] for _ in range(n)]
for _ in range(m):
    u,v,c,x=LI()
    u,v=u-1,v-1
    if x:
        to+=[[],[]]
        to[u].append((s,c))
        to[s].append((v,0))
        to[v].append((s+1,c))
        to[s+1].append((u,0))
        s+=2
    else:
        to[u].append((v,c))
        to[v].append((u,c))

d1=[inf]*s
d1[n-1]=0
hp=[(0,n-1)]
while hp:
    d,u=heappop(hp)
    if d>d1[u]:continue
    for v,c in to[u]:
        nd=d+c
        if nd>=d1[v]:continue
        d1[v]=nd
        heappush(hp,(nd,v))

d2=[inf]*s
hp=[]
for u in range(n,s):
    d2[u]=d1[u]
    heappush(hp,(d2[u],u))
while hp:
    d,u=heappop(hp)
    if d>d2[u]:continue
    for v,c in to[u]:
        nd=d+c
        if nd>=d2[v]:continue
        d2[v]=nd
        heappush(hp,(nd,v))

print(*d2[:n-1],sep="\n")
0