結果

問題 No.1640 簡単な色塗り
ユーザー kotatsugamekotatsugame
提出日時 2021-08-06 21:44:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 218 ms / 2,000 ms
コード長 921 bytes
コンパイル時間 860 ms
コンパイル使用メモリ 83,436 KB
実行使用メモリ 17,296 KB
最終ジャッジ日時 2024-06-29 14:59:39
合計ジャッジ時間 12,685 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
10,820 KB
testcase_01 AC 4 ms
9,668 KB
testcase_02 AC 4 ms
9,672 KB
testcase_03 AC 3 ms
9,664 KB
testcase_04 AC 195 ms
14,396 KB
testcase_05 AC 201 ms
17,296 KB
testcase_06 AC 4 ms
9,800 KB
testcase_07 AC 5 ms
9,668 KB
testcase_08 AC 5 ms
10,208 KB
testcase_09 AC 4 ms
9,824 KB
testcase_10 AC 129 ms
12,924 KB
testcase_11 AC 106 ms
12,720 KB
testcase_12 AC 93 ms
12,608 KB
testcase_13 AC 199 ms
14,812 KB
testcase_14 AC 192 ms
14,696 KB
testcase_15 AC 66 ms
11,864 KB
testcase_16 AC 81 ms
11,688 KB
testcase_17 AC 167 ms
13,772 KB
testcase_18 AC 18 ms
10,056 KB
testcase_19 AC 93 ms
12,104 KB
testcase_20 AC 123 ms
13,380 KB
testcase_21 AC 103 ms
12,424 KB
testcase_22 AC 14 ms
9,924 KB
testcase_23 AC 136 ms
13,036 KB
testcase_24 AC 41 ms
11,536 KB
testcase_25 AC 96 ms
11,972 KB
testcase_26 AC 149 ms
13,700 KB
testcase_27 AC 67 ms
11,460 KB
testcase_28 AC 188 ms
14,388 KB
testcase_29 AC 145 ms
13,540 KB
testcase_30 AC 16 ms
10,564 KB
testcase_31 AC 91 ms
16,212 KB
testcase_32 AC 79 ms
15,168 KB
testcase_33 AC 53 ms
13,568 KB
testcase_34 AC 47 ms
11,468 KB
testcase_35 AC 38 ms
10,976 KB
testcase_36 AC 14 ms
10,308 KB
testcase_37 AC 17 ms
10,184 KB
testcase_38 AC 57 ms
11,968 KB
testcase_39 AC 35 ms
12,396 KB
testcase_40 AC 29 ms
10,824 KB
testcase_41 AC 60 ms
13,200 KB
testcase_42 AC 42 ms
12,356 KB
testcase_43 AC 32 ms
10,856 KB
testcase_44 AC 41 ms
12,100 KB
testcase_45 AC 25 ms
10,312 KB
testcase_46 AC 15 ms
10,312 KB
testcase_47 AC 12 ms
11,336 KB
testcase_48 AC 58 ms
11,648 KB
testcase_49 AC 7 ms
10,288 KB
testcase_50 AC 4 ms
10,420 KB
testcase_51 AC 4 ms
10,020 KB
testcase_52 AC 215 ms
16,228 KB
testcase_53 AC 218 ms
16,040 KB
07_evil_01.txt RE -
07_evil_02.txt RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:22:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   22 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
#include<atcoder/dsu>
using namespace std;
int N;
int A[1<<17],B[1<<17];
int ans[1<<17];
vector<int>E[1<<17];
vector<pair<int,int> >G[1<<17];
void dfs(int u,int p)
{
	for(pair<int,int>e:G[u])
	{
		int v=e.first;
		if(v!=p)
		{
			ans[e.second]=v;
			dfs(v,u);
		}
	}
}
main()
{
	cin>>N;
	atcoder::dsu P(N);
	for(int i=0;i<N;i++)
	{
		cin>>A[i]>>B[i];
		A[i]--,B[i]--;
		P.merge(A[i],B[i]);
	}
	for(int i=0;i<N;i++)
	{
		int p=P.leader(A[i]);
		E[p].push_back(i);
	}
	atcoder::dsu Q(N);
	for(int i=0;i<N;i++)if(i==P.leader(i))
	{
		int fi=-1;
		for(int ei:E[i])
		{
			int a=A[ei],b=B[ei];
			if(Q.same(a,b))fi=ei;
			else
			{
				G[a].push_back(make_pair(b,ei));
				G[b].push_back(make_pair(a,ei));
				Q.merge(a,b);
			}
		}
		if(fi==-1)
		{
			cout<<"No"<<endl;
			return 0;
		}
		dfs(A[fi],-1);
		ans[fi]=A[fi];
	}
	cout<<"Yes"<<endl;
	for(int i=0;i<N;i++)cout<<ans[i]+1<<endl;
}
0