| Task: | Järjestys |
| Sender: | tuomask |
| Submission time: | 2016-10-07 20:54:09 +0300 |
| Language: | C++ |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | WRONG ANSWER | 0 |
| #2 | WRONG ANSWER | 0 |
| #3 | TIME LIMIT EXCEEDED | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | WRONG ANSWER | 0.05 s | 1 | details |
| #2 | WRONG ANSWER | 0.05 s | 2 | details |
| #3 | TIME LIMIT EXCEEDED | -- | 3 | details |
Compiler report
input/code.cpp: In function 'void turn(int*, int)':
input/code.cpp:72:28: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int i=0; i<sizeof(arr); i++) {
^Code
#include <iostream>
#include <sstream>
#include <cstring>
#include <cstdlib>
using namespace std;
void turn(int *arr, int last);
int main() {
std::ostringstream turns_oss;
unsigned int length;
unsigned int turns_count = 0;
cin >> length;
int array[length];
for (unsigned int i=0; i<length-1; i++) {
char input[6];
cin.getline(input, 6, ' ');
array[i] = atoi(input);
}
char input[6];
cin.getline(input, 6);
array[length-1] = atoi(input);
int lastnotdone = length-1;
while (lastnotdone > 0) {
int max = 0;
int max_i = 0;
for (int i=0; i<=lastnotdone; i++) {
if (array[i] > max) {
max = array[i];
max_i = i;
}
}
if (max_i == lastnotdone) {
lastnotdone--;
continue;
}
turn(array, max_i);
turn(array, lastnotdone);
turns_oss << (max_i+1) << " " << (lastnotdone+1) << " ";
turns_count += 2;
lastnotdone--;
}
cout << turns_count << '\n';
cout << turns_oss.str() << endl;
}
void turn(int *arr, int last) {
int n_arr[sizeof(arr)];
for (int i=0; i<sizeof(arr); i++) {
if (i<=last) {
n_arr[last-i] = arr[i];
} else {
n_arr[i] = arr[i];
}
}
arr = n_arr;
}
Test details
Test 1
Group: 1
Verdict: WRONG ANSWER
| input |
|---|
| 10 9 3 4 7 6 5 10 2 8 1 |
| correct output |
|---|
| 32 10 10 9 10 9 8 7 9 4 2 1 4 5 2... |
| user output |
|---|
| 16 7 10 7 9 7 8 1 6 1 5 1 4 1 3 1... |
Test 2
Group: 2
Verdict: WRONG ANSWER
| input |
|---|
| 1000 650 716 982 41 133 1000 876 92... |
| correct output |
|---|
| 3984 207 207 206 207 128 127 126 12... |
| user output |
|---|
| 1992 6 1000 6 999 6 998 6 997 6 996... |
Test 3
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 94703 47808 62366 31885 7091 8... |
| correct output |
|---|
| 399956 98676 98676 98675 98676 62994 ... |
| user output |
|---|
| (empty) |
