CF200A.Cinema

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

The capital of Berland has the only movie theater in the country. Besides, it consists of only one room. The room is divided into nn rows, each row consists of mm seats.

There are kk people lined up to the box office, each person wants to buy exactly one ticket for his own entertainment. Before the box office started selling tickets, each person found the seat that seemed best for him and remembered it as a pair of coordinates (xi,yi)(x_{i},y_{i}) , where xix_{i} is the row number, and yiy_{i} is the seat number in this row.

It is possible that some people have chosen the same place, then when some people see their favorite seat taken in the plan of empty seats in the theater, they choose and buy a ticket to another place. Each of them has the following logic: let's assume that he originally wanted to buy a ticket to seat (x1,y1)(x_{1},y_{1}) , then when he comes to the box office, he chooses such empty seat (x2,y2)(x_{2},y_{2}) , which satisfies the following conditions:

  • the value of x1x2+y1y2|x_{1}-x_{2}|+|y_{1}-y_{2}| is minimum
  • if the choice is not unique, then among the seats that satisfy the first condition, this person selects the one for which the value of x2x_{2} is minimum
  • if the choice is still not unique, among the seats that satisfy the first and second conditions, this person selects the one for which the value of y2y_{2} is minimum

Your task is to find the coordinates of a seat for each person.

输入格式

The first input line contains three integers nn , mm , kk ( 1<=n,m<=20001<=n,m<=2000 , 1<=k<=min(nm,1051<=k<=min(n·m,10^{5} ) — the number of rows in the room, the number of seats in each row and the number of people in the line, correspondingly. Each of the next kk lines contains two integers xix_{i} , yiy_{i} ( 1<=xi<=n1<=x_{i}<=n , 1<=yi<=m1<=y_{i}<=m ) — the coordinates of the seat each person has chosen. Numbers on the same line are separated by a space. The pairs of coordinates are located in the order, in which people stand in the line, starting from the head (the first person in the line who stands in front of the box office) to the tail (the last person in the line).

输出格式

Print kk lines, each containing a pair of integers. Print on the ii -th line xi,yix_{i},y_{i} — the coordinates of the seat, for which the person who stands ii -th in the line will buy the ticket.

输入输出样例

  • 输入#1

    3 4 6
    1 1
    1 1
    1 1
    1 2
    1 3
    1 3
    

    输出#1

    1 1
    1 2
    2 1
    1 3
    1 4
    2 3
    
  • 输入#2

    4 3 12
    2 2
    2 2
    2 2
    2 2
    2 2
    2 2
    2 2
    2 2
    2 2
    2 2
    2 2
    2 2
    

    输出#2

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