Submission #2018714


Source Code Expand

#include <iostream>
#include <vector>
using namespace std;

int n, a[209]; vector<int>X;

bool isperm() {
	for (int i = 0; i < n; i++) { if (a[i] != i) return false; }
	return true;
}
void shuffle(int p) {
	for (int i = p; i < n; i++) swap(a[i], a[i - p]);
}
bool perm(int p, int q) {
	if (q >= 1 && p < q) return true;
	if (q == 0 && p > q) return true;
	return false;
}

int main() {
	cin >> n;
	for (int i = 0; i < n; i++) cin >> a[i];
	while (true) {
		if (isperm() == true) break;
		if (perm(a[n - 1], a[0]) == false) { X.push_back(n - 1); shuffle(n - 1); }
		else { X.push_back(1); shuffle(1); }
	}
	cout << X.size() << endl;
	for (int i = 0; i < X.size(); i++)cout << X[i] << endl;
	return 0;
}

Submission Info

Submission Time
Task B - Many Swaps Sorting
User E869120
Language C++14 (GCC 5.4.1)
Score 900
Code Size 731 Byte
Status AC
Exec Time 105 ms
Memory 764 KB

Judge Result

Set Name Sample Subtask1 Subtask2 All
Score / Max Score 0 / 0 300 / 300 400 / 400 200 / 200
Status
AC × 2
AC × 7
AC × 13
AC × 22
Set Name Test Cases
Sample 00_example_01.txt, 00_example_02.txt
Subtask1 00_example_01.txt, s1_01.txt, s1_02.txt, s1_03.txt, s1_04.txt, s1_05.txt, s1_06.txt
Subtask2 00_example_01.txt, 00_example_02.txt, s1_01.txt, s1_02.txt, s1_03.txt, s1_04.txt, s1_05.txt, s1_06.txt, s2_07.txt, s2_08.txt, s2_09.txt, s2_10.txt, s2_11.txt
All 00_example_01.txt, 00_example_02.txt, s1_01.txt, s1_02.txt, s1_03.txt, s1_04.txt, s1_05.txt, s1_06.txt, s2_07.txt, s2_08.txt, s2_09.txt, s2_10.txt, s2_11.txt, s3_12.txt, s3_13.txt, s3_14.txt, s3_15.txt, s3_16.txt, s3_17.txt, s3_18.txt, s3_19.txt, s3_20.txt
Case Name Status Exec Time Memory
00_example_01.txt AC 1 ms 256 KB
00_example_02.txt AC 1 ms 256 KB
s1_01.txt AC 1 ms 256 KB
s1_02.txt AC 1 ms 256 KB
s1_03.txt AC 1 ms 256 KB
s1_04.txt AC 1 ms 256 KB
s1_05.txt AC 1 ms 256 KB
s1_06.txt AC 1 ms 256 KB
s2_07.txt AC 2 ms 256 KB
s2_08.txt AC 2 ms 256 KB
s2_09.txt AC 2 ms 256 KB
s2_10.txt AC 3 ms 256 KB
s2_11.txt AC 3 ms 256 KB
s3_12.txt AC 20 ms 384 KB
s3_13.txt AC 42 ms 512 KB
s3_14.txt AC 13 ms 384 KB
s3_15.txt AC 10 ms 256 KB
s3_16.txt AC 105 ms 764 KB
s3_17.txt AC 77 ms 640 KB
s3_18.txt AC 85 ms 640 KB
s3_19.txt AC 102 ms 764 KB
s3_20.txt AC 1 ms 256 KB