結果

問題 No.1553 Lovely City
ユーザー kwm_tkwm_t
提出日時 2021-06-19 14:30:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 302 ms / 2,000 ms
コード長 2,138 bytes
コンパイル時間 4,699 ms
コンパイル使用メモリ 249,800 KB
実行使用メモリ 30,472 KB
最終ジャッジ日時 2024-06-22 22:02:04
合計ジャッジ時間 13,028 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
8,104 KB
testcase_01 AC 3 ms
8,136 KB
testcase_02 AC 125 ms
27,444 KB
testcase_03 AC 4 ms
8,196 KB
testcase_04 AC 4 ms
8,212 KB
testcase_05 AC 4 ms
8,292 KB
testcase_06 AC 4 ms
8,260 KB
testcase_07 AC 4 ms
8,088 KB
testcase_08 AC 161 ms
20,408 KB
testcase_09 AC 177 ms
20,912 KB
testcase_10 AC 190 ms
24,484 KB
testcase_11 AC 130 ms
18,888 KB
testcase_12 AC 207 ms
27,316 KB
testcase_13 AC 150 ms
18,980 KB
testcase_14 AC 163 ms
20,272 KB
testcase_15 AC 147 ms
20,440 KB
testcase_16 AC 196 ms
21,936 KB
testcase_17 AC 144 ms
21,612 KB
testcase_18 AC 286 ms
30,344 KB
testcase_19 AC 302 ms
30,032 KB
testcase_20 AC 278 ms
30,472 KB
testcase_21 AC 275 ms
28,920 KB
testcase_22 AC 294 ms
28,748 KB
testcase_23 AC 285 ms
29,780 KB
testcase_24 AC 285 ms
29,436 KB
testcase_25 AC 274 ms
29,904 KB
testcase_26 AC 281 ms
28,164 KB
testcase_27 AC 288 ms
28,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
#include "atcoder/all"
using namespace std;
using namespace atcoder;
//using mint = modint1000000007;
//const int mod = 1000000007;
//using mint = modint998244353;
//const int mod = 998244353;
//const int INF = 1e9;
//const long long LINF = 1e18;
//const bool debug = false;
#define rep(i, n) for (int i = 0; i < (n); ++i)
#define rep2(i,l,r)for(int i=(l);i<(r);++i)
#define rrep(i, n) for (int i = (n-1); i >= 0; --i)
#define rrep2(i,l,r)for(int i=(r-1);i>=(l);--i)
#define all(x) (x).begin(),(x).end()
#define allR(x) (x).rbegin(),(x).rend()
#define endl "\n"
#define P pair<int,int>
template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; }
template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; }
vector<int>to[200005];
map<int, set<int>>mp;
int h[200005];
std::vector<int>topological_sort(int leader) {
	for (auto v : mp[leader]) for (auto e : to[v]) h[e]++;
	std::stack<int>st;
	std::vector<int>ans;
	for (auto v : mp[leader])if (h[v] == 0) st.push(v);
	while (!st.empty()) {
		int v = st.top(); st.pop();
		ans.push_back(v);
		for (auto u : to[v]) {
			--h[u];
			if (h[u] == 0) st.push(u);
		}
	}
	return ans;
}
int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int n, m; cin >> n >> m;
	vector<int>u(m), v(m);
	dsu uf(n);
	rep(i, m) {
		cin >> u[i] >> v[i];
		u[i]--; v[i]--;
		to[u[i]].push_back(v[i]);
		uf.merge(u[i], v[i]);
	}
	rep(i, m) {
		mp[uf.leader(u[i])].insert(u[i]);
		mp[uf.leader(u[i])].insert(v[i]);
	}
	vector<pair<int, int>>ans;
	rep(i, n) if (i == uf.leader(i)) {
		auto v = topological_sort(i);
		if (mp[i].size() == v.size()) {
			rep(j, (int)v.size() - 1) ans.push_back({ v[j] + 1,v[j + 1] + 1 });
		}
		else {
			vector<int>v;
			for (auto j : mp[i])v.push_back(j);
			rep(j, v.size())ans.push_back({ v[j] + 1,v[(j + 1) % mp[i].size()] + 1 });
		}
		/*rep(i, v.size()) {
			cout << v[i] << " ";
		}
		cout << endl;*/
	}
	cout << ans.size() << endl;
	rep(i, ans.size()) cout << ans[i].first << " " << ans[i].second << endl;
	return 0;
}
0