forked from encrypted-def/basic-algo-lecture
-
Notifications
You must be signed in to change notification settings - Fork 0
/
1539.cpp
40 lines (33 loc) · 829 Bytes
/
1539.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
// Authored by : 0000000000
// Co-authored by : BaaaaaaaaaaarkingDog
// http://boj.kr/deab7ddf836140578b02643f3f13afb1
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
int h[250005];
set<int> s;
ll res;
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
int n; cin >> n;
h[0] = 0; s.insert(0);
h[n + 1] = 0; s.insert(n + 1);
n--;
int a; cin >> a; a++;
h[a] = 1; s.insert(a);
res = 1;
while (n--) {
cin >> a; a++;
auto it = s.lower_bound(a);
h[a] = max(h[*prev(it)], h[*it]) + 1;
s.insert(a);
res += h[a];
}
cout << res;
}
/*
A의 높이를 H[A]라 하면, H[A]는
max(H[(A보다 작은 수들 중 최댓값)], H[(A보다 큰 수들 중 최솟값)]) + 1이 됩니다.
Set이 비어 있을 때 처리를 편하게 하기 위해 값에 +1을 해 줬습니다.
*/