【NOIP2014 Day2 T1】无线网络发射器选址

题目:http://oi.nks.edu.cn/showproblem?problem_id=3106

题解:读入g[y][x],第y行第x列的公共场所的数量,前缀和搞一搞使g[x][y]代表以(0,0)--(x, y)为对角线的矩形覆盖的公共场所数量(有两种方法)。n2枚举发射器位置,注意边界。

#include
using namespace std;
#define maxy 200
int g[maxy][maxy];
int main()
{
	int i, j;
	int d, n, x, y, k;
	int ans1=0, ans2=0, curans;
	scanf("%d%d", &d, &n);
	for(i=1; i<=n; i++)
	{
		scanf("%d%d%d", &x, &y, &k);
		g[y+30][x+30]=k;
	}
	for(i=0; i<200; i++)
	{
		for(j=1; j<200; j++)
		{
			g[i][j]+=g[i][j-1];
		}
	}
	for(i=0; i<200; i++)
	{
		for(j=1; j<200; j++)
		{
			g[j][i]+=g[j-1][i];
		}
	}
	for(i=30; i<=158; i++)
	{
		for(j=30; j<=158; j++)
		{
			curans=g[i+d][j+d]-g[i-d-1][j+d]-g[i+d][j-d-1]+g[i-d-1][j-d-1];
			if(curans>=ans2)
			{
				if(curans>ans2)
				{
					ans2=curans;
					ans1=1;
				}
				else
				{
					ans1++;
				}
			}
		}
	}
	printf("%d %d", ans1, ans2);
	return 0;
}


你可能感兴趣的:(矩阵动态规划)