본문 바로가기

백준

11053 가장 긴 증가하는 부분 수열

burningjeong.tistory.com/453

 

LIS 최장 증가 부분 수열

 

burningjeong.tistory.com

 

드디어 완벽히 이해했어ㅠㅠ 뿌듯해

 

#include <iostream>
#include <algorithm>
#include <vector>
#include <string>
#include <functional>
#include <string>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <cmath>
#include <cstring>
#include <bitset>

#define xx first
#define yy second
#define all(x) (x).begin(), (x).end()
#define MAXV 1000000

using namespace std;
using i64 = long long int;
using ii = pair<int, int>;
using ii64 = pair<i64, i64>;
using iii = tuple<int, int, int>;

int     main()
{
    int n;
    scanf("%d", &n);

    vector<int> v(n + 1);
    for (int i = 1; i <= n; i++)
        scanf("%d", &v[i]);

    vector<int> d(n + 1);
    for (int i = 1; i <= n; i++)
    {
        int maxv = d[0];
        for (int j = 0; j < i; j++)
        {
            if (v[i] > v[j] && maxv < d[j])
                maxv = d[j];
        }
        d[i] = maxv + 1;
    }

    printf("%d\n", *max_element(all(d)));

    return 0;
}

'백준' 카테고리의 다른 글

11722 가장 긴 감소하는 부분 수열  (0) 2020.10.25
11055 가장 큰 증가 부분 수열  (0) 2020.10.25
15645 내려가기  (0) 2020.10.22
7571 점 모으기  (0) 2020.10.19
17204 죽음의 게임  (0) 2020.10.19