/ SeriousOJ /

Record Detail

Time Exceeded


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 532.0 KiB
#2 Accepted 1ms 532.0 KiB
#3 Accepted 1141ms 10.75 MiB
#4 Accepted 1ms 532.0 KiB
#5 Accepted 1ms 532.0 KiB
#6 Wrong Answer 1072ms 10.801 MiB
#7 Accepted 1040ms 10.855 MiB
#8 Accepted 840ms 11.02 MiB
#9 Accepted 2076ms 35.512 MiB
#10 Accepted 2481ms 14.996 MiB
#11 Time Exceeded ≥2601ms ≥35.395 MiB

Code

#include<bits/stdc++.h>
#define ll long long
#define yes cout << "YES" << endl
#define no cout << "NO" << endl
#define testing cout << "testing ";
#define mod 1000000007
#define optimize() ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
using namespace std;

#include<ext/pb_ds/assoc_container.hpp>
#include<ext/pb_ds/tree_policy.hpp>
using namespace __gnu_pbds;

template<class T> using oset=tree<T,null_type,less<T>,rb_tree_tag,tree_order_statistics_node_update>;

void do_the_honour() {
    int n; cin >> n;
    int k; cin >> k;

    map<int, oset<int>> mp;
    int a[n+1];
    for (int i = 1; i <= n; i++) {
        int x; cin >> x;
        mp[x].insert(i);
        a[i] = x;
    }

    while (k--) {
        int l, r; cin >> l >> r;
        int sz = r - l + 1;
        int ans = INT_MAX;


        for (int i = 0; i <= 20; i++) {
            int id = l + rand() % sz;

            int cnt = mp[a[id]].order_of_key(r + 1) - mp[a[id]].order_of_key(l);
            if (cnt > (r - l + 1) / 3) ans = min(ans, a[id]);
        }

        if (ans == INT_MAX) cout << -1 << endl;
        else cout << ans << endl;
    }
}

int main() {
    optimize();
    int t = 1;
    for (int z = 1; z <= t; z++) {
        do_the_honour();
    }
    return 0;
}

Information

Submit By
Type
Submission
Problem
P1103 The Secret Garden of Numbers
Language
C++17 (G++ 13.2.0)
Submit At
2024-11-05 17:32:35
Judged At
2024-11-05 17:32:35
Judged By
Score
45
Total Time
≥2601ms
Peak Memory
≥35.512 MiB