-
Notifications
You must be signed in to change notification settings - Fork 0
/
Towers.cpp
53 lines (52 loc) · 956 Bytes
/
Towers.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
42
43
44
45
46
47
48
49
50
51
52
53
#include <iostream>
#include <vector>
#include <unistd.h>
#include <unistd.h>
#include <algorithm>
#include <map>
#include <cmath>
#include <cstring>
#include <sstream>
#include <set>
#include <unordered_set>
#include <cstring>
#include <string.h>
#include <queue>
using namespace std;
#define mid(s, e) (s + (e - s) / 2)
#define ALL(x) (x).begin(), (x).end()
#define endl '\n'
#define MAXE(vec) *max_element(ALL(vec))
#define MINE(vec) *min_element(ALL(vec))
#define valid(a, b, c) (a >= b && a < c ? 1 : 0)
int dx[4] = {0, 0, 1, -1};
int dy[4] = {1, -1, 0, 0};
#define ll long long
void solve()
{
ll n, nb;
cin >> n;
ll ans = 0;
multimap<ll, ll> base;
for (int i = 0; i < n; i++)
{
cin >> nb;
if (base.upper_bound(nb) == base.end())
{
base.insert({nb, i + 1});
}
else
{
base.erase(base.upper_bound(nb));
base.insert({nb, i + 1});
}
}
cout << base.size() << endl;
}
int main(void)
{
ll t;
t = 1;
while (t--)
solve();
}