結果

問題 No.1194 Replace
ユーザー titiatitia
提出日時 2020-08-22 16:55:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 985 ms / 2,000 ms
コード長 679 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 65,780 KB
最終ジャッジ日時 2024-10-15 10:57:42
合計ジャッジ時間 18,213 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 715 ms
44,532 KB
testcase_01 AC 775 ms
46,000 KB
testcase_02 AC 636 ms
41,612 KB
testcase_03 AC 514 ms
38,456 KB
testcase_04 AC 748 ms
46,036 KB
testcase_05 AC 699 ms
44,548 KB
testcase_06 AC 676 ms
42,896 KB
testcase_07 AC 968 ms
65,780 KB
testcase_08 AC 975 ms
65,620 KB
testcase_09 AC 974 ms
65,520 KB
testcase_10 AC 985 ms
65,780 KB
testcase_11 AC 981 ms
65,724 KB
testcase_12 AC 983 ms
65,648 KB
testcase_13 AC 712 ms
42,636 KB
testcase_14 AC 606 ms
37,448 KB
testcase_15 AC 491 ms
35,200 KB
testcase_16 AC 677 ms
41,920 KB
testcase_17 AC 452 ms
30,032 KB
testcase_18 AC 459 ms
29,728 KB
testcase_19 AC 685 ms
41,992 KB
testcase_20 AC 30 ms
10,624 KB
testcase_21 AC 30 ms
10,624 KB
testcase_22 AC 30 ms
10,752 KB
testcase_23 AC 217 ms
21,480 KB
testcase_24 AC 85 ms
14,252 KB
testcase_25 AC 56 ms
12,032 KB
testcase_26 AC 268 ms
22,588 KB
testcase_27 AC 69 ms
12,288 KB
testcase_28 AC 135 ms
15,528 KB
testcase_29 AC 39 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from operator import itemgetter

N,M=map(int,input().split())
E=dict()

for i in range(M):
    x,y=map(int,input().split())
    if y in E:
        E[y].append(x)
    else:
        E[y]=[x]

USESET=set()
SCORE=N*(N+1)//2

KEYS=sorted(E.keys(),reverse=True)

for i in KEYS:
    if i in USESET:
        continue

    Q=[i]
    while Q:
        x=Q.pop()
        if not (x in E):
            continue
        for to in E[x]:
            if to in USESET:
                continue
            else:
                USESET.add(to)
                if i>to:
                    SCORE+=i-to
                Q.append(to)

print(SCORE)
                
0