제출 #246248

#제출 시각아이디문제언어결과실행 시간메모리
246248dantoh000Pipes (CEOI15_pipes)C++14
10 / 100
2971 ms65540 KiB
#include <bits/stdc++.h>
using namespace std;
typedef pair<int,int> ii;
const int N = 100005;
int n,m;
vector<int> G[N];
vector<ii> bad;
int p[N], d[N], sz[N], h[N], pos[N], S[N];
int ct = 0;
void dfs(int u){
	sz[u] = 1;
	for (auto v : G[u]){
		if (p[v] == 0){
			p[v] = u;
			d[v] = d[u]+1;
			dfs(v);
			sz[u] += sz[v];
		}
		else{
            if (p[u] == v) continue;
            else{
                bad.push_back({u,v});
            }
		}
	}
}

void decomp(int u){
	pos[u] = ct++;
	//printf("%d %d\n",u,ct);
	int heavy = 0;
	for (auto v : G[u]){
		if (p[v] != u) continue;
		if (sz[heavy] < sz[v]) heavy = v;
	}
	if (heavy == 0) return;
	h[heavy] = h[u];
	decomp(heavy);
	for (auto v : G[u]){
        if (p[v] != u) continue;
		if (v != heavy && v != p[u]) decomp(v);
	}
}

void up(int u, int v){
	while (h[u] != h[v]){
		if (u == -1 || v == -1) return;
		if (d[h[u]] > d[h[v]]) swap(u,v);
		//printf("updating %d to %d\n",v,h[v]);
		S[pos[h[v]]]++;
		S[pos[v]+1]--;
		v = p[h[v]];
	}
	if (d[u] > d[v]) swap(u,v);
	S[pos[u]+1]++;
    S[pos[v]+1]--;
}

int main(){
    scanf("%d%d",&n,&m);

    for (int i = 0; i < m; i++){
        int u,v;
        scanf("%d%d",&u,&v);
        G[u].push_back(v);
        G[v].push_back(u);
    }
    iota(h,h+N,0);
    for (int i = 1; i <= n; i++){
        if (p[i] == 0){
            p[i] = -1;
            dfs(i);
            decomp(i);
        }
        for (auto X : bad){
            int u,v;
            tie(u,v) = X;
            //printf("%d %d bad\n",u,v);
            up(u,v);
        }
        bad.clear();
    }
    for (int i = 1; i <= n+1; i++){
        S[i] += S[i-1];
    }
    for (int i = 1; i <= n; i++){
        //printf("edge<%d %d> = %d\n",i,p[i],S[pos[i]]);
        if (S[pos[i]] == 0 && p[i] != -1){
            printf("%d %d\n",p[i],i);
        }
    }

}

컴파일 시 표준 에러 (stderr) 메시지

pipes.cpp: In function 'int main()':
pipes.cpp:60:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d%d",&n,&m);
     ~~~~~^~~~~~~~~~~~~~
pipes.cpp:64:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         scanf("%d%d",&u,&v);
         ~~~~~^~~~~~~~~~~~~~
#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...