Submission #910397

#TimeUsernameProblemLanguageResultExecution timeMemory
910397vjudge1Money (IZhO17_money)C++17
100 / 100
1214 ms62236 KiB
// #pragma GCC optimize("O3,unroll-loops")
// #pragma GCC target("avx2,bmi,bmi2,popcnt,lzcnt")

#include <bits/stdc++.h>
 
#define int long long 
#define pb push_back
#define ui unsigned int
#define ld long double
#define pl pair<long long int,  long long int>
#define boost ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
#define ff first    
#define ss second
#define sz size()
#define all(x) x.begin(), x.end()
 
using namespace std;
 
const int maxn = 2e5 + 11;
const int inf = 1e17 + 1;
const int mod = 1e9 + 7;
// const int mod = 998244353;
const int dx[] = {-1, 0, 0, 1, -1, -1, 1, 1};
const int dy[] = {0, -1, 1 , 0, -1, 1, -1, 1};
const double eps = 1e-10;

void solve() {
    int n;

    cin >> n;

    int a[n + 1];

    for(int i = 1; i <= n; i++) {
        cin >> a[ i ];
    }
    set<int> st;
    st.insert(1e9);
    int ans = 0;

    for(int i = 1; i <= n;) {
        int mx = *st.upper_bound(a[ i ]);
        st.insert(a[ i ]);

        while(i + 1 <= n && a[ i ] <= a[i + 1] && a[i + 1] <= mx) {
            i++;
            st.insert(a[ i ]);
        }
        i++;
        ans++;
    }
    cout << ans;
}   
    
signed main() {
    // freopen("sum.in", "r", stdin); 
    // freopen("sum.out", "w", stdout);
 
    boost;      

    int tt = 1;

    // cin >> tt;

    for(int i = 1; i <= tt; i++) {
        // cout << "Case " << i << ":\n";
        solve();    
    }           
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...