結果
| 問題 | No.1194 Replace |
| コンテスト | |
| ユーザー |
mkawa2
|
| 提出日時 | 2021-07-06 00:44:12 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 1,665 ms / 2,000 ms |
| コード長 | 1,138 bytes |
| 記録 | |
| コンパイル時間 | 183 ms |
| コンパイル使用メモリ | 81,844 KB |
| 実行使用メモリ | 267,780 KB |
| 最終ジャッジ日時 | 2024-07-01 12:04:05 |
| 合計ジャッジ時間 | 26,926 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 27 |
ソースコード
import sys
# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = 10**16
# md = 998244353
md = 10**9+7
from collections import defaultdict
from heapq import *
n, m = LI()
to = defaultdict(list)
uu = set()
for _ in range(m):
u, v = LI()
to[v].append(u)
uu.add(u)
uu.add(v)
dp = defaultdict(int)
hp = []
for u in uu:
heappush(hp, (-u, u))
dp[u] = u
while hp:
d, u = heappop(hp)
d = -d
if d < dp[u]: continue
for v in to[u]:
if dp[v] >= d: continue
dp[v] = d
heappush(hp, (-d, v))
# print(dp)
ans = n*(n+1)//2
for u, d in dp.items():
ans += d-u
print(ans)
mkawa2