51nod-1700 首尾排序法

51nod-1700 首尾排序法_第1张图片

地址:http://www.51nod.com/Challenge/Problem.html#!#problemId=1700

思路:对于数组中的数a[i]都可以移到首尾去,只是移动的次序不同而使数组有序,因此只要找到一个最长的不移动的子序列即可,例如 [3 1 2 4 5]中为[3 4 5]最长,那么其可以不变,这样改变的个数就为最少的

Code:

#include
using namespace std;

const int MAX_N=1e5+5; 
int n;
int d[MAX_N];

//最长连续子序列 
int main()
{
	ios::sync_with_stdio(false);
	cin>>n;
	int x,ans=0;
	for(int i=0;i>x;
		d[x]=d[x-1]+1;
		ans=max(ans,d[x]);
	}
	ans=n-ans;
	cout<

 

你可能感兴趣的:(51Nod)