1455D Sequence and Swaps(思维)

D. Sequence and Swaps
time limit per test
1.5 seconds
memory limit per test
512 megabytes
input
standard input
output
standard output

You are given a sequence a
consisting of n integers a1,a2,…,an, and an integer x. Your task is to make the sequence a sorted (it is considered sorted if the condition a1≤a2≤a3≤⋯≤an

holds).

To make the sequence sorted, you may perform the following operation any number of times you want (possibly zero): choose an integer i
such that 1≤i≤n and ai>x, and swap the values of ai and x

.

For example, if a=[0,2,3,5,4]
, x=1

, the following sequence of operations is possible:

choose i=2

(it is possible since a2>x), then a=[0,1,3,5,4], x=2
;
choose i=3
(it is possible since a3>x), then a=[0,1,2,5,4], x=3
;
choose i=4
(it is possible since a4>x), then a=[0,1,2,3,4], x=5

. 

Calculate the minimum number of operations you have to perform so that a

becomes sorted, or report that it is impossible.
Input

The first line contains one integer t
(1≤t≤500

) — the number of test cases.

Each test case consists of two lines. The first line contains two integers n
and x (1≤n≤500, 0≤x≤500) — the number of elements in the sequence and the initial value of x

.

The second line contains n
integers a1, a2, …, an (0≤ai≤500

).

The sum of values of n
over all test cases in the input does not exceed 500

.
Output

For each test case, print one integer — the minimum number of operations you have to perform to make a
sorted, or −1, if it is impossible.

思路:对于一个排列如果我们想其排好序,且只能使用x与ai交换(x<ai)。初始sum=0,我们从i开始遍历到n,对于每一个(1)如果已经排好序则退出遍历,输出sum.(2)如果没有排好序,设对于从i到n的序列中的所有元素加上x的集合中最小的元素为k,<1>如果k= =ai,则无需进行操作,继续向后遍历,<2>如果k!=ai&&k!=x,在这种情况下可以发现我们想通过x与排列ai到an的最小元素(值为k)交换使得ai成为最小的是不可能实现的,因为x>k,不满***换条件,所以那个值为k的最小元素被永远留在了后面,不可能交换到应该在的位置,退出遍历,输出-1。<3>如果k==x,x与ai进行交换,sum++,继续遍历。细实现见代码。

Code:

#include<iostream>
#include<string>
#include<map>
#include<algorithm>
#include<memory.h>
#include<cmath>
#define pii pair<int,int>
#define FAST ios::sync_with_stdio(false),cin.tie(0),cout.tie(0)
using namespace std;
typedef long long ll;
const int Max = 2e5 + 5;
int lst[Max];
int dp[505][505];

int main()
{
   
	FAST;
	int t;cin >> t;
	while (t--)
	{
   
		int n, x;cin >> n >> x;
		for (int i = 1;i <= n;i++)cin >> lst[i];
		int g = 0;int f = 1;int ans = 1;
		for (int i = 1;i <= n;i++)
		{
   
			f = 0;
			for (int j = i;j <= n;j++)if (lst[j] < lst[j - 1])f = 1;
			if (f == 0)break;
			int k = x;
			for (int j = i;j <= n;j++)k = min(k, lst[j]);
			if (k == lst[i])continue;
			if (k != x){
   ans = 0;break;}
			g++;x = lst[i];
		}
		if (ans == 0)cout << -1 << endl;
		else cout << g << endl;
	}
}
	
全部评论

相关推荐

01-12 14:08
门头沟学院 Java
有寒假来武汉小米总部实习的大学生嘛,我也是小米的员工,想找合租舍友,仅限女生可免租半月,二月初可入住,也就是说房租是2.15开始算的哦~也可以将行李提前放过来~房屋介绍:1、房子情况:有电梯;租的是三室一厅一卫一厨,&nbsp;但是有个卧室比较小,不打算找人,只住两个人就可以了;衣柜也很大,可以放下很多衣服;房屋采光真的很好,早上起来可以在床上晒太阳的那种,十分惬意(夏季晚上十分好看!)2.&nbsp;楼下离我们很近的地方有小吃街和一个两层大超市(大概步行两分钟多就可以走到)&nbsp;,还有一个新开的麦当劳,晚上可以去吃小吃,购买物资也可以去大超市;3.&nbsp;房子基本设施齐备(洗衣机,冰箱,空调,油烟机,热水器);4.&nbsp;我有稳定的工作,生活中很注意卫生,周末有时间会自己做饭,可以投喂哦~5.&nbsp;出行:距离公交站步行10分钟不到,距政务中心,武汉小米总部三站(晚上我都是走回来的,很近的~);一个比较进的地铁,距离大概1km左右;出入我觉得很方便;6.&nbsp;房租:1150每月,押一付二,无物业费,也没有中介费和其他额外费用。7.&nbsp;民用水电燃气,用多少交多少,水电费正常平摊。希望你是:1.&nbsp;女生(本人女),不带异性回家,如有同性朋友来玩,最多过夜一晚;2.&nbsp;爱干净,讲卫生,作息正常,不吵闹,有稳定工作;3.&nbsp;好沟通,有任何问题一定要沟通,不要闷着!中介勿扰,非诚勿扰!!!希望不要浪费彼此的时间诚心有意向的可以联系我看房
租房找室友
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务