A15128 | Column Swapping
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given a grid with $n$ rows and $m$ columns, where each cell has a positive integer written on it. Let's call a grid good, if in each row the sequence of numbers is sorted in a non-decreasing order. It means, that for each $1 \le i \le n$ and $2 \le j \le m$ the following holds: $a_{i,j} \ge a_{i, j-1}$ .
You have to to do the following operation exactly once: choose two columns with indexes $i$ and $j$ (not necessarily different), $1 \le i, j \le m$ , and swap them.
You are asked to determine whether it is possible to make the grid good after the swap and, if it is, find the columns that need to be swapped.
You have to to do the following operation exactly once: choose two columns with indexes $i$ and $j$ (not necessarily different), $1 \le i, j \le m$ , and swap them.
You are asked to determine whether it is possible to make the grid good after the swap and, if it is, find the columns that need to be swapped.
输入格式
Each test contains multiple test cases. The first line contains the number of test cases $t$ ( $1 \le t \le 100$ ). Description of the test cases follows.
The first line of each test case contains two integers $n$ and $m$ ( $1 \le n, m \le 2 \cdot 10^5$ ) — the number of rows and columns respectively.
Each of the next $n$ rows contains $m$ integers, $j$ -th element of $i$ -th row is $a_{i,j}$ ( $1 \le a_{i,j} \le 10^9$ ) — the number written in the $j$ -th cell of the $i$ -th row.
It's guaranteed that the sum of $n \cdot m$ over all test cases does not exceed $2 \cdot 10^5$ .
The first line of each test case contains two integers $n$ and $m$ ( $1 \le n, m \le 2 \cdot 10^5$ ) — the number of rows and columns respectively.
Each of the next $n$ rows contains $m$ integers, $j$ -th element of $i$ -th row is $a_{i,j}$ ( $1 \le a_{i,j} \le 10^9$ ) — the number written in the $j$ -th cell of the $i$ -th row.
It's guaranteed that the sum of $n \cdot m$ over all test cases does not exceed $2 \cdot 10^5$ .
输出格式
If after the swap it is impossible to get a good grid, output $-1$ .
In the other case output $2$ integers — the indices of the columns that should be swapped to get a good grid.
If there are multiple solutions, print any.
In the other case output $2$ integers — the indices of the columns that should be swapped to get a good grid.
If there are multiple solutions, print any.
输入输出样例
输入 #1
5 2 3 1 2 3 1 1 1 2 2 4 1 2 3 2 2 2 1 1 1 2 3 6 2 1 5 4 3 2 1 1 2
输出 #1
1 1 -1 1 2 1 3 1 1
In the first test case the grid is initially good, so we can, for example, swap the first column with itself.
In the second test case it is impossible to make the grid good.
In the third test case it is needed to swap the first and the second column, then the grid becomes good.
In the second test case it is impossible to make the grid good.
In the third test case it is needed to swap the first and the second column, then the grid becomes good.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted