Recent Posts
Notice
No Rules Rules
카드 역배치 (feat. 백준, 10804번) 본문
728x90
반응형
카드 역배치
https://www.acmicpc.net/problem/10804
// 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
반응형
'생활 > 코테' 카테고리의 다른 글
숫자고르기 (feat. 백준, 2668번) (0) | 2023.04.13 |
---|---|
주사위 게임 (feat. 백준, 2476번) (0) | 2023.04.13 |
카드 뽑기 (feat. 백준, 16204번) (0) | 2023.04.12 |
Networking (feat. 백준, 3803번) (0) | 2023.04.10 |
회사에 있는 사람 (feat. 백준, 7785번) (0) | 2023.04.10 |
Comments