結果

問題 No.416 旅行会社
ユーザー keikei
提出日時 2018-12-05 00:07:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 593 ms / 4,000 ms
コード長 3,647 bytes
コンパイル時間 2,153 ms
コンパイル使用メモリ 184,224 KB
実行使用メモリ 37,768 KB
最終ジャッジ日時 2023-08-21 10:22:43
合計ジャッジ時間 8,914 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 229 ms
20,612 KB
testcase_01 AC 5 ms
8,344 KB
testcase_02 AC 5 ms
8,516 KB
testcase_03 AC 5 ms
8,292 KB
testcase_04 AC 5 ms
8,300 KB
testcase_05 AC 5 ms
8,400 KB
testcase_06 AC 5 ms
8,396 KB
testcase_07 AC 7 ms
8,420 KB
testcase_08 AC 10 ms
8,796 KB
testcase_09 AC 33 ms
10,292 KB
testcase_10 AC 256 ms
20,616 KB
testcase_11 AC 287 ms
25,364 KB
testcase_12 AC 297 ms
27,720 KB
testcase_13 AC 256 ms
25,388 KB
testcase_14 AC 554 ms
34,296 KB
testcase_15 AC 574 ms
36,572 KB
testcase_16 AC 593 ms
37,768 KB
testcase_17 AC 561 ms
36,296 KB
testcase_18 AC 569 ms
35,904 KB
testcase_19 AC 400 ms
25,620 KB
testcase_20 AC 368 ms
24,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
const int INF = 1e9;
const ll LINF = 1e18;
inline ll gcd(ll a, ll b) { return b ? gcd(b, a%b) : a; }
inline ll lcm(ll a, ll b) { return a / gcd(a, b)*b; }
template<class S,class T> ostream& operator << (ostream& out,const pair<S,T>& o){ out << "(" << o.first << "," << o.second << ")"; return out; }
template<class T> ostream& operator << (ostream& out,const vector<T> V){ for(int i = 0; i < V.size(); i++){ out << V[i]; if(i!=V.size()-1) out << " ";} return out; }
template<class T> ostream& operator << (ostream& out,const vector<vector<T> > Mat){ for(int i = 0; i < Mat.size(); i++) { if(i != 0) out << endl; out << Mat[i];} return out; }
template<class S,class T> ostream& operator << (ostream& out,const map<S,T> mp){ out << "{ "; for(auto it = mp.begin(); it != mp.end(); it++){ out << it->first << ":" << it->second; if(mp.size()-1 != distance(mp.begin(),it)) out << ", "; } out << " }"; return out; }

/*
 <url:https://yukicoder.me/problems/no/416>
 問題文============================================================
 =================================================================
 解説=============================================================
 ================================================================
 */

struct UnionFind{
    vector<int> parent, rank;
    UnionFind(int n) : parent(n, -1), rank(n, 0) { }
    int find(int x){
        if(parent[x] == -1) return x;
        else return (parent[x] = find(parent[x]));
    }
    bool unite(int x, int y){
        x = find(x);
        y = find(y);
        if(x == y) return false;
        if(rank[x] < rank[y])
            parent[x] = y;
        else
            parent[y] = x;
        if(rank[x] == rank[y]) rank[x]++;
        return true;
    }
    bool same(int x, int y){
        return find(x) == find(y);
    }
};


map<pii,int> mp;
set<int> children[100005];
UnionFind UF(100005);
void solve(){
    int N,M,Q; cin >> N >> M >> Q;
    for(int i = 0; i < M;i++){
        int A,B; cin >> A >> B; A--; B--;
        if(A > B) swap(A,B);
        mp[pii(A,B)]++;
    }
    
    vector<pii> edges(Q);
    for(int i = 0; i < Q;i++){
        int C,D; cin >> C >> D;
        C--; D--;
        if(C > D) swap(C,D);
        mp[pii(C,D)]--;
        edges[i] = pii(C,D);
    }
    
    for(auto p:mp){
        if(p.second){
            UF.unite(p.first.first,p.first.second);
        }
    }
    vector<int> ans(N);
    for(int i = 1; i <= N;i++){
        if(UF.same(0,i)) ans[i] = -1;
    }
    

    for(int i = 0; i < N;i++) children[UF.find(i)].insert(i);
    for(int i = Q-1; i >= 0; i--){
        int rootx = UF.find(edges[i].first);
        int rooty = UF.find(edges[i].second);
        if(rootx == rooty) continue;
        int rootzero = UF.find(0);
        if(rootx == rootzero){
            for(auto v:children[rooty]){
                ans[v] = i+1;
            }
            UF.unite(rootx, rooty);
        }else if(rooty == rootzero){
            for(auto v:children[rootx]){
                ans[v] = i+1;
            }
            UF.unite(rootx, rooty);
        }else{
            UF.unite(rootx, rooty);
            int next_root = UF.find(rootx);
            if(next_root == rootx){
                for(auto v:children[rooty]) children[rootx].insert(v);
            }else{
                for(auto v:children[rootx]) children[rooty].insert(v);
            }
        }
    }
    for(int i = 1; i < N;i++){
        cout << ans[i] << endl;
    }
}
int main(void) {
    cin.tie(0); ios_base::sync_with_stdio(false);
    solve();
    return 0;
}
0