結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 470 ms
173,396 KB
testcase_01 AC 536 ms
202,552 KB
testcase_02 AC 427 ms
169,588 KB
testcase_03 AC 379 ms
165,276 KB
testcase_04 AC 522 ms
202,284 KB
testcase_05 AC 464 ms
170,892 KB
testcase_06 AC 456 ms
190,476 KB
testcase_07 AC 686 ms
265,432 KB
testcase_08 AC 699 ms
265,780 KB
testcase_09 AC 673 ms
265,580 KB
testcase_10 AC 668 ms
265,800 KB
testcase_11 AC 680 ms
265,828 KB
testcase_12 AC 715 ms
265,616 KB
testcase_13 AC 417 ms
127,164 KB
testcase_14 AC 325 ms
117,940 KB
testcase_15 AC 281 ms
133,624 KB
testcase_16 AC 337 ms
119,672 KB
testcase_17 AC 298 ms
126,812 KB
testcase_18 AC 272 ms
118,192 KB
testcase_19 AC 354 ms
128,844 KB
testcase_20 AC 38 ms
53,756 KB
testcase_21 AC 37 ms
53,760 KB
testcase_22 AC 36 ms
53,504 KB
testcase_23 AC 181 ms
101,496 KB
testcase_24 AC 122 ms
85,208 KB
testcase_25 AC 83 ms
77,232 KB
testcase_26 AC 177 ms
90,880 KB
testcase_27 AC 93 ms
77,420 KB
testcase_28 AC 134 ms
83,840 KB
testcase_29 AC 81 ms
77,308 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