結果
問題 | No.1640 簡単な色塗り |
ユーザー | kwm_t |
提出日時 | 2021-08-07 17:04:24 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 72 ms / 2,000 ms |
コード長 | 2,036 bytes |
コンパイル時間 | 4,020 ms |
コンパイル使用メモリ | 235,404 KB |
実行使用メモリ | 18,160 KB |
最終ジャッジ日時 | 2024-06-29 16:53:25 |
合計ジャッジ時間 | 13,454 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
8,192 KB |
testcase_01 | AC | 4 ms
8,064 KB |
testcase_02 | AC | 5 ms
8,320 KB |
testcase_03 | AC | 4 ms
8,192 KB |
testcase_04 | AC | 43 ms
13,696 KB |
testcase_05 | AC | 47 ms
18,160 KB |
testcase_06 | AC | 4 ms
8,160 KB |
testcase_07 | AC | 4 ms
8,180 KB |
testcase_08 | AC | 4 ms
8,192 KB |
testcase_09 | AC | 5 ms
8,304 KB |
testcase_10 | AC | 36 ms
11,648 KB |
testcase_11 | AC | 30 ms
10,880 KB |
testcase_12 | AC | 27 ms
10,496 KB |
testcase_13 | AC | 56 ms
13,440 KB |
testcase_14 | AC | 55 ms
13,440 KB |
testcase_15 | AC | 20 ms
9,896 KB |
testcase_16 | AC | 24 ms
10,240 KB |
testcase_17 | AC | 45 ms
12,288 KB |
testcase_18 | AC | 7 ms
8,420 KB |
testcase_19 | AC | 27 ms
10,624 KB |
testcase_20 | AC | 37 ms
11,392 KB |
testcase_21 | AC | 30 ms
10,880 KB |
testcase_22 | AC | 7 ms
8,448 KB |
testcase_23 | AC | 41 ms
11,648 KB |
testcase_24 | AC | 14 ms
9,344 KB |
testcase_25 | AC | 27 ms
10,520 KB |
testcase_26 | AC | 42 ms
12,000 KB |
testcase_27 | AC | 19 ms
9,928 KB |
testcase_28 | AC | 57 ms
13,184 KB |
testcase_29 | AC | 41 ms
12,120 KB |
testcase_30 | AC | 9 ms
8,832 KB |
testcase_31 | AC | 48 ms
12,928 KB |
testcase_32 | AC | 39 ms
12,288 KB |
testcase_33 | AC | 28 ms
11,008 KB |
testcase_34 | AC | 33 ms
11,776 KB |
testcase_35 | AC | 27 ms
11,008 KB |
testcase_36 | AC | 9 ms
9,088 KB |
testcase_37 | AC | 11 ms
9,160 KB |
testcase_38 | AC | 42 ms
12,416 KB |
testcase_39 | AC | 20 ms
9,880 KB |
testcase_40 | AC | 20 ms
9,976 KB |
testcase_41 | AC | 34 ms
11,776 KB |
testcase_42 | AC | 21 ms
10,240 KB |
testcase_43 | AC | 22 ms
10,368 KB |
testcase_44 | AC | 22 ms
10,240 KB |
testcase_45 | AC | 16 ms
9,716 KB |
testcase_46 | AC | 11 ms
8,984 KB |
testcase_47 | AC | 7 ms
8,704 KB |
testcase_48 | AC | 41 ms
12,520 KB |
testcase_49 | AC | 6 ms
8,392 KB |
testcase_50 | AC | 4 ms
8,168 KB |
testcase_51 | AC | 4 ms
8,192 KB |
testcase_52 | AC | 67 ms
16,000 KB |
testcase_53 | AC | 72 ms
15,940 KB |
07_evil_01.txt | AC | 168 ms
20,164 KB |
07_evil_02.txt | RE | - |
ソースコード
#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[200005]; int ans[200005]; bool use[200005]; 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; }