Description
The pricing policy of the Boatherds is very simple: each segment of each river between two villages is assigned a price (the price is same in both directions), so if a tourist requests a journey between any two villages, the ticket office clerks just add the prices of the segments along the only path between the villages.
One day, a very strange tourist appeared. She told the clerks that she returns to her country on the next day and she wants to spend all the remaining money on a boat trip, so they should find a route with exactly this cost. Being just poor (ahem) businessmen, they have asked the Abacus Calculator Makers for help.
You are given a description of the river network with costs of river segments and a sequence of integers x1,..., xk. For each xi, you should determine if there is a pair of cities (a, b) in the river network such that the cost of the trip between a and b is exactly xi.
Input
- A single line containing a single integer: the number of villages N (1 <= N <= 10 000).
- N lines describing the villages. The i-th of these lines (1 <= i <= N) describes the village with number i. It contains space separated integers d1, c1, d2, c2, , dki, cki, 0. The dj's are numbers of villages from which the rivers flow directly to the village i (with no other villages in between), each cj is the price of the journey between villages i and dj. Moreover, 2 <= dj <= N and 0 <= cj <= 1 000. Village 1 always corresponds to the mouth of the largest river, therefore no di can ever be equal to 1.
- M <= 100 lines describing the queries. The i-th of these lines corresponds to the i-th query and contains a single integer xi (1 <= xi <= 10 000 000).
- The instance is finished by a single line containing the number 0.
The whole input is ended by a single line containing the number 0.
Output
Output for each instance must be followed by a single line containing just the dot character.
Sample Input
6
2 5 3 7 4 1 0
0
5 2 6 3 0
0
0
0
1
8
13
14
0
0
Sample Output
AYE
AYE
NAY
AYE
.
题意:
哇哇哇,POJ1741
不会就去taobanzi啊
#include <iostream>
#include <cstdio>
#include <cmath>
#include <cstring>
#include <vector>
#include <algorithm>
using namespace std;
const int N = 1e4+, M = 1e2+, mod = 1e9+, inf = 1e9+;
typedef long long ll; int n,root,ans,siz[N],head[N],t,K,deep[N],allnode,vis[N],f[N],d[N];
struct edg{int to,next,v;}e[N * ]; void add(int u,int v,int w) {e[t].to=v;e[t].v=w;e[t].next=head[u];head[u]=t++;}
void init() {
memset(head,,sizeof(head));
t = ;
ans = root = ;
memset(vis,,sizeof(vis));
}
void getroot (int x,int fa) {
siz[x] = ; f[x] = ;
for(int i=head[x];i;i=e[i].next) {
int to = e[i].to;
if(to == fa || vis[to]) continue;
getroot(to,x);
siz[x] += siz[to];
f[x] = max(f[x] , siz[to]);
}
f[x] = max(f[x] , allnode - siz[x]);
if(f[x] < f[root]) root = x;
}
void getdeep(int x,int fa) {
if(d[x] <= K)deep[++deep[]] = d[x] ;
for(int i=head[x];i;i=e[i].next) {
int to = e[i].to;
if(to == fa || vis[to]) continue;
d[to] = d[x] + e[i].v;
getdeep(to,x);
}
}
int cal(int x,int now) {
d[x]=now;deep[]=;
getdeep(x,);
sort(deep+,deep+deep[]+);
int all = ;
for(int l=,r=deep[];l<r;) {
if(deep[l] + deep[r] > K) r--;
else if(deep[l] + deep[r] < K) l++;
else {
if(deep[l] == deep[r]) {all += (r-l+)*(r-l)/;break;}
else {
int i = l , j = r;
while(deep[i]==deep[l]) i++;
while(deep[j]==deep[r]) j--;
int su = (i-l) * (r-j);
all += (su);
l=i;r=j;
}
}
}
return all;
}
void work(int x) {
ans += cal(x,);
vis[x] = ;
for(int i=head[x];i;i=e[i].next) {
int to = e[i].to;
if(vis[to]) continue;
ans -= cal(to,e[i].v);
root=;allnode=siz[to];
getroot(to,root);
work(root);
}
}
int main()
{
while(scanf("%d",&n) && n) {
init();
for(int i=;i<=n;i++) {
int x,y;
while(scanf("%d",&x) && x) {
scanf("%d",&y);
add(i,x,y);add(x,i,y);
}
}
int x;
while(scanf("%d",&x) && x) {
K = x;
ans = root = ;
memset(vis,,sizeof(vis));
allnode=n,f[]=inf;
getroot(,-);
work(root);
if(ans) puts("AYE");else puts("NAY");
}
puts(".");
}
}