Codeforces Round #744 (Div. 3) (Shifting Sort)
题目给你一个数组 (让你排序,并且排序的次数不能能超过他给你的n次数)写法就是拿一个已经排好的 和没有排好的 这样就能计算最少的次数#include"bits/stdc++.h" using namespace std;const int N = 55;int s[N],v[N];int t,n;int main(){ cin >> t; while(t--) { memset(s,0,sizeof s); // 一个原有的 一