Submission #711642

# Submission time Handle Problem Language Result Execution time Memory
711642 2023-03-17T10:30:02 Z Pety Pipes (CEOI15_pipes) C++14
20 / 100
2791 ms 23288 KB
#include <bits/stdc++.h>

using namespace std;

int n, m, x, y, sz[100002], p[100002], dp[20][100002], depth[100002];
vector<vector<int>>v[100002];
vector<int>G[100002];

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

void merge (int x, int y) {
  int px = find(x);
  int py = find(y);
  if (px == py)
    return;

  if (sz[px] > sz[py]) {
    swap(x, y);
    swap(px, py);
  }
  p[px] = py;
  sz[py] += sz[px];
  for (int i = y; i; i = dp[0][i]) {
    for (int j = 0; (1 << j) < n; j++) {
      int lvl = (1 << j) - 1 - (depth[y] - depth[i]);
      if (lvl >= 0 && lvl < v[px].size()) 
        for (auto it : v[px][lvl])
          dp[j][it] = i;
    }
  }
  for (int i = 0; i < v[px].size(); i++) {
    while (depth[y] + i + 1 >= v[py].size())
      v[py].push_back({});
    for (auto it : v[px][i]) {
      assert(depth[it] == i);
      v[py][depth[y] + i + 1].push_back(it);
      depth[it]+=depth[y] + 1;
    }
  }
}

int lca (int x, int y) {
  if (depth[x] > depth[y])
    swap(x, y);
  int d = depth[y] - depth[x];
  for (int i = 0; (1 << i) <= d; i++)
    if (d & (1 << i))
      y = dp[i][y];
  if (x == y)
    return x;
  for (int i = 19; i >= 0; i--)
    if (dp[i][x] != dp[i][y]) {
      x = dp[i][x];
      y = dp[i][y];
    }
  return dp[0][x];
}

int add[100002], viz[100002];

void dfs (int x, int par) {
  //cout << x << "\n";
  viz[x] = 1;
  for (auto it : G[x]) {
    if (it == par)
      continue;
    dfs(it, x);
    add[x] += add[it];
  }
  if (add[x] == 0 && par != 0)
    cout << x << " " << par << "\n";
}

int main () 
{
  ios_base::sync_with_stdio(false);
  cin.tie(0); cout.tie(0);
  cin >> n >> m;
  for (int i = 1; i <= n; i++) {
    p[i] = i;
    sz[i] = 1;
    v[i].push_back({i});
  }
  for (int i = 1; i <= m; i++) {
    cin >> x >> y;
    if (find(x) == find(y)) {
      int L = lca(x, y);
      add[L] -= 2;
      add[x]++;
      add[y]++;
    }
    else {
        G[x].push_back(y);
      G[y].push_back(x);
      merge(x, y);
    }
  }
  for (int i = 1; i <= n; i++)
    if (!viz[find(i)])
      dfs(find(i), 0);
  return 0;
}

Compilation message

pipes.cpp: In function 'void merge(int, int)':
pipes.cpp:30:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::vector<int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   30 |       if (lvl >= 0 && lvl < v[px].size())
      |                       ~~~~^~~~~~~~~~~~~~
pipes.cpp:35:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::vector<int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   35 |   for (int i = 0; i < v[px].size(); i++) {
      |                   ~~^~~~~~~~~~~~~~
pipes.cpp:36:29: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::vector<int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   36 |     while (depth[y] + i + 1 >= v[py].size())
      |            ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 3 ms 5076 KB Output is correct
2 Incorrect 3 ms 5076 KB Wrong number of edges
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 8 ms 5844 KB Wrong number of edges
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 171 ms 5712 KB Output is correct
2 Correct 133 ms 5664 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 270 ms 6796 KB Output is correct
2 Correct 315 ms 6792 KB Output is correct
# Verdict Execution time Memory Grader output
1 Incorrect 448 ms 9232 KB Wrong number of edges
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 750 ms 17896 KB Memory limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1176 ms 19828 KB Memory limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1845 ms 23280 KB Memory limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 2219 ms 23288 KB Memory limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 2791 ms 22300 KB Memory limit exceeded
2 Halted 0 ms 0 KB -