結果

問題 No.1640 簡単な色塗り
ユーザー kwm_tkwm_t
提出日時 2021-08-07 17:05:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 2,036 bytes
コンパイル時間 3,997 ms
コンパイル使用メモリ 235,936 KB
実行使用メモリ 20,480 KB
最終ジャッジ日時 2024-06-29 16:54:21
合計ジャッジ時間 14,026 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
10,496 KB
testcase_01 AC 5 ms
10,388 KB
testcase_02 AC 5 ms
10,496 KB
testcase_03 AC 5 ms
10,592 KB
testcase_04 AC 43 ms
15,828 KB
testcase_05 AC 48 ms
20,480 KB
testcase_06 AC 6 ms
10,624 KB
testcase_07 AC 5 ms
10,496 KB
testcase_08 AC 5 ms
10,624 KB
testcase_09 AC 5 ms
10,496 KB
testcase_10 AC 37 ms
13,824 KB
testcase_11 AC 30 ms
13,312 KB
testcase_12 AC 26 ms
12,928 KB
testcase_13 AC 52 ms
15,872 KB
testcase_14 AC 54 ms
15,872 KB
testcase_15 AC 22 ms
12,240 KB
testcase_16 AC 25 ms
12,544 KB
testcase_17 AC 51 ms
14,848 KB
testcase_18 AC 8 ms
10,932 KB
testcase_19 AC 28 ms
12,900 KB
testcase_20 AC 37 ms
13,568 KB
testcase_21 AC 31 ms
13,312 KB
testcase_22 AC 6 ms
10,792 KB
testcase_23 AC 36 ms
14,076 KB
testcase_24 AC 15 ms
11,520 KB
testcase_25 AC 29 ms
12,928 KB
testcase_26 AC 44 ms
14,464 KB
testcase_27 AC 21 ms
12,160 KB
testcase_28 AC 53 ms
15,416 KB
testcase_29 AC 40 ms
14,336 KB
testcase_30 AC 10 ms
11,136 KB
testcase_31 AC 46 ms
15,176 KB
testcase_32 AC 41 ms
14,592 KB
testcase_33 AC 28 ms
13,172 KB
testcase_34 AC 33 ms
13,952 KB
testcase_35 AC 28 ms
13,312 KB
testcase_36 AC 11 ms
11,264 KB
testcase_37 AC 13 ms
11,520 KB
testcase_38 AC 45 ms
14,848 KB
testcase_39 AC 20 ms
12,288 KB
testcase_40 AC 20 ms
12,288 KB
testcase_41 AC 35 ms
14,080 KB
testcase_42 AC 23 ms
12,672 KB
testcase_43 AC 23 ms
12,784 KB
testcase_44 AC 22 ms
12,544 KB
testcase_45 AC 18 ms
12,160 KB
testcase_46 AC 10 ms
11,264 KB
testcase_47 AC 8 ms
11,264 KB
testcase_48 AC 43 ms
14,904 KB
testcase_49 AC 6 ms
10,740 KB
testcase_50 AC 6 ms
10,496 KB
testcase_51 AC 5 ms
10,496 KB
testcase_52 AC 73 ms
18,176 KB
testcase_53 AC 73 ms
18,176 KB
07_evil_01.txt AC 179 ms
22,528 KB
07_evil_02.txt AC 297 ms
28,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
#include "atcoder/all"
using namespace std;
using namespace atcoder;
//using mint = modint1000000007;
//const int mod = 1000000007;
//using mint = modint998244353;
//const int mod = 998244353;
//const int INF = 1e9;
//const long long LINF = 1e18;
//const bool debug = false;
#define rep(i, n) for (int i = 0; i < (n); ++i)
#define rep2(i,l,r)for(int i=(l);i<(r);++i)
#define rrep(i, n) for (int i = (n-1); i >= 0; --i)
#define rrep2(i,l,r)for(int i=(r-1);i>=(l);--i)
#define all(x) (x).begin(),(x).end()
#define allR(x) (x).rbegin(),(x).rend()
#define endl "\n"
#define P pair<int,int>
template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; }
template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; }
vector<P>to[300005];
int ans[300005];
bool use[300005];
void dfs(int v, int p = -1) {
	use[v] = true;
	for (auto e : to[v]) {
		int nx = e.first;
		int id = e.second;
		if (use[nx])continue;
		ans[id] = nx;
		dfs(nx, v);
	}
}
int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int n; cin >> n;
	vector<P>roop(n, { -1,-1 });
	dsu uf(n);
	vector<int>a(n), b(n);
	rep(i, n) {
		int a, b; cin >> a >> b; a--; b--;
		to[a].push_back({ b,i });
		to[b].push_back({ a,i });
		if (uf.same(a, b)) {
			if (-1 != roop[uf.leader(a)].first) {
				cout << "No" << endl;
				return 0;
			}
			ans[i] = min(a, b);
			roop[uf.leader(a)] = { i ,ans[i] };
		}
		else {
			int al = uf.leader(a);
			int bl = uf.leader(b);
			if (al != bl) {
				if ((-1 != roop[al].first) && (-1 != roop[bl].first)) {
					cout << "No" << endl;
					return 0;
				}
			}
			uf.merge(a, b);
			int nl = uf.leader(a);
			if (-1 != roop[al].first)roop[nl] = roop[al];
			if (-1 != roop[bl].first)roop[nl] = roop[bl];
		}
	}
	cout << "Yes" << endl;
	rep(i, n) {
		if (i != uf.leader(i))continue;
		int st = roop[uf.leader(i)].second;
		dfs(st);
	}
	rep(i, n) {
		cout << ans[i] + 1 << endl;
	}
	return 0;
}
0