Submission #152710

#TimeUsernameProblemLanguageResultExecution timeMemory
152710toloraiaPipes (CEOI15_pipes)C++17
0 / 100
5094 ms65540 KiB
#include <bits/stdc++.h> #define F first #define S second #define mp make_pair #define pb push_back #define ll long long #define LEFT(a) ((a)<<1) #define RIGHT(a) (LEFT(a) + 1) #define MID(a,b) ((a+b)>>1) #define MAX(a,b) ((a)>(b)?(a):(b)) #define MIN(a,b) ((a)<(b)?(a):(b)) /* #pragma comment(linker, "/STACK: 20000000005") #pragma GCC optimize("Ofast") #pragma GCC target("avx2,fma") #pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native") #pragma GCC target ("avx2") #pragma GCC optimization ("O3") #pragma GCC optimization ("unroll-loops") */ using namespace std; const int N = 1e5 + 5, M = 6e6 + 5; int n, m; ll K; vector < ll > G[N]; vector < int > g[N]; ll A[N]; int B[N]; int x, y; int T; int in[N], up[N]; void dfs (int k, int p){ in[k] = ++T; up[k] = in[k]; int to, i, toto; int num = (int)G[k].size(); ll X; for (i = 0; i < num; i++){ X = G[k][i]; while (X){ toto = X % K; X /= K; to = toto; if (to > n) to -= n; if (to == p) continue; if (in[to]){ up[k] = min (up[k], in[to]); continue; } dfs (to, k); if (up[to] > in[k] && to == toto){ cout << k << " " << to << endl; } up[k] = min (up[k], up[to]); } } } vector < int > V; main() { //freopen ("in.in", "r", stdin);freopen ("out.out", "w", stdout); //ios_base::sync_with_stdio(false); cin >> n >> m; K = n * 2 + 1; for (int i = 1; i <= m; i++){ cin >> x >> y; if (x > y) swap (x, y); g[x].pb (y); } int t, num; ll X, j; for (int i = 1; i <= n; i++){ num = (int)g[i].size(); V.clear(); for (int j = 0; j < num; j++){ if (j && g[i][j] == g[i][j - 1]) continue; if (j + 1 < num && g[i][j] == g[i][j + 1]) V.pb (g[i][j] + n); else V.pb (g[i][j]); } g[i] = V; } for (int i = 1; i <= n; i++){ x = i; for (int to : g[i]){ y = to; x = i; if (y > n) x = i + n, y -= n; A[i] = A[i] * K + to; B[i]++; if (B[i] == 3){ B[i] = 0; G[i].pb (A[i]); A[i] = 0; } A[y] = A[y] * K + x; B[y]++; if (B[y] == 3){ B[y] = 0; G[y].pb (A[y]); A[y] = 0; } } } for (int i = 1; i <= n; i++) if (A[i]) G[i].pb (A[i]); for (int i = 1; i <= n; i++) if (in[i] == 0) dfs (i, 0); return 0; }

Compilation message (stderr)

pipes.cpp:68:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
 main()
      ^
pipes.cpp: In function 'int main()':
pipes.cpp:80:9: warning: unused variable 't' [-Wunused-variable]
     int t, num;
         ^
pipes.cpp:81:8: warning: unused variable 'X' [-Wunused-variable]
     ll X, j;
        ^
pipes.cpp:81:11: warning: unused variable 'j' [-Wunused-variable]
     ll X, j;
           ^
#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...