結果
| 問題 | No.1601 With Animals into Institute | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2021-06-24 22:30:33 | 
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) | 
| 結果 | 
                                TLE
                                 
                            (最新) 
                                AC
                                 
                            (最初) | 
| 実行時間 | - | 
| コード長 | 841 bytes | 
| コンパイル時間 | 199 ms | 
| コンパイル使用メモリ | 12,672 KB | 
| 実行使用メモリ | 86,208 KB | 
| 最終ジャッジ日時 | 2024-07-02 02:07:13 | 
| 合計ジャッジ時間 | 38,993 ms | 
| ジャッジサーバーID (参考情報) | judge2 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 35 TLE * 1 | 
ソースコード
import sys
input = lambda : sys.stdin.readline().rstrip()
sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")
writef = lambda x: print("{:.12f}".format(x))
n,m = list(map(int, input().split()))
ns = [[] for _ in range(n)]
s = 0
for i in range(m):
    a,b,c,x = map(int, input().split())
    a -= 1
    b -= 1
    ns[a].append((c,b,x))
    ns[b].append((c,a,x))
    s += c
from heapq import heappop as hpp, heappush as hp
inf = 2*s + 10
vals = [[inf]*n for _ in range(2)]
vals[0][n-1] = 0
q = [(0, n-1, 0)]
while q:
    d,u,x = hpp(q)
    if vals[x][u]<d:
        continue
    for c,v,xx in ns[u]:
        nx = x|xx
        nd = d+c
        if vals[nx][v]>nd:
            vals[nx][v] = nd
            hp(q, (nd, v, nx))
ans = vals[1]
write("\n".join(map(str, ans[:n-1])))
            
            
            
        