結果

問題 No.1640 簡単な色塗り
ユーザー 沙耶花沙耶花
提出日時 2021-08-06 23:09:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 796 bytes
コンパイル時間 4,460 ms
コンパイル使用メモリ 269,868 KB
実行使用メモリ 45,880 KB
最終ジャッジ日時 2024-06-29 16:12:27
合計ジャッジ時間 33,125 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 89 ms
31,348 KB
testcase_05 AC 89 ms
30,892 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 145 ms
19,324 KB
testcase_11 AC 111 ms
16,708 KB
testcase_12 AC 98 ms
15,112 KB
testcase_13 AC 293 ms
28,212 KB
testcase_14 AC 276 ms
28,156 KB
testcase_15 AC 62 ms
11,864 KB
testcase_16 AC 78 ms
14,048 KB
testcase_17 AC 219 ms
24,376 KB
testcase_18 AC 11 ms
6,940 KB
testcase_19 AC 93 ms
15,224 KB
testcase_20 AC 139 ms
18,940 KB
testcase_21 AC 109 ms
16,368 KB
testcase_22 AC 8 ms
6,944 KB
testcase_23 AC 155 ms
20,136 KB
testcase_24 AC 31 ms
8,304 KB
testcase_25 AC 94 ms
15,388 KB
testcase_26 AC 184 ms
23,232 KB
testcase_27 AC 54 ms
11,500 KB
testcase_28 AC 272 ms
27,540 KB
testcase_29 AC 188 ms
23,884 KB
testcase_30 AC 44 ms
8,112 KB
testcase_31 AC 1,712 ms
39,268 KB
testcase_32 AC 1,231 ms
30,108 KB
testcase_33 AC 499 ms
21,348 KB
testcase_34 AC 801 ms
26,288 KB
testcase_35 AC 502 ms
23,256 KB
testcase_36 AC 44 ms
7,968 KB
testcase_37 AC 70 ms
10,140 KB
testcase_38 AC 1,380 ms
32,584 KB
testcase_39 AC 195 ms
15,328 KB
testcase_40 AC 216 ms
15,624 KB
testcase_41 AC 827 ms
28,212 KB
testcase_42 AC 270 ms
18,684 KB
testcase_43 AC 288 ms
21,168 KB
testcase_44 AC 272 ms
19,464 KB
testcase_45 AC 173 ms
16,788 KB
testcase_46 AC 55 ms
9,308 KB
testcase_47 AC 28 ms
6,944 KB
testcase_48 AC 1,490 ms
31,816 KB
testcase_49 AC 10 ms
6,940 KB
testcase_50 AC 2 ms
6,944 KB
testcase_51 AC 2 ms
6,940 KB
testcase_52 TLE -
testcase_53 TLE -
07_evil_01.txt AC 1,046 ms
59,448 KB
07_evil_02.txt AC 1,902 ms
91,012 KB
権限があれば一括ダウンロードができます

ソースコード

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){
		scanf("%d %d",&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)printf("%d\n",A[i]+1);
		else printf("%d\n",B[i]+1);
	}
	
	
	return 0;
}
0