結果

問題 No.1194 Replace
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2020-08-22 15:24:16
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,050 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 157,864 KB
最終ジャッジ日時 2024-04-23 09:42:24
合計ジャッジ時間 7,268 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

https://yukicoder.me/problems/no/1194

できるだけ大きい数字にしたい
グラフを構築する
目的の数字になったら操作しなければいいだけ
各点から行ける最大のノードを探索すればいい

"""

from sys import stdin
import sys

N,M = map(int,stdin.readline().split())

lis = {}
nums = []
maxi = {}

for i in range(M):

    b,c = map(int,stdin.readline().split())
    if b not in lis:
        lis[b] = []
        nums.append(b)
        maxi[b] = b
    if c not in lis:
        lis[c] = []
        nums.append(c)
        maxi[c] = c
    lis[c].append(b)

nums.sort()
nums.reverse()

from collections import deque

for s in nums:

    if maxi[s] > s:
        continue
    
    q = deque([s])
    while len(q) > 0:
        now = q.popleft()
        for nex in lis[now]:
            if maxi[nex] < maxi[now]:
                maxi[nex] = maxi[now]
                q.append(nex)

ans = 0
for i in range(1,N+1):
    if i in maxi:
        ans += maxi[i]
    else:
        ans += i
print (ans)
    








0