Recent Posts
Notice
No Rules Rules
바구니 순서 바꾸기 (feat. 백준, 10812번) 본문
728x90
반응형
바구니 순서 바꾸기
https://www.acmicpc.net/problem/10812
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <algorithm>
using namespace std;
int main(){
ios::sync_with_stdio(false), cin.tie(NULL);
register int arr[101], N, M;
cin >> N >> M;
for(register int n = 1; n <= N; ++n)
arr[n] = n;
for(register int m = 0, b, e, c; m < M; ++m){
cin >> b >> e >> c;
rotate(&arr[b], &arr[b] + (c - b), &arr[e + 1]);
}
for(register int n = 1; n <= N; ++n)
cout << arr[n] << " ";
return 0;
}
// *&)*@*
반응형
c++의 algorithm 에서 제공되는 rotate 함수를 사용하여 begin - end 범위에 mid를 기준으로 회전시켰습니다.
rotate 함수는 한번 연산될때마다 내부적으로는 swap이 계속 발생하므로 효율적인 방법은 절대 아닙니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
거짓말 (feat. 백준, 1043번) (0) | 2023.02.23 |
---|---|
저울 (feat. 백준, 2437번) (0) | 2023.02.23 |
너의 평점은 (feat. 백준, 25206번) (0) | 2023.02.22 |
별 찍기 - 7 (feat. 백준, 2444번) (0) | 2023.02.22 |
바구니 뒤집기 (feat. 백준, 10811번) (0) | 2023.02.22 |
Comments