結果

問題 No.1813 Magical Stones
ユーザー MasKoaTSMasKoaTS
提出日時 2021-09-25 17:58:17
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 1,348 bytes
コンパイル時間 4,415 ms
コンパイル使用メモリ 267,948 KB
実行使用メモリ 21,376 KB
最終ジャッジ日時 2024-07-16 06:55:41
合計ジャッジ時間 8,824 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 16 ms
14,224 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 5 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 25 ms
7,552 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 17 ms
14,224 KB
testcase_15 AC 154 ms
18,420 KB
testcase_16 AC 157 ms
18,416 KB
testcase_17 AC 152 ms
21,376 KB
testcase_18 AC 153 ms
18,284 KB
testcase_19 AC 159 ms
18,420 KB
testcase_20 AC 158 ms
18,296 KB
testcase_21 AC 157 ms
18,412 KB
testcase_22 AC 156 ms
18,416 KB
testcase_23 AC 152 ms
18,292 KB
testcase_24 AC 4 ms
6,940 KB
testcase_25 AC 16 ms
6,940 KB
testcase_26 AC 7 ms
6,944 KB
testcase_27 AC 103 ms
14,040 KB
testcase_28 AC 143 ms
15,224 KB
testcase_29 AC 123 ms
15,200 KB
testcase_30 AC 118 ms
14,460 KB
testcase_31 AC 141 ms
17,616 KB
testcase_32 AC 2 ms
6,944 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 6 ms
6,944 KB
testcase_35 AC 20 ms
6,944 KB
testcase_36 AC 4 ms
6,944 KB
testcase_37 AC 43 ms
6,940 KB
testcase_38 AC 18 ms
10,588 KB
testcase_39 AC 93 ms
14,328 KB
testcase_40 AC 4 ms
6,948 KB
testcase_41 AC 7 ms
6,944 KB
testcase_42 AC 20 ms
6,940 KB
testcase_43 AC 12 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
#define rep(i, l, n) for (int i = (l); i < (n); i++)
#define max(p, q) ((p) > (q) ? (p) : (q))
using namespace std;
using namespace atcoder;
using ll = long long;
template <class T>
using V = vector<T>;
template <class T>
using VV = V<V<T> >;


int bool_sum(V<bool>&a) {
	int res = 0;
	rep(i, 0, a.size()) {
		if (a[i]) {
			res++;
		}
	}
	return res;
}


VV<int> SCC_to_DAG(int n, VV<int>&route, VV<int>&scc) {
	VV<int> dag(scc.size(), V<int>(0));
	V<int> group(n);
	rep(i, 0, scc.size()) {
		rep(j, 0, scc[i].size()) {
			group[scc[i][j]] = i;
		}
	}

	rep(i, 0, n) {
		rep(j, 0, route[i].size()) {
			int a = group[i];	int b = group[route[i][j]];
			if (a != b) {
				dag[a].push_back(b);
			}
		}
	}

	return dag;
}


int main(void) {
	int n, m;	cin >> n >> m;

	VV<int> route(n, V<int>(0));
	scc_graph ss(n);
	rep(i, 0, m) {
		int a, b;   cin >> a >> b;
		a--;	b--;
		ss.add_edge(a, b);
		route[a].push_back(b);
	}

	VV<int> scc = ss.scc();
	if (scc.size() <= 1) {
		cout << 0 << endl;
		return 0;
	}

	VV<int> dag = SCC_to_DAG(n, route, scc);
	int ds = dag.size();
	V<bool> source(ds, true);	V<bool> sink(ds, true);
	rep(i, 0, ds) {
		rep(j, 0, dag[i].size()) {
			source[i] = sink[dag[i][j]] = false;
		}
	}
	int ans = max(bool_sum(source), bool_sum(sink));

	cout << ans << endl;
	return 0;
}
0