結果

問題 No.416 旅行会社
ユーザー daleksprinterdaleksprinter
提出日時 2018-10-23 15:40:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 5,092 bytes
コンパイル時間 1,464 ms
コンパイル使用メモリ 124,336 KB
実行使用メモリ 817,008 KB
最終ジャッジ日時 2024-04-29 20:52:12
合計ジャッジ時間 6,733 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <set>
#include <map>
#include <list>

#include <stack>
#include <cmath>
#include <ctime>
#include <cstdio>
#include <vector>
#include <string>
#include <bitset>
#include <cctype>
#include <cstdlib>
#include <cstring>
#include <utility>
#include <numeric>
#include <complex>
#include <sstream>
#include <fstream>
#include <iomanip>
#include <cassert>
#include <iostream>
#include <iterator>
#include <algorithm>
using namespace std;

/* macro */
#define rep(i,a,b) for(int i=a;i<b;i++)
#define revrep(i,a,b) for(int i = a; i > b; i--)
#define int long long
#define exist(s,e) ((s).find(e)!=(s).end())
#define all(v) (v).begin(), (v).end()
#define each(s,itr) for(auto (itr) = s.begin(); (itr) != s.end(); (itr)++)
#define sum(v) accumulate(all(v), (0LL))
#define mp(a, b) make_pair(a, b)


/* alias */
template<class T> using vec = vector<T>;
typedef vector<int> vi;
typedef pair<int, int> pi;


/* constant */
const int inf = 1001001001;
const int mod = 1e6;
int dx[8]={1,0,-1,0,-1,1,-1,1};
int dy[8]={0,1,0,-1,-1,-1,1,1};


/* io_method */
int input(){int tmp;cin >> tmp;return tmp;}
string raw_input(){string tmp;cin >> tmp;return tmp;}
string readline(){string s;getline(cin, s);return s;}
template<class T> void printx(T n){cout << n;}
template<class T, class U> void printx(pair<T, U> p){cout << "(" << p.first << "," << p.second << ")";}
template<class T> void printx(vector<T> v){cout << "{";rep(i,0,v.size()){printx(v[i]);if(i != v.size()-1)printx(",");}cout << "}";}
template<class T> void print(T n){printx(n);cout << endl;}
template<class T> void print(set<T> s){cout << "{";each(s, e){if(e != s.begin()) printx(",");printx(*e);}cout << "}" << endl;}
template<class T, class U> void print(map<T, U> mp){cout << "{";each(mp, e){cout << "(" << e -> first << "," << e -> second << ")";}cout << "}" << endl;}


/* general_method */
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; }




/* main */

struct UnionFind {
    vector<int> par; // 親ノード
    vector<int> rank; // ランク

    UnionFind(int n = 1) {
        init(n);
    }

    void init(int n = 1) {
        par.resize(n); rank.resize(n);
        for (int i = 0; i < n; ++i) par[i] = i, rank[i] = 0;
    }

    int root(int x) {
        if (par[x] == x) {
            return x;
        }
        else {
            int r = root(par[x]);
            return par[x] = r;
        }
    }

    bool issame(int x, int y) {
        return root(x) == root(y);
    }

    bool merge(int x, int y) {

        x = root(x); y = root(y);
        if (x == y) return false;
        if(x == 0){
            par[y] = x;
            ++rank[x];
            return true;
        }
        if(y == 0){
            par[x] = y;
            ++rank[y];
            return true;
        }
        if (rank[x] < rank[y]) swap(x, y);
        if (rank[x] == rank[y]) ++rank[x];
        par[y] = x;
        return true;
    }

    int count_connected_comp(){
        set<int> s;
        rep(i,0,par.size()){
            s.insert(par[i]);
        }
        return s.size();
    }
};

struct quick_find{

    vector<vector<int> > g2i;
    vector<int> i2g;

    quick_find(int n){
        g2i.resize(n, vector<int>());
        i2g.resize(n);
        rep(i,0,n) {
            g2i[i].push_back(i);
            i2g[i] = i;
        }
    }

    void merge(int a, int b){

        if(g2i[a].size() < g2i[b].size()) swap(a, b);

        int ra = i2g[a], rb = i2g[b];

        for(int e : g2i[rb]) i2g[e] = ra;

        g2i[a].insert(g2i[a].end(), g2i[rb].begin(), g2i[rb].end());

        g2i[rb].clear();

    }


    bool issame(int a, int b){
        return i2g[a] == i2g[b];
    }

    int root(int a){
        return i2g[a];
    }


};




signed main(){

    cin.tie(0);
    ios::sync_with_stdio(false);


    
    int n, m, q; cin >> n >> m >> q;

    set<pi> s;
    rep(i,0,m){
        int f, t; cin >> f >> t; f--; t--;
        s.insert(mp(f, t));
    }



    vec<pi> broken;
    rep(i,0,q){

        int f, t; cin >> f >> t; f--; t--;
        broken.push_back(mp(f,t));
        s.erase(mp(f, t));
    }
    reverse(all(broken));

    vi ans(n);

    quick_find qf = quick_find(n);
    each(s, itr) qf.merge(itr -> first, itr -> second);
    rep(i,1,q) if(qf.issame(0, i)) ans[i] = -1;

    


    rep(i,0,q){
        pi e = broken[i];

        if(not qf.issame(e.first, e.second)){
            if((qf.issame(0, e.first) && not qf.issame(0, e.second)) or (not qf.issame(0, e.first) && qf.issame(0, e.second)) ){
                int merged = (qf.issame(0, e.first) ? qf.root(e.second) : qf.root(e.first) ) ;
                rep(j, 0, qf.g2i[merged].size()){
                    ans[qf.g2i[merged][j]] = q - i;
                }
            }
            qf.merge(e.first, e.second);
        }
    }

    rep(i,1,q) if(not qf.issame(0, i)) ans[i] = 0;

    rep(i,1,n){
        print(ans[i]);
    }


    







    
    

    



    





    
    

















}






    










    




    








0