結果

問題 No.416 旅行会社
ユーザー TatsunoTatsuno
提出日時 2016-08-28 02:13:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,451 bytes
コンパイル時間 1,879 ms
コンパイル使用メモリ 177,420 KB
実行使用メモリ 21,276 KB
最終ジャッジ日時 2024-04-26 07:20:56
合計ジャッジ時間 12,414 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 284 ms
17,308 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 4 ms
6,944 KB
testcase_08 AC 8 ms
6,944 KB
testcase_09 AC 35 ms
6,940 KB
testcase_10 AC 309 ms
11,392 KB
testcase_11 AC 310 ms
11,456 KB
testcase_12 AC 306 ms
11,528 KB
testcase_13 AC 281 ms
10,824 KB
testcase_14 AC 2,567 ms
14,720 KB
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _CRT_SECURE_NO_WARNINGS
#define _USE_MATH_DEFINES

#include <bits/stdc++.h>
using namespace std;
using i32 = int32_t; using i64 = int64_t; using f64 = double_t; using str = string;
template <typename T> using vec = vector<T>;
template <typename T> using heap = priority_queue<T, vec<T>, greater<T>>;
#define times(n, i) for (i64 i = 0; i < (n); ++i)
#define range(n, m, i) for (i64 i = (n); i < (m); ++i)
#define upto(n, m, i) for (i64 i = (n); i <= (m); ++i)
#define downto(n, m, i) for (i64 i = (n); i >= (m); --i)
#define foreach(xs, x) for (auto &x : (xs))
#define all(xs) (xs).begin(), (xs).end()
#define sortall(xs) sort(all(xs))
#define reverseall(xs) reverse(all(xs))
#define uniqueall(xs) (xs).erase(unique(all(xs)), (xs).end())
#define maximum(xs) (*max_element(all(xs)))
#define minimum(xs) (*min_element(all(xs)))
#define even(x) (((x) & 1) == 0)
#define odd(x) (((x) & 1) == 1)
#define append emplace_back
const i64 MOD = 1000000007;

i32 n, m, q;
i32 ans[200001];

set<pair<i32, i32>> ab;

struct group {
    vec<i32> v;
    vec<vec<i32>> elems;
    group(i32 size) : v(size, -1), elems(size) { times(size, i) elems[i].append(i); }
    void unite(i32 x, i32 y) {
        x = find(x); y = find(y); if (x == y) return;
        if (v[y] < v[x]) swap(x, y); v[x] += v[y]; v[y] = x;
        foreach(elems[y], z) {
            if (ans[z] == 0)
                elems[x].append(z);
        }
    }
    i32 find(i32 x) { return v[x] < 0 ? x : v[x] = find(v[x]); }
    i32 size(i32 x) { return -v[x]; }
    i32 same(i32 x, i32 y) { return find(x) == find(y); }
};

i32 main()
{
    cin >> n >> m >> q;
    vec<pair<i32, i32>> cd(q);

    times(m, i) {
        i32 a, b; cin >> a >> b;
        ab.insert(make_pair(a, b));
    }
    times(q, i) {
        cin >> cd[i].first >> cd[i].second;
        ab.erase(cd[i]);
    }
    reverseall(cd);

    group g(n+1);
    for (auto it = ab.begin(); it != ab.end(); it++) {
        g.unite(it->first, it->second);
    }

    upto(1, n, i) {
        if (g.find(i) == 1)
            ans[i] = -1;
    }

    downto(q, 1, j) {
        i32 i = q-j, a = cd[i].first, b = cd[i].second;
        if (ans[a] != 0 || ans[b] != 0) {
            i32 t = g.find(ans[a] == 0 ? a : b);
            foreach(g.elems[t], x) {
                if (ans[x] == 0)
                    ans[x] = j;
            }
        }
        g.unite(a, b);
    }

    upto(2, n, i) {
        cout << ans[i] << endl;
    }
    return 0;
}
0