結果

問題 No.1393 Median of Walk
ユーザー chineristACchineristAC
提出日時 2020-11-13 00:30:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 447 ms / 2,000 ms
コード長 1,505 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 79,488 KB
最終ジャッジ日時 2024-07-19 22:48:10
合計ジャッジ時間 11,289 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,480 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 42 ms
52,224 KB
testcase_03 AC 46 ms
57,472 KB
testcase_04 AC 71 ms
66,048 KB
testcase_05 AC 61 ms
63,360 KB
testcase_06 AC 54 ms
60,800 KB
testcase_07 AC 43 ms
52,736 KB
testcase_08 AC 185 ms
77,832 KB
testcase_09 AC 178 ms
77,152 KB
testcase_10 AC 182 ms
77,952 KB
testcase_11 AC 414 ms
78,080 KB
testcase_12 AC 348 ms
78,208 KB
testcase_13 AC 286 ms
77,952 KB
testcase_14 AC 385 ms
79,488 KB
testcase_15 AC 363 ms
78,208 KB
testcase_16 AC 424 ms
77,736 KB
testcase_17 AC 335 ms
77,604 KB
testcase_18 AC 414 ms
77,696 KB
testcase_19 AC 419 ms
77,568 KB
testcase_20 AC 423 ms
78,336 KB
testcase_21 AC 306 ms
77,568 KB
testcase_22 AC 447 ms
78,336 KB
testcase_23 AC 422 ms
77,552 KB
testcase_24 AC 395 ms
77,696 KB
testcase_25 AC 300 ms
77,280 KB
testcase_26 AC 214 ms
77,748 KB
testcase_27 AC 219 ms
77,824 KB
testcase_28 AC 62 ms
65,536 KB
testcase_29 AC 65 ms
67,328 KB
testcase_30 AC 186 ms
76,032 KB
testcase_31 AC 190 ms
75,904 KB
testcase_32 AC 288 ms
77,292 KB
testcase_33 AC 245 ms
77,188 KB
testcase_34 AC 385 ms
77,624 KB
testcase_35 AC 371 ms
77,200 KB
testcase_36 AC 287 ms
77,720 KB
testcase_37 AC 39 ms
52,224 KB
testcase_38 AC 221 ms
76,160 KB
testcase_39 AC 219 ms
76,160 KB
testcase_40 AC 161 ms
76,288 KB
testcase_41 AC 143 ms
77,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())

assert 2<=n<=1000
assert 1<=m<=min(n*(n-1)//2,2500)

edge = [[] for i in range(n)]
edge_cost = {}
edge_weight = []

check = set([])

for i in range(m):
    u,v,w = map(int,input().split())
    edge[u-1].append(v-1)
    edge_cost[u-1,v-1] = 1
    edge_weight.append((u-1,v-1,w))

    assert 1<=u<=n
    assert 1<=v<=n
    assert 1<=w<=10**9
    assert (u,v) not in check
    assert u!=v
    check.add((u,v))

dist = [10**18 for i in range(n)]
ans = [-1 for i in range(n)]
dist[0] = 0

def dfs(s,w):
    que = [s]
    while que:
        v = que.pop()
        for nv in edge[v]:
            if dist[v]!=-10**18:
                if dist[nv] > dist[v] + edge_cost[v,nv]:
                    dist[nv] = dist[v] + edge_cost[v,nv]
                    if dist[nv] < -n:
                        dist[nv] = -10**18
                    if dist[nv]<=0 and ans[nv]==-1:
                        ans[nv] = w
                    que.append(nv)
            else:
                if dist[nv]!=-10**18:
                    dist[nv] = -10**18
                    if ans[nv]==-1:
                        ans[nv] = w
                    que.append(nv)

dfs(0,-1)

edge_weight.sort(key = lambda x:x[2])
for u,v,w in edge_weight:
    edge_cost[u,v] = -1
    if dist[v] > dist[u] + edge_cost[u,v]:
        dist[v] = dist[u] + edge_cost[u,v]
        if dist[v] < -n:
            dist[v] = -10**18
        if dist[v]<=0 and ans[v]==-1:
            ans[v] = w
        dfs(v,w)

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