Intel Code Challenge Final Round (Div. 1 + Div. 2, Combined) -- B. Batch Sort(暴力枚举)

大体题意:

给你n 行m列 的数字矩阵,要求每一行可选择两个元素进行交换,或者任选两列进行交换,总共最多n+1次操作,使得每一行能否成为递增数列,每一行都是1~m的排列!

思路:

既然每一行最多操作一个交换, 加上换两列!

那么可以暴力了:

先枚举换哪一列,或者不换,然后在看每一行是否能一步交换完成递增数列!

#include <bits/stdc++.h>
using namespace std;
const int maxn = 30;
int a[maxn][maxn],n,m;
bool ok(){

    for (int i = 1; i <= n; ++i){
        int sum = 0;
        for (int j = 1; j <= m; ++j){
            sum += (a[i][j] != j);
        }
        if (sum > 2)return 0;
    }
    return 1;
}
int main(){

    scanf("%d %d",&n,&m);
    for (int i = 1; i <= n; ++i){
        for (int j = 1; j <= m; ++j){
            scanf("%d",&a[i][j]);
        }
    }
    for (int i = 1; i <= m; ++i){
        for (int j = i; j <= m; ++j){
            for (int k = 1; k <= n; ++k){
                swap(a[k][i],a[k][j]);
            }
            if (ok()) return 0*puts("YES");
            for (int k = 1; k <= n; ++k){
                swap(a[k][i],a[k][j]);
            }
        }
    }
    puts("NO");
    return 0;
}

B. Batch Sort
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

You are given a table consisting of n rows and m columns.

Numbers in each row form a permutation of integers from 1 to m.

You are allowed to pick two elements in one row and swap them, but no more than once for each row. Also, no more than once you are allowed to pick two columns and swap them. Thus, you are allowed to perform from 0 to n + 1 actions in total. Operations can be performed in any order.

You have to check whether it's possible to obtain the identity permutation 1, 2, ..., m in each row. In other words, check if one can perform some of the operation following the given rules and make each row sorted in increasing order.

Input

The first line of the input contains two integers n and m (1 ≤ n, m ≤ 20) — the number of rows and the number of columns in the given table.

Each of next n lines contains m integers — elements of the table. It's guaranteed that numbers in each line form a permutation of integers from 1 to m.

Output

If there is a way to obtain the identity permutation in each row by following the given rules, print "YES" (without quotes) in the only line of the output. Otherwise, print "NO" (without quotes).

Examples
input
2 4
1 3 2 4
1 3 4 2
output
YES
input
4 4
1 2 3 4
2 3 4 1
3 4 1 2
4 1 2 3
output
NO
input
3 6
2 1 3 4 5 6
1 2 4 3 5 6
1 2 3 4 6 5
output
YES
Note

In the first sample, one can act in the following way:

  1. Swap second and third columns. Now the table is
    1 2 3 4
    1 4 3 2
  2. In the second row, swap the second and the fourth elements. Now the table is
    1 2 3 4
    1 2 3 4

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值