結果

問題 No.1194 Replace
ユーザー 37zigen37zigen
提出日時 2020-08-31 18:19:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,465 ms / 2,000 ms
コード長 481 bytes
コンパイル時間 120 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 76,428 KB
最終ジャッジ日時 2024-11-16 19:55:16
合計ジャッジ時間 28,372 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,110 ms
56,156 KB
testcase_01 AC 1,217 ms
63,256 KB
testcase_02 AC 902 ms
50,632 KB
testcase_03 AC 727 ms
45,684 KB
testcase_04 AC 1,247 ms
63,316 KB
testcase_05 AC 1,107 ms
55,164 KB
testcase_06 AC 1,049 ms
52,908 KB
testcase_07 AC 1,342 ms
76,428 KB
testcase_08 AC 1,310 ms
76,420 KB
testcase_09 AC 1,319 ms
76,312 KB
testcase_10 AC 1,394 ms
76,396 KB
testcase_11 AC 1,386 ms
76,372 KB
testcase_12 AC 1,373 ms
76,428 KB
testcase_13 AC 1,465 ms
61,572 KB
testcase_14 AC 1,324 ms
52,512 KB
testcase_15 AC 891 ms
43,012 KB
testcase_16 AC 1,319 ms
56,636 KB
testcase_17 AC 787 ms
41,360 KB
testcase_18 AC 941 ms
43,192 KB
testcase_19 AC 1,349 ms
55,440 KB
testcase_20 AC 26 ms
10,496 KB
testcase_21 AC 25 ms
10,496 KB
testcase_22 AC 26 ms
10,752 KB
testcase_23 AC 337 ms
25,140 KB
testcase_24 AC 101 ms
15,196 KB
testcase_25 AC 85 ms
13,312 KB
testcase_26 AC 521 ms
30,484 KB
testcase_27 AC 121 ms
14,592 KB
testcase_28 AC 246 ms
20,300 KB
testcase_29 AC 43 ms
11,264 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))
    g[c]=[]
for a,b in e:
    g[a].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