結果
問題 | No.416 旅行会社 |
ユーザー | xuzijian629 |
提出日時 | 2018-10-30 15:52:53 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 628 ms / 4,000 ms |
コード長 | 2,079 bytes |
コンパイル時間 | 2,704 ms |
コンパイル使用メモリ | 224,344 KB |
実行使用メモリ | 24,356 KB |
最終ジャッジ日時 | 2024-12-14 20:33:40 |
合計ジャッジ時間 | 9,576 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 288 ms
14,908 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 3 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 3 ms
5,248 KB |
testcase_08 | AC | 8 ms
5,248 KB |
testcase_09 | AC | 36 ms
5,248 KB |
testcase_10 | AC | 309 ms
14,776 KB |
testcase_11 | AC | 317 ms
14,904 KB |
testcase_12 | AC | 305 ms
14,904 KB |
testcase_13 | AC | 287 ms
14,772 KB |
testcase_14 | AC | 601 ms
24,356 KB |
testcase_15 | AC | 605 ms
24,104 KB |
testcase_16 | AC | 592 ms
24,228 KB |
testcase_17 | AC | 623 ms
24,232 KB |
testcase_18 | AC | 628 ms
24,228 KB |
testcase_19 | AC | 420 ms
17,772 KB |
testcase_20 | AC | 424 ms
17,776 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using i64 = int64_t; using vi = vector<i64>; using vvi = vector<vi>; class ppUF { vi rank, par, time; const int INF = 1e9; public: ppUF(int n) { rank.resize(n); par.resize(n, -1); time.resize(n, INF); } int find(int t, int x) { if (time[x] > t) return x; return find(t, par[x]); } bool unite(int t, int x, int y) { x = find(t, x); y = find(t, y); if (x == y) return false; if (rank[x] > rank[y]) { par[y] = x; time[y] = t; } else { par[x] = y; time[x] = t; if (rank[x] == rank[y]) { rank[y]++; } } return true; } bool same(int t, int x, int y) { return find(t, x) == find(t, y); } }; int main() { int n, m, q; cin >> n >> m >> q; using ii = pair<int, int>; map<ii, int> ord; for (int i = 0; i < m; i++) { int a, b; cin >> a >> b; a--, b--; ord[ii(a, b)] = 1e9; } vector<ii> qs; for (int i = 0; i < q; i++) { int c, d; cin >> c >> d; c--, d--; qs.push_back(ii(c, d)); } reverse(qs.begin(), qs.end()); for (int i = 0; i < q; i++) { ord[qs[i]] = i + 1; } ppUF uf(n); vector<pair<int, ii>> vs; for (auto& p: ord) { if (p.second == 1e9) { uf.unite(0, p.first.first, p.first.second); } else { vs.push_back(make_pair(p.second, p.first)); } } sort(vs.begin(), vs.end()); for (auto& v: vs) { uf.unite(v.first, v.second.first, v.second.second); } for (int i = 1; i < n; i++) { int l = -1, r = q + 1; while (l < r - 1) { int mid = (l + r) / 2; if (uf.same(mid, 0, i)) { r = mid; } else { l = mid; } } cout << (l == -1 ? -1 : (l == q ? 0 : q - l)) << endl; } }