結果

問題 No.1194 Replace
ユーザー ああいいああいい
提出日時 2022-04-05 23:25:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 754 ms / 2,000 ms
コード長 603 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 265,792 KB
最終ジャッジ日時 2024-11-27 08:27:29
合計ジャッジ時間 14,769 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 505 ms
173,268 KB
testcase_01 AC 603 ms
202,296 KB
testcase_02 AC 469 ms
169,068 KB
testcase_03 AC 423 ms
165,212 KB
testcase_04 AC 568 ms
202,400 KB
testcase_05 AC 510 ms
170,740 KB
testcase_06 AC 490 ms
190,096 KB
testcase_07 AC 754 ms
265,404 KB
testcase_08 AC 744 ms
265,792 KB
testcase_09 AC 753 ms
265,608 KB
testcase_10 AC 753 ms
265,392 KB
testcase_11 AC 726 ms
265,384 KB
testcase_12 AC 739 ms
265,384 KB
testcase_13 AC 417 ms
126,784 KB
testcase_14 AC 365 ms
117,952 KB
testcase_15 AC 326 ms
133,192 KB
testcase_16 AC 368 ms
119,796 KB
testcase_17 AC 333 ms
126,552 KB
testcase_18 AC 297 ms
117,780 KB
testcase_19 AC 389 ms
128,592 KB
testcase_20 AC 42 ms
53,760 KB
testcase_21 AC 42 ms
53,376 KB
testcase_22 AC 44 ms
53,632 KB
testcase_23 AC 209 ms
100,976 KB
testcase_24 AC 142 ms
84,864 KB
testcase_25 AC 100 ms
77,216 KB
testcase_26 AC 197 ms
91,008 KB
testcase_27 AC 105 ms
77,184 KB
testcase_28 AC 153 ms
83,840 KB
testcase_29 AC 94 ms
77,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
from collections import defaultdict
G = defaultdict(list)
for _ in range(M):
    b,c = map(int,input().split())
    G[c].append(b)
l = sorted(G)
memo = defaultdict(int)
stack = []
dp = defaultdict(int)
for v in reversed(l):
    if memo[v] == 1:continue
    dp[v] = v
    memo[v] = 1
    stack = [v]
    while stack:
        now = stack.pop()
        for u in G[now]:
            if memo[u] == 0:
                stack.append(u)
                dp[u] = max(u,dp[v])
                memo[u] = 1
ans = N * (N + 1) // 2
for k in dp:
    ans += dp[k] - k
print(ans)
#print(dp)
0