結果
問題 | No.1640 簡単な色塗り |
ユーザー | ゆきのん |
提出日時 | 2021-08-06 22:24:52 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,246 bytes |
コンパイル時間 | 2,319 ms |
コンパイル使用メモリ | 222,248 KB |
実行使用メモリ | 46,732 KB |
最終ジャッジ日時 | 2024-06-29 15:29:46 |
合計ジャッジ時間 | 18,353 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
13,028 KB |
testcase_01 | AC | 5 ms
13,024 KB |
testcase_02 | AC | 5 ms
10,980 KB |
testcase_03 | AC | 5 ms
13,148 KB |
testcase_04 | AC | 243 ms
23,544 KB |
testcase_05 | AC | 336 ms
46,732 KB |
testcase_06 | AC | 5 ms
10,980 KB |
testcase_07 | AC | 6 ms
11,104 KB |
testcase_08 | AC | 5 ms
13,152 KB |
testcase_09 | AC | 5 ms
11,108 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 27 ms
15,632 KB |
testcase_31 | AC | 262 ms
29,284 KB |
testcase_32 | AC | 206 ms
27,336 KB |
testcase_33 | AC | 123 ms
20,724 KB |
testcase_34 | AC | 171 ms
25,136 KB |
testcase_35 | AC | 122 ms
20,644 KB |
testcase_36 | AC | 28 ms
15,500 KB |
testcase_37 | AC | 38 ms
16,340 KB |
testcase_38 | AC | 221 ms
26,224 KB |
testcase_39 | AC | 73 ms
19,492 KB |
testcase_40 | AC | 77 ms
19,420 KB |
testcase_41 | AC | 187 ms
25,420 KB |
testcase_42 | AC | 88 ms
20,584 KB |
testcase_43 | AC | 101 ms
20,772 KB |
testcase_44 | AC | 93 ms
20,464 KB |
testcase_45 | AC | 63 ms
18,676 KB |
testcase_46 | AC | 30 ms
13,700 KB |
testcase_47 | AC | 20 ms
14,812 KB |
testcase_48 | AC | 222 ms
28,172 KB |
testcase_49 | AC | 11 ms
13,720 KB |
testcase_50 | AC | 6 ms
13,028 KB |
testcase_51 | AC | 5 ms
11,104 KB |
testcase_52 | WA | - |
testcase_53 | WA | - |
07_evil_01.txt | RE | - |
07_evil_02.txt | RE | - |
ソースコード
#include<bits/stdc++.h> //#include<atcoder/all> //#include <boost/multiprecision/cpp_int.hpp> using namespace std; //using namespace atcoder; //using namespace boost::multiprecision; #define fs first #define sc second #define pb push_back #define mp make_pair #define eb emplace_back #define ALL(A) A.begin(),A.end() #define RALL(A) A.rbegin(),A.rend() typedef long long ll; typedef pair<ll,ll> P; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } template<typename T> T gcd(T a,T b){return b?gcd(b,a%b):a;} const ll mod=1e9 + 7; const ll LINF=1ll<<60; const int INF=1<<30; //int dx[]={0,1,0,-1,0,1,-1,1,-1}; //int dy[]={0,0,1,0,-1,1,-1,-1,1}; int dx[]={0,0,1,-1}; int dy[]={-1,1,0,0}; const int M_N=500001; struct UnionFind{ int par[M_N]; int rank[M_N]; int sz[M_N]; int p[M_N]; void init(int n){ for(int i=0;i<n;i++){ par[i]=i; rank[i]=0; sz[i]=1; p[i]=0; } } int find(int x){ if(par[x]==x){ return x; } else{ return par[x]=find(par[x]); } } void unite(int x,int y){ x=find(x); y=find(y); if(x==y){ p[x]++; return; } if(rank[x]<rank[y]){ par[x]=y; sz[y]+=sz[x]; p[y]+=p[x]+1; } else{ par[y]=x; sz[x]+=sz[y]; p[x]+=p[y]+1; if(rank[x]==rank[y]) rank[x]++; } } int size(int x){ return sz[find(x)]; } int getp(int x){ return p[find(x)]; } bool same(int x,int y){ return find(x)==find(y); } }; vector<int> G[1<<17]; map<pair<int,int>, int> id; vector<int> Ans(1 << 17, 0); vector<bool> used(1 << 17, false); set<int> s; void dfs(int u, int v){ for(auto g:G[u]){ if(g == v) continue; if(used[id[{u, g}]]) continue; used[id[{u, g}]] = true; Ans[id[{u, g}]] = g + 1; s.insert(g + 1); dfs(g, u); } return; } int main(){ int n;cin >> n; vector<int> a(n),b(n); UnionFind uf; uf.init(n); vector<bool> f(n , false); for (int i = 0; i < n; i++) { cin >> a[i] >> b[i]; a[i]--,b[i]--; G[a[i]].pb(b[i]); G[b[i]].pb(a[i]); id[{a[i], b[i]}] = i; id[{b[i], a[i]}] = i; uf.unite(a[i],b[i]); if(uf.getp(a[i]) == uf.size(a[i])) f[a[i]] = true; } int ans = 0; for (int i = 0; i < n; i++) { if(uf.find(i)==i){ if(uf.getp(i) >= uf.size(i)) ans += uf.size(i); else ans += uf.size(i) - 1; } } if(ans == n){ puts("Yes"); for (int i = 0; i < n; i++) { if(f[i]) dfs(i, i); } for (int i = 0; i < n; i++) { if(Ans[i] == 0){ if(s.find(a[i] + 1) == s.end()) cout << a[i] + 1 << endl; else cout << b[i] + 1 << endl; } else{ cout << Ans[i] << endl; } } } else puts("No"); return 0; }