結果

問題 No.1640 簡単な色塗り
ユーザー たたき@競プロたたき@競プロ
提出日時 2023-08-30 07:51:56
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 1,058 bytes
コンパイル時間 6,876 ms
コンパイル使用メモリ 315,200 KB
実行使用メモリ 13,696 KB
最終ジャッジ日時 2024-12-31 22:26:54
合計ジャッジ時間 20,059 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 WA -
testcase_02 AC 3 ms
6,820 KB
testcase_03 AC 4 ms
6,816 KB
testcase_04 AC 73 ms
7,168 KB
testcase_05 AC 133 ms
13,696 KB
testcase_06 AC 3 ms
6,816 KB
testcase_07 AC 3 ms
6,820 KB
testcase_08 AC 3 ms
6,816 KB
testcase_09 WA -
testcase_10 AC 59 ms
7,680 KB
testcase_11 AC 49 ms
6,820 KB
testcase_12 AC 43 ms
6,820 KB
testcase_13 AC 94 ms
9,984 KB
testcase_14 AC 106 ms
10,112 KB
testcase_15 AC 31 ms
6,816 KB
testcase_16 AC 41 ms
6,816 KB
testcase_17 AC 85 ms
8,960 KB
testcase_18 AC 8 ms
6,820 KB
testcase_19 AC 42 ms
6,820 KB
testcase_20 AC 70 ms
7,680 KB
testcase_21 AC 45 ms
6,912 KB
testcase_22 AC 8 ms
6,816 KB
testcase_23 AC 65 ms
7,808 KB
testcase_24 AC 17 ms
6,816 KB
testcase_25 AC 42 ms
6,820 KB
testcase_26 AC 67 ms
8,320 KB
testcase_27 AC 29 ms
6,816 KB
testcase_28 AC 84 ms
9,728 KB
testcase_29 AC 67 ms
8,448 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 2 ms
6,820 KB
testcase_51 AC 2 ms
6,816 KB
testcase_52 AC 103 ms
11,904 KB
testcase_53 AC 98 ms
11,984 KB
07_evil_01.txt AC 232 ms
18,472 KB
07_evil_02.txt AC 395 ms
26,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using mint=modint998244353; //1000000007;
using ll=long long;
using pp=pair<int,int>;
#define sr string 
#define vc vector
#define fi first
#define se second
#define rep(i,n) for(int i=0;i<(int)n;i++)
#define pb push_back
#define all(v) v.begin(),v.end()
#define pque priority_queue
#define bpc(a) __builtin_popcount(a)
int main(){
  int n;cin>>n;
  vc<pp>v(n); rep(i,n)cin>>v[i].fi>>v[i].se; 
  rep(i,n)v[i].fi--,v[i].se--;
  vc vx(n,vc<pp>(0));
  dsu d(n);
  vc<bool>bo(n,false);
  rep(i,n){
    auto [a,b]=v[i];
    if(!d.same(a,b)){
      d.merge(a,b),bo[i]=true;
      vx[a].pb({b,i}); vx[b].pb({a,i});
    }
  }
  vc<int>ans(n,-1);
  auto f=[&](auto f,int a,int p)->void{
    for(auto [au,i]:vx[a])if(au!=p){
      ans[i]=au;
      f(f,au,a);
    }
    return;
  };
  rep(i,n)if(!bo[i]){
    auto [a,b]=v[i];
    ans[i]=a;
    f(f,a,-1);
  }
  rep(i,n)if(ans[i]==-1){
    cout<<"No";
    return 0;
  }
  cout<<"Yes"<<"\n";
  rep(i,n)cout<<ans[i]+1<<"\n";
}
  
0