32742023-02-23 16:25:39rennRészekre (40)cpp17Accepted 40/4037ms5808 KiB
#include <bits/stdc++.h>

using namespace std;

int main()
{
    ios::sync_with_stdio(false);
    cin.tie(NULL);

    int n, akt, ki = 0;
    map<int, int, greater<>> aktiv;
    cin >> n;
    for(n;n;n--)
    {
        cin >> akt;
        auto it = aktiv.upper_bound(akt);
        if(it != aktiv.end()){
            it->second--;
            if(it->second == 0){
                aktiv.erase(it);
            }
        }
        aktiv[akt]++;
    }
    for(auto x : aktiv){
        ki += x.second;
    }
    cout << ki << "\n";
}
SubtaskSumTestVerdictTimeMemory
base40/40
1Accepted0/03ms1976 KiB
2Accepted0/037ms2340 KiB
3Accepted2/23ms2232 KiB
4Accepted2/23ms2316 KiB
5Accepted2/23ms2448 KiB
6Accepted3/33ms2688 KiB
7Accepted3/34ms3048 KiB
8Accepted3/34ms3288 KiB
9Accepted3/36ms3548 KiB
10Accepted3/317ms4480 KiB
11Accepted3/328ms5300 KiB
12Accepted3/335ms5704 KiB
13Accepted4/435ms5800 KiB
14Accepted4/435ms5808 KiB
15Accepted5/535ms5720 KiB