| Task: | Järjestys |
| Sender: | vuolen |
| Submission time: | 2016-10-09 23:52:18 +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.06 s | 1 | details |
| #2 | WRONG ANSWER | 0.05 s | 2 | details |
| #3 | TIME LIMIT EXCEEDED | -- | 3 | details |
Code
#include <iostream>
#include <stdint.h>
#define __STDC_FORMAT_MACROS
#include <inttypes.h>
#include <stdlib.h>
#include <math.h>
void flip(uint32_t *arr, uint32_t n) {
uint32_t i;
uint32_t temp;
for (i = 0; i < ceil(n / 2.0); i++) {
temp = arr[i];
arr[i] = arr[n - 1 - i];
arr[n - 1 - i] = temp;
}
}
void print_arr(uint32_t *arr, uint32_t n) {
uint32_t i;
for (i = 0; i < n; i++) {
std::cout << arr[i];
}
std::cout << std::endl;
}
int main(int argc, char *argv[]) {
uint32_t n;
uint32_t *arr;
uint32_t move_n;
uint32_t *move_arr;
std::cin >> n;
arr = (uint32_t *) calloc(n, sizeof(uint32_t));
move_n = 0;
move_arr = (uint32_t *) calloc(5 * n, sizeof(uint32_t));
uint32_t i;
for (i = 0; i < n; i++) {
std::cin >> arr[i];
}
for (i = 0; i < 5 * n; i++) {
uint32_t max = 0;
uint32_t max_i;
uint32_t j;
for (j = 0; j < n; j++) {
if (arr[j] != j + 1 && arr[j] > max) {
max = arr[j];
max_i = j;
}
}
if (max == 0)
break;
move_arr[move_n++] = max_i + 1;
flip(arr, max_i + 1);
move_arr[move_n++] = arr[0];
flip(arr, arr[0]);
}
std::cout << move_n;
print_arr(move_arr, move_n);
free(arr);
return 0;
}
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 |
|---|
| 127104978473412 |
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 |
|---|
| 198461000904999964998333997279... |
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) |
