結果

問題 No.1194 Replace
ユーザー mkawa2mkawa2
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 46 ms
53,760 KB
testcase_21 AC 44 ms
53,632 KB
testcase_22 AC 45 ms
53,504 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

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