#include<iostream> #include<cstring> #include<cstdio> #include<vector> #include<list> using namespace std; const int th3 = 60000; const int maxn = 110; int find_min(int *a,int len) { int Min = 999999,position = 0; for(int i = 1;i <= len; ++i) if(a[i] <...