結果

問題 No.416 旅行会社
ユーザー pekempeypekempey
提出日時 2016-10-29 05:40:31
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 252 ms / 4,000 ms
コード長 1,837 bytes
コンパイル時間 1,480 ms
コンパイル使用メモリ 171,608 KB
実行使用メモリ 22,584 KB
最終ジャッジ日時 2024-05-08 15:25:01
合計ジャッジ時間 5,065 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
16,184 KB
testcase_01 AC 4 ms
6,144 KB
testcase_02 AC 3 ms
6,144 KB
testcase_03 AC 2 ms
6,144 KB
testcase_04 AC 2 ms
6,016 KB
testcase_05 AC 3 ms
6,144 KB
testcase_06 AC 3 ms
6,144 KB
testcase_07 AC 4 ms
6,016 KB
testcase_08 AC 5 ms
6,144 KB
testcase_09 AC 12 ms
7,040 KB
testcase_10 AC 100 ms
16,184 KB
testcase_11 AC 101 ms
16,180 KB
testcase_12 AC 106 ms
16,180 KB
testcase_13 AC 84 ms
16,180 KB
testcase_14 AC 249 ms
22,576 KB
testcase_15 AC 235 ms
22,448 KB
testcase_16 AC 242 ms
22,452 KB
testcase_17 AC 247 ms
22,584 KB
testcase_18 AC 252 ms
22,448 KB
testcase_19 AC 138 ms
16,088 KB
testcase_20 AC 141 ms
16,188 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:56:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   56 |         scanf("%d %d", &a, &b);
      |         ~~~~~^~~~~~~~~~~~~~~~~
main.cpp:63:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   63 |         scanf("%d %d", &c[i], &d[i]);
      |         ~~~~~^~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

const int N = 1e5;
int par[N];
list<int> items[N];

struct node { 
    int val;
    node *next;
};

node body[N];
node *head[N];
node *tail[N];
int size[N];

void join(int x, int y) {
    tail[x]->next = head[y];
    tail[x] = tail[y];
}

int find(int x) {
    if (par[x] == x) return x;
    return par[x] = find(par[x]);
}

void unite(int x, int y) {
    x = find(x);
    y = find(y);
    if (x == y) return;
    if (size[x] < size[y]) swap(x, y);
    size[x] += size[y];
    par[y] = x;
    join(x, y);
}

int main() {
    int n, m, q;
    cin >> n >> m >> q;

    for (int i = 0; i < n; i++) {
        size[i] = 1;
        par[i] = i;
        head[i] = &body[i];
        tail[i] = &body[i];
        body[i].val = i;
        body[i].next = nullptr;
    }

    vector<pair<int, int>> g;
    set<pair<int, int>> removed;

    for (int i = 0; i < m; i++) {
        int a, b;
        scanf("%d %d", &a, &b);
        a--; b--;
        g.push_back(minmax(a, b));
    }

    vector<int> c(q), d(q);
    for (int i = 0; i < q; i++) {
        scanf("%d %d", &c[i], &d[i]);
        c[i]--; d[i]--;
        removed.insert(minmax(c[i], d[i]));
    }

    for (auto e : g) if (!removed.count(e)) unite(e.first, e.second);

    vector<int> ans(n);
    for (int i = 0; i < n; i++) ans[i] = find(0) == find(i) ? -1 : 0;

    for (int i = q - 1; i >= 0; i--) {
        c[i] = find(c[i]);
        d[i] = find(d[i]);
        if (c[i] == d[i]) continue;
        if (d[i] == find(0)) swap(c[i], d[i]);
        if (c[i] == find(0)) {
            node *it = head[d[i]];
            for (node *it = head[d[i]]; it != nullptr; it = it->next) {
                ans[it->val] = i + 1;
            }
        }
        unite(c[i], d[i]);
    }

    for (int i = 1; i < n; i++) {
        printf("%d\n", ans[i]);
    }
}
0