BZOJ1709: [Usaco2007 Oct]Super Paintball超级弹珠

n*n的范围内放m个人,主角要在某个点朝上下左右、左上右上左下右下发射子弹,求能打到所有人有几个位置。

方法若干,总之n2过。

ps:如果n<=10^9呢?

 1 #include<cstdio>
 2 #include<cstdlib>
 3 #include<algorithm>
 4 #include<cstdlib>
 5 #include<cstring>
 6 //#include<iostream>
 7 using namespace std;
 8 
 9 int n,m;
10 #define maxn 111*2
11 int row[maxn],col[maxn],a[maxn],b[maxn],mp[maxn][maxn];
12 int x,y;
13 int main()
14 {
15     scanf("%d%d",&n,&m);
16     memset(row,0,sizeof(row));
17     memset(col,0,sizeof(col));
18     memset(a,0,sizeof(a));
19     memset(b,0,sizeof(b));
20     memset(mp,0,sizeof(mp));
21     for (int i=1;i<=m;i++)
22     {
23         scanf("%d%d",&x,&y);
24         row[x]++;
25         col[y]++;
26         a[n-y+x]++;
27         b[x+y-1]++;
28         mp[x][y]++;
29     }
30     int ans=0;
31     for (int i=1;i<=n;i++)
32         for (int j=1;j<=n;j++)
33             if (row[i]+col[j]+a[n-j+i]+b[i+j-1]-mp[i][j]*3==m) ans++;
34     printf("%d\n",ans);
35     return 0;
36 }
View Code

 

转载于:https://www.cnblogs.com/Blue233333/p/7154443.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值