結果
問題 | No.1813 Magical Stones |
ユーザー | MasKoaTS |
提出日時 | 2021-12-13 12:12:36 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 534 ms / 2,000 ms |
コード長 | 2,231 bytes |
コンパイル時間 | 153 ms |
コンパイル使用メモリ | 82,412 KB |
実行使用メモリ | 120,532 KB |
最終ジャッジ日時 | 2024-07-22 08:55:32 |
合計ジャッジ時間 | 12,070 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
52,352 KB |
testcase_01 | AC | 42 ms
52,352 KB |
testcase_02 | AC | 41 ms
52,480 KB |
testcase_03 | AC | 124 ms
93,420 KB |
testcase_04 | AC | 37 ms
51,968 KB |
testcase_05 | AC | 38 ms
52,608 KB |
testcase_06 | AC | 103 ms
77,832 KB |
testcase_07 | AC | 39 ms
53,376 KB |
testcase_08 | AC | 50 ms
63,872 KB |
testcase_09 | AC | 65 ms
71,168 KB |
testcase_10 | AC | 46 ms
60,160 KB |
testcase_11 | AC | 182 ms
86,028 KB |
testcase_12 | AC | 38 ms
52,608 KB |
testcase_13 | AC | 38 ms
52,224 KB |
testcase_14 | AC | 118 ms
93,296 KB |
testcase_15 | AC | 521 ms
120,532 KB |
testcase_16 | AC | 484 ms
112,604 KB |
testcase_17 | AC | 450 ms
112,516 KB |
testcase_18 | AC | 511 ms
112,604 KB |
testcase_19 | AC | 522 ms
120,488 KB |
testcase_20 | AC | 484 ms
112,808 KB |
testcase_21 | AC | 514 ms
113,948 KB |
testcase_22 | AC | 517 ms
112,740 KB |
testcase_23 | AC | 534 ms
112,204 KB |
testcase_24 | AC | 69 ms
72,228 KB |
testcase_25 | AC | 151 ms
82,748 KB |
testcase_26 | AC | 121 ms
79,872 KB |
testcase_27 | AC | 351 ms
102,640 KB |
testcase_28 | AC | 347 ms
99,704 KB |
testcase_29 | AC | 395 ms
110,496 KB |
testcase_30 | AC | 377 ms
101,980 KB |
testcase_31 | AC | 455 ms
113,060 KB |
testcase_32 | AC | 38 ms
52,608 KB |
testcase_33 | AC | 39 ms
52,480 KB |
testcase_34 | AC | 101 ms
77,392 KB |
testcase_35 | AC | 90 ms
77,952 KB |
testcase_36 | AC | 98 ms
77,192 KB |
testcase_37 | AC | 132 ms
81,152 KB |
testcase_38 | AC | 165 ms
95,804 KB |
testcase_39 | AC | 359 ms
106,992 KB |
testcase_40 | AC | 105 ms
77,796 KB |
testcase_41 | AC | 63 ms
71,680 KB |
testcase_42 | AC | 88 ms
77,336 KB |
testcase_43 | AC | 116 ms
78,592 KB |
ソースコード
import sys input = sys.stdin.readline """ Strongly Connected Components source ; https://tjkendev.github.io/procon-library/python/graph/scc.html 注) PyPy3 で提出した際の TLE を防ぐため、dfs 部分を非再帰で実装 """ # 強連結成分分解(SCC): グラフGに対するSCCを行う # 入力: <N>: 頂点サイズ, <G>: 順方向の有向グラフ, <RG>: 逆方向の有向グラフ # 出力: (<ラベル数>, <各頂点のラベル番号>) def scc(N, G, RG): order = [] used = [0]*N group = [None]*N cnt = [0]*N def dfs(s): que = [s] used[s] = 1 while(que): v = que[-1] while(cnt[v] < len(G[v])): t = G[v][cnt[v]] cnt[v] += 1 if not used[t]: used[t] = 1 que.append(t) break else: order.append(que.pop()) 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]: dfs(i) used = [0]*N label = 0 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 _ in [0]*N] GR = [[] for _ in [0]*N] for _ in [0]*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) 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]: sink[i] = source[j] = False ans = max(sum(source),sum(sink)) print(ans)