Submission #706745

#TimeUsernameProblemLanguageResultExecution timeMemory
706745finn__Pipes (CEOI15_pipes)C++17
20 / 100
1065 ms12752 KiB
#include <bits/stdc++.h> using namespace std; struct Dsu { vector<int> p; Dsu(size_t n) { p = vector<int>(n, -1); } int repr(int u) { return p[u] < 0 ? u : (p[u] = repr(p[u])); } bool merge(int i, int j) { i = repr(i); j = repr(j); if (i == j) return 0; if (p[i] > p[j]) swap(i, j); p[i] += p[j]; p[j] = i; return 1; } bool same_set(int i, int j) { return repr(i) == repr(j); } int set_size(int i) { return -p[repr(i)]; } }; constexpr size_t N = 100000; vector<unsigned> g[N]; unsigned y[N]; pair<unsigned, unsigned> find_bridges(unsigned u, unsigned p, unsigned i) { y[u] = ++i; unsigned lu = y[u]; for (unsigned const &v : g[u]) { if (!y[v]) { unsigned lv; tie(i, lv) = find_bridges(v, u, i); lu = min(lu, lv); } else if (v != p) lu = min(lu, y[v]); } if (lu == y[u] && p != UINT_MAX) printf("%u %u\n", u + 1, p + 1); return make_pair(i, lu); } int main() { size_t n, m; scanf("%zu %zu", &n, &m); Dsu d1(n), d2(n); while (m--) { unsigned u, v; scanf("%u %u", &u, &v); u--, v--; if (d1.merge(u, v) || d2.merge(u, v)) g[u].push_back(v), g[v].push_back(u); } for (unsigned i = 0; i < n; i++) if (!y[i]) find_bridges(i, UINT_MAX, 0); }

Compilation message (stderr)

pipes.cpp: In function 'int main()':
pipes.cpp:61:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   61 |     scanf("%zu %zu", &n, &m);
      |     ~~~~~^~~~~~~~~~~~~~~~~~~
pipes.cpp:68:14: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   68 |         scanf("%u %u", &u, &v);
      |         ~~~~~^~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...