CF384B.Multitasking

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Iahub wants to enhance his multitasking abilities. In order to do this, he wants to sort nn arrays simultaneously, each array consisting of mm integers.

Iahub can choose a pair of distinct indices ii and jj (1<=i,j<=m,ij)(1<=i,j<=m,i≠j) . Then in each array the values at positions ii and jj are swapped only if the value at position ii is strictly greater than the value at position jj .

Iahub wants to find an array of pairs of distinct indices that, chosen in order, sort all of the nn arrays in ascending or descending order (the particular order is given in input). The size of the array can be at most (at most pairs). Help Iahub, find any suitable array.

输入格式

The first line contains three integers nn (1<=n<=1000)(1<=n<=1000) , mm (1<=m<=100)(1<=m<=100) and kk . Integer kk is 00 if the arrays must be sorted in ascending order, and 11 if the arrays must be sorted in descending order. Each line ii of the next nn lines contains mm integers separated by a space, representing the ii -th array. For each element xx of the array ii , 1<=x<=1061<=x<=10^{6} holds.

输出格式

On the first line of the output print an integer pp , the size of the array ( pp can be at most ). Each of the next pp lines must contain two distinct integers ii and jj (1<=i,j<=m,ij)(1<=i,j<=m,i≠j) , representing the chosen indices.

If there are multiple correct answers, you can print any.

输入输出样例

  • 输入#1

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

    输出#1

    3
    2 4
    2 3
    4 5
    
  • 输入#2

    3 2 1
    1 2
    2 3
    3 4
    

    输出#2

    1
    2 1
    

说明/提示

Consider the first sample. After the first operation, the arrays become [1,3,2,5,4][1,3,2,5,4] and [1,2,3,4,5][1,2,3,4,5] . After the second operation, the arrays become [1,2,3,5,4][1,2,3,5,4] and [1,2,3,4,5][1,2,3,4,5] . After the third operation they become [1,2,3,4,5][1,2,3,4,5] and [1,2,3,4,5][1,2,3,4,5] .

首页