main.cpp 561 B

1234567891011121314151617181920212223242526
  1. #include <iostream>
  2. #include "disjoint_set.hpp"
  3. #define endl '\n'
  4. using namespace std;
  5. int main()
  6. {
  7. ios_base::sync_with_stdio(0);
  8. cin.tie(0);
  9. auto ds = disjoint_set()->with_undo()->init(2);
  10. cout << ds->root(0) << " " << ds->size(0) << " " << ds->root(1) << " " << ds->size(1) << endl;
  11. ds->merge(0, 1);
  12. cout << ds->root(0) << " " << ds->size(0) << " " << ds->root(1) << " " << ds->size(1) << endl;
  13. ds->undo();
  14. cout << ds->root(0) << " " << ds->size(0) << " " << ds->root(1) << " " << ds->size(1) << endl;
  15. return 0;
  16. }