codeforces 846D (二分+二维前缀和)Monitor

Recently Luba bought a monitor. Monitor is a rectangular matrix of size n × m. But then she started to notice that some pixels cease to work properly. Luba thinks that the monitor will become broken the first moment when it contains a square k × kconsisting entirely of broken pixels. She knows that q pixels are already broken, and for each of them she knows the moment when it stopped working. Help Luba to determine when the monitor became broken (or tell that it's still not broken even after all qpixels stopped working).

Input

The first line contains four integer numbers n, m, k, q (1 ≤ n, m ≤ 500, 1 ≤ k ≤ min(n, m), 0 ≤ q ≤ n·m) — the length and width of the monitor, the size of a rectangle such that the monitor is broken if there is a broken rectangle with this size, and the number of broken pixels.

Each of next q lines contain three integer numbers xi, yi, ti (1 ≤ xi ≤ n, 1 ≤ yi ≤ m, 0 ≤ t ≤ 109) — coordinates of i-th broken pixel (its row and column in matrix) and the moment it stopped working. Each pixel is listed at most once.

We consider that pixel is already broken at moment ti.

Output

Print one number — the minimum moment the monitor became broken, or "-1" if it's still not broken after these q pixels stopped working.

Example
Input
2 3 2 5
2 1 8
2 2 8
1 2 1
1 3 4
2 3 2
Output
8
Input
3 3 2 5
1 2 2
2 2 1
2 3 5
3 2 10
2 1 100
Output

-1


考虑到坏了的就是坏了的,时间的符合性具有单调性,所以可以二分时间,找到符合的结果,在找

k*k的矩形里面用到了二维前缀和,sum记录 0,0到i,j的值,然后利用树状数组求对应矩形的做法就好,因为没有修改操作所以不需要后缀数组。


#include<bits/stdc++.h>
using namespace std;
int n,m,k;
struct node
{
	int x,y,t;
}s[500000];

int sum[510][510];
int mian[510][510];
int cmp(node a,node b)
{
	return a.t<b.t;
}

int check(int num)
{
	memset(mian,0,sizeof(mian));
	memset(sum,0,sizeof(sum));
	for(int i=1;i<=num;i++)
		mian[s[i].x][s[i].y]=1;

	for(int i=1;i<=n;i++)
		for(int j=1;j<=m;j++)
			sum[i][j]=sum[i-1][j]+sum[i][j-1]-sum[i-1][j-1]+mian[i][j];
	
	for(int i=k;i<=n;i++)
	{
		for(int j=k;j<=m;j++)
			if(sum[i][j]-sum[i-k][j]-sum[i][j-k]+sum[i-k][j-k]==k*k)
				return 1;
	}
	return 0;
}

int main()
{
	int q;
	scanf("%d%d%d%d",&n,&m,&k,&q);
	for(int i=1;i<=q;i++)
		scanf("%d%d%d",&s[i].x,&s[i].y,&s[i].t);

	sort(s+1,s+q+1,cmp);

	int l=1,r=q;
	int ans=-1;
	while(l<=r)
	{
		int mid=(l+r)>>1;
		if(check(mid)) 
		{
			ans=s[mid].t;
			r=mid-1;
		}
		else l=mid+1;
	}
	printf("%d\n",ans );
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值