No Rules Rules

카드 역배치 (feat. 백준, 10804번) 본문

생활/코테

카드 역배치 (feat. 백준, 10804번)

개발하는 완두콩 2023. 4. 12. 12:23
728x90
반응형

카드 역배치
https://www.acmicpc.net/problem/10804

 

10804번: 카드 역배치

1부터 20까지 오름차순으로 놓인 카드들에 대해, 입력으로 주어진 10개의 구간 순서대로 뒤집는 작업을 했을 때 마지막 카드들의 배치를 한 줄에 출력한다. 

www.acmicpc.net

 

// 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[21]{0};
    for(register int i = 1; i <= 20; ++i)
        arr[i] = i;
    for(register int i = 0, a, b; i < 10; ++i){
        cin >> a >> b;
        reverse(&arr[a], &arr[b + 1]);
    }
    for(register int i = 1; i <= 20; ++i)
        cout << arr[i] << ' ';
	return 0;
}
// *&)*@*

 

반응형

c++의 algorithm 에서 제공하는 reverse 를 사용하면 first iterator부터 last iterator까지를 뒤집을 수 있습니다.

728x90
반응형
Comments