• 洛谷P2921 [USACO08DEC]在农场万圣节Trick or Treat on the Farm


    P2921 [USACO08DEC]在农场万圣节Trick or Treat on the Farm

    题目描述

    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.

    #include<iostream>
    #include<cstdio>
    #include<cstring>
    using namespace std;
    #define maxn 100010
    int n,q[maxn];
    bool vis[maxn];
    int main(){
        scanf("%d",&n);
        int x;
        for(int i=1;i<=n;i++){
            scanf("%d",&x);
            q[i]=x;
        }
        for(int i=1;i<=n;i++){
            int ans=0;
            memset(vis,0,sizeof(vis));
            int now=i;
            while(!vis[now]){
                vis[now]=1;
                ans++;
                now=q[now];
            }
            printf("%d
    ",ans);
        }
        return 0;
    }
    40分 爆搜
    #include<iostream>
    #include<cstdio>
    using namespace std;
    #define maxn 100010
    int n,nxt[maxn],a,b,c,tim[maxn],f[maxn];
    void dfs(int v){
        tim[v]=++a;
        if(tim[nxt[v]]==0){
            dfs(nxt[v]);
            if(b<=tim[v]&&tim[v]<=c)f[v]=c-b+1;
            else f[v]=f[nxt[v]]+1;
        }
        else if(tim[nxt[v]]>0){
            c=tim[v];
            b=tim[nxt[v]];
            f[v]=c-b+1;
        }
        else f[v]=f[nxt[v]]+1;
        tim[v]=-1;
    }
    int main(){
        scanf("%d",&n);
        for(int i=1;i<=n;i++)scanf("%d",&nxt[i]);
        for(int i=1;i<=n;i++){
            if(!tim[i]){
                a=b=c=0;
                dfs(i);
            }
        }
        for(int i=1;i<=n;i++)printf("%d
    ",f[i]);
    }
    100分 记忆化搜索
    #include<iostream>
    #include<cstdio>
    using namespace std;
    #define maxn 100010
    int cnt,n,nxt[maxn],st[maxn],dfn[maxn],low[maxn],belong[maxn],sz[maxn],g_num,top;
    int ans[maxn];
    bool in[maxn];
    void Tarjan(int u){
        cnt++;
        dfn[u]=cnt;low[u]=cnt;st[++top]=u;in[u]=1;
        int v=nxt[u];
        if(!dfn[v]){
            Tarjan(v);
            low[u]=min(low[u],low[v]);
        }
        else if(in[v])
            low[u]=min(low[u],dfn[v]);
        if(dfn[u]==low[u]){
            g_num++;
            while(st[top]!=u){
                int now=st[top];
                in[now]=0;
                belong[now]=g_num;
                sz[g_num]++;
                top--;
            }
            sz[g_num]++;
            in[u]=0;
            belong[u]=g_num;
            top--;
        }
    }
    int dfs(int now){
        if(ans[now]>1||nxt[now]==now)return ans[now];
        return ans[now]+dfs(nxt[now]);
    }
    int main(){
        freopen("in.txt","r",stdin);
        scanf("%d",&n);
        for(int i=1;i<=n;i++)scanf("%d",&nxt[i]);
        for(int i=1;i<=n;i++)if(!dfn[i])Tarjan(i);
        for(int i=1;i<=n;i++)ans[i]=sz[belong[i]];
        for(int i=1;i<=n;i++){
            if(ans[i]==1&&nxt[i]!=i)ans[i]=dfs(i);
        }
        for(int i=1;i<=n;i++)printf("%d
    ",ans[i]);
        return 0;
    }
    100分 Tarjan算环+记忆化搜索处理
  • 相关阅读:
    spring-boot-route(七)整合jdbcTemplate操作数据库
    spring-boot-route(六)整合JApiDocs生成接口文档
    spring-boot-route(五)整合Swagger生成接口文档
    spring-boot-route(四)全局异常处理
    spring-boot-route(三)实现多文件上传
    spring-boot-route(二)读取配置文件的几种方式
    spring-boot-route(一)Controller接收参数的几种方式
    国庆,要干几件大事
    栈与队列简介
    一文了解Zookeeper
  • 原文地址:https://www.cnblogs.com/thmyl/p/7485455.html
Copyright © 2020-2023  润新知