結果

問題 No.1194 Replace
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2020-08-22 15:27:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 941 ms / 2,000 ms
コード長 1,037 bytes
コンパイル時間 633 ms
コンパイル使用メモリ 82,020 KB
実行使用メモリ 190,732 KB
最終ジャッジ日時 2024-10-15 09:41:44
合計ジャッジ時間 15,649 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 618 ms
143,736 KB
testcase_01 AC 646 ms
142,008 KB
testcase_02 AC 534 ms
130,676 KB
testcase_03 AC 457 ms
121,180 KB
testcase_04 AC 644 ms
142,040 KB
testcase_05 AC 622 ms
143,576 KB
testcase_06 AC 581 ms
132,116 KB
testcase_07 AC 941 ms
190,732 KB
testcase_08 AC 925 ms
190,236 KB
testcase_09 AC 913 ms
190,204 KB
testcase_10 AC 902 ms
190,224 KB
testcase_11 AC 917 ms
190,192 KB
testcase_12 AC 939 ms
190,608 KB
testcase_13 AC 411 ms
107,420 KB
testcase_14 AC 345 ms
101,860 KB
testcase_15 AC 348 ms
105,240 KB
testcase_16 AC 386 ms
108,008 KB
testcase_17 AC 323 ms
104,060 KB
testcase_18 AC 306 ms
101,168 KB
testcase_19 AC 418 ms
113,132 KB
testcase_20 AC 41 ms
54,144 KB
testcase_21 AC 41 ms
54,172 KB
testcase_22 AC 41 ms
53,940 KB
testcase_23 AC 196 ms
96,860 KB
testcase_24 AC 132 ms
83,168 KB
testcase_25 AC 84 ms
77,404 KB
testcase_26 AC 181 ms
87,552 KB
testcase_27 AC 86 ms
77,520 KB
testcase_28 AC 132 ms
81,408 KB
testcase_29 AC 82 ms
77,440 KB
権限があれば一括ダウンロードができます

ソースコード

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 = (1+N) * N // 2
for i in maxi:

    if i <= N:
        ans -= i
        ans += maxi[i]

print (ans)






0