結果

問題 No.2464 To DAG
ユーザー sgfc
提出日時 2023-09-08 23:04:26
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 1,056 ms / 2,000 ms
コード長 3,760 bytes
コンパイル時間 6,030 ms
コンパイル使用メモリ 332,420 KB
実行使用メモリ 427,520 KB
最終ジャッジ日時 2024-06-26 16:23:46
合計ジャッジ時間 32,099 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 39
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
#include <unordered_map>
#include <unordered_set>

#include <stdio.h>
#include <math.h>
#include <cassert>

#include "atcoder/all"
#include <float.h>

//#include <boost/multiprecision/cpp_int.hpp>
//using namespace boost::multiprecision;
// std::fixed << std::setprecision(10) <<

using namespace std;
using namespace atcoder;

using ll = long long;
using ull = unsigned long long;
using mint = modint998244353;
using mint2 = modint1000000007;

const double eps = 1e-9;

#define REP(i, n) for (ll i = 0; i < ll(n); ++i)
#define REPI(i, init, n) for (ll i = init; i < ll(n); ++i)
#define REPD(i, init) for (ll i = init; i >=0; --i)
#define REPDI(i, init, n) for (ll i = init; i >=n; --i)
#define REPE(i, c) for (const auto& i : c)
#define TCASE ll t; cin >> t; REP(i, t)

using vl = vector<ll>;
#define VL(a, n) vector<ll> a; a.assign(n, 0);
#define VLI(a, n) vector<ll> a; a.assign(n, 0); for(auto& x : a) cin >> x;
#define VSI(a, n) vector<string> a; a.assign(n, ""); for(auto& x : a) cin >> x;
using vvl = vector<vector<ll>>;
#define VVLI(a, n, m, init) vector<vector<ll>> a(n); for(auto& x : a) x.assign(m, init);
using pl = pair<ll, ll>;

struct uv { ll u; ll v; ll c; };
#define VUVI(a, n) vector<uv> a; a.assign(n, {0, 0, 1}); for(auto& x : a) {cin >> x.u >> x.v; x.u--; x.v--;}
#define VUVCI(a, n) vector<uv> a; a.assign(n, {0, 0, 0}); for(auto& x : a) {cin >> x.u >> x.v >> x.c; x.u--; x.v--;}
vvl to_edge(const ll n, const vector<uv>& v) { vvl ret(n); for (auto& x : v) ret[x.u].push_back(x.v); return ret; }
vvl to_edge_d(const ll n, const vector<uv>& v) { vvl ret(n); for (auto& x : v) { ret[x.u].push_back(x.v); ret[x.v].push_back(x.u); } return ret; }

template <class T = long long> using pql = priority_queue<T>;
template <class T = long long> using pqg = priority_queue<T, vector<T>, greater<T>>;
using vm = vector<mint>;
using vvm = vector<vm>;

const char* YES = "Yes";
const char* NO = "No";
void yn(bool f) { std::cout << (f ? YES : NO) << endl; };
template<class T> void ov(const T& v) { for (auto it = v.begin(); it != v.end(); it++) { if (it != v.begin()) cout << " "; cout << *it; } };
template<> void ov(const vm& v) { for (auto it = v.begin(); it != v.end(); it++) { if (it != v.begin()) cout << " "; cout << it->val(); } };

const ll llhuge = 1LL << 60; //十分でかいが多少足しても溢れない数値
template<class T, class U> bool chmin(T& a, const U& b) { ll olda = a; a = min(a, b); return olda != a; }
template<class T, class U> bool chmax(T& a, const U& b) { ll olda = a; a = max(a, b); return olda != a; }
template<class T> void mysort(T& v) { std::sort(begin(v), end(v)); };
template<class T, class U> void mysort(T& v, U pr) { std::sort(begin(v), end(v), pr); };
template<class T> void myrev(T& v) { std::reverse(begin(v), end(v)); };


vl edge;
vector<deque<ll>> nodes;
vl ncheck;
vl edgestatus;

ll dfs(ll n) {
	if (ncheck[n]) return n;
	ncheck[n] = 1;
	while (!nodes[n].empty()) {
		ll nei = nodes[n].back();
		nodes[n].pop_back();
		ll nxt = edge[nei];
		ll lp = dfs(nxt);
		if (lp >= 0) {
			edgestatus[nei] = -1;
			if (lp != n) {
				ncheck[n] = 0;
				return lp;
			}
		}
	}
	ncheck[n] = 0;
	return -1;
}

int main() {
	cin.tie(nullptr);
	ios::sync_with_stdio(false);

	ll n, m;
	cin >> n >> m;

	edge.assign(m, 0);
	nodes.assign(n, {});
	REP(i, m) {
		ll u, v;
		cin >> u >> v;
		u--; v--;
		edge[i] = v;
		nodes[u].push_back(i);
	}
	auto node2 = nodes;
	
	edgestatus.assign(m, 0);
	ncheck.assign(n, 0);
	REP(i, n) {
		dfs(i);
	}

	vector<pl> ans;
	REP(i, n) {
		REPE(e, node2[i]) {
			if (edgestatus[e] == -1) continue;
			ans.push_back({ i + 1, edge[e] + 1 });
		}
	}

	cout << n << " " << ans.size() << endl;
	REPE(a, ans) {
		cout << a.first << " " << a.second << endl;
	}
}

0