https://www.acmicpc.net/problem/10845
방법 1 : 라이브러리 사용
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
|
#include <iostream>
#include <queue>
using namespace std;
int main()
{
queue<int> q;
int n;
cin >> n;
while (n--)
{
string cmd;
cin >> cmd;
if (cmd == "push")
{
int x;
cin >> x;
q.push(x);
}
else if (cmd == "pop")
{
if (q.empty())
{
cout << -1 << '\n';
continue;
}
cout << q.front() << '\n';
q.pop();
}
else if (cmd == "size")
{
cout << q.size() << '\n';
}
else if (cmd == "empty")
{
cout << ((q.empty()) ? 1 : 0) << '\n';
}
else if (cmd == "front")
{
cout << ((q.empty()) ? -1 : q.front()) << '\n';
}
else if (cmd == "back")
{
cout << ((q.empty()) ? -1 : q.back()) << '\n';
}
}
return 0;
}
Colored by Color Scripter
|
방법 2: 구현
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
99
|
#include <iostream>
using namespace std;
struct Queue {
int data[10000];
int begin, end;
Queue()
{
begin = 0;
end = 0;
}
void push(int num)
{
data[end] = num;
end++;
}
bool empty()
{
if (begin == end)
{
return true;
}
return false;
}
int pop()
{
if (empty())
{
return -1;
}
begin++;
return data[begin - 1];
}
int size()
{
return end - begin;
}
int front()
{
if (empty())
{
return -1;
}
return data[begin];
}
int back()
{
if (empty())
{
return -1;
}
return data[end - 1];
}
};
int main()
{
Queue q;
int n;
cin >> n;
while (n--)
{
string cmd;
cin >> cmd;
if (cmd == "push")
{
int x;
cin >> x;
q.push(x);
}
else if (cmd == "pop")
{
cout << q.pop() << '\n';
}
else if (cmd == "size")
{
cout << q.size() << '\n';
}
else if (cmd == "empty")
{
cout << q.empty() << '\n';
}
else if (cmd == "front")
{
cout << q.front() << '\n';
}
else if (cmd == "back")
{
cout << q.back() << '\n';
}
}
return 0;
}
|
구현 버전이 라이브러리 사용보다 더 빠르다
BOJ 다른 분들은 0ms인 코드도 많은데 나는 기본에 충실한 것으로ㅎㅎ
'Algorithm > BOJ' 카테고리의 다른 글
[BOJ]10866번: 덱(c++) (0) | 2020.04.15 |
---|---|
[BOJ]1158번: 요세푸스 문제(c++) (0) | 2020.04.15 |
[BOJ]1406번: 에디터(c++) (0) | 2020.04.15 |
[BOJ]1874번: 스택 수열(c++) (0) | 2020.04.14 |
[BOJ]9012번 : 괄호(c++) (0) | 2020.04.14 |
댓글