-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbaekjoon_01021_rotating_queue.c
98 lines (89 loc) · 2.28 KB
/
baekjoon_01021_rotating_queue.c
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
96
97
98
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* baekjoon_01021_rotating_queue.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mihykim <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/04/03 14:25:11 by mihykim #+# #+# */
/* Updated: 2020/06/07 23:36:03 by mihykim ### ########.fr */
/* */
/* ************************************************************************** */
/*
** - Write a program that prints out at least how many times
** operation 2 or 3 has to be exexcuted to pop all specified elements in order.
** - Operations avaliable
** 1) pop_front
** 2) pop_back + push_front
** 3) pop_front + push_back
** - Input will be like :
** 9 4 <= deque size / find size
** 1 3 7 2 <= targets to pop in order
*/
#include <stdio.h>
#include <math.h>
int deque[2500] = {0};
int idx_front;
int idx_back;
int target;
void pop_back_push_front(int min)
{
while (min--)
{
idx_front--;
deque[idx_front] = deque[idx_back];
idx_back--;
}
}
void pop_front_push_back(int min)
{
while (min--)
{
idx_back++;
deque[idx_back] = deque[idx_front];
idx_front++;
}
}
int get_route_length(void)
{
int min2 = 0;
int min3 = 0;
if (target == deque[idx_front])
{
idx_front++;
return (0);
}
while (deque[idx_back - min2] != target)
min2++;
min2++;
while (deque[idx_front + min3] != target)
min3++;
if (min2 <= min3)
pop_back_push_front(min2);
else
pop_front_push_back(min3);
idx_front++;
return (fmin(min2, min3));
}
int main(void)
{
int count = 0;
int deque_size;
int find_size;
int i = 0;
scanf("%d", &deque_size);
while (i < deque_size)
{
deque[i + 1250] = i + 1;
i++;
}
idx_front = 1250;
idx_back = 1250 + deque_size - 1;
scanf("%d", &find_size);
while (find_size--)
{
scanf("%d", &target);
count += get_route_length();
}
printf("%d\n", count);
}