문제 링크입니다: https://www.acmicpc.net/problem/11866
N과 M의 범위가 작기 때문에 그대로 시뮬레이션을 돌리면 AC를 받을 수 있는 문제였습니다.
시간복잡도는 O(N^2)입니다.
#include <iostream>
#include <queue>
using namespace std;
int main(void)
{
ios_base::sync_with_stdio(0);
cin.tie(0);
int N, M;
cin >> N >> M;
queue<int> q;
for (int i = 1; i <= N; i++)
q.push(i);
cout << "<";
while (!q.empty())
{
for (int i = 0; i < M - 1; i++)
{
int front = q.front();
q.pop();
q.push(front);
}
cout << q.front();
if(!(q.size() == 1))
cout << ", ";
q.pop();
}
cout << ">\n";
return 0;
}
개발환경:Visual Studio 2017
지적, 조언, 질문 환영입니다! 댓글 남겨주세요~
'알고리즘 > BOJ' 카테고리의 다른 글
백준 15685번 드래곤 커브 (0) | 2019.02.21 |
---|---|
백준 1436번 영화감독 숌 (0) | 2019.02.21 |
백준 3673번 나눌 수 있는 부분수열 (2) | 2019.02.17 |
백준 6597번 트리 복구 (0) | 2019.02.16 |
백준 15805번 트리 나라 관광 가이드 (0) | 2019.02.16 |