結果

問題 No.1194 Replace
ユーザー 37zigen37zigen
提出日時 2020-08-31 18:23:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,605 ms / 2,000 ms
コード長 490 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 76,416 KB
最終ジャッジ日時 2024-04-28 06:53:41
合計ジャッジ時間 32,018 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,345 ms
55,968 KB
testcase_01 AC 1,440 ms
63,288 KB
testcase_02 AC 1,072 ms
50,368 KB
testcase_03 AC 844 ms
45,488 KB
testcase_04 AC 1,388 ms
63,160 KB
testcase_05 AC 1,287 ms
55,228 KB
testcase_06 AC 1,199 ms
52,848 KB
testcase_07 AC 1,605 ms
76,280 KB
testcase_08 AC 1,545 ms
76,416 KB
testcase_09 AC 1,559 ms
76,416 KB
testcase_10 AC 1,572 ms
76,372 KB
testcase_11 AC 1,603 ms
76,328 KB
testcase_12 AC 1,579 ms
76,412 KB
testcase_13 AC 1,565 ms
61,620 KB
testcase_14 AC 1,411 ms
52,600 KB
testcase_15 AC 976 ms
42,860 KB
testcase_16 AC 1,516 ms
56,608 KB
testcase_17 AC 942 ms
41,328 KB
testcase_18 AC 1,027 ms
43,288 KB
testcase_19 AC 1,432 ms
55,624 KB
testcase_20 AC 30 ms
10,624 KB
testcase_21 AC 30 ms
10,752 KB
testcase_22 AC 30 ms
10,496 KB
testcase_23 AC 382 ms
24,928 KB
testcase_24 AC 121 ms
15,296 KB
testcase_25 AC 95 ms
13,312 KB
testcase_26 AC 621 ms
30,556 KB
testcase_27 AC 140 ms
14,464 KB
testcase_28 AC 281 ms
20,132 KB
testcase_29 AC 44 ms
11,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)
N,M=map(int,input().split())
g=dict()
e=[]
for i in range(M):
    b,c=map(int,input().split())
    e.append((c,b))
    if c not in g:
        g[c]=[]
    g[c].append(b)
e.sort(reverse=True)
to=dict()
ans=N*(N+1)//2

def dfs(cur,v):
    global ans
    for dst in g[cur]:
        if dst in to or dst>v:
            continue
        to[dst]=v
        ans+=v-dst
        if dst in g:
            dfs(dst,v)

for src,tmp in e:
    dfs(src,src)

print(ans)
0