結果

問題 No.1194 Replace
ユーザー roarisroaris
提出日時 2020-08-22 17:44:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 849 ms / 2,000 ms
コード長 781 bytes
コンパイル時間 446 ms
コンパイル使用メモリ 81,904 KB
実行使用メモリ 217,472 KB
最終ジャッジ日時 2024-10-15 11:30:15
合計ジャッジ時間 15,006 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 569 ms
216,064 KB
testcase_01 AC 578 ms
196,608 KB
testcase_02 AC 483 ms
151,740 KB
testcase_03 AC 401 ms
137,068 KB
testcase_04 AC 578 ms
204,800 KB
testcase_05 AC 535 ms
217,472 KB
testcase_06 AC 508 ms
198,400 KB
testcase_07 AC 849 ms
196,736 KB
testcase_08 AC 828 ms
197,632 KB
testcase_09 AC 820 ms
197,248 KB
testcase_10 AC 828 ms
196,992 KB
testcase_11 AC 819 ms
197,632 KB
testcase_12 AC 830 ms
197,092 KB
testcase_13 AC 421 ms
175,744 KB
testcase_14 AC 358 ms
160,000 KB
testcase_15 AC 340 ms
157,568 KB
testcase_16 AC 399 ms
160,408 KB
testcase_17 AC 313 ms
122,456 KB
testcase_18 AC 315 ms
143,360 KB
testcase_19 AC 428 ms
169,856 KB
testcase_20 AC 42 ms
53,888 KB
testcase_21 AC 43 ms
53,888 KB
testcase_22 AC 43 ms
53,632 KB
testcase_23 AC 186 ms
105,464 KB
testcase_24 AC 126 ms
88,320 KB
testcase_25 AC 85 ms
78,336 KB
testcase_26 AC 183 ms
110,592 KB
testcase_27 AC 86 ms
80,000 KB
testcase_28 AC 131 ms
91,136 KB
testcase_29 AC 85 ms
78,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

def bfs(s):
    if ma[s]!=-1:
        return
    
    q = deque([s])
    ma[s] = s
    
    while q:
        v = q.popleft()
        
        for nv in G[v]:
            if ma[nv]==-1:
                ma[nv] = s
                q.append(nv)

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

for B, C in BC:
    l.append(B-1)
    l.append(C-1)

l = list(set(l))
l.sort()
idx = defaultdict(int)

for i in range(len(l)):
    idx[l[i]] = i

G = [[] for _ in range(len(l))]

for B, C in BC:
    G[idx[C-1]].append(idx[B-1])

ma = [-1]*len(l)

for i in range(len(l)-1, -1, -1):
    bfs(i)

ans = N*(N+1)//2

for li in l:
    ans -= li
    ans += l[ma[idx[li]]]

print(ans)
0