CF1214G.Feeling Good

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Recently biologists came to a fascinating conclusion about how to find a chameleon mood. Consider chameleon body to be a rectangular table n×mn \times m , each cell of which may be green or blue and may change between these two colors. We will denote as (x,y)(x, y) ( 1xn1 \leq x \leq n , 1ym1 \leq y \leq m ) the cell in row xx and column yy .

Let us define a chameleon good mood certificate to be four cells which are corners of some subrectangle of the table, such that colors in opposite cells among these four are similar, and at the same time not all of the four cell colors are similar. Formally, it is a group of four cells (x1,y1)(x_1, y_1) , (x1,y2)(x_1, y_2) , (x2,y1)(x_2, y_1) , (x2,y2)(x_2, y_2) for some 1x1<x2n1 \leq x_1 < x_2 \leq n , 1y1<y2m1 \leq y_1 < y_2 \leq m , that colors of (x1,y1)(x_1, y_1) and (x2,y2)(x_2, y_2) coincide and colors of (x1,y2)(x_1, y_2) and (x2,y1)(x_2, y_1) coincide, but not all of the four cells share the same color. It was found that whenever such four cells are present, chameleon is in good mood, and vice versa: if there are no such four cells, chameleon is in bad mood.

You are asked to help scientists write a program determining the mood of chameleon. Let us consider that initially all cells of chameleon are green. After that chameleon coloring may change several times. On one change, colors of contiguous segment of some table row are replaced with the opposite. Formally, each color change is defined by three integers aa , ll , rr ( 1an1 \leq a \leq n , 1lrm1 \leq l \leq r \leq m ). On such change colors of all cells (a,b)(a, b) such that lbrl \leq b \leq r are replaced with the opposite.

Write a program that reports mood of the chameleon after each change. Additionally, if the chameleon mood is good, program should find out any four numbers x1x_1 , y1y_1 , x2x_2 , y2y_2 such that four cells (x1,y1)(x_1, y_1) , (x1,y2)(x_1, y_2) , (x2,y1)(x_2, y_1) , (x2,y2)(x_2, y_2) are the good mood certificate.

输入格式

The first line of input contains three integers nn , mm , qq ( 1n,m20001 \leq n, m \leq 2000 , 1q5000001 \leq q \leq 500\,000 ), the sizes of the table and the number of changes respectively.

Each of the following qq lines contains 3 integers aia_i , lil_i , rir_i ( 1ain1 \leq a_i \leq n , 1lirim1 \leq l_i \leq r_i \leq m ), describing ii -th coloring change.

输出格式

Print qq lines. In the ii -th line report the chameleon mood after first ii color changes for all 1iq1 \leq i \leq q .

If chameleon is in bad mood, print the only integer 1-1 .

Otherwise, print four integers x1x_1 , y1y_1 , x2x_2 , y2y_2 ( 1x1<x2n1 \leq x_1 < x_2 \leq n , 1y1<y2m1 \leq y_1 < y_2 \leq m ) such that four cells (x1,y1)(x_1, y_1) , (x1,y2)(x_1, y_2) , (x2,y1)(x_2, y_1) , (x2,y2)(x_2, y_2) are the good mood certificate. If there are several ways to choose such four integers, print any valid one.

输入输出样例

  • 输入#1

    2 2 6
    1 1 1
    2 2 2
    2 1 1
    1 2 2
    2 2 2
    1 1 1
    

    输出#1

    -1
    1 1 2 2
    -1
    -1
    -1
    1 1 2 2
    
  • 输入#2

    4 3 9
    2 2 3
    4 1 2
    2 1 3
    3 2 2
    3 1 3
    1 2 2
    4 2 3
    1 1 3
    3 1 3
    

    输出#2

    -1
    2 1 4 3
    -1
    2 1 3 2
    3 2 4 3
    1 1 2 2
    1 1 2 2
    -1
    2 1 3 2
    
首页