結果

問題 No.1813 Magical Stones
ユーザー mkawa2mkawa2
提出日時 2024-01-23 16:36:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 442 ms / 2,000 ms
コード長 2,242 bytes
コンパイル時間 497 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 117,888 KB
最終ジャッジ日時 2024-09-28 06:48:28
合計ジャッジ時間 11,285 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 36 ms
52,608 KB
testcase_02 AC 40 ms
52,352 KB
testcase_03 AC 85 ms
94,184 KB
testcase_04 AC 35 ms
52,736 KB
testcase_05 AC 34 ms
52,352 KB
testcase_06 AC 87 ms
77,912 KB
testcase_07 AC 38 ms
52,864 KB
testcase_08 AC 49 ms
63,824 KB
testcase_09 AC 55 ms
65,512 KB
testcase_10 AC 43 ms
60,928 KB
testcase_11 AC 135 ms
86,176 KB
testcase_12 AC 38 ms
52,864 KB
testcase_13 AC 36 ms
52,352 KB
testcase_14 AC 85 ms
94,460 KB
testcase_15 AC 429 ms
109,184 KB
testcase_16 AC 427 ms
111,444 KB
testcase_17 AC 402 ms
117,888 KB
testcase_18 AC 425 ms
111,104 KB
testcase_19 AC 432 ms
110,976 KB
testcase_20 AC 442 ms
110,208 KB
testcase_21 AC 432 ms
110,976 KB
testcase_22 AC 436 ms
111,232 KB
testcase_23 AC 423 ms
111,520 KB
testcase_24 AC 75 ms
75,136 KB
testcase_25 AC 112 ms
80,512 KB
testcase_26 AC 101 ms
77,952 KB
testcase_27 AC 293 ms
98,084 KB
testcase_28 AC 346 ms
100,280 KB
testcase_29 AC 347 ms
105,728 KB
testcase_30 AC 338 ms
100,332 KB
testcase_31 AC 404 ms
109,824 KB
testcase_32 AC 36 ms
52,224 KB
testcase_33 AC 37 ms
52,736 KB
testcase_34 AC 97 ms
77,952 KB
testcase_35 AC 97 ms
78,192 KB
testcase_36 AC 88 ms
77,440 KB
testcase_37 AC 131 ms
81,920 KB
testcase_38 AC 121 ms
90,496 KB
testcase_39 AC 296 ms
102,272 KB
testcase_40 AC 94 ms
77,568 KB
testcase_41 AC 73 ms
76,416 KB
testcase_42 AC 93 ms
77,824 KB
testcase_43 AC 114 ms
78,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(1000005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
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 = -1-(-1 << 31)
inf = -1-(-1 << 62)

# md = 10**9+7
md = 998244353

# 各強連結成分をリストにしてトポロジカル順に返す
def SCC(to, ot):
    n = len(to)
    # トポロジカルソート
    fin = [-1]*n
    topo = []
    for u in range(n):
        if fin[u] != -1: continue
        stack = [u]
        while stack:
            u = stack[-1]
            if fin[u] == -1:
                fin[u] = 0
                for v in to[u]:
                    if fin[v] != -1: continue
                    stack.append(v)
            else:
                stack.pop()
                if fin[u] == 0:
                    fin[u] = 1
                    topo.append(u)
    # 逆辺でdfs
    res = []
    while topo:
        u = topo.pop()
        if fin[u] != 1: continue
        fin[u] = 2
        cur = [u]
        i = 0
        while i < len(cur):
            u = cur[i]
            for v in ot[u]:
                if fin[v] == 2: continue
                fin[v] = 2
                cur.append(v)
            i += 1
        res.append(cur)

    return res

n,m=LI()
to=[[] for _ in range(n)]
ot=[[] for _ in range(n)]
for _ in range(m):
    u,v=LI1()
    to[u].append(v)
    ot[v].append(u)

gg=SCC(to,ot)
gn=len(gg)

if gn==1:
    print(0)
    exit()

u2g=[0]*n
for g,uu in enumerate(gg):
    for u in uu:
        u2g[u]=g

indeg=[0]*gn
outdeg=[0]*gn
for u in range(n):
    g=u2g[u]
    for v in to[u]:
        h=u2g[v]
        if g==h:continue
        outdeg[g]+=1
        indeg[h]+=1

print(max(indeg.count(0),outdeg.count(0)))
0