답안 #682102

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
682102 2023-01-15T18:37:43 Z MilosMilutinovic Pipes (CEOI15_pipes) C++14
30 / 100
4912 ms 65536 KB
/**
 *    author:  wxhtzdy
 *    created: 15.01.2023 19:07:48
**/
#include <bits/stdc++.h>

using namespace std;

int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);  
  int n, m;
  cin >> n >> m;
  vector<int> par(n);
  vector<int> sz(n, 1);
  vector<vector<int>> g(n);
  vector<int> f(n);
  iota(par.begin(), par.end(), 0);
  function<int(int)> get = [&](int x) {
    return par[x] == x ? x : par[x] = get(par[x]);
  };
  const int L = 20;
  vector<int> dep(n);
  vector<vector<int>> jump(n, vector<int>(L));
  for (int i = 0; i < n; i++) {
    jump[i] = vector<int>(L, i);
  }
  function<void(int, int)> Dfs = [&](int v, int pr) {
    dep[v] = dep[pr] + 1;
    jump[v][0] = pr;
    for (int j = 1; j < L; j++) {
      jump[v][j] = jump[jump[v][j - 1]][j - 1];
    }    
    for (int u : g[v]) {
      if (u != pr) {
        Dfs(u, v);
      }
    }
  }; 
  auto LCA = [&](int u, int v) {
    if (dep[u] > dep[v]) {
      swap(u, v);
    }
    for (int i = L - 1; i >= 0; i--) {
      if (dep[jump[v][i]] >= dep[u]) {
        v = jump[v][i];
      }
    }
    if (u == v) {
      return u;
    }
    for (int i = L - 1; i >= 0; i--) {
      if (jump[u][i] != jump[v][i]) {
        u = jump[u][i];
        v = jump[v][i];
      }
    }
    return jump[u][0];
  };
  for (int i = 0; i < m; i++) {
    int u, v;
    cin >> u >> v;
    --u; --v;
    if (get(u) != get(v)) {
      int pu = get(u);
      int pv = get(v);
      if (sz[pu] < sz[pv]) {
        swap(pu, pv);
        swap(u, v);        
      }
      Dfs(v, u);
      g[u].push_back(v);
      g[v].push_back(u);
      par[pv] = pu;
      sz[pu] += sz[pv];
    } else {
      int w = LCA(u, v);
      f[u] += 1;
      f[v] += 1;
      f[w] -= 2;  
    }
  }
  vector<pair<int, int>> ans;
  vector<bool> was(n);
  function<void(int, int)> Solve = [&](int v, int pr) {
    was[v] = true;
    for (int u : g[v]) {
      if (u != pr) {
        Solve(u, v);
        f[v] += f[u];
      }
    }
    if (f[v] == 0 && pr != -1) {
      ans.emplace_back(v, pr);
    }
  };
  for (int i = 0; i < n; i++) {
    if (!was[i]) {
      Solve(get(i), -1);
    }
  }
  for (auto& p : ans) {
    cout << p.first + 1 << " " << p.second + 1 << '\n';
  }                                                                      
  return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 340 KB Output is correct
2 Incorrect 0 ms 212 KB Wrong number of edges
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 6 ms 1236 KB Output is correct
2 Correct 7 ms 1240 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 257 ms 6332 KB Output is correct
2 Correct 236 ms 6176 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 437 ms 11708 KB Output is correct
2 Correct 539 ms 13340 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Runtime error 773 ms 20860 KB Memory limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1373 ms 34008 KB Memory limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 2263 ms 48564 KB Memory limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 3191 ms 62772 KB Memory limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 4311 ms 65536 KB Memory limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 4912 ms 65536 KB Memory limit exceeded
2 Halted 0 ms 0 KB -