시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 192 MB112218.182%

문제

The rapidly growing popularity of Bytean chess is the reason why many different variants of this game have been invented. Because the traditional version is played on an infinite chessboard, what can be quite troublesome, sometimes simpler variants are chosen, in which the dimensions of the chessboards are bounded by 100 000 × 100 000. Some squares of the chessboard are black and the remaining ones are white, however the painting pattern depends on the particular chessboard. A pawn moves on such a chessboard in a bit different way than in traditional chess - it can move horizontally, vertically or diagonally to any of the adjacent eight squares provided that this square has the same colour as the square currently occupied by the pawn.

Examples of valid moves.

For given pairs of squares on the chessboard it should be determined whether a pawn can travel between these squares.

입력

The first line of the standard input contains three integers n, m and p (1 ≤ n ≤ 100 000, 1 ≤ m ≤ 1 000 000, 1 ≤ p ≤ 1 000) separated by single spaces and representing the size of the chessboard, the number of black fragments of the chessboard described in the input, and the number of queries, respectively. The chessboard has dimensions n × n and consists of squares with both coordinates between 1 and n. The following m lines contain descriptions of black fragments of the chessboard (they do not necessarily need to be disjoint). Each one of them consists of three integers wi, ki,1 and ki,2 (1 ≤ win, 1 ≤ ki,1ki,2n) separated by single spaces and meaning that in row wi squares in columns between ki,1 and ki,2 are black. The squares that are not contained in any dark fragment specified in the input are white.

The following p lines contain the queries. Each query consists of two pairs of integers ai,1bi,1ai,2bi,2 (1 ≤ ai,1bi,1ai,2bi,2 ≤ n) separated by single spaces. The query is: can a pawn get from the square in row ai,1 and column bi,1 to the square in row ai,2 and column bi,2?

출력

Your program should output p lines to the standard output: the answers to the respective queries, in the same order as they appear in the input. The answer to each query is a line with a word "TAK" (meaning YES) or "NIE" (meaning NO) without the quotes, depending on whether a pawn can get from the first of the specified squares to the second one without passing through a square with different colour.

예제 입력 1

4 5 2
1 1 1
2 3 4
3 2 2
4 2 2
4 2 2
1 1 3 2
1 2 4 4

예제 출력 1

NIE
TAK

힌트

The chessboard and the queries from the example.