일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 표준 입출력
- 시간복잡도
- Django Nodejs 차이점
- string 메소드
- correlation coefficient
- 백준
- 연결요소
- 2557
- vscode
- iOS14
- double ended queue
- 이분그래프
- c++
- string 함수
- getline
- scanf
- 장고란
- 입/출력
- k-eta
- 알고리즘 공부방법
- 구조체와 클래스의 공통점 및 차이점
- Django란
- Django의 편의성
- 프레임워크와 라이브러리의 차이
- 입출력 패턴
- UI한글변경
- 매크로
- 자료구조
- 엑셀
- EOF
Archives
- Today
- Total
Storage Gonie
(2) [C++, Java] 백준 No.1158 : 조세퍼스 문제 본문
반응형
문제
풀이
# C++
#include <iostream>
#include <queue>
using namespace std;
int main(void)
{
ios::sync_with_stdio(false);
int N;
int K;
cin >> N >> K;
queue<int> q;
// 1 ~ N의 숫자를 큐에 push하여 초기상태 만들기
for (int i = 1 ; i <= N; i++)
q.push(i);
// ( pop push ) : K-1번 + pop : 1번 할 때 마다 front 값 출력하기.
cout << "<";
while(N--){
for (int i = 0; i < K-1; i++){
int num = q.front();
q.pop();
q.push(num);
}
if (!(N == 0))
cout << q.front() << ", ";
else
cout << q.front();
q.pop();
}
cout << ">";
}
# Java
import java.util.*;
public class Main {
public static void main(String args[]) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int m = sc.nextInt();
StringBuilder sb = new StringBuilder();
sb.append('<');
Queue<Integer> queue = new LinkedList<Integer>();
for (int i=1; i<=n; i++) {
queue.offer(i);
}
for (int i=0; i<n-1; i++) {
for (int j=0; j<m-1; j++) {
queue.offer(queue.poll());
}
sb.append(queue.poll() + ", ");
}
sb.append(queue.poll() + ">");
System.out.println(sb);
}
}
반응형
'알고리즘 > 백준풀이3. 큐' 카테고리의 다른 글
(1) [C++, Java] 백준 No.10845 : 큐(기본구현) (0) | 2019.04.25 |
---|
Comments