POJ 1741 Tree + BZOJ 1468 Tree [점 분할]
Description
Give a tree with n vertices,each edge has a length(positive integer less than 1001). Define dist(u,v)=The min distance between node u and v. Give an integer k,for every pair (u,v) of vertices is called valid if and only if dist(u,v) not exceed k. Write a program that will count how many pairs which are valid for a given tree.
Input
The input contains several test cases. The first line of each test case contains two integers n, k. (n<=10000) The following n-1 lines each contains three integers u,v,l, which means there is an edge between node u and v of length l. The last test case is followed by two zeros.
Output
For each test case output the answer on a single line.
Sample Input
5 4 1 2 3 1 3 1 1 4 2 3 5 1 0 0
Sample Output
8
BZOJ 와 POJ 의 차 이 는 많 지 않 지만 입 출력 형식의 차이 일 뿐이다.
그 다음 에 분 치 된 판 자 를 시 켰 는데 dcy 가 이 문제 가 자주 끊 긴 다 고 해서 저도 왜 그런 지 모 르 겠 어 요.
나 도 안 끊 겼 는데.
POJ1741:
#include
#include
#include
#include
#include
using namespace std;
#define N 40010
int n,k,cnt,rt,siz_tree,ans;
int siz[N],F[N],dis[N],head[N],val[N];
bool vis[N];
struct Edge{int v,w,next;}E[N<<1];
void init(){
cnt=0;ans=0;
memset(head,0,sizeof(head));
memset(dis,0,sizeof(dis));
memset(vis,0,sizeof(vis));//******
}
void add(int u,int v,int w){
cnt++;
E[cnt].v=v;
E[cnt].w=w;
E[cnt].next=head[u];
head[u]=cnt;
}
void getroot(int u,int fa){
siz[u]=1;F[u]=0;
for(int i=head[u];i;i=E[i].next){
int v=E[i].v;
if(vis[v]||v==fa)continue;
getroot(v,u);
siz[u]+=siz[v];
F[u]=max(F[u],siz[v]);
}
F[u]=max(F[u],siz_tree-siz[u]);
if(F[u]void getdis(int u,int fa){
val[++val[0]]=dis[u];
for(int i=head[u];i;i=E[i].next){
int v=E[i].v;
if(v==fa||vis[v])continue;
dis[v]=dis[u]+E[i].w;
getdis(v,u);
}
}
int work(int u,int pre){
val[0]=0;dis[u]=pre;
getdis(u,0);
sort(val+1,val+val[0]+1);
int l=1,r=val[0],res=0;
while(lif(val[r]+val[l]<=k)res+=r-l,l++;
else r--;
}
return res;
}
void solve(int u){
ans+=work(u,0);
vis[u]=1;
for(int i=head[u];i;i=E[i].next){
int v=E[i].v;
if(vis[v])continue;
ans-=work(v,E[i].w);
F[rt=0]=siz_tree=siz[v];
getroot(v,0);
solve(rt);
}
}
int main(){
while(1){
scanf("%d%d",&n,&k);
if(!n&&!k)return 0;
init();
for(int i=1;iint u,v,w;
scanf("%d%d%d",&u,&v,&w);
add(u,v,w);
add(v,u,w);
}
F[rt=0]=siz_tree=n;
getroot(1,0);
solve(rt);
printf("%d
",ans);
}
return 0;
}
BZOJ1468:
#include
#include
#include
#include
#include
using namespace std;
#define N 40010
int n,k,cnt,rt,siz_tree,ans;
int siz[N],F[N],dis[N],head[N],val[N];
bool vis[N];
struct Edge{int v,w,next;}E[N<<1];
void init(){
cnt=0;ans=0;
memset(head,0,sizeof(head));
memset(dis,0,sizeof(dis));
memset(vis,0,sizeof(vis));//******
}
void add(int u,int v,int w){
cnt++;
E[cnt].v=v;
E[cnt].w=w;
E[cnt].next=head[u];
head[u]=cnt;
}
void getroot(int u,int fa){
siz[u]=1;F[u]=0;
for(int i=head[u];i;i=E[i].next){
int v=E[i].v;
if(vis[v]||v==fa)continue;
getroot(v,u);
siz[u]+=siz[v];
F[u]=max(F[u],siz[v]);
}
F[u]=max(F[u],siz_tree-siz[u]);
if(F[u]void getdis(int u,int fa){
val[++val[0]]=dis[u];
for(int i=head[u];i;i=E[i].next){
int v=E[i].v;
if(v==fa||vis[v])continue;
dis[v]=dis[u]+E[i].w;
getdis(v,u);
}
}
int work(int u,int pre){
val[0]=0;dis[u]=pre;
getdis(u,0);
sort(val+1,val+val[0]+1);
int l=1,r=val[0],res=0;
while(lif(val[r]+val[l]<=k)res+=r-l,l++;
else r--;
}
return res;
}
void solve(int u){
ans+=work(u,0);
vis[u]=1;
for(int i=head[u];i;i=E[i].next){
int v=E[i].v;
if(vis[v])continue;
ans-=work(v,E[i].w);
F[rt=0]=siz_tree=siz[v];
getroot(v,0);
solve(rt);
}
}
int main(){
scanf("%d",&n);
init();
for(int i=1;iint u,v,w;
scanf("%d%d%d",&u,&v,&w);
add(u,v,w);
add(v,u,w);
}
scanf("%d",&k);
F[rt=0]=siz_tree=n;
getroot(1,0);
solve(rt);
printf("%d
",ans);
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
POJ 1741 Tree + BZOJ 1468 Tree [점 분할]POJ1741 Tree + BZOJ1468 Tree Description Give a tree with n vertices,each edge has a length(positive integer less than 1...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.