結果

問題 No.1194 Replace
ユーザー mkawa2
提出日時 2021-07-06 00:21:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,073 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 117,048 KB
最終ジャッジ日時 2024-07-01 12:03:34
合計ジャッジ時間 7,883 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other WA * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

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)
for _ in range(m):
    u, v = LI()
    to[v].append(u)

dp = defaultdict(int)
dp[n] = n
hp = [(-n, n)]

while hp:
    d, u = heappop(hp)
    d = -d
    if d < dp[u]: continue
    for v in to[u]:
        if d <= v or 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)
0