結果
問題 | No.416 旅行会社 |
ユーザー | keijak |
提出日時 | 2021-02-15 02:28:30 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 328 ms / 4,000 ms |
コード長 | 5,674 bytes |
コンパイル時間 | 2,369 ms |
コンパイル使用メモリ | 219,620 KB |
実行使用メモリ | 15,232 KB |
最終ジャッジ日時 | 2024-05-08 16:03:19 |
合計ジャッジ時間 | 6,481 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 94 ms
11,880 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 4 ms
5,376 KB |
testcase_09 | AC | 15 ms
5,376 KB |
testcase_10 | AC | 114 ms
11,880 KB |
testcase_11 | AC | 112 ms
11,880 KB |
testcase_12 | AC | 121 ms
11,624 KB |
testcase_13 | AC | 93 ms
11,756 KB |
testcase_14 | AC | 328 ms
14,080 KB |
testcase_15 | AC | 308 ms
14,080 KB |
testcase_16 | AC | 304 ms
14,208 KB |
testcase_17 | AC | 309 ms
14,080 KB |
testcase_18 | AC | 324 ms
14,208 KB |
testcase_19 | AC | 198 ms
15,232 KB |
testcase_20 | AC | 206 ms
15,232 KB |
ソースコード
#include <bits/stdc++.h> #define REP_(i, a_, b_, a, b, ...) \ for (int i = (a), _Z_##i = (b); i < _Z_##i; ++i) #define REP(i, ...) REP_(i, __VA_ARGS__, __VA_ARGS__, 0, __VA_ARGS__) #define ALL(x) std::begin(x), std::end(x) using i64 = long long; using u64 = unsigned long long; template <typename T, typename U> inline bool chmax(T &a, U b) { return a < b and ((a = std::move(b)), true); } template <typename T, typename U> inline bool chmin(T &a, U b) { return a > b and ((a = std::move(b)), true); } template <typename T> inline int ssize(const T &a) { return (int)std::size(a); } template <typename T> std::istream &operator>>(std::istream &is, std::vector<T> &a) { for (auto &x : a) is >> x; return is; } template <typename Container> std::ostream &print_seq(const Container &a, std::string_view sep = " ", std::string_view ends = "\n", std::ostream *os = nullptr) { if (os == nullptr) os = &std::cout; auto b = std::begin(a), e = std::end(a); for (auto it = std::begin(a); it != e; ++it) { if (it != b) *os << sep; *os << *it; } return *os << ends; } template <typename T, typename = void> struct is_iterable : std::false_type {}; template <typename T> struct is_iterable<T, std::void_t<decltype(std::begin(std::declval<T>())), decltype(std::end(std::declval<T>()))>> : std::true_type {}; template <typename T, typename = std::enable_if_t< is_iterable<T>::value && !std::is_same<T, std::string_view>::value && !std::is_same<T, std::string>::value>> std::ostream &operator<<(std::ostream &os, const T &a) { return print_seq(a, ", ", "", &(os << "{")) << "}"; } template <typename T, typename U> std::ostream &operator<<(std::ostream &os, const std::pair<T, U> &a) { return os << "(" << a.first << ", " << a.second << ")"; } #ifdef ENABLE_DEBUG template <typename T> void pdebug(const T &value) { std::cerr << value; } template <typename T, typename... Ts> void pdebug(const T &value, const Ts &...args) { pdebug(value); std::cerr << ", "; pdebug(args...); } #define DEBUG(...) \ do { \ std::cerr << " \033[33m (L" << __LINE__ << ") "; \ std::cerr << #__VA_ARGS__ << ":\033[0m "; \ pdebug(__VA_ARGS__); \ std::cerr << std::endl; \ } while (0) #else #define pdebug(...) #define DEBUG(...) #endif using namespace std; // Partially Persistent UnionFind. struct UnionFindWithTime { int n; mutable std::vector<int> parent_; // positive: parent, negative: size std::vector<int> rank_; int num_roots_; int clock_; std::vector<int> parented_time_; std::vector<std::vector<std::pair<int, int>>> size_history_; explicit UnionFindWithTime(int sz) : n(sz), parent_(sz, -1), rank_(sz, 1), num_roots_(sz), clock_(0), parented_time_(sz, -1), size_history_(n, {{0, 1}}) {} // Returns current clock_. int unite(int x, int y) { ++clock_; x = find(x, clock_), y = find(y, clock_); if (x == y) return clock_; if (rank_[x] < rank_[y] or (rank_[x] == rank_[y] and -parent_[x] < -parent_[y])) { std::swap(x, y); } parent_[x] += parent_[y]; parent_[y] = x; rank_[x] = std::max(rank_[x], rank_[y] + 1); parented_time_[y] = clock_; size_history_[x].emplace_back(clock_, -parent_[x]); --num_roots_; return clock_; } int find(int v, int time) const { if (parent_[v] < 0) return v; if (time < parented_time_[v]) return v; return find(parent_[v], time); } int find(int v) const { return find(v, clock_); } int size(int v, int time) const { int r = find(v, time); const auto &h = size_history_[r]; auto it = std::lower_bound(h.begin(), h.end(), std::pair(time + 1, -1)); return (--it)->second; } int size(int v) const { return -parent_[find(v)]; } bool same(int x, int y, int time) const { return find(x, time) == find(y, time); } bool same(int x, int y) const { return find(x) == find(y); } std::optional<int> united_time(int x, int y) { if (not same(x, y)) { return std::nullopt; } int fv = 0, tv = clock_; while (tv - fv > 1) { int mid = (tv + fv) / 2; if (same(x, y, mid)) { tv = mid; } else { fv = mid; } } return tv; } }; void solve() { int n, m, q; cin >> n >> m >> q; set<array<int, 2>> init; REP(i, m) { int a, b; cin >> a >> b; --a, --b; init.insert({a, b}); } vector<array<int, 2>> events(q); REP(i, q) { int c, d; cin >> c >> d; --c, --d; init.erase({c, d}); events[i] = {c, d}; } UnionFindWithTime uf(n); for (auto [a, b] : init) { uf.unite(a, b); } int start_time = uf.clock_; REP(i, q) { auto [c, d] = events[q - 1 - i]; uf.unite(c, d); } int end_time = uf.clock_; vector<int> ans(n, -2); for (int i = 1; i < n; ++i) { if (uf.same(i, 0, start_time)) { ans[i] = -1; continue; } if (not uf.same(i, 0, end_time)) { ans[i] = 0; continue; } int fv = start_time, tv = end_time; while (tv - fv > 1) { int mid = (tv + fv) / 2; if (uf.same(i, 0, mid)) { tv = mid; } else { fv = mid; } } ans[i] = end_time - fv; } REP(i, 1, n) { cout << ans[i] << '\n'; assert(ans[i] != -2); } } int main() { ios_base::sync_with_stdio(false), cin.tie(nullptr); solve(); }