Submission #677843

#TimeUsernameProblemLanguageResultExecution timeMemory
677843TigryonochekkMoney (IZhO17_money)C++17
45 / 100
1590 ms2040 KiB
#include <iostream>
#include <algorithm>
#include <cmath>
#include <map>
#include <set>
#include <string>
#include <vector>
using namespace std;
#define ll long long
#define ld long double
#define pii pair<int, int>

const int N = 1e6 + 2;

int n;
int a[N];

int main() {
    cin >> n;
    for (int i = 0; i < n; i++) {
        cin >> a[i];
    }
    int ans = n;
    int cl = 1;
    for (int i = 0; i < n - 1; i++) {
        if (a[i] > a[i + 1]) {
            ans -= i - cl;
            cl = i + 1;
            sort(a, a + cl);
            continue;
        }
        int x = upper_bound(a, a + cl, a[cl]) - a;
        int y = lower_bound(a, a + cl, a[i + 1]) - a;
        if(x < cl && x < y) {
            ans -= i - cl;
            cl = i + 1;
            sort(a, a + cl);
        }
    }
    ans -= (n - cl);
    cout << ans << endl;
    return 0;
}
/*
6
3 6 4 5 1 2

6
1 2 2 3 4 5

4
4 1 4 5
*/
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...