CF706E.Working routine

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Vasiliy finally got to work, where there is a huge amount of tasks waiting for him. Vasiliy is given a matrix consisting of nn rows and mm columns and qq tasks. Each task is to swap two submatrices of the given matrix.

For each task Vasiliy knows six integers aia_{i} , bib_{i} , cic_{i} , did_{i} , hih_{i} , wiw_{i} , where aia_{i} is the index of the row where the top-left corner of the first rectangle is located, bib_{i} is the index of its column, cic_{i} is the index of the row of the top-left corner of the second rectangle, did_{i} is the index of its column, hih_{i} is the height of the rectangle and wiw_{i} is its width.

It's guaranteed that two rectangles in one query do not overlap and do not touch, that is, no cell belongs to both rectangles, and no two cells belonging to different rectangles share a side. However, rectangles are allowed to share an angle.

Vasiliy wants to know how the matrix will look like after all tasks are performed.

输入格式

The first line of the input contains three integers nn , mm and qq ( 2<=n,m<=10002<=n,m<=1000 , 1<=q<=100001<=q<=10000 ) — the number of rows and columns in matrix, and the number of tasks Vasiliy has to perform.

Then follow nn lines containing mm integers vi,jv_{i,j} ( 1<=vi,j<=1091<=v_{i,j}<=10^{9} ) each — initial values of the cells of the matrix.

Each of the following qq lines contains six integers aia_{i} , bib_{i} , cic_{i} , did_{i} , hih_{i} , wiw_{i} ( 1<=ai,ci,hi<=n1<=a_{i},c_{i},h_{i}<=n , 1<=bi,di,wi<=m1<=b_{i},d_{i},w_{i}<=m ).

输出格式

Print nn lines containing mm integers each — the resulting matrix.

输入输出样例

  • 输入#1

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

    输出#1

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

    4 2 1
    1 1
    1 1
    2 2
    2 2
    1 1 4 1 1 2
    

    输出#2

    2 2
    1 1
    2 2
    1 1
    
首页