forked from ndb796/python-for-coding-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
4.cpp
41 lines (33 loc) · 916 Bytes
/
4.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#include <bits/stdc++.h>
using namespace std;
int n;
vector<int> v;
int main(void) {
cin >> n;
for (int i = 0; i < n; i++) {
int x;
cin >> x;
v.push_back(x);
}
// 순서를 뒤집어 '최장 증가 부분 수열' 문제로 변환
reverse(v.begin(), v.end());
// 다이나믹 프로그래밍을 위한 1차원 DP 테이블 초기화
int dp[2000];
for (int i = 0; i < n; i++) {
dp[i] = 1;
}
// 가장 긴 증가하는 부분 수열(LIS) 알고리즘 수행
for (int i = 1; i < n; i++) {
for (int j = 0; j < i; j++) {
if (v[j] < v[i]) {
dp[i] = max(dp[i], dp[j] + 1);
}
}
}
// 열외해야 하는 병사의 최소 수를 출력
int maxValue = 0;
for (int i = 0; i < n; i++) {
maxValue = max(maxValue, dp[i]);
}
cout << n - maxValue << '\n';
}