Submission details
Task:Kyselyt
Sender:sharph2
Submission time:2025-10-18 10:20:20 +0300
Language:C++ (C++17)
Status:READY
Result:10
Feedback
groupverdictscore
#1ACCEPTED10
#20
#30
#40
Test results
testverdicttimegroup
#1ACCEPTED0.00 s1, 2, 3, 4details
#2ACCEPTED0.00 s1, 2, 3, 4details
#3ACCEPTED0.00 s1, 3, 4details
#4--2, 3, 4details
#5--2, 3, 4details
#6--2, 3, 4details
#7--3, 4details
#8--4details
#9--4details
#10--4details
#11--3, 4details
#12--4details
#13ACCEPTED0.08 s3, 4details
#14ACCEPTED0.17 s4details
#15ACCEPTED0.16 s4details
#16ACCEPTED0.54 s4details

Code

#include <algorithm>
#include <iostream>
#include <set>
#include <tuple>
#include <map>
#include <vector>

using namespace std;

struct Kysely {
    int i;
    int a;
    int b;
    int res;
};

constexpr int MaxN = 1 << 18;
pair<int, int> spuu[2 * MaxN];

int N;

void muuta(int v, int d) {
    v += N;
    spuu[v].first += d;
    v >>= 1;
    while(v > 0) {
        spuu[v] = max(spuu[2 * v], spuu[2 * v + 1]);
        v >>= 1;
    }
}

int main() {
    cin.sync_with_stdio(false);
    cin.tie(nullptr);

    int n, q;
    cin >> n >> q;

    N = 1;
    while(N < n) {
        N *= 2;
    }
    for(int i = 0; i < N; ++i) {
        spuu[N + i] = {0, i};
    }

    vector<int> taul(n);
    for(int& x : taul) {
        cin >> x;
    }

    vector<Kysely> kyselyt(q);
    for(int i = 0; i < q; ++i) {
        Kysely& kys = kyselyt[i];
        kys.i = i;
        cin >> kys.a >> kys.b;
        --kys.a;
    }

    sort(kyselyt.begin(), kyselyt.end(), [&](const Kysely& x, const Kysely& y) {
        constexpr int siirto = 7;
        return make_pair(x.a >> siirto, x.b) < make_pair(y.a >> siirto, y.b);
    });

    vector<int> pura = taul;
    sort(pura.begin(), pura.end());
    pura.erase(unique(pura.begin(), pura.end()), pura.end());

    vector<int> taulPakkaa(n);
    for(int i = 0; i < n; ++i) {
        taulPakkaa[i] = (int)(lower_bound(pura.begin(), pura.end(), taul[i]) - pura.begin());
    }

    int a = 0;
    int b = 0;
    for(Kysely& kys : kyselyt) {
        while(kys.b > b) {
            muuta(taulPakkaa[b], 1);
            ++b;
        }
        while(kys.a < a) {
            --a;
            muuta(taulPakkaa[a], 1);
        }
        while(kys.b < b) {
            --b;
            muuta(taulPakkaa[b], -1);
        }
        while(kys.a > a) {
            muuta(taulPakkaa[a], -1);
            ++a;
        }
        if(2 * spuu[1].first > b - a) {
            kys.res = pura[spuu[1].second];
        } else {
            kys.res = -1;
        }
    }
    
    sort(kyselyt.begin(), kyselyt.end(), [&](const Kysely& x, const Kysely& y) {
        return x.i < y.i;
    });

    for(Kysely& kys : kyselyt) {
        cout << kys.res << "\n";
    }

    return 0;
}

Test details

Test 1

Group: 1, 2, 3, 4

Verdict: ACCEPTED

input
100 100
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

correct output
1
1
1
1
1
...

user output
1
1
1
1
1
...

Test 2

Group: 1, 2, 3, 4

Verdict: ACCEPTED

input
100 100
2 1 2 2 1 2 2 2 1 2 2 1 1 1 1 ...

correct output
2
1
1
2
1
...

user output
2
1
1
2
1
...

Test 3

Group: 1, 3, 4

Verdict: ACCEPTED

input
100 100
5 19 44 88 14 79 50 44 14 99 7...

correct output
-1
-1
-1
-1
-1
...

user output
-1
-1
-1
-1
-1
...

Test 4

Group: 2, 3, 4

Verdict:

input
100000 100000
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

correct output
1
1
1
1
1
...

user output
(empty)

Test 5

Group: 2, 3, 4

Verdict:

input
100000 100000
1 1 1 2 1 2 1 1 2 1 1 1 1 2 2 ...

correct output
1
1
2
1
1
...

user output
(empty)

Test 6

Group: 2, 3, 4

Verdict:

input
100000 100000
8 2 6 1 10 4 9 7 8 10 4 2 8 2 ...

correct output
-1
-1
-1
-1
-1
...

user output
(empty)

Test 7

Group: 3, 4

Verdict:

input
100000 100000
141307 493258596 365539511 222...

correct output
-1
-1
-1
-1
-1
...

user output
(empty)

Test 8

Group: 4

Verdict:

input
200000 200000
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

correct output
1
1
1
1
1
...

user output
(empty)

Test 9

Group: 4

Verdict:

input
200000 200000
1 2 2 2 1 2 2 1 1 1 1 1 1 1 1 ...

correct output
2
2
2
2
2
...

user output
(empty)

Test 10

Group: 4

Verdict:

input
200000 200000
286470749 280175209 741317063 ...

correct output
-1
-1
-1
-1
-1
...

user output
(empty)

Test 11

Group: 3, 4

Verdict:

input
100000 100000
613084013 1000000000 411999902...

correct output
-1
-1
-1
-1
1000000000
...

user output
(empty)

Test 12

Group: 4

Verdict:

input
200000 200000
613084013 1000000000 411999902...

correct output
1000000000
1000000000
-1
1000000000
-1
...

user output
(empty)

Test 13

Group: 3, 4

Verdict: ACCEPTED

input
100000 100000
663307073 663307073 663307073 ...

correct output
329574367
965067805
768744535
691214891
21873594
...

user output
329574367
965067805
768744535
691214891
21873594
...

Test 14

Group: 4

Verdict: ACCEPTED

input
200000 200000
663307073 663307073 663307073 ...

correct output
107596959
249558965
679275202
760593154
725418770
...

user output
107596959
249558965
679275202
760593154
725418770
...

Test 15

Group: 4

Verdict: ACCEPTED

input
200000 200000
663307073 663307073 663307073 ...

correct output
211070558
49212342
651109313
264549124
651109313
...

user output
211070558
49212342
651109313
264549124
651109313
...

Test 16

Group: 4

Verdict: ACCEPTED

input
200000 200000
2 2 2 1 2 1 1 2 2 1 1 1 1 2 1 ...

correct output
1
2
1
1
1
...

user output
1
2
1
1
1
...