题目地址:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=4104
题意
给出一个数字序列,每次任选一个数字移到首位,问最少要移多少次才能使序列变成非递减的序列
解题思路
心态崩了(;´༎ຶД༎ຶ`),不应该模拟复杂的过程的,只要考虑哪些数字被移动到了首位就好,不用考虑具体每次移了那个数字!
从后往前遍历,如果排序前后数字的位置发生了变化,那么该数字一定曾经被移动到了首位,计数器++,再往前遍历的时候注意要考虑到之前移动数字产生的影响,就是说如果a后面的数字b曾经移到了首位,那么a的位置要往后移相应的位数(b移到首位,把a往后挤了)再继续判断
例子:序列3 6 1 5 2 4 7自己参照代码自己笔算一遍
ac代码
#include <iostream>
#include <stdio.h>
#include <algorithm>
#include <string.h>
#include <ctype.h>
#include <set>
#include <cmath>
#include <queue>
#include <stack>
#include <map>
#include <sstream>
#define maxn 100005
typedef long long ll;
const ll mod=1e9+7;
using namespace std;
ll a[maxn],aa[maxn];
int main()
{
//freopen("/Users/zhangkanqi/Desktop/11.txt","r",stdin);
ll t;
scanf("%lld",&t);
ll n;
while(t--)
{
ll ans=0;
scanf("%lld",&n);
for(ll i=0;i<n;i++)
{
scanf("%lld",&a[i]);
aa[i]=a[i];
}
sort(aa,aa+n);
for(ll i=n-1;i>=0;i--)
if(a[i]!=aa[i+ans]) ans++;
printf("%lld\n",ans);
}
}