bzoj1589&luogu2921 [USACO08DEC]Trick or Treat on the Farm

49 篇文章 0 订阅
31 篇文章 0 订阅

http://www.elijahqi.win/archives/946
题目描述

Every year in Wisconsin the cows celebrate the USA autumn holiday of Halloween by dressing up in costumes and collecting candy that Farmer John leaves in the N (1 <= N <= 100,000) stalls conveniently numbered 1..N.

Because the barn is not so large, FJ makes sure the cows extend their fun by specifying a traversal route the cows must follow. To implement this scheme for traveling back and forth through the barn, FJ has posted a ‘next stall number’ next_i (1 <= next_i <= N) on stall i that tells the cows which stall to visit next; the cows thus might travel the length of the barn many times in order to collect their candy.

FJ mandates that cow i should start collecting candy at stall i. A cow stops her candy collection if she arrives back at any stall she has already visited.

Calculate the number of unique stalls each cow visits before being forced to stop her candy collection.

POINTS: 100

每年万圣节,威斯康星的奶牛们都要打扮一番,出门在农场的N个牛棚里转 悠,来采集糖果.她们每走到一个未曾经过的牛棚,就会采集这个棚里的1颗糖果.

农场不大,所以约翰要想尽法子让奶牛们得到快乐.他给每一个牛棚设置了一个“后继牛 棚”.牛棚i的后继牛棚是next_i 他告诉奶牛们,她们到了一个牛棚之后,只要再往后继牛棚走去, 就可以搜集到很多糖果.事实上这是一种有点欺骗意味的手段,来节约他的糖果.

第i只奶牛从牛棚i开始她的旅程.请你计算,每一只奶牛可以采集到多少糖果.

输入输出格式

输入格式:

Line 1: A single integer: N
Lines 2..N+1: Line i+1 contains a single integer: next_i
输出格式:

Lines 1..N: Line i contains a single integer that is the total number of unique stalls visited by cow i before she returns to a stall she has previously visited.
输入输出样例

输入样例#1:

4
1
3
2
3
输出样例#1:

1
2
2
3
说明

Four stalls.

Stall 1 directs the cow back to stall 1.
Stall 2 directs the cow to stall 3
Stall 3 directs the cow to stall 2
Stall 4 directs the cow to stall 3
Cow 1: Start at 1, next is 1. Total stalls visited: 1.

Cow 2: Start at 2, next is 3, next is 2. Total stalls visited: 2. Cow 3: Start at 3, next is 2, next is 3. Total stalls visited: 2. Cow 4: Start at 4, next is 3, next is 2, next is 3. Total stalls visited: 3.

思路确实还不是真么简单的,我的记忆化搜索写的太渣渣了wa了好几回(捂脸

先用tarjan变成DAG(有向无环图) 然后又因为题目说每个牛棚只有一个后继 走进来就走不出去了

所以我们就在DAG中搜索这个点能到的一个环,直接搜索到,那么直接就是答案,搜索不到,给答案+1然后继续搜索

#include<cstdio>
#include<stack>
#define N 110000
inline int read(){
    int x=0,f=1;char ch=getchar();
    while (ch<'0'||ch>'9'){if (ch=='-')f=-1;ch=getchar();}
    while (ch<='9'&&ch>='0'){x=x*10+ch-'0';ch=getchar();}
    return x*f;
}
struct node{
    int y,next;
}data[N],data1[N];
inline int min(int x,int y){return x<y?x:y;}
std::stack<int> q;bool stackf[N];
int size[N],dfn[N],low[N],h[N],h1[N],num,s,b[N],ans[N],n;
void tarjan(int x){
    dfn[x]=++num;low[x]=num;stackf[x]=true;q.push(x);
    for (int i=h[x];i;i=data[i].next){
        int y=data[i].y;
        if (!dfn[y]) tarjan(y),low[x]=min(low[x],low[y]);else if (stackf[y]) low[x]=min(low[x],dfn[y]);
    }
    if (low[x]==dfn[x]){
        ++s;int y;
        do{
            y=q.top();stackf[y]=false;b[y]=s;size[s]++;q.pop();
        }while (y!=x);
    }
}
void dfs(int x){
    if (ans[x]) return;
    ans[x]+=size[x];
    for (int i=h1[x];i;i=data1[i].next){
        int y=data1[i].y;dfs(y);
        ans[x]+=ans[y];
    }
}
int main(){
    //freopen("2921.in","r",stdin);
    n=read();
    for (int i=1;i<=n;++i){
        int tmp=read();data[++num].y=tmp;data[num].next=h[i];h[i]=num;
    }num=0;
    for (int i=1;i<=n;++i) if (!dfn[i]) tarjan(i);
    //for (int i=1;i<=s;++i) printf("%d",size[i]);printf("sdf");
    num=0;
    for (int i=1;i<=n;++i){
        for (int j=h[i];j;j=data[j].next){
            int x=i,y=data[j].y;
            if (b[x]!=b[y]) {
                data1[++num].y=b[y];data1[num].next=h1[b[x]];h1[b[x]]=num;
            }    
        }
    }
    for (int i=1;i<=n;++i) dfs(b[i]);
    for (int i=1;i<=n;++i) printf("%d\n",ans[b[i]]);
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值