結果

問題 No.1194 Replace
ユーザー 37zigen37zigen
提出日時 2020-08-31 18:23:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,230 ms / 2,000 ms
コード長 490 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 159,852 KB
最終ジャッジ日時 2024-11-16 20:17:39
合計ジャッジ時間 23,587 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 910 ms
124,544 KB
testcase_01 AC 954 ms
128,316 KB
testcase_02 AC 805 ms
114,688 KB
testcase_03 AC 655 ms
106,752 KB
testcase_04 AC 967 ms
123,756 KB
testcase_05 AC 890 ms
121,600 KB
testcase_06 AC 862 ms
119,168 KB
testcase_07 AC 1,031 ms
134,876 KB
testcase_08 AC 1,021 ms
134,748 KB
testcase_09 AC 1,016 ms
134,208 KB
testcase_10 AC 1,017 ms
134,992 KB
testcase_11 AC 1,029 ms
134,464 KB
testcase_12 AC 1,044 ms
134,332 KB
testcase_13 AC 1,230 ms
159,852 KB
testcase_14 AC 973 ms
126,704 KB
testcase_15 AC 762 ms
107,776 KB
testcase_16 AC 1,149 ms
154,752 KB
testcase_17 AC 747 ms
108,376 KB
testcase_18 AC 776 ms
113,792 KB
testcase_19 AC 1,023 ms
135,168 KB
testcase_20 AC 38 ms
51,968 KB
testcase_21 AC 38 ms
51,712 KB
testcase_22 AC 38 ms
51,712 KB
testcase_23 AC 356 ms
87,040 KB
testcase_24 AC 148 ms
79,616 KB
testcase_25 AC 128 ms
79,616 KB
testcase_26 AC 468 ms
97,792 KB
testcase_27 AC 147 ms
80,128 KB
testcase_28 AC 267 ms
86,656 KB
testcase_29 AC 83 ms
76,896 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