結果

問題 No.1813 Magical Stones
ユーザー MasKoaTSMasKoaTS
提出日時 2021-12-13 12:14:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 179 ms / 2,000 ms
コード長 1,284 bytes
コンパイル時間 4,413 ms
コンパイル使用メモリ 267,636 KB
実行使用メモリ 21,476 KB
最終ジャッジ日時 2024-07-22 08:58:49
合計ジャッジ時間 8,634 ms
ジャッジサーバーID
(参考情報)
judge4 / 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 18 ms
14,096 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 4 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 28 ms
7,552 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 18 ms
14,224 KB
testcase_15 AC 169 ms
18,544 KB
testcase_16 AC 172 ms
18,424 KB
testcase_17 AC 170 ms
21,476 KB
testcase_18 AC 176 ms
18,288 KB
testcase_19 AC 175 ms
18,420 KB
testcase_20 AC 179 ms
18,424 KB
testcase_21 AC 175 ms
18,408 KB
testcase_22 AC 176 ms
18,540 KB
testcase_23 AC 179 ms
18,420 KB
testcase_24 AC 3 ms
5,376 KB
testcase_25 AC 18 ms
6,016 KB
testcase_26 AC 7 ms
5,376 KB
testcase_27 AC 114 ms
14,168 KB
testcase_28 AC 154 ms
15,352 KB
testcase_29 AC 139 ms
15,200 KB
testcase_30 AC 132 ms
14,456 KB
testcase_31 AC 160 ms
17,608 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 7 ms
5,376 KB
testcase_35 AC 21 ms
5,376 KB
testcase_36 AC 4 ms
5,376 KB
testcase_37 AC 45 ms
6,408 KB
testcase_38 AC 20 ms
10,592 KB
testcase_39 AC 105 ms
14,460 KB
testcase_40 AC 5 ms
5,376 KB
testcase_41 AC 7 ms
5,376 KB
testcase_42 AC 22 ms
5,376 KB
testcase_43 AC 12 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
#define rep(i, l, n) for (int i = (l); i < (n); i++)
using namespace std;
using namespace atcoder;
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()) {
			sink[i] = source[dag[i][j]] = false;
		}
	}
	int ans = max(bool_sum(source), bool_sum(sink));

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