-
Notifications
You must be signed in to change notification settings - Fork 0
/
stacks_of_flapjacks.cpp
95 lines (88 loc) · 2.25 KB
/
stacks_of_flapjacks.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#include<stdio.h>
#include<iostream>
#include<string.h>
#include<cstdio>
using namespace std;
struct local{
int max;
int index;
}p;
void reverse(int *num, int n);
int isort(int *a, int n);
int main()
{
int a[35];
// int a[30] = {2, 8, 2, 9, 1}, n = 5;
int max, rcnt, cnt;
char line[200];
while(gets(line)){
cnt = 0;
// memset(a, 0, 35);
for(int i=0;i<35;i++) a[i]=0;
for(int i = 0;line[i];i++){
if(line[i] == ' '){
printf("%d ", a[cnt++]);
}else{
a[cnt] *= 10;
a[cnt] += (line[i] - '0');
}
}
printf("%d\n", a[cnt++]);
rcnt = cnt;
while(cnt > 0){
max = 0;
for(int i = 0; i < cnt; i++){
if(a[max] < a[i]){
max = i;
}
}
if(max != cnt - 1){
if(max == 0){
reverse(a, cnt);
printf("%d ", rcnt - cnt + 1);
cnt--;
//printf("%d ", rn - n + 1);
}else{
reverse(a, max + 1);
//printf("%d ", n - max);
// for(int i = 0; i < 5; i++){
// printf("%d ", a[i]);
// }
printf("%d ", rcnt - max);
reverse(a, cnt);
printf("%d ", rcnt - cnt + 1);
// for(int i = 0; i < 5; i++){
// printf("%d ", a[i]);
// }
// printf("\n");
cnt--;
}
}else{
cnt--;
// for(int i = 0; i < 5; i++){
// printf("%d ", a[i]);
// }
// printf("\n");
}
}
printf("0\n");
}
return 0;
}
void reverse(int *num, int n){
int len = n;
int i;
for(i = 0; i < len / 2; i++){
int temp = num[i];
num[i] = num[len - 1 - i];
num[len - 1 - i] = temp;
}
}
int isort(int *a, int n){
for(int i = 0; i < n - 1; i++){
if(a[i] >= a[i + 1]){
return 0;
}
}
return 1;
}