結果
問題 | No.1601 With Animals into Institute |
ユーザー | mkawa2 |
提出日時 | 2023-05-19 15:23:45 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,119 ms / 3,000 ms |
コード長 | 1,555 bytes |
コンパイル時間 | 427 ms |
コンパイル使用メモリ | 82,132 KB |
実行使用メモリ | 118,688 KB |
最終ジャッジ日時 | 2024-12-17 22:28:08 |
合計ジャッジ時間 | 19,991 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
53,012 KB |
testcase_01 | AC | 41 ms
54,728 KB |
testcase_02 | AC | 42 ms
54,304 KB |
testcase_03 | AC | 133 ms
77,976 KB |
testcase_04 | AC | 133 ms
78,052 KB |
testcase_05 | AC | 133 ms
77,916 KB |
testcase_06 | AC | 1,015 ms
117,324 KB |
testcase_07 | AC | 1,077 ms
118,688 KB |
testcase_08 | AC | 1,034 ms
117,900 KB |
testcase_09 | AC | 1,059 ms
117,316 KB |
testcase_10 | AC | 1,112 ms
118,616 KB |
testcase_11 | AC | 1,046 ms
117,508 KB |
testcase_12 | AC | 1,091 ms
117,596 KB |
testcase_13 | AC | 1,052 ms
117,332 KB |
testcase_14 | AC | 1,119 ms
117,760 KB |
testcase_15 | AC | 1,102 ms
118,624 KB |
testcase_16 | AC | 1,112 ms
117,884 KB |
testcase_17 | AC | 1,086 ms
118,196 KB |
testcase_18 | AC | 134 ms
78,028 KB |
testcase_19 | AC | 138 ms
77,828 KB |
testcase_20 | AC | 138 ms
78,252 KB |
testcase_21 | AC | 134 ms
78,268 KB |
testcase_22 | AC | 137 ms
78,260 KB |
testcase_23 | AC | 134 ms
78,116 KB |
testcase_24 | AC | 135 ms
78,040 KB |
testcase_25 | AC | 134 ms
78,356 KB |
testcase_26 | AC | 139 ms
77,852 KB |
testcase_27 | AC | 40 ms
53,088 KB |
testcase_28 | AC | 40 ms
53,448 KB |
testcase_29 | AC | 42 ms
54,064 KB |
testcase_30 | AC | 42 ms
55,008 KB |
testcase_31 | AC | 42 ms
53,700 KB |
testcase_32 | AC | 42 ms
53,408 KB |
testcase_33 | AC | 42 ms
53,408 KB |
testcase_34 | AC | 41 ms
53,300 KB |
testcase_35 | AC | 41 ms
53,964 KB |
testcase_36 | AC | 42 ms
53,152 KB |
testcase_37 | AC | 42 ms
54,252 KB |
testcase_38 | AC | 43 ms
54,316 KB |
ソースコード
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")