标签:有序 技术分享 end 最小 img text tac 交换 stack
对于n个数字。调整成从大到小或者从小到大。操作数都不超过n,每一次操作至少有一个数字放到正确的位置。
枚举起点还有序列正反,求出最小的交换次数。
求交换次数的时候用贪心思想,先把1交换到1,再把2交换到2。
。。
AC代码:
#include <iostream> #include <cstdio> #include <cstdlib> #include <cctype> #include <cstring> #include <string> #include <sstream> #include <vector> #include <set> #include <map> #include <algorithm> #include <stack> #include <queue> #include <bitset> #include <cassert> #include <cmath> #include <functional> using namespace std; const int maxn = 505; int a[1005], b[1005]; int n; int solve() { int ret = 0xfffffff; for (int i = 0, j = n; i < n; i++, j++) { a[j] = a[i]; } for (int i = 0; i < n; i++) { int mark[maxn], cnt = 0; for (int j = 0; j < n; j++) { mark[a[i + j]] = i + j; b[i + j] = a[i + j]; } for (int j = 0; j < n; j++) { if (b[i + j] != j) { cnt++; int idx = mark[j]; swap(b[i + j], b[idx]); mark[b[idx]] = idx; } } ret = min(ret, cnt); } return ret; } int main() { ios::sync_with_stdio(false); while (cin >> n && n) { for (int i = 0; i < n; i++) { cin >> a[i]; a[i]--; // 方便处理 } int ret; ret = solve(); reverse(a, a + n); // 反转再算一次求最小 ret = min(ret, solve()); cout << ret << endl; } return 0; }
UVa - 10570 - Meeting with Aliens
标签:有序 技术分享 end 最小 img text tac 交换 stack
原文地址:http://www.cnblogs.com/jzssuanfa/p/6835036.html