Contents

[백준]11568 민균이의 계략

Contents

https://www.acmicpc.net/problem/11568

풀이:

  1. 11053 가장 긴 증가하는 부분 수열 의 문제와 같으므로 링크를 참고

코드:

 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
#include <iostream>
#include <algorithm>
using namespace std;
long long a[1001] = { 0 }, b[1001];
int main(void) {
	long long n, temp;
	cin >> n;
	for (int i = 0; i < n; i++) {
		cin >> a[i];
		b[i] = 1;
	}
	for (int i = 0; i < n; i++) {
		temp = 0;
		for (int t = 0; t <= i; t++) {
			if (a[i] > a[i - t])
				temp = max(b[i - t], temp);
		}
		b[i] += temp;
	}
	for (int i = 0; i < n; i++) {
		temp = max(b[i], temp);
	}
	cout << temp << endl;
	return 0;
}