結果

問題 No.649 ここでちょっとQK!
ユーザー ShibuyapShibuyap
提出日時 2020-08-03 06:12:23
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 540 ms / 3,000 ms
コード長 1,726 bytes
コンパイル時間 2,240 ms
コンパイル使用メモリ 205,484 KB
最終ジャッジ日時 2025-01-12 13:35:33
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 318 ms
6,816 KB
testcase_04 AC 369 ms
30,208 KB
testcase_05 AC 367 ms
30,080 KB
testcase_06 AC 209 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 1 ms
6,820 KB
testcase_12 AC 234 ms
15,616 KB
testcase_13 AC 234 ms
15,616 KB
testcase_14 AC 234 ms
15,616 KB
testcase_15 AC 228 ms
15,616 KB
testcase_16 AC 230 ms
15,616 KB
testcase_17 AC 265 ms
16,768 KB
testcase_18 AC 289 ms
18,048 KB
testcase_19 AC 320 ms
19,200 KB
testcase_20 AC 366 ms
20,352 KB
testcase_21 AC 391 ms
21,632 KB
testcase_22 AC 421 ms
22,784 KB
testcase_23 AC 440 ms
24,192 KB
testcase_24 AC 478 ms
25,344 KB
testcase_25 AC 499 ms
26,368 KB
testcase_26 AC 540 ms
27,776 KB
testcase_27 AC 3 ms
6,816 KB
testcase_28 AC 3 ms
6,820 KB
testcase_29 AC 2 ms
6,816 KB
testcase_30 AC 165 ms
11,904 KB
testcase_31 AC 154 ms
11,904 KB
testcase_32 AC 2 ms
6,820 KB
testcase_33 AC 2 ms
6,816 KB
testcase_34 AC 2 ms
6,816 KB
testcase_35 AC 1 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); ++i)
#define srep(i,s,t) for (int i = s; i < t; ++i)
#define drep(i,n) for(int i = (n)-1; i >= 0; --i)
using namespace std;
typedef long long int ll;
typedef pair<int,int> P;
#define yn {puts("Yes");}else{puts("No");}

const int MAX_N = 500005;
int bit[MAX_N+1];
int nn = MAX_N; // 1-index

void adds(int a, int w){
    for(int x = a; x <= nn; x += x & -x) bit[x] += w;
}
int sums(int a){ // bit[1,a]の和を返す.
    int ret = 0;
    for(int x = a; x > 0; x -= x & -x) ret += bit[x];  
    return ret;
}

int main() {
    int Q,K;
    cin >> Q >> K;
    int a[Q];
    ll b[Q] = {};
    set<ll> se;
    rep(i,Q){
        cin >> a[i];
        if(a[i] == 1){
            cin >> b[i];
            se.insert(b[i]);
        } 
    }

    int m = se.size();
    map<ll,int> mp;
    int cnt = 0;
    ll val[m+1] = {};
    for(auto x : se){
        cnt++;
        mp[x] = cnt;
        val[cnt] = x;
    }

    int now = 0;
    rep(i,Q){
        if(a[i] == 1){
            adds(mp[b[i]], 1);
            now++;
        }else{
            if(now < K){
                cout << -1 << endl;
                continue;
            }
            if(sums(1) >= K){
                cout << val[1] << endl;
                adds(1,-1);
                now--;
                continue;
            }
            int l = 1;
            int r = 200005;
            while(l+1<r){
                int mid = (l+r)/2;
                if(sums(mid)>=K){
                    r = mid;
                }else{
                    l = mid;
                }
            }
            cout << val[r] << endl;
            adds(r,-1);
            now--;
        }
    }

    return 0;
}
 
 

0