結果

問題 No.416 旅行会社
ユーザー hokutohokuto
提出日時 2021-09-05 01:40:21
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,076 bytes
コンパイル時間 3,030 ms
コンパイル使用メモリ 147,424 KB
実行使用メモリ 19,328 KB
最終ジャッジ日時 2024-06-01 11:27:37
合計ジャッジ時間 8,920 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 289 ms
14,932 KB
testcase_01 AC 5 ms
9,868 KB
testcase_02 AC 6 ms
9,808 KB
testcase_03 AC 6 ms
9,940 KB
testcase_04 AC 6 ms
9,856 KB
testcase_05 AC 5 ms
9,856 KB
testcase_06 AC 7 ms
9,792 KB
testcase_07 AC 7 ms
9,984 KB
testcase_08 AC 12 ms
10,052 KB
testcase_09 AC 38 ms
10,624 KB
testcase_10 AC 321 ms
14,592 KB
testcase_11 AC 318 ms
14,544 KB
testcase_12 AC 315 ms
14,784 KB
testcase_13 AC 290 ms
14,848 KB
testcase_14 AC 612 ms
19,200 KB
testcase_15 AC 616 ms
19,200 KB
testcase_16 AC 614 ms
19,328 KB
testcase_17 AC 612 ms
19,272 KB
testcase_18 AC 630 ms
19,164 KB
testcase_19 AC 432 ms
18,304 KB
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <utility>
#include <vector>
#include <string>
#include <cmath>
#include <algorithm>
#include <functional>
#include <iomanip>
#include <map>
#include <set>
#include <queue>
using namespace std;
using ll = long long int;
#define chmax(x,y)  (x) = ((x) > (y)) ? (x) : ((x) = (y));
#define chmin(x,y)  (x) = ((x) < (y)) ? (x) : ((x) = (y));

struct UnionFind
{
  vector<int> parent,rank;
  UnionFind(int n)
  {
    parent = rank = vector<int> (n);
    for(int i=0;i<n;++i)parent[i] = i;
  }  
  int root(int x)
  {
    if(x == parent[x])return x;
    else return parent[x] = root(parent[x]);
  }
  int connect(int x, int y)
  {
    x = root(x);y = root(y);
    if(x == y)return x;
    if(rank[x] < rank[y])swap(x,y);
    parent[y] = x;
    if(rank[x] == rank[y])rank[x]++;
    return x;
  }
};
vector<int> answer (101010,0);
vector<int> X(202020),Y(202020);
vector<int> conec[202020];
int main(int argc, char const *argv[])
{
  int N,M,Q; cin >> N >> M >> Q;
  set<pair<int,int>> st;
  for(int i=0;i<M;++i)
  {
    int x,y; cin >> x >> y;
    st.insert({--x, --y});
  }
  for(int i=0;i<Q;++i)
  {
    cin >> X[i] >> Y[i];
    st.erase({--X[i],--Y[i]});
  }

  UnionFind uf(N+1);
  for(auto &e : st)
  {
    uf.connect(e.first,e.second);
  }
  for(int i=0;i<N;++i)
  {
    conec[uf.root(i)].push_back(i);
  }
  for(int i=0;i<N;++i)
  {
    if(uf.root(i) == 0)
    {
      answer[i] = -1;
    }
  }

  
  for(int i=Q-1;i>=0;--i)
  {
    if(uf.root(X[i]) != uf.root(Y[i]))
    {
      int x = uf.root(X[i]);
      int y = uf.root(Y[i]);
      if(x == uf.root(0))
      {
        for(auto &z : conec[y])
        {
          answer[z] = i+1;
        }
      }
      if(y == uf.root(0))
      {
        for(auto &z : conec[x])
        {
          answer[z] = i+1;
        }
      }
      if(uf.rank[x] < uf.rank[y])swap(x,y);
      uf.connect(x,y);
      for(auto &z : conec[y])conec[x].push_back(z);
      conec[y].clear();
      if(uf.root(x)==y) swap(conec[x],conec[y]);
    }
  }
  for(int i=1;i<N;++i)
  {
    std::cout << answer[i] << std::endl;
  }
}
0