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;
	}
}
	
全部评论

相关推荐

避坑恶心到我了大家好,今天我想跟大家聊聊我在成都千子成智能科技有限公司(以下简称千子成)的求职经历,希望能给大家一些参考。千子成的母公司是“同创主悦”,主要经营各种产品,比如菜刀、POS机、电话卡等等。听起来是不是有点像地推销售公司?没错,就是那种类型的公司。我当时刚毕业,急需一份临时工作,所以在BOSS上看到了千子成的招聘信息。他们承诺无责底薪5000元,还包住宿,这吸引了我。面试的时候,HR也说了同样的话,感觉挺靠谱的。于是,我满怀期待地等待结果。结果出来后,我通过了面试,第二天就收到了试岗通知。试岗的内容就是地推销售,公司划定一个区域,然后你就得见人就问,问店铺、问路人,一直问到他们有意向为止。如果他们有兴趣,你就得摇同事帮忙推动,促进成交。说说一天的工作安排吧。工作时间是从早上8:30到晚上18:30。早上7点有人叫你起床,收拾后去公司,然后唱歌跳舞(销售公司都这样),7:55早课(类似宣誓),8:05同事间联系销售话术,8:15分享销售技巧,8:30经理训话。9:20左右从公司下市场,公交、地铁、自行车自费。到了市场大概10点左右,开始地推工作。中午吃饭时间大约是12:00,公司附近的路边盖饭面馆店自费AA,吃饭时间大约40分钟左右。吃完饭后继续地推工作,没有所谓的固定中午午休时间。下午6点下班后返回公司,不能直接下班,需要与同事交流话术,经理讲话洗脑。正常情况下9点下班。整个上班的一天中,早上到公司就是站着的,到晚上下班前都是站着。每天步数2万步以上。公司员工没有自己的工位,百来号人挤在一个20平方米的空间里听经理洗脑。白天就在市场上奔波,公司的投入成本几乎只有租金和工资,没有中央空调。早上2小时,晚上加班2小时,纯蒸桑拿。没有任何福利,节假日也没有3倍工资之类的。偶尔会有冲的酸梅汤和西瓜什么的。公司的晋升路径也很有意思:新人—组长—领队—主管—副经理—经理。要求是业绩和团队人数,类似传销模式,把人留下来。新人不能加微信、不能吐槽公司、不能有负面情绪、不能谈恋爱、不能说累。在公司没有任何坐的地方,不能依墙而坐。早上吃早饭在公司外面的安全通道,未到上班时间还会让你吃快些不能磨蹭。总之就是想榨干你。复试的时候,带你的师傅会给你营造一个钱多事少离家近的工作氛围,吹嘘工资有多高、还能吹自己毕业于好大学。然后让你早点来公司、无偿加班、抓住你可能不会走的心思进一步压榨你。总之,大家在找工作的时候一定要擦亮眼睛,避免踩坑!———来自网友
qq乃乃好喝到咩噗茶:不要做没有专业门槛的工作
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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