結果

問題 No.416 旅行会社
ユーザー daleksprinterdaleksprinter
提出日時 2018-10-23 15:52:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 3,617 bytes
コンパイル時間 2,093 ms
コンパイル使用メモリ 189,012 KB
実行使用メモリ 817,260 KB
最終ジャッジ日時 2024-04-29 20:53:27
合計ジャッジ時間 5,845 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 <bits/stdc++.h>
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 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[ra].insert(g2i[ra].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,0, qf.g2i[qf.root(0)].size()){
        ans[qf.g2i[qf.root(0)][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