結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,610 ms
125,796 KB
testcase_01 AC 1,757 ms
132,228 KB
testcase_02 AC 1,352 ms
112,072 KB
testcase_03 AC 1,150 ms
99,696 KB
testcase_04 AC 1,762 ms
132,180 KB
testcase_05 AC 1,610 ms
124,720 KB
testcase_06 AC 1,504 ms
118,232 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 1,219 ms
88,548 KB
testcase_14 AC 1,038 ms
79,028 KB
testcase_15 AC 893 ms
73,596 KB
testcase_16 AC 1,148 ms
86,724 KB
testcase_17 AC 826 ms
68,996 KB
testcase_18 AC 802 ms
66,988 KB
testcase_19 AC 1,175 ms
87,520 KB
testcase_20 AC 29 ms
10,752 KB
testcase_21 AC 30 ms
10,752 KB
testcase_22 AC 30 ms
10,752 KB
testcase_23 AC 343 ms
39,256 KB
testcase_24 AC 132 ms
22,952 KB
testcase_25 AC 67 ms
14,464 KB
testcase_26 AC 389 ms
38,932 KB
testcase_27 AC 89 ms
16,512 KB
testcase_28 AC 187 ms
24,376 KB
testcase_29 AC 46 ms
12,784 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):
    for t in G[s]:
        if t == p:
            continue
        if score[t] >= score[s]:
            continue
        score[t] = score[s]
        dfs(t, s)


score = list(range(sz))
for i in reversed(range(sz)):
    dfs(i, -1)

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