結果

問題 No.1393 Median of Walk
ユーザー chineristACchineristAC
提出日時 2020-11-12 22:54:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 450 ms / 2,000 ms
コード長 1,304 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,568 KB
実行使用メモリ 79,360 KB
最終ジャッジ日時 2024-07-19 22:41:51
合計ジャッジ時間 11,896 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,608 KB
testcase_01 AC 40 ms
52,608 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 43 ms
57,728 KB
testcase_04 AC 66 ms
66,560 KB
testcase_05 AC 55 ms
63,744 KB
testcase_06 AC 50 ms
60,544 KB
testcase_07 AC 41 ms
53,120 KB
testcase_08 AC 201 ms
77,696 KB
testcase_09 AC 184 ms
77,272 KB
testcase_10 AC 183 ms
77,808 KB
testcase_11 AC 434 ms
77,628 KB
testcase_12 AC 363 ms
77,720 KB
testcase_13 AC 313 ms
77,780 KB
testcase_14 AC 412 ms
79,360 KB
testcase_15 AC 377 ms
77,736 KB
testcase_16 AC 449 ms
77,716 KB
testcase_17 AC 371 ms
77,156 KB
testcase_18 AC 438 ms
77,696 KB
testcase_19 AC 448 ms
77,216 KB
testcase_20 AC 450 ms
78,580 KB
testcase_21 AC 327 ms
77,820 KB
testcase_22 AC 449 ms
78,080 KB
testcase_23 AC 418 ms
77,564 KB
testcase_24 AC 402 ms
77,696 KB
testcase_25 AC 309 ms
77,772 KB
testcase_26 AC 223 ms
77,340 KB
testcase_27 AC 236 ms
77,436 KB
testcase_28 AC 62 ms
65,660 KB
testcase_29 AC 66 ms
66,944 KB
testcase_30 AC 191 ms
76,032 KB
testcase_31 AC 191 ms
75,904 KB
testcase_32 AC 280 ms
77,308 KB
testcase_33 AC 242 ms
77,276 KB
testcase_34 AC 414 ms
77,440 KB
testcase_35 AC 368 ms
77,456 KB
testcase_36 AC 316 ms
77,272 KB
testcase_37 AC 40 ms
52,224 KB
testcase_38 AC 220 ms
76,160 KB
testcase_39 AC 234 ms
76,300 KB
testcase_40 AC 170 ms
76,508 KB
testcase_41 AC 152 ms
77,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
edge = [[] for i in range(n)]
edge_cost = {}
edge_weight = []
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))

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