結果

問題 No.2464 To DAG
ユーザー shobonvipshobonvip
提出日時 2023-09-08 23:52:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 383 ms / 2,000 ms
コード長 1,074 bytes
コンパイル時間 2,431 ms
コンパイル使用メモリ 214,460 KB
実行使用メモリ 51,328 KB
最終ジャッジ日時 2024-06-26 17:21:44
合計ジャッジ時間 19,469 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 383 ms
51,328 KB
testcase_03 AC 361 ms
24,684 KB
testcase_04 AC 345 ms
19,956 KB
testcase_05 AC 348 ms
19,524 KB
testcase_06 AC 326 ms
19,300 KB
testcase_07 AC 239 ms
15,388 KB
testcase_08 AC 297 ms
14,696 KB
testcase_09 AC 283 ms
13,196 KB
testcase_10 AC 279 ms
12,968 KB
testcase_11 AC 184 ms
10,024 KB
testcase_12 AC 147 ms
9,016 KB
testcase_13 AC 186 ms
9,496 KB
testcase_14 AC 225 ms
16,652 KB
testcase_15 AC 300 ms
20,524 KB
testcase_16 AC 160 ms
12,612 KB
testcase_17 AC 21 ms
6,944 KB
testcase_18 AC 85 ms
9,968 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 161 ms
8,016 KB
testcase_23 AC 163 ms
7,860 KB
testcase_24 AC 157 ms
8,576 KB
testcase_25 AC 158 ms
8,396 KB
testcase_26 AC 59 ms
7,296 KB
testcase_27 AC 364 ms
26,088 KB
testcase_28 AC 360 ms
26,336 KB
testcase_29 AC 348 ms
24,220 KB
testcase_30 AC 285 ms
15,112 KB
testcase_31 AC 262 ms
13,432 KB
testcase_32 AC 243 ms
12,936 KB
testcase_33 AC 318 ms
21,552 KB
testcase_34 AC 154 ms
12,716 KB
testcase_35 AC 128 ms
8,532 KB
testcase_36 AC 125 ms
7,936 KB
testcase_37 AC 116 ms
7,424 KB
testcase_38 AC 115 ms
7,552 KB
testcase_39 AC 9 ms
11,432 KB
testcase_40 AC 8 ms
11,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int n, m;
vector<vector<int>> ikeru;
vector<int> piv;
vector<bool> del;
vector<bool> tansaku;
int u[350000], v[350000];

int dfs(int i){
	tansaku[i] = true;
	while(piv[i] < (int)ikeru[i].size()){
		int j = ikeru[i][piv[i]];
		if (tansaku[v[j]]){
			del[j] = true;
			piv[i]++;
			tansaku[i] = false;
			return v[j];
		}
		int g = dfs(v[j]);
		if (g != -1 && g != i){
			del[j] = true;
			piv[i]++;
			tansaku[i] = false;
			return g;
		}else if (g == i){
			del[j] = true;
		}
		piv[i]++;
	}
	tansaku[i] = false;
	return -1;
}

int main(){
	cin >> n >> m;
	ikeru.resize(n);
	piv.resize(n);
	del.resize(m);
	tansaku.resize(n);
	for (int i=0; i<m; i++){
		cin >> u[i] >> v[i];
		u[i]--;
		v[i]--;
		ikeru[u[i]].push_back(i);
	}
	for (int i=0; i<n; i++){
		dfs(i);
	}
	vector<pair<int,int>> ans;
	for (int i=0; i<m; i++){
		if (!del[i]){
			ans.push_back(pair(u[i]+1, v[i]+1));
		}
	}
	cout << n << ' ' << (int)ans.size() << '\n';
	for (int i=0; i<(int)ans.size(); i++){
		cout << ans[i].first << ' ' << ans[i].second << '\n';
	}
}
0