답안 #588166

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
588166 2022-07-02T18:28:29 Z Blagojce Potemkin cycle (CEOI15_indcyc) C++11
10 / 100
1000 ms 1984 KB
#include <bits/stdc++.h>
#define fr(i, n, m) for(int i = (n); i < (m); i ++)
#define st first
#define nd second
#define pb push_back
#define pq priority_queue
#define all(x) begin(x), end(x)

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

const int mxn = 1003;

int n, m;
vector<int> g[mxn];		
		
int dep[mxn];	
int state[mxn];
int D[mxn];
int L[mxn];

int restore[mxn];
int parent[mxn];

void dfs(int u){
	state[u] = 1;
	
	fr(i, 0, (int)g[u].size()){
		auto e = g[u][i];
		restore[i] = L[e];
		
		if(state[e] == 1 && e != parent[u]){
			L[e] = min(L[e], dep[u]);
		}
	}
	for(auto e : g[u]){
		if(state[e] == 2) continue;
		if(state[e] == 0){
			dep[e] = dep[u] + 1;
			parent[e] = u;
			dfs(e);
		}
		else if(e != parent[u]){
			D[u] = max(D[u], dep[e]);	
		}
	}
	
	for(auto e : g[u]){
		if(state[e] != 1 || dep[u] - dep[e] < 3) continue;
		
		int x = u;
		bool ok = true;
		while(dep[x] >= dep[e]){
			if(x == u || x == e){
				if(L[x] < dep[u] || dep[e] < D[x]){
					ok = false;
					break;
				}
			}
			else{
				if(L[x] <= dep[u] || dep[e] <= D[x]){
					ok = false;
					break;
				}
			}
			
			
			x = parent[x];
		}
		if(ok){
			x = u;
			vector<int> sol;
			while(dep[x] >= dep[e]){
				sol.pb(x);
				x = parent[x];
			}
			reverse(all(sol));
			for(auto u : sol) cout<<u+1<<' ';
			cout<<endl;
			exit(0);
		}
	}
	fr(i, 0, (int)g[u].size()){
		auto e = g[u][i];
		L[e] = restore[i];
	}
	state[u] = 2;
}
		
int main(){
	cin >> n >> m;
	fr(i, 0, m){
		int u, v;
		cin >> u >> v;
		--u, --v;
		g[u].pb(v);
		g[v].pb(u);
	}
	fr(j, 0, n) state[j] = 0, dep[j] = -1e6, D[j] = -1e6, L[j] = 1e6;
	dep[0] = 0;
	dfs(0);

	cout<<"no"<<endl;
}
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1074 ms 340 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 264 KB Expected integer, but "no" found
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 324 KB Expected integer, but "no" found
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 340 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 340 KB Expected integer, but "no" found
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 340 KB Wrong answer on graph without induced cycle
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 3 ms 340 KB Expected integer, but "no" found
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 28 ms 1304 KB Wrong adjacency
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 14 ms 744 KB Expected integer, but "no" found
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 48 ms 1984 KB Expected integer, but "no" found
2 Halted 0 ms 0 KB -