STL list로 문제를 해결하였다.
1부터 N까지의 숫자랑 K번째 사람을 제거하기 위한 숫자 K가 주어지며 1부터 N번의 사람이 원을 이루면서 앉아있다.
if (t == L.end())
t = L.begin();
#include <bits/stdc++.h>
using namespace std;
int main()
{
int n, m, cnt = 0;
list<int>L;
scanf("%d%d", &m, &n);
for (int i = 1; i <= m; ++i)
L.push_back(i);
list<int>::iterator t = L.begin();
for (int i = 0; i < m; ++i)
{
for (int k = 0; k < n - 1; ++k)
{
if (t == L.end())
t = L.begin();
t++;
if (t == L.end())
t = L.begin();
}
cnt++;
if(cnt==1) cout << "<";
cout << *t;
if (cnt < m) cout << ", ";
else cout << ">";
t = L.erase(t);
}
// 1 2 3 4 5 6 7 3
// 4 5 6 7 1 2 6
// 7 1 2 4 5 2
// 4 5 7 1 7
// 1 4 5 5
// 1 4 1
// 4 4
}