結果

問題 No.1813 Magical Stones
ユーザー MasKoaTSMasKoaTS
提出日時 2021-10-24 16:42:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,069 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 87,104 KB
実行使用メモリ 114,812 KB
最終ジャッジ日時 2023-09-23 07:06:50
合計ジャッジ時間 15,217 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
71,296 KB
testcase_01 AC 76 ms
71,300 KB
testcase_02 AC 77 ms
71,132 KB
testcase_03 AC 168 ms
94,152 KB
testcase_04 AC 79 ms
71,404 KB
testcase_05 AC 76 ms
71,384 KB
testcase_06 AC 161 ms
79,860 KB
testcase_07 AC 79 ms
71,224 KB
testcase_08 AC 93 ms
76,364 KB
testcase_09 AC 110 ms
77,864 KB
testcase_10 AC 84 ms
75,436 KB
testcase_11 AC 261 ms
87,460 KB
testcase_12 AC 77 ms
71,340 KB
testcase_13 AC 77 ms
71,448 KB
testcase_14 AC 166 ms
94,204 KB
testcase_15 AC 635 ms
114,304 KB
testcase_16 WA -
testcase_17 AC 598 ms
110,340 KB
testcase_18 AC 692 ms
113,468 KB
testcase_19 AC 660 ms
114,812 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 122 ms
78,072 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 476 ms
101,684 KB
testcase_28 AC 513 ms
99,540 KB
testcase_29 AC 533 ms
106,396 KB
testcase_30 AC 496 ms
101,692 KB
testcase_31 WA -
testcase_32 AC 77 ms
71,516 KB
testcase_33 AC 77 ms
71,220 KB
testcase_34 WA -
testcase_35 AC 148 ms
78,808 KB
testcase_36 AC 156 ms
79,772 KB
testcase_37 AC 186 ms
81,700 KB
testcase_38 AC 240 ms
99,948 KB
testcase_39 WA -
testcase_40 AC 160 ms
79,472 KB
testcase_41 AC 119 ms
77,820 KB
testcase_42 AC 147 ms
78,864 KB
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

"""
Strongly Connected Components
source ; https://tjkendev.github.io/procon-library/python/graph/scc.html
"""

# 強連結成分分解(SCC): グラフGに対するSCCを行う
# 入力: <N>: 頂点サイズ, <G>: 順方向の有向グラフ, <RG>: 逆方向の有向グラフ
# 出力: (<ラベル数>, <各頂点のラベル番号>)
def scc(N, G, RG):
    order = []
    used = [0]*N
    group = [None]*N
    def dfs(s):
        rorder = []
        que = [s]
        used[s] = 1
        while(que):
            v = que.pop()
            rorder.append(v)
            for t in G[v]:
                if not used[t]:
                    used[t] = 1
                    que.append(t)
        return rorder
    def rdfs(s, col):
        used[s] = 1
        que = [s]
        while(que):
            v = que.pop()
            group[v] = col
            for t in RG[v]:
                if not used[t]:
                    used[t] = 1
                    que.append(t)
    for i in range(N):
        if not used[i]:
            order += list(reversed(dfs(i)))
    used = [0]*N
    label = 0
    #print(order)
    for s in reversed(order):
        if not used[s]:
            rdfs(s, label)
            label += 1
    return label, group

# 縮約後のグラフを構築
def construct(N, G, label, group):
    G0 = [set() for i in range(label)]
    GP = [[] for i in range(label)]
    for v in range(N):
        lbs = group[v]
        for w in G[v]:
            lbt = group[w]
            if lbs == lbt:
                continue
            G0[lbs].add(lbt)
        GP[lbs].append(v)
    return G0,GP


"""
Main Code
"""

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

G = [[] for i in range(N)]
GR = [[] for i in range(N)]
for _ in range(M):
    a,b = map(int,input().split())
    G[a-1].append(b-1)
    GR[b-1].append(a-1)

label,group = scc(N,G,GR)
DAG,_ = construct(N,G,label,group)
#print(DAG)
t = len(DAG)

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

source = [True]*t
sink = [True]*t
for i in range(t):
	for j in DAG[i]:
		source[i] = sink[j] = False
ans = max(sum(source),sum(sink))

print(ans)
0