-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Silver III] Title: 회전하는 큐, Time: 0 ms, Memory: 2024 KB -BaekjoonHub
- Loading branch information
Showing
2 changed files
with
77 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# [Silver III] 회전하는 큐 - 1021 | ||
|
||
[문제 링크](https://www.acmicpc.net/problem/1021) | ||
|
||
### 성능 요약 | ||
|
||
메모리: 2024 KB, 시간: 0 ms | ||
|
||
### 분류 | ||
|
||
자료 구조, 덱 | ||
|
||
### 제출 일자 | ||
|
||
2024년 8월 22일 08:50:22 | ||
|
||
### 문제 설명 | ||
|
||
<p>지민이는 N개의 원소를 포함하고 있는 양방향 순환 큐를 가지고 있다. 지민이는 이 큐에서 몇 개의 원소를 뽑아내려고 한다.</p> | ||
|
||
<p>지민이는 이 큐에서 다음과 같은 3가지 연산을 수행할 수 있다.</p> | ||
|
||
<ol> | ||
<li>첫 번째 원소를 뽑아낸다. 이 연산을 수행하면, 원래 큐의 원소가 a<sub>1</sub>, ..., a<sub>k</sub>이었던 것이 a<sub>2</sub>, ..., a<sub>k</sub>와 같이 된다.</li> | ||
<li>왼쪽으로 한 칸 이동시킨다. 이 연산을 수행하면, a<sub>1</sub>, ..., a<sub>k</sub>가 a<sub>2</sub>, ..., a<sub>k</sub>, a<sub>1</sub>이 된다.</li> | ||
<li>오른쪽으로 한 칸 이동시킨다. 이 연산을 수행하면, a<sub>1</sub>, ..., a<sub>k</sub>가 a<sub>k</sub>, a<sub>1</sub>, ..., a<sub>k-1</sub>이 된다.</li> | ||
</ol> | ||
|
||
<p>큐에 처음에 포함되어 있던 수 N이 주어진다. 그리고 지민이가 뽑아내려고 하는 원소의 위치가 주어진다. (이 위치는 가장 처음 큐에서의 위치이다.) 이때, 그 원소를 주어진 순서대로 뽑아내는데 드는 2번, 3번 연산의 최솟값을 출력하는 프로그램을 작성하시오.</p> | ||
|
||
### 입력 | ||
|
||
<p>첫째 줄에 큐의 크기 N과 뽑아내려고 하는 수의 개수 M이 주어진다. N은 50보다 작거나 같은 자연수이고, M은 N보다 작거나 같은 자연수이다. 둘째 줄에는 지민이가 뽑아내려고 하는 수의 위치가 순서대로 주어진다. 위치는 1보다 크거나 같고, N보다 작거나 같은 자연수이다.</p> | ||
|
||
### 출력 | ||
|
||
<p>첫째 줄에 문제의 정답을 출력한다.</p> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
#include <iostream> | ||
#include <deque> | ||
#include <algorithm> | ||
using namespace std; | ||
|
||
int N, M, x; | ||
int idx, answer = 0; | ||
deque<int> dq; | ||
|
||
int main() { | ||
ios::sync_with_stdio(false); | ||
cin.tie(0); | ||
|
||
cin >> N >> M; | ||
|
||
for(int i=1; i <= N; i++) dq.push_back(i); | ||
|
||
while(M--) { | ||
cin >> x; | ||
idx = find(dq.begin(), dq.end(), x) - dq.begin(); | ||
|
||
while(dq.front() != x) { | ||
if (idx < dq.size() - idx) { | ||
dq.push_back(dq.front()); | ||
dq.pop_front(); | ||
} | ||
else { | ||
dq.push_front(dq.back()); | ||
dq.pop_back(); | ||
} | ||
answer++; | ||
} | ||
dq.pop_front(); | ||
} | ||
|
||
cout << answer; | ||
|
||
return 0; | ||
} |