HDU 5500 Reorder the Books

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5500

题目大意:有一堆编号混序的书,每次可以把一本书放在最上面,问最少几移动次可以把书变为有序的。

题解:
假设有一堆序列号最大为8的书。
判断8前面是否有7,如果没有,那么肯定要将7移动到最前面,如果7在最前面,那么肯定要移动654321这几本书,结果为7。
如果8前面有7,那么再判断7前面是否有6,如果没有那么肯定要将6移动到最前面,如果6再最前面,肯定要再移动54321这几本书,结果为6。
也就是说8前面如果有7,那么可以少移动一次,7前面如果有6,又可以少移动一次
依此类推即可。

代码:

#include <set>
#include <list>
#include <stack>
#include <queue>
#include <deque>
#include <cmath>
#include <ctime>
#include <cstdio>
#include <vector>
#include <bitset>
#include <sstream>
#include <cstdlib>
#include <climits>
#include <cstring>
#include <iostream>
#include <algorithm>
#define RI(N) scanf("%d",&(N))
#define RII(N,M) scanf("%d %d",&(N),&(M))
#define RIII(N,M,K) scanf("%d %d %d",&(N),&(M),&(K))
#define Cl0(a) memset((a),0,sizeof(a))
using namespace std;
const int inf=1e9;
const int inf1=-1*1e9;
typedef long long LL;
int main()
{
    int cas;
    scanf("%d",&cas);
    while(cas--)
    {
        int n,a[25];
        RI(n);
        //cout<<n<<endl;
        for(int i=0;i<n;i++)
        {
            RI(a[i+1]);
        }
        for(int i=n;i>=1;i--)
        {
            if(a[i]==n)   n--;     
        }
        printf("%d\n",n);
    }
    return  0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值