結果

問題 No.2464 To DAG
ユーザー kotatsugamekotatsugame
提出日時 2023-09-08 23:41:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 294 ms / 2,000 ms
コード長 1,038 bytes
コンパイル時間 717 ms
コンパイル使用メモリ 77,080 KB
実行使用メモリ 29,000 KB
最終ジャッジ日時 2024-06-26 17:10:53
合計ジャッジ時間 14,691 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
15,712 KB
testcase_01 AC 6 ms
15,712 KB
testcase_02 AC 294 ms
29,000 KB
testcase_03 AC 242 ms
28,224 KB
testcase_04 AC 233 ms
23,036 KB
testcase_05 AC 222 ms
22,968 KB
testcase_06 AC 224 ms
22,608 KB
testcase_07 AC 154 ms
22,420 KB
testcase_08 AC 186 ms
22,824 KB
testcase_09 AC 173 ms
21,976 KB
testcase_10 AC 165 ms
20,956 KB
testcase_11 AC 112 ms
19,200 KB
testcase_12 AC 87 ms
18,644 KB
testcase_13 AC 110 ms
19,188 KB
testcase_14 AC 140 ms
21,996 KB
testcase_15 AC 211 ms
25,700 KB
testcase_16 AC 100 ms
20,884 KB
testcase_17 AC 17 ms
16,584 KB
testcase_18 AC 60 ms
19,640 KB
testcase_19 AC 6 ms
13,768 KB
testcase_20 AC 6 ms
15,712 KB
testcase_21 AC 5 ms
13,640 KB
testcase_22 AC 75 ms
18,116 KB
testcase_23 AC 76 ms
18,760 KB
testcase_24 AC 76 ms
19,296 KB
testcase_25 AC 75 ms
19,260 KB
testcase_26 AC 40 ms
17,764 KB
testcase_27 AC 240 ms
27,728 KB
testcase_28 AC 237 ms
27,648 KB
testcase_29 AC 232 ms
26,876 KB
testcase_30 AC 161 ms
23,748 KB
testcase_31 AC 145 ms
24,392 KB
testcase_32 AC 135 ms
22,980 KB
testcase_33 AC 222 ms
26,484 KB
testcase_34 AC 107 ms
21,100 KB
testcase_35 AC 65 ms
19,332 KB
testcase_36 AC 65 ms
18,684 KB
testcase_37 AC 53 ms
17,764 KB
testcase_38 AC 53 ms
17,504 KB
testcase_39 AC 7 ms
13,892 KB
testcase_40 AC 8 ms
15,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include<vector>
#include<cassert>
using namespace std;
int N,M;
int U[3<<17],V[3<<17];
bool del[3<<17];
vector<int>G[3<<17];
int Gi[3<<17];
bool vis[3<<17];
vector<int>path;
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cin>>N>>M;
	for(int i=0;i<M;i++)
	{
		cin>>U[i]>>V[i];
		U[i]--,V[i]--;
		G[U[i]].push_back(i);
	}
	for(int i=0;i<N;i++)
	{
		path.push_back(i);
		vis[i]=true;
		while(!path.empty())
		{
			int u=path.back();
			if(Gi[u]==G[u].size())
			{
				vis[u]=false;
				path.pop_back();
				continue;
			}
			int ei=G[u][Gi[u]++];
			int v=V[ei];
			path.push_back(v);
			if(!vis[v])
			{
				vis[v]=true;
				continue;
			}
			do{
				path.pop_back();
				int w=path.back();
				vis[w]=false;
				del[G[w][Gi[w]-1]]=true;
			}while(path.back()!=v);
			vis[v]=true;
		}
	}
	vector<pair<int,int> >ans;
	for(int i=0;i<M;i++)if(!del[i])ans.push_back(make_pair(U[i],V[i]));
	cout<<N<<" "<<ans.size()<<"\n";
	for(pair<int,int>e:ans)cout<<e.first+1<<" "<<e.second+1<<"\n";
}
0