結果

問題 No.1640 簡単な色塗り
ユーザー 沙耶花沙耶花
提出日時 2021-08-06 22:06:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,546 ms / 2,000 ms
コード長 779 bytes
コンパイル時間 4,359 ms
コンパイル使用メモリ 270,616 KB
実行使用メモリ 44,736 KB
最終ジャッジ日時 2024-06-29 15:11:42
合計ジャッジ時間 32,521 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 247 ms
30,916 KB
testcase_05 AC 242 ms
31,000 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 242 ms
19,324 KB
testcase_11 AC 179 ms
16,456 KB
testcase_12 AC 162 ms
15,108 KB
testcase_13 AC 403 ms
27,952 KB
testcase_14 AC 423 ms
27,916 KB
testcase_15 AC 108 ms
11,736 KB
testcase_16 AC 142 ms
13,916 KB
testcase_17 AC 317 ms
24,204 KB
testcase_18 AC 22 ms
5,376 KB
testcase_19 AC 156 ms
15,028 KB
testcase_20 AC 237 ms
18,812 KB
testcase_21 AC 182 ms
16,236 KB
testcase_22 AC 15 ms
5,376 KB
testcase_23 AC 262 ms
20,140 KB
testcase_24 AC 58 ms
8,180 KB
testcase_25 AC 164 ms
15,124 KB
testcase_26 AC 310 ms
22,396 KB
testcase_27 AC 102 ms
11,368 KB
testcase_28 AC 393 ms
26,908 KB
testcase_29 AC 283 ms
22,092 KB
testcase_30 AC 50 ms
7,988 KB
testcase_31 AC 1,418 ms
40,120 KB
testcase_32 AC 946 ms
30,144 KB
testcase_33 AC 501 ms
21,216 KB
testcase_34 AC 676 ms
26,004 KB
testcase_35 AC 488 ms
23,260 KB
testcase_36 AC 49 ms
7,840 KB
testcase_37 AC 78 ms
10,140 KB
testcase_38 AC 1,094 ms
32,256 KB
testcase_39 AC 208 ms
15,328 KB
testcase_40 AC 215 ms
15,624 KB
testcase_41 AC 851 ms
27,996 KB
testcase_42 AC 268 ms
18,552 KB
testcase_43 AC 292 ms
21,036 KB
testcase_44 AC 275 ms
19,460 KB
testcase_45 AC 177 ms
16,528 KB
testcase_46 AC 60 ms
9,176 KB
testcase_47 AC 32 ms
6,852 KB
testcase_48 AC 1,119 ms
31,576 KB
testcase_49 AC 11 ms
5,376 KB
testcase_50 AC 2 ms
5,376 KB
testcase_51 AC 2 ms
5,376 KB
testcase_52 AC 1,465 ms
37,512 KB
testcase_53 AC 1,546 ms
44,736 KB
07_evil_01.txt AC 1,251 ms
58,408 KB
07_evil_02.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000000000000

int main(){
	
	int N;
	cin>>N;
	
	vector<int> A(N),B(N);
	
	mf_graph<int> G(2*N+2);
	int S = N*2,T = N*2+1;
	vector<int> a(N),b(N);
	rep(i,N){
		cin>>A[i]>>B[i];
		A[i]--;B[i]--;
		a[i] = G.add_edge(i,N+A[i],1);
		b[i] = G.add_edge(i,N+B[i],1);
		G.add_edge(S,i,1);
		G.add_edge(N+i,T,1);
	}
	
	if(G.flow(S,T)!=N){
		cout<<"No"<<endl;
		return 0;
	}
	cout<<"Yes"<<endl;
	
	vector<int> ans(N);
	rep(i,N){
		if(G.get_edge(a[i]).flow)ans[i] = 0;
		else ans[i] = 1;
	}
	
	rep(i,N){
		if(ans[i]==0)cout<<A[i]+1<<endl;
		else cout<<B[i]+1<<endl;
	}
	
	
	return 0;
}
0