10804 : 카드 역배치

풀이

.

코드

#include <cstdio>
#include <algorithm>
using namespace std;

int n = 10, a[21];

int main() {
	int l, r;
	for (int i=1;i<=20;i++) a[i] = i;
	while (n--) {
		scanf("%d %d", &l, &r);
		reverse(a + l, a + r + 1);
	}
	for (int i=1;i<=20;i++) {
		printf("%d ", a[i]);
	}

	return 0;
}

아무말

백준, 백준 온라인 저지, BOJ, Baekjoon Online Judge, C, C++, 씨, 씨쁠쁠, JAVA, algorithm, 자바, 알고리즘, 자료구조, 문제, 문제 풀이, 풀이

wookje.kwon's profile image

wookje.kwon

2018-06-24 21:57

Read more posts by this author