답안 #97515

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
97515 2019-02-16T16:19:33 Z Retro3014 Potemkin cycle (CEOI15_indcyc) C++11
30 / 100
68 ms 2900 KB
#include <bits/stdc++.h>

#define pb push_back
#define all(v) ((v).begin(), (v).end())
#define sortv(v) sort(all(v))
#define sz(v) ((int)(v).size())
#define uniqv(v) (v).erase(unique(all(v)), (v).end())
#define umax(a, b) (a)=max((a), (b))
#define umin(a, b) (a)=min((a), (b))
#define FOR(i,a,b) for(int i = (a); i <= (b); i++)
#define rep(i,n) FOR(i,1,n)
#define rep0(i,n) FOR(i,0,(int)(n)-1)
#define FI first
#define SE second
#define INF 2000000000
#define INFLL 1000000000000000000LL


using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;

const int MAX_N = 1000;
const int MAX_M = 100000;

int N, M;
vector<int> gp[MAX_N+1];
vector<pii> edge;
bool chk[MAX_N+1];
bool chk2[MAX_N+1];
bool chkg[MAX_N+1];
int g[MAX_N+1];

int find_g(int x){
	if(x==g[x])	return x;
	return g[x] = find_g(g[x]);
}

void union_g(int x, int y){
	x = find_g(x), y = find_g(y);
	g[x] = y;
}

int from[MAX_N+1];
deque<int> dq;

void answer(int x, int y, int z){
	from[y] = x; from[z] = y;
	dq.pb(z);
	while(!dq.empty()){
		int now = dq.front();
		dq.pop_front();
		if(now==x)	break;
		for(auto i : gp[now]){
			if(from[i]==0){
				from[i] = now; dq.push_back(i);
			}
		}
	}
	while(1){
		printf("%d ", x); if(x==y)	break;
		x = from[x];
	}
}


int main(){
	scanf("%d%d", &N, &M);
	rep(i, M){
		int a, b; scanf("%d%d", &a, &b);
		gp[a].pb(b); gp[b].pb(a);
		edge.pb({a, b});
	}
	rep(i, N){
		rep(j, N)	g[j] = j;
		chk[i] = true;
		for(auto j: gp[i])	chk[j] = true;
		for(auto p : edge){
			if(chk[p.first] || chk[p.second])	continue;
			union_g(p.first, p.second);
		}
		for(auto now : gp[i]){
			for(auto k : gp[now]){
				if(chk[k])	chk2[k] = true;
				else	chkg[find_g(k)] = true;
			}
			for(auto now2 : gp[i]){
				if(now2==now || chk2[now2])	continue;
				for(auto k : gp[now2]){
					if(chk[k])	continue;
					if(chkg[find_g(k)]){
						answer(now2, i, now);
						return 0;
					}
				}
			}
			for(auto k : gp[now]){
				if(chk[k])	chk2[k] = false;
				else	chkg[find_g(k)] = false;
			}
		}
		for(auto j : gp[i])	chk[j] = false;
		chk[i] = false;
	}
	printf("no");	return 0;
}

Compilation message

indcyc.cpp: In function 'int main()':
indcyc.cpp:69:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d%d", &N, &M);
  ~~~~~^~~~~~~~~~~~~~~~
indcyc.cpp:71:18: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   int a, b; scanf("%d%d", &a, &b);
             ~~~~~^~~~~~~~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Correct 3 ms 512 KB Output is correct
2 Correct 2 ms 384 KB Output is correct
3 Correct 2 ms 384 KB Output is correct
4 Correct 2 ms 384 KB Output is correct
5 Correct 2 ms 384 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 3 ms 384 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 3 ms 384 KB Wrong adjacency
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 384 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 3 ms 384 KB Wrong adjacency
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 16 ms 512 KB Output is correct
2 Incorrect 5 ms 512 KB Wrong adjacency
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 5 ms 384 KB Wrong adjacency
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 23 ms 1660 KB Wrong adjacency
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 16 ms 1024 KB Wrong adjacency
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 68 ms 2900 KB Wrong adjacency
2 Halted 0 ms 0 KB -