现在问:删除哪个点,使得分割开的每个连通子图中点的数量不超过N/2?如果有很多这样的点,就按升序输出。
例如,如下图所示的树形图,砍掉顶点3或者顶点8,分割开的各部分满足条件。
标签:lib ret alt closed color size bbs dea sha
现在问:删除哪个点,使得分割开的每个连通子图中点的数量不超过N/2?如果有很多这样的点,就按升序输出。
例如,如下图所示的树形图,砍掉顶点3或者顶点8,分割开的各部分满足条件。
10 1 2 2 3 3 4 4 5 6 7 7 8 8 9 9 10 3 8
3 8
【数据范围及约定】
对于50%的数据,满足1≤N≤10000
对于100%的数据,满足1≤N≤1000000
分析
#include<stdio.h> #include<stdlib.h> #include<string.h> #define maxn 1000000+4 typedef struct anode { int adjvex; struct anode *nextarc; }arcnode; typedef struct { arcnode *firstarc; }vnode; typedef struct { vnode adjlist[maxn]; int n,e; }adjgraph; int visit[maxn],ans[maxn],n; int dfs(adjgraph *g,int v) { int max=0,h=0,flag=0; visit[v]++; arcnode *p=g->adjlist[v].firstarc; while(p!=NULL) { if(!visit[p->adjvex]) { int temp=dfs(g,p->adjvex); h+=temp;//所以孩子数目 max>temp? : max=temp; //从分枝中找出最大节点数 } p=p->nextarc; } ans[v]= max>n-1-h ? max:n-1-h; return h+1; } void link(adjgraph *&g,int a,int b) { arcnode *p1=g->adjlist[a-1].firstarc,*p; p=(arcnode *)malloc(sizeof(arcnode)); p->adjvex=b-1; p->nextarc=NULL; if(p1==NULL) g->adjlist[a-1].firstarc=p; else { p->nextarc=p1->nextarc; p1->nextarc=p; } } void destroy(adjgraph *&g) { arcnode *p; for(int i=0;i<g->n;i++) { p=g->adjlist[i].firstarc; while(p!=NULL) { arcnode *temp=p; p=p->nextarc; free(temp); } } free(g); } int main() { int i,flag1=1; adjgraph *g; g=(adjgraph *)malloc(sizeof(adjgraph)); scanf("%d",&n); g->n=n; for(i=0;i<n;i++) g->adjlist[i].firstarc=NULL; for(i=0;i<n-1;i++) { int a,b; scanf("%d%d",&a,&b); link(g,a,b); link(g,b,a); } /*for(i=0;i<n;i++) { arcnode *p; p=g->adjlist[i].firstarc; printf("%d->",i+1); while(p!=NULL) { printf("%d->",p->adjvex+1); p=p->nextarc; } printf("NULL\n"); }*/ dfs(g,0); int flag=0; for(i=0;i<n;i++) if(ans[i]<=(n>>1)) { printf("%d\n",i+1); flag=1; } if(!flag) printf("NONE\n"); destroy(g); return 0; }
标签:lib ret alt closed color size bbs dea sha
原文地址:https://www.cnblogs.com/shenyuling/p/9925610.html