結果

問題 No.416 旅行会社
ユーザー ei1333333ei1333333
提出日時 2016-07-22 00:24:20
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 320 ms / 4,000 ms
コード長 1,424 bytes
コンパイル時間 3,646 ms
コンパイル使用メモリ 170,208 KB
実行使用メモリ 29,240 KB
最終ジャッジ日時 2024-05-08 14:50:48
合計ジャッジ時間 5,628 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
20,608 KB
testcase_01 AC 5 ms
9,088 KB
testcase_02 AC 5 ms
9,088 KB
testcase_03 AC 5 ms
9,088 KB
testcase_04 AC 4 ms
9,088 KB
testcase_05 AC 5 ms
8,960 KB
testcase_06 AC 4 ms
9,216 KB
testcase_07 AC 5 ms
9,216 KB
testcase_08 AC 7 ms
9,344 KB
testcase_09 AC 16 ms
10,624 KB
testcase_10 AC 108 ms
20,480 KB
testcase_11 AC 112 ms
20,824 KB
testcase_12 AC 109 ms
20,824 KB
testcase_13 AC 101 ms
20,828 KB
testcase_14 AC 320 ms
29,184 KB
testcase_15 AC 308 ms
29,160 KB
testcase_16 AC 306 ms
29,240 KB
testcase_17 AC 313 ms
29,236 KB
testcase_18 AC 309 ms
29,056 KB
testcase_19 AC 195 ms
24,780 KB
testcase_20 AC 201 ms
24,832 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:40:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   40 |   scanf("%d %d %d", &N, &M, &Q);
      |   ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
main.cpp:44:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   44 |     scanf("%d %d", &A[i], &B[i]);
      |     ~~~~~^~~~~~~~~~~~~~~~~~~~~~~
main.cpp:48:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   48 |     scanf("%d %d", &C[i], &D[i]);
      |     ~~~~~^~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
typedef pair< int, int > Pi;
 
int data[200000];
vector< int > zig[200000];
int query[200000];
 
int find(int y)
{
  if(data[y] < 0) return(y);
  return(data[y] = find(data[y]));
}
void unite(int x, int y)
{
  x = find(x);
  y = find(y);
  if(x != y) {
    if(zig[x].size() < zig[y].size()) swap(x, y);
    data[x] += data[y];
    data[y] = x;
    while(!zig[y].empty()) {
      zig[x].push_back(zig[y].back());
      zig[y].pop_back();
    }
  }
}
 
 
int N, M, Q;
bool v[200000];
int A[200000], B[200000];
int C[200000], D[200000];
 
map< Pi, int > idx;
 
int main()
{
  memset(data, -1, sizeof(data));
  scanf("%d %d %d", &N, &M, &Q);
  for(int i = 0; i < N; i++) zig[i].push_back(i);
   
  for(int i = 0; i < M; i++) {
    scanf("%d %d", &A[i], &B[i]);
    idx[minmax(--A[i], --B[i])] = i;
  }
  for(int i = 0; i < Q; i++) {
    scanf("%d %d", &C[i], &D[i]);
    v[idx[minmax(--C[i], --D[i])]] = true;
  }
  for(int i = 0; i < M; i++) {
    if(!v[i]) unite(A[i], B[i]);
  }
   
  while(!zig[find(0)].empty()) {
    query[zig[find(0)].back()] = -1;
    zig[find(0)].pop_back();
  }
   
  for(int i = Q - 1; i >= 0; i--) {
    unite(C[i], D[i]);
    if(find(C[i]) == find(0)) {
      while(!zig[find(0)].empty()) {
        query[zig[find(0)].back()] = i + 1;
        zig[find(0)].pop_back();
      }
    }
  }
  for(int i = 1; i < N; i++) {
    printf("%d\n", query[i]);
  }
}
0