2 solutions

  • 1
    @ 2025-4-3 13:23:36
    #include <bits/stdc++.h>
    #define endl '\n'
    using namespace std;
    typedef pair<int, int> PII;
    using ll = long long;
    using ULL = unsigned long long;
    const int N = 1e7 + 5;
    
    int n, a[N];
    inline void solve() {
        cin >> n;
        for (int i = 1; i <= n; i++) cin >> a[i];
        int m; cin >> m;
        for (; m-- ;) {
            int l, r, k;
            cin >> l >> r >> k;
             vector<int> b;  
            b.reserve(r - l + 1);  
            for (int i = l; i <= r; i++) {
                b.push_back(a[i]);
            }
            nth_element(b.begin(), b.begin() + (k-1), b.end(), greater<int>());
            cout << b[k-1] << endl;
        }
    }
    
    int main() {
        ios::sync_with_stdio(0), cin.tie(0), cout.tie(0);
        int _ = 1;
        //int _; cin >> _;
        while (_--) solve();
        return 0;
    }
    

    Information

    ID
    1799
    Time
    1000ms
    Memory
    512MiB
    Difficulty
    7
    Tags
    # Submissions
    26
    Accepted
    8
    Uploaded By