結果
問題 | No.1921 Range LthKth Query |
ユーザー | 👑 Nachia |
提出日時 | 2024-05-07 02:26:58 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 155 ms / 4,000 ms |
コード長 | 1,515 bytes |
コンパイル時間 | 1,001 ms |
コンパイル使用メモリ | 84,320 KB |
実行使用メモリ | 15,616 KB |
最終ジャッジ日時 | 2024-05-07 02:27:05 |
合計ジャッジ時間 | 6,598 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 9 ms
6,944 KB |
testcase_12 | AC | 9 ms
6,944 KB |
testcase_13 | AC | 101 ms
15,616 KB |
testcase_14 | AC | 105 ms
15,616 KB |
testcase_15 | AC | 145 ms
15,616 KB |
testcase_16 | AC | 125 ms
15,488 KB |
testcase_17 | AC | 128 ms
15,616 KB |
testcase_18 | AC | 155 ms
15,616 KB |
testcase_19 | AC | 135 ms
15,616 KB |
testcase_20 | AC | 99 ms
15,616 KB |
testcase_21 | AC | 90 ms
15,488 KB |
testcase_22 | AC | 137 ms
15,488 KB |
evil_01.txt | AC | 337 ms
52,352 KB |
evil_02.txt | AC | 369 ms
52,352 KB |
evil_03.txt | AC | 308 ms
52,352 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #define rep(i,n) for(int i=0; i<int(n); i++) #define repr(i,n) for(int i=int(n)-1; i>=0; i--) using namespace std; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int N, K, L; cin >> N >> K >> L; vector<int> A(N); rep(i,N) cin >> A[i]; vector<int> I(N); rep(i,N) I[i] = i; sort(I.begin(), I.end(), [&](int l, int r){ return A[l] < A[r]; }); vector<vector<int>> ans(N+1); rep(i,N+1) ans[i].assign(i,-1); vector<int> cnt0(N+1); vector<int> borderRtoL(N+1,0); vector<int> borderLtoR(N+1,N); vector<int> borderFull(N+1,0); vector<int> sumRtoL(N+2, 0); auto query = [&](int l, int r) -> int { if(cnt0[r] - cnt0[l] < K) return 0; int l0 = borderRtoL[r] - 1; int r0 = borderLtoR[l] + 1; int c = 0; c += (sumRtoL[r+1] - sumRtoL[r0]) - (r+1-r0) * l; return c; }; rep(i,N){ int p = I[i]; for(int j=p+1; j<=N; j++) cnt0[j]++; for(int r=1; r<=N; r++) while(cnt0[r] - cnt0[borderRtoL[r]] >= K) borderRtoL[r]++; for(int l=0; l<=N; l++) while(cnt0[borderLtoR[l]] - cnt0[l] >= K) borderLtoR[l]--; rep(j,N+1) sumRtoL[j+1] = sumRtoL[j] + borderRtoL[j]; for(int r=0; r<=N; r++) while(query(borderFull[r],r) >= L){ ans[r][borderFull[r]++] = i; } } int Q; cin >> Q; rep(qi,Q){ int l,r; cin >> l >> r; l--; cout << A[I[ans[r][l]]] << '\n'; } return 0; }