bzoj 1709: [Usaco2007 Oct]Super Paintball超级弹珠枚举

Posted lokiii

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bzoj 1709: [Usaco2007 Oct]Super Paintball超级弹珠枚举相关的知识,希望对你有一定的参考价值。

k是1e5范围的,吗?
注意到n只有100,这意味着k去重之后之后n^2,也就是1e4!
然后就可以愉快的n^4枚举了,枚举每个格子,再枚举每个敌人,如果当前格子射不到敌人则退出,否则满足所有敌人则ans++

#include<iostream>
#include<cstdio>
#include<algorithm>
using namespace std;
const int N=105;
int n,m,tot,ans;
bool v[N][N];
struct qwe
{
    int x,y;
}a[N*N];
int read()
{
    int r=0,f=1;
    char p=getchar();
    while(p>‘9‘||p<‘0‘)
    {
        if(p==‘-‘)
            f=-1;
        p=getchar();
    }
    while(p>=‘0‘&&p<=‘9‘)
    {
        r=r*10+p-48;
        p=getchar();
    }
    return r*f;
}
int main()
{
    n=read(),m=read();
    for(int i=1;i<=m;i++)
    {
        int x=read(),y=read();
        if(!v[x][y])
            v[x][y]=1,a[++tot]=(qwe){x,y};
    }
    for(int x=1;x<=n;x++)
        for(int y=1;y<=n;y++)
        {
            int f=1;
            for(int i=1;i<=tot;i++)
            {
                int dx=abs(x-a[i].x),dy=abs(y-a[i].y);
                if(dx!=dy&&dx!=0&&dy!=0)
                {
                    f=0;
                    break;
                }
            }
            ans+=f;
        }
    printf("%d\n",ans);
    return 0;
}

以上是关于bzoj 1709: [Usaco2007 Oct]Super Paintball超级弹珠枚举的主要内容,如果未能解决你的问题,请参考以下文章

bzoj 1709: [Usaco2007 Oct]Super Paintball超级弹珠枚举

bzoj1708[Usaco2007 Oct]Money奶牛的硬币*

bzoj1708:[Usaco2007 Oct]Money奶牛的硬币(完全背包

bzoj1708 [Usaco2007 Oct]Money奶牛的硬币 背包dp

bzoj1708[Usaco2007 Oct]Money奶牛的硬币(背包方案数dp)

bzoj1643[Usaco2007 Oct]Bessie's Secret Pasture 贝茜的秘密草坪*