結果

問題 No.1194 Replace
ユーザー H3PO4H3PO4
提出日時 2021-12-13 09:16:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 843 ms / 2,000 ms
コード長 715 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 195,400 KB
最終ジャッジ日時 2024-07-22 04:24:28
合計ジャッジ時間 13,151 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 500 ms
187,136 KB
testcase_01 AC 567 ms
166,248 KB
testcase_02 AC 435 ms
172,928 KB
testcase_03 AC 363 ms
152,448 KB
testcase_04 AC 511 ms
166,204 KB
testcase_05 AC 496 ms
187,496 KB
testcase_06 AC 460 ms
157,580 KB
testcase_07 AC 721 ms
193,812 KB
testcase_08 AC 731 ms
195,232 KB
testcase_09 AC 679 ms
194,092 KB
testcase_10 AC 682 ms
194,896 KB
testcase_11 AC 843 ms
193,692 KB
testcase_12 AC 674 ms
195,400 KB
testcase_13 AC 376 ms
145,280 KB
testcase_14 AC 312 ms
127,744 KB
testcase_15 AC 308 ms
140,416 KB
testcase_16 AC 367 ms
130,460 KB
testcase_17 AC 273 ms
125,184 KB
testcase_18 AC 262 ms
126,080 KB
testcase_19 AC 359 ms
135,168 KB
testcase_20 AC 39 ms
53,504 KB
testcase_21 AC 39 ms
53,760 KB
testcase_22 AC 39 ms
53,620 KB
testcase_23 AC 169 ms
104,428 KB
testcase_24 AC 112 ms
87,040 KB
testcase_25 AC 74 ms
78,080 KB
testcase_26 AC 166 ms
98,644 KB
testcase_27 AC 80 ms
78,208 KB
testcase_28 AC 113 ms
83,840 KB
testcase_29 AC 77 ms
77,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque
input = sys.stdin.buffer.readline

N, M = map(int, input().split())
BC = [tuple(map(int, input().split())) for _ in range(M)]

nodes = set()
for b, c in BC:
    nodes.add(b)
    nodes.add(c)
nodes = sorted(nodes)
comp = {x: i for i, x in enumerate(nodes)}
L = len(comp)

G = [[] for _ in range(L)]
for b, c in BC:
    G[comp[c]].append(comp[b])

table = nodes.copy()
for i in range(L - 1, -1, -1):
    x = nodes[i]
    if x < table[i]:
        continue
    d = deque([i])
    while d:
        v = d.pop()
        for u in G[v]:
            if table[u] < x:
                table[u] = x
                d.append(u)
ans = N * (N + 1) // 2 - sum(nodes) + sum(table)
print(ans)
0