Submission #38191

#TimeUsernameProblemLanguageResultExecution timeMemory
38191farmersricePipes (CEOI15_pipes)C++14
30 / 100
579 ms13868 KiB
#include <bits/stdc++.h> //#pragma GCC optimize ("O3") //#pragma GCC target ("sse4") #pragma GCC target ("avx,tune=native") //Use above if bruteforcing with lots of small operations. Or just use it anytime, there's no downside. AVX is better slightly /* TASK: hidden LANG: C++11 */ using namespace std; typedef long long ll; typedef pair<int, int> pair2; typedef pair<int, pair<int, int> > pair3; typedef pair<int, pair<int, pair<int, int> > > pair4; #define MAXN 30013 #define INF 1000000000000000000LL #define mp make_pair #define add push_back #define remove pop int n, m; vector<short> adj[MAXN]; vector<pair<short, short>> answer; short depth[MAXN], lowestAdjDepth[MAXN]; //returns subtree size void solve(int current, int parent) { assert(depth[current] >= 1); lowestAdjDepth[current] = depth[current]; for (int next : adj[current]) { if (next == parent) continue; if (lowestAdjDepth[next] >= 1) { lowestAdjDepth[current] = min(lowestAdjDepth[current], depth[next]); } else { //unvisited, let's go visit! depth[next] = depth[current] + 1; solve(next, current); lowestAdjDepth[current] = min(lowestAdjDepth[current], lowestAdjDepth[next]); if (lowestAdjDepth[next] > depth[current]) { //the next node is in a biconnected component unaffected by current node answer.add(mp(current, next)); } } } } int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cin >> n >> m; for (int i = 0; i < m; i++) { int a, b; cin >> a >> b; a--;b--; adj[a].add(b); adj[b].add(a); } for (int i = 0; i < n; i++) { if (depth[i] == 0) { depth[i] = 1; solve(i, -1); } } for (auto t : answer) { cout << t.first + 1 << ' ' << t.second + 1<< endl; } }
#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...