結果

問題 No.1921 Range LthKth Query
ユーザー tatyamtatyam
提出日時 2022-05-01 20:52:38
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,196 bytes
コンパイル時間 1,003 ms
コンパイル使用メモリ 89,748 KB
実行使用メモリ 10,140 KB
最終ジャッジ日時 2024-07-01 01:17:26
合計ジャッジ時間 7,772 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 7 ms
6,940 KB
testcase_11 AC 345 ms
6,940 KB
testcase_12 AC 63 ms
6,944 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
evil_01.txt -- -
evil_02.txt -- -
evil_03.txt -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cstdint>
#include <iostream>
#include <numeric>
#include <vector>

int main() {
    int n,k,L;
    std::cin >> n >> k >> L;
    std::vector<int> a(n);
    for(auto &val: a) {
        std::cin >> val;
    }
    auto solve = [&](int l, int r) -> int {
        int ok = n, ng = 0;
        while(std::abs(ok - ng) > 1) {
            int mid = (ok + ng)/2;
            int cnt = 0;
            int nl = l;
            int ret = 0;
            for(int i = l; i < r; i++) {
                if(a[i] <= mid) {
                    cnt++;
                }
                if(cnt < k) continue;
                if(cnt > k) {
                    while(a[nl] > mid) nl++;
                    if(a[nl] <= mid) {
                        cnt--;
                    }
                    nl++;
                }
                assert(cnt == k);
                while(a[nl] > mid) nl++;
                ret += nl-l+1;
            }
            if(ret >= L) ok = mid;
            else ng = mid;
        }
        return ok;
    };
    int q;
    std::cin >> q;
    while(q--) {
        int l,r;
        std::cin >> l >> r;
        l--;
        std::cout << solve(l, r) << '\n';
    }
}
0