結果

問題 No.1640 簡単な色塗り
ユーザー kotatsugamekotatsugame
提出日時 2021-08-06 21:57:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 1,117 bytes
コンパイル時間 810 ms
コンパイル使用メモリ 83,660 KB
実行使用メモリ 17,900 KB
最終ジャッジ日時 2024-06-29 15:05:27
合計ジャッジ時間 17,721 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
17,536 KB
testcase_01 AC 4 ms
16,608 KB
testcase_02 AC 4 ms
17,900 KB
testcase_03 AC 4 ms
10,692 KB
testcase_04 AC 183 ms
14,504 KB
testcase_05 AC 193 ms
17,300 KB
testcase_06 AC 4 ms
10,536 KB
testcase_07 AC 3 ms
10,520 KB
testcase_08 AC 4 ms
10,132 KB
testcase_09 AC 3 ms
11,072 KB
testcase_10 AC 123 ms
12,996 KB
testcase_11 AC 102 ms
12,764 KB
testcase_12 AC 91 ms
12,104 KB
testcase_13 AC 190 ms
14,832 KB
testcase_14 AC 174 ms
14,700 KB
testcase_15 AC 62 ms
11,460 KB
testcase_16 AC 73 ms
11,732 KB
testcase_17 AC 145 ms
13,764 KB
testcase_18 AC 17 ms
10,180 KB
testcase_19 AC 88 ms
12,400 KB
testcase_20 AC 114 ms
13,356 KB
testcase_21 AC 98 ms
12,528 KB
testcase_22 AC 14 ms
10,052 KB
testcase_23 AC 119 ms
13,520 KB
testcase_24 AC 36 ms
10,692 KB
testcase_25 AC 93 ms
12,064 KB
testcase_26 AC 144 ms
13,508 KB
testcase_27 AC 59 ms
11,484 KB
testcase_28 AC 169 ms
14,392 KB
testcase_29 AC 129 ms
13,856 KB
testcase_30 AC 13 ms
10,420 KB
testcase_31 AC 73 ms
14,884 KB
testcase_32 AC 64 ms
14,308 KB
testcase_33 AC 40 ms
12,120 KB
testcase_34 AC 45 ms
11,300 KB
testcase_35 AC 34 ms
11,156 KB
testcase_36 AC 12 ms
10,356 KB
testcase_37 AC 14 ms
10,252 KB
testcase_38 AC 51 ms
11,844 KB
testcase_39 AC 28 ms
10,968 KB
testcase_40 AC 26 ms
10,976 KB
testcase_41 AC 52 ms
13,388 KB
testcase_42 AC 30 ms
11,048 KB
testcase_43 AC 27 ms
10,568 KB
testcase_44 AC 34 ms
11,760 KB
testcase_45 AC 21 ms
10,444 KB
testcase_46 AC 12 ms
10,384 KB
testcase_47 AC 10 ms
10,184 KB
testcase_48 AC 51 ms
11,896 KB
testcase_49 AC 6 ms
10,688 KB
testcase_50 AC 4 ms
10,620 KB
testcase_51 AC 4 ms
10,820 KB
testcase_52 AC 195 ms
16,108 KB
testcase_53 AC 191 ms
16,216 KB
07_evil_01.txt TLE -
07_evil_02.txt TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:26:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   26 | 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);
		}
	}
}
void TLE()
{
	for(int i=0;;i++)cout<<i<<endl;
}
main()
{
	cin>>N;
	if(N<1||100000<N)TLE();
	atcoder::dsu P(N);
	for(int i=0;i<N;i++)
	{
		cin>>A[i]>>B[i];
		if(A[i]<1||B[i]<1||N<A[i]||N<B[i])TLE();
		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))
			{
				if(fi!=-1)
				{
					cout<<"No"<<endl;
					return 0;
				}
				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