| # | Time | Username | Problem | Language | Result | Execution time | Memory | 
|---|---|---|---|---|---|---|---|
| 109141 | Frankenween | Poklon (COCI17_poklon) | C++17 | 1420 ms | 37340 KiB | 
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#ifdef LOCAL
#define _GLIBCXX_DEBUG
#endif
#include <bits/stdc++.h>
#define ull unsigned long long
#define pll pair<ll, ll>
#define mp make_pair
#define ll long long
#define pb push_back
#define deb(x) cout << #x << " = " << x << endl
#define all(x) x.begin(), x.end()
#define ld long double
const ll mod1 = (ll)1e9 + 7;
const ll mod2 = (ll)1e9 + 9;
const ll BASE = 47;
const ll inf = (ll)1e18;
const long double e = 2.718281828459;
const long double pi = 3.141592653;
const ld EPS = 1e-9;
using namespace std;
template <class T>
istream& operator>>(istream &in, vector<T> &arr) {
    for (T &cnt : arr) {
        in >> cnt;
    }
    return in;
};
struct seg {
    ll l, r, i;
};
void solve() {
    ll n, q;
    cin >> n >> q;
    vector<ll> arr(n);
    cin >> arr;
    vector<ll> sarr = arr;
    sort(all(sarr));
    map<ll, ll> new_ind;
    ll cnt = 0;
    for (int i = 0; i < n; i++) {
        if (i == 0 or sarr[i] != sarr[i - 1]) {
            new_ind[sarr[i]] = cnt;
            cnt++;
        }
    }
    for (int i = 0; i < n; i++) {
        arr[i] = new_ind[arr[i]];
    }
    vector<seg> queries(q);
    for (int i = 0; i < q; i++) {
        cin >> queries[i].l >> queries[i].r;
        queries[i].l--;
        queries[i].r--;
        queries[i].i = i;
    }
    ll K = sqrt(n) + 1;
    sort(all(queries), [&](seg a, seg b) {
        if (a.l / K != b.l / K) {
            return a.l / K < b.l / K;
        }
        return a.r < b.r;
    });
    vector<ll> have(n), res(q);
    ll ans = 0;
    ll l = 0, r = -1;
    for (int i = 0; i < q; i++) {
        while (r < queries[i].r) {
            r++;
            have[arr[r]]++;
            if (have[arr[r]] == 2) {
                ans++;
            }
            if (have[arr[r]] == 3) {
                ans--;
            }
        }
        while (l > queries[i].l) {
            l--;
            have[arr[l]]++;
            if (have[arr[l]] == 2) {
                ans++;
            }
            if (have[arr[l]] == 3) {
                ans--;
            }
        }
        while (r > queries[i].r) {
            have[arr[r]]--;
            if (have[arr[r]] == 1) {
                ans--;
            }
            if (have[arr[r]] == 2) {
                ans++;
            }
            r--;
        }
        while (l < queries[i].l) {
            have[arr[l]]--;
            if (have[arr[l]] == 1) {
                ans--;
            }
            if (have[arr[l]] == 2) {
                ans++;
            }
            l++;
        }
        res[queries[i].i] = ans;
    }
    for (auto i : res) {
        cout << i << "\n";
    }
}
int main() {
#ifndef LOCAL
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
#else
    freopen("input.txt", "r", stdin);
    freopen("output.txt", "w", stdout);
#endif
    cout.precision(30);
    ll seed = time(0);
    //cerr << "Seed: " << seed << "\n";
    srand(seed);
    solve();
    return 0;
}
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
