結果

問題 No.1194 Replace
ユーザー tktk_snsntktk_snsn
提出日時 2021-02-08 23:14:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 850 bytes
コンパイル時間 100 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 195,440 KB
最終ジャッジ日時 2024-07-06 03:52:54
合計ジャッジ時間 38,414 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,629 ms
125,616 KB
testcase_01 AC 1,716 ms
131,984 KB
testcase_02 AC 1,335 ms
112,140 KB
testcase_03 AC 1,144 ms
99,612 KB
testcase_04 AC 1,743 ms
132,116 KB
testcase_05 AC 1,588 ms
124,712 KB
testcase_06 AC 1,610 ms
118,520 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 1,144 ms
88,316 KB
testcase_14 AC 929 ms
78,844 KB
testcase_15 AC 836 ms
73,668 KB
testcase_16 AC 1,133 ms
86,440 KB
testcase_17 AC 790 ms
68,696 KB
testcase_18 AC 799 ms
67,036 KB
testcase_19 AC 1,193 ms
87,372 KB
testcase_20 AC 29 ms
10,624 KB
testcase_21 AC 29 ms
10,752 KB
testcase_22 AC 30 ms
10,496 KB
testcase_23 AC 340 ms
39,016 KB
testcase_24 AC 129 ms
22,840 KB
testcase_25 AC 65 ms
14,208 KB
testcase_26 AC 391 ms
38,952 KB
testcase_27 AC 83 ms
16,128 KB
testcase_28 AC 181 ms
24,264 KB
testcase_29 AC 47 ms
12,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)

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

for b, c in BC:
    val.add(b)
    val.add(c)

val = sorted(val)
vtoi = {v: i for i, v in enumerate(val)}
sz = len(val)
G = [set() for _ in range(sz)]
for b, c in BC:
    b = vtoi[b]
    c = vtoi[c]
    G[c].add(b)


def dfs(s, p):
    vis[s] = 1
    for t in G[s]:
        if t == p:
            continue
        if vis[t]:
            continue
        if score[t] >= score[s]:
            continue
        score[t] = score[s]
        dfs(t, s)


vis = [0] * sz
score = list(range(sz))
for i in reversed(range(sz)):
    if vis[i]:
        continue
    dfs(i, -1)

ans = N * (N + 1) // 2
for i, v in enumerate(score):
    ans -= val[i]
    ans += val[v]
print(ans)
0