Submission #37374

#TimeUsernameProblemLanguageResultExecution timeMemory
37374HardNutMoney (IZhO17_money)C++14
45 / 100
1500 ms52784 KiB
#include <bits/stdc++.h>

using namespace std;

const int N = 1e6 + 5;

typedef long long ll;

int n, a[N], ans, lst;
set<pair<int, int>> st;
bool us;

int main() {
    scanf("%d", &n);
    for (int i = 1; i <= n; i++) {
        scanf("%d", &a[i]);
        if (lst == a[i]) {
            if (us)
                st.erase({a[i], i});
            else
                st.insert({a[i], i});
            continue;
        }
        st.insert({a[i], i});
        us = 0;
        lst = a[i];
        auto id = st.lower_bound({a[i], i});
        if (id == st.begin()) {
            ans++;
            continue;
        }
        id--;
        if ((*id).second == i - 1) {
            continue;
        }
        id = st.lower_bound({a[i], -1});
        if (id == st.begin()) {
            ans++;
            continue;
        }
        id--;
        if ((*id).second == i - 1) {
            us = 1;
            st.erase({a[i], i});
            continue;
        }
        ans++;
    }
    printf("%d", ans);
}
/**
6
1 5 2 5 5 6
**/

Compilation message (stderr)

money.cpp: In function 'int main()':
money.cpp:14:20: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d", &n);
                    ^
money.cpp:16:27: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         scanf("%d", &a[i]);
                           ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...