CF1840F.Railguns

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Tema is playing a very interesting computer game.

During the next mission, Tema's character found himself on an unfamiliar planet. Unlike Earth, this planet is flat and can be represented as an n×mn \times m rectangle.

Tema's character is located at the point with coordinates (0,0)(0, 0) . In order to successfully complete the mission, he needs to reach the point with coordinates (n,m)(n, m) alive.

Let the character of the computer game be located at the coordinate (i,j)(i, j) . Every second, starting from the first, Tema can:

  • either use vertical hyperjump technology, after which his character will end up at coordinate (i+1,j)(i + 1, j) at the end of the second;
  • or use horizontal hyperjump technology, after which his character will end up at coordinate (i,j+1)(i, j + 1) at the end of the second;
  • or Tema can choose not to make a hyperjump, in which case his character will not move during this second;

The aliens that inhabit this planet are very dangerous and hostile. Therefore, they will shoot from their railguns rr times.

Each shot completely penetrates one coordinate vertically or horizontally. If the character is in the line of its impact at the time of the shot (at the end of the second), he dies.

Since Tema looked at the game's source code, he knows complete information about each shot — the time, the penetrated coordinate, and the direction of the shot.

What is the minimum time for the character to reach the desired point? If he is doomed to die and cannot reach the point with coordinates (n,m)(n, m) , output 1-1 .

输入格式

The first line of the input contains a single integer TT ( 1T1041 \le T \le 10^4 ) — the number of test cases.

Then follow the descriptions of the test cases.

The first line of each test case contains two integers nn and mm ( 1nm1041 \le n \cdot m \le 10^4 ) — the size of the planet, its height and width.

The second line of each test case contains a single integer rr ( 1r1001 \le r \le 100 ) — the number of shots.

Then follow rr lines, each describing one shot.

A shot is described by three integers tt , dd , coordcoord . Where tt is the second at which the shot will be fired ( 1t1091 \le t \le 10^9 ). dd is the direction of the shot ( d=1d = 1 denotes a horizontal shot, d=2d = 2 denotes a vertical shot). coordcoord is the size of the penetrated coordinate ( 0coordn0 \le coord \le n for d=1d = 1 , 0coordm0 \le coord \le m for d=2d = 2 ).

The sum of the products nmn \cdot m over all test cases does not exceed 10410^4 .

输出格式

For each test case, output a single number — the minimum time for the character to reach the coordinate (n,m)(n, m) , or 1-1 if he is doomed to die.

输入输出样例

  • 输入#1

    5
    1 3
    4
    1 2 0
    2 2 1
    3 2 2
    4 1 1
    3 3
    6
    2 1 0
    2 1 1
    2 1 2
    2 2 0
    2 2 1
    2 2 2
    2 1
    3
    7 1 2
    2 1 1
    7 2 1
    2 2
    5
    9 1 2
    3 2 0
    5 1 2
    4 2 2
    7 1 0
    4 6
    7
    6 1 2
    12 1 3
    4 1 0
    17 2 3
    1 2 6
    16 2 6
    3 2 4

    输出#1

    5
    -1
    3
    6
    10

说明/提示

In the first test case, the character can move as follows: (0,0)(0,1)(0,2)(0,3)(0,3)(1,3)(0, 0) \rightarrow (0, 1) \rightarrow (0, 2) \rightarrow (0, 3) \rightarrow (0, 3) \rightarrow (1, 3) .

In the second test case, the character will not be able to leave the rectangle that will be completely penetrated by shots at the second 22 .

首页