秘密沉睡在森林里

Posted qswx

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了秘密沉睡在森林里相关的知识,希望对你有一定的参考价值。

Description

夏夜,早苗和诹访子在月光下玩起了挑竹签这一经典的游戏。

挑竹签,就是在桌上摆上一把竹签,每次从最上层挑走一根竹签。如果动了其他的竹签,就要换对手来挑。在所有的竹签都被挑走之后,谁挑走的竹签总数多,谁就胜了。

身为神明的诹访子自然会让早苗先手。为了获胜,早苗现在的问题是在诹访子出手之前最多能挑走多少竹签呢?

为了简化问题,我们假设当且仅当挑最上层的竹签不会动到其他竹签。

Analysis

题意:请打一个拓扑排序标程。

Code

#include <bits/stdc++.h>
int cnt[1000010],tot,head[1000010];
struct edge{
    int v,next;
}p[1000010];
void add(int u,int v){
    p[++tot].v=v;
    p[tot].next=head[u];
    head[u]=tot;
}
std::queue <int> b;
int main(){
    freopen("mikado.in","r",stdin);
    freopen("mikado.out","w",stdout);
    int n,m;
    scanf("%d%d",&n,&m);
    while(m--){
        int u,v;
        scanf("%d%d",&u,&v);
        add(u,v);
        cnt[v]++;
    }
    for(int i=1;i<=n;i++)
        if(!cnt[i])b.push(i);
    int ans=0;
    while(!b.empty()){
        int f=b.front();
        ans++;
        b.pop();
        for(int i=head[f];i;i=p[i].next){
            int v=p[i].v;
            cnt[v]--;
            if(!cnt[v])b.push(v);
        }
    }
    printf("%d
",ans);
    return 0;
}

以上是关于秘密沉睡在森林里的主要内容,如果未能解决你的问题,请参考以下文章

一物一码丨利多码大数据挖掘,解读元気森林背后的秘密!

sql 这些代码片段将演示如何逐步使用PolyBase。你应该有一个blob存储和存储秘密方便

知道了蚂蚁森林这个“秘密”,我坐不住了!!

网易官方极客战记(codecombat)攻略-森林-巫师的平面化the-wizards-plane

网易官方极客战记(codecombat)攻略-森林-逻辑之路logical-path

当我想念你的时候