Submission #258909

#TimeUsernameProblemLanguageResultExecution timeMemory
258909Haunted_CppPipes (CEOI15_pipes)C++17
10 / 100
2283 ms65540 KiB
/** * author: Haunted_Cpp **/ #include <bits/stdc++.h> using namespace std; #pragma GCC optimize("Ofast") #pragma GCC target("fma,sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,avx2,tune=native") #pragma GCC optimize("unroll-loops") template<typename T> ostream &operator << (ostream &os, const vector<T> &v) { os << '{'; string sep; for (const auto &x : v) os << sep << x, sep = ", "; return os << '}'; } template<typename T, size_t size> ostream &operator << (ostream &os, const array<T, size> &arr) { os << '{'; string sep; for (const auto &x : arr) os << sep << x, sep = ", "; return os << '}'; } template<typename A, typename B> ostream &operator << (ostream &os, const pair<A, B> &p) { return os << '(' << p.first << ", " << p.second << ')'; } void debug_out() { cerr << endl; } template<typename Head, typename... Tail> void debug_out(Head H, Tail... T) { cerr << ' ' << H; debug_out(T...); } #ifdef LOCAL #define debug(...) cerr << "(" << #__VA_ARGS__ << "):", debug_out(__VA_ARGS__) #else #define debug(...) 47 #endif vector<vector<int>> g; vector<int> low, disc; int Time = 0; vector<pair<int, int>> b; void dfs(int node, int p) { low[node] = disc[node] = ++Time; for (auto to : g[node]) { if (to == p) continue; if (!disc[to]) dfs(to, node); low[node] = min(low[node], low[to]); if (disc[node] < low[to]) { b.emplace_back(min(node + 1, to + 1), max(node + 1, to + 1)); } } } int main () { ios::sync_with_stdio(0); cin.tie(0); int n, m; cin >> n >> m; Time = 0; low = disc = vector<int>(n); g.resize(n); for (int i = 0; i < m; i++) { int st, et; cin >> st >> et; --st; --et; g[st].emplace_back(et); g[et].emplace_back(st); } for (int i = 0; i < n; i++) if(!disc[i]) dfs(i, -1); sort(b.begin(), b.end()); b.erase(unique(b.begin(), b.end()), b.end()); for (auto to : b) cout << to.first << ' ' << to.second << '\n'; return 0; }
#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...