結果

問題 No.1921 Range LthKth Query
ユーザー souta-1326souta-1326
提出日時 2022-05-06 22:38:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 497 ms / 4,000 ms
コード長 962 bytes
コンパイル時間 2,298 ms
コンパイル使用メモリ 205,980 KB
実行使用メモリ 97,064 KB
最終ジャッジ日時 2024-07-06 00:01:11
合計ジャッジ時間 9,281 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 4 ms
7,932 KB
testcase_10 AC 4 ms
8,188 KB
testcase_11 AC 25 ms
17,732 KB
testcase_12 AC 17 ms
31,548 KB
testcase_13 AC 333 ms
96,892 KB
testcase_14 AC 190 ms
97,064 KB
testcase_15 AC 497 ms
96,672 KB
testcase_16 AC 328 ms
95,848 KB
testcase_17 AC 437 ms
96,200 KB
testcase_18 AC 292 ms
96,376 KB
testcase_19 AC 323 ms
96,916 KB
testcase_20 AC 184 ms
96,280 KB
testcase_21 AC 169 ms
96,428 KB
testcase_22 AC 273 ms
96,548 KB
evil_01.txt AC 768 ms
198,796 KB
evil_02.txt AC 775 ms
198,724 KB
evil_03.txt AC 428 ms
198,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
using namespace std;
constexpr int MAX_N = 5000;
int A[MAX_N];
int cnt[MAX_N+1][MAX_N+1];
int cnt_rp[MAX_N+1][MAX_N+1];
int rp[MAX_N+1];
int main(){
  cin.tie(0);ios::sync_with_stdio(false);
  int N,K,L;cin >> N >> K >> L;
  for(int i=0;i<N;i++) cin >> A[i];
  for(int i=1;i<=N;i++){
    int k = 0;
    for(int j=0;j<N;j++){
      rp[j+1] = rp[j]+(A[j]<=i);
      while(k < N && rp[j+1]-rp[k] >= K) k++;
      cnt[i][j+1] = k;
      cnt_rp[i][j+1] = cnt_rp[i][j]+k;
    }
  }
  int Q;cin >> Q;
  while(Q--){
    int l,r;cin >> l >> r;
    int ans_lef = 0,ans_rig = N;
    while(ans_rig - ans_lef > 1){
      int mid = (ans_lef+ans_rig)/2;
      int cnt_itr = upper_bound(cnt[mid]+l,cnt[mid]+r+1,l-1)-cnt[mid];
      (cnt_rp[mid][r]-cnt_rp[mid][cnt_itr-1]-(r-cnt_itr+1)*(l-1) >= L ? ans_rig:ans_lef) = mid;
    }
    cout << ans_rig << "\n";
  }
}
0