测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A11102. 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×k$ consisting 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 $q$ pixels stopped working).

输入格式

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 $x_{i},y_{i},t_{i} (1<=x_{i}<=n,1<=y_{i}<=m,0<=t<=10^{9})$ — 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 $t_{i}$ .

输出格式

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

输入输出样例

输入 #1
2 3 2 5
2 1 8
2 2 8
1 2 1
1 3 4
2 3 2
输出 #1
8
输入 #2
3 3 2 5
1 2 2
2 2 1
2 3 5
3 2 10
2 1 100
输出 #2
-1
上一题 去做题 下一题