Submission #125416

# Submission time Handle Problem Language Result Execution time Memory
125416 2019-07-05T09:27:51 Z eriksuenderhauf Pipes (CEOI15_pipes) C++11
0 / 100
3679 ms 65540 KB
//#pragma GCC optimize("O3")
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
#include <ext/rope>
#define mem(a,v) memset((a), (v), sizeof (a))
#define enl printf("\n")
#define case(t) printf("Case #%d: ", (t))
#define ni(n) scanf("%d", &(n))
#define nl(n) scanf("%I64d", &(n))
#define nai(a, n) for (int i = 0; i < (n); i++) ni(a[i])
#define nal(a, n) for (int i = 0; i < (n); i++) nl(a[i])
#define pri(n) printf("%d\n", (n))
#define prl(n) printf("%I64d\n", (n))
#define pii pair<int, int>
#define pil pair<int, long long>
#define pll pair<long long, long long>
#define vii vector<pii>
#define vil vector<pil>
#define vll vector<pll>
#define vi vector<int>
#define vl vector<long long>
#define pb push_back
#define mp make_pair
#define fi first
#define se second
using namespace std;
using namespace __gnu_pbds;
typedef long long ll;
typedef cc_hash_table<int,int,hash<int>> ht;
typedef tree<int,null_type,less<int>,rb_tree_tag,tree_order_statistics_node_update> oset;
const double pi = acos(-1);
const int MOD = 1e9 + 7;
const int INF = 1e9 + 7;
const int MAXN = 1e5 + 5;
const double eps = 1e-9;
vi adj[MAXN];
int cnt = 1, par[MAXN], par2[MAXN];

int qry(int x) { return x == par[x] ? x : par[x] = qry(par[x]); }
void join(int u, int v) { u = qry(u), v = qry(v); par[u] = v; }

int qry2(int x) { return x == par2[x] ? x : par2[x] = qry(par2[x]); }
void join2(int u, int v) { u = qry(u), v = qry(v); par2[u] = v; }

void dfs(int u, int p) {
	par[u] = par2[u] = cnt++;
	for (int v: adj[u]) {
		if (!par[v]) {
			dfs(v, u);
			par2[u] = min(par2[u], par2[v]);
			if (par2[v] > par[u])
				printf("%d %d\n", u, v);
		} else if (v != p)
			par2[u] = min(par2[u], par[v]);
	}
}

int main() {
	int n, m;
	scanf("%d %d", &n, &m);
	for (int i = 1; i <= n; i++)
		par[i] = par2[i] = i;
	for (int i = 0; i < m; i++) {
		int u, v; scanf("%d %d", &u, &v);
		u = qry2(u), v = qry2(v);
		if (qry2(u) == qry2(v))
			continue;
		if (qry(u) == qry(v)) {
			adj[u].pb(v);
			adj[v].pb(u);
			join2(u, v);
			continue;
		}
		join(u, v);
		adj[u].pb(v);
		adj[v].pb(u);
	}
	mem(par, 0);
	mem(par2, 0);
	for (int i = 1; i <= n; i++)
		if (!par[i])
			dfs(i, 0);
    return 0;
}

Compilation message

pipes.cpp: In function 'int main()':
pipes.cpp:61:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d %d", &n, &m);
  ~~~~~^~~~~~~~~~~~~~~~~
pipes.cpp:65:18: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   int u, v; scanf("%d %d", &u, &v);
             ~~~~~^~~~~~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 5 ms 3448 KB Output is correct
2 Incorrect 5 ms 3448 KB Wrong number of edges
# Verdict Execution time Memory Grader output
1 Correct 10 ms 3960 KB Output is correct
2 Incorrect 10 ms 3832 KB Wrong number of edges
# Verdict Execution time Memory Grader output
1 Runtime error 215 ms 16908 KB Memory limit exceeded (if you are sure your verdict is not MLE, please contact us)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 396 ms 24500 KB Memory limit exceeded (if you are sure your verdict is not MLE, please contact us)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 762 ms 36048 KB Memory limit exceeded (if you are sure your verdict is not MLE, please contact us)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1218 ms 32908 KB Memory limit exceeded (if you are sure your verdict is not MLE, please contact us)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 2070 ms 65536 KB Memory limit exceeded (if you are sure your verdict is not MLE, please contact us)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 2828 ms 65540 KB Execution killed with signal 9 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 3472 ms 65540 KB Execution killed with signal 9 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 3679 ms 65536 KB Execution killed with signal 9 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -