UVA - 10152 ShellSort

点击打开链接

题意是在栈中乌龟有一个给初始系列和目标序列,然后求由初始序列变成目标序列最少操作的次数。

乌龟只能从当前位置爬到栈顶。

其实只要从大到小找出初始序列中编号比目标序列大的然后输出就行。

#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
//#include 
#include 
#include 

#define CL(arr, val)    memset(arr, val, sizeof(arr))

#define ll long long
#define inf 0x7f7f7f7f
#define lc l,m,rt<<1
#define rc m + 1,r,rt<<1|1
#define pi acos(-1.0)

#define L(x)    (x) << 1
#define R(x)    (x) << 1 | 1
#define MID(l, r)   (l + r) >> 1
#define Min(x, y)   (x) < (y) ? (x) : (y)
#define Max(x, y)   (x) < (y) ? (y) : (x)
#define E(x)        (1 << (x))
#define iabs(x)     (x) < 0 ? -(x) : (x)
#define OUT(x)  printf("%I64d\n", x)
#define lowbit(x)   (x)&(-x)
#define Read()  freopen("a.txt", "r", stdin)
#define Write() freopen("dout.txt", "w", stdout);
#define N 100005
using namespace std;

int main()
{
   // Read();
    int t,n,i,j;
    string s1[250],s2[250];
    cin>>t;
    while(t--)
    {
        cin>>n;
        cin.get();
        for(i=0;i=0;i--)
        {
            if(s1[i]==s2[j]) j--;
        }
        for(i=j;i>=0;i--)
            cout<


 

 

你可能感兴趣的:(数据结构,算法竞赛入门经典第六章)