uva-10152-乌龟排序
Posted 菜菜
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了uva-10152-乌龟排序相关的知识,希望对你有一定的参考价值。
求从待排序的到期望的顺序的最小操作顺序,只能进行一个操作,将当前的乌龟拿出来,上面的下移,拿出来的放到最上面
发现voj没有PE,
解题方法,把俩个串反过来使用,从期望的顺序到待排序的顺序.
AC:170ms
#include <iostream> #include<stdio.h> #include<math.h> #include<memory.h> using namespace std; int main() { freopen("d:\\1.txt", "r", stdin); int t; cin >> t; for (int i = 0; i < t; i++) { int n; cin >> n; getchar(); string a[205]; string b[205]; string str; for (int j = 0; j < n; j++) { getline(cin,str); a[j] = str; } for (int j = 0; j < n; j++) { getline(cin,str); b[j] = str; } int q = n - 1, p = n - 1; while (q >= 0) { if (a[q] == b[p]) p--; q--; } while (p >= 0) { cout << b[p] << endl; p--; } cout << endl; } return 0; }
以上是关于uva-10152-乌龟排序的主要内容,如果未能解决你的问题,请参考以下文章
初识Spring源码 -- doResolveDependency | findAutowireCandidates | @Order@Priority调用排序 | @Autowired注入(代码片段