※ 글쓴이는 취미로 코딩을 익혀보는 사람이라 정확하지 않은 내용을 담고 있을 수 있다 ※
이번에 볼 문제는 백준 12352번 문제인 Hedgemony (Large)이다.
문제는 아래 링크를 확인하자.
https://www.acmicpc.net/problem/12352
12352번: Hedgemony (Large)
The first line of the input gives the number of test cases, T. T test cases follow. Each one consists of two lines. The first line will contain an integer N, and the second line will contain N space-separated integers denoting the heights of the bushes, fr
www.acmicpc.net
두번째 bush부터 N-1번째 bush까지를 순서대로 둘러보며 문제에서 주어진 연산, 즉 좌우의 bush의 높이의 평균보다 bush의 높이가 높은 경우 그 평균높이로 bush가 깎는 것을 실수 자료형을 이용해 시뮬레이션하자.
아래는 제출한 소스코드이다.
#include <iostream>
#include <cstring>
using namespace std;
int seg[2049];
int upd(int L, int R, int qI, int qVal, int sI) {
if (R < qI || qI < L) return seg[sI];
if (L == R) return seg[sI] = qVal;
return seg[sI] = max(upd(L, (L + R) / 2, qI, qVal, sI * 2), upd((L + R) / 2 + 1, R, qI, qVal, sI * 2 + 1));
}
int rangemax(int L, int R, int qL, int qR, int sI) {
if (R < qL || qR < L) return 0;
if (qL <= L && R <= qR) return seg[sI];
return max(rangemax(L, (L + R) / 2, qL, qR, sI * 2), rangemax((L + R) / 2 + 1, R, qL, qR, sI * 2 + 1));
}
void solve() {
memset(seg, 0, sizeof(seg));
int N; cin >> N;
int NN = N;
while (NN--) {
int x; cin >> x;
int mx = rangemax(1, 1000, 1, x - 1, 1);
upd(1, 1000, x, mx + 1, 1);
}
cout << N - seg[1] << '\n';
}
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
int T; cin >> T;
for (int t = 1; t <= T; t++) {
cout << "Case #" << t << ": ";
solve();
}
}
728x90
'BOJ' 카테고리의 다른 글
[BOJ 24519 // C++] Bottleneck Travelling Salesman Problem (Large) (0) | 2022.07.17 |
---|---|
[BOJ 12353 // C++] Dr. Spaceman의 특별한 알고리즘 (0) | 2022.07.17 |
[BOJ 13226 // C+] Divisors Again (0) | 2022.07.16 |
[BOJ 13982 // C++] Shopping (0) | 2022.07.15 |
[BOJ 25025 // C++] 다항식 계산 (0) | 2022.07.14 |