結果

問題 No.649 ここでちょっとQK!
ユーザー takeya_okinotakeya_okino
提出日時 2019-07-11 23:06:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,375 ms / 3,000 ms
コード長 2,253 bytes
コンパイル時間 3,197 ms
コンパイル使用メモリ 87,892 KB
実行使用メモリ 102,716 KB
最終ジャッジ日時 2024-11-08 19:06:20
合計ジャッジ時間 46,310 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
40,428 KB
testcase_01 AC 129 ms
41,372 KB
testcase_02 AC 118 ms
40,288 KB
testcase_03 AC 1,555 ms
65,716 KB
testcase_04 AC 1,503 ms
99,216 KB
testcase_05 AC 1,444 ms
99,080 KB
testcase_06 AC 1,114 ms
65,036 KB
testcase_07 AC 114 ms
40,236 KB
testcase_08 AC 128 ms
41,332 KB
testcase_09 AC 129 ms
41,296 KB
testcase_10 AC 128 ms
41,644 KB
testcase_11 AC 129 ms
41,292 KB
testcase_12 AC 1,502 ms
77,460 KB
testcase_13 AC 1,576 ms
78,448 KB
testcase_14 AC 1,507 ms
77,892 KB
testcase_15 AC 1,499 ms
77,472 KB
testcase_16 AC 1,452 ms
77,644 KB
testcase_17 AC 1,599 ms
79,224 KB
testcase_18 AC 1,649 ms
82,892 KB
testcase_19 AC 1,786 ms
86,012 KB
testcase_20 AC 1,851 ms
83,980 KB
testcase_21 AC 2,051 ms
93,688 KB
testcase_22 AC 2,057 ms
97,180 KB
testcase_23 AC 2,168 ms
98,892 KB
testcase_24 AC 2,150 ms
100,600 KB
testcase_25 AC 2,226 ms
101,268 KB
testcase_26 AC 2,375 ms
102,716 KB
testcase_27 AC 208 ms
43,700 KB
testcase_28 AC 208 ms
44,000 KB
testcase_29 AC 209 ms
43,712 KB
testcase_30 AC 1,157 ms
70,932 KB
testcase_31 AC 1,190 ms
70,400 KB
testcase_32 AC 127 ms
41,348 KB
testcase_33 AC 122 ms
41,452 KB
testcase_34 AC 125 ms
41,176 KB
testcase_35 AC 123 ms
41,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  static int N;
  static int[] dat;

  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int q = sc.nextInt();
    int k = sc.nextInt();
    HashSet<Long> set = new HashSet<Long>();
    ArrayList<Long> list = new ArrayList<Long>();
    long[][] que = new long[q][2];
    for(int i = 0; i < q; i++) {
      int s1 = sc.nextInt();
      if(s1 == 1) {
        long s2 = sc.nextLong();
        que[i][0] = 1;
        que[i][1] = s2;
        set.add(s2);
      } else {
        que[i][0] = 2;
      }
    }
    for(Iterator<Long> i = set.iterator(); i.hasNext();) {
      list.add(i.next());
    }
    Collections.sort(list);
    long[] ret = new long[list.size()];
    HashMap<Long, Integer> map = new HashMap<Long, Integer>();
    for(int i = 0; i < list.size(); i++) {
      long r = list.get(i);
      map.put(r, i);
      ret[i] = r;
    }
    init(list.size());
    for(int i = 0; i < q; i++) {
      if(que[i][0] == 1) {
        update(map.get(que[i][1]), 1);
      } else {
        int l = 0;
        int r = list.size();
        int ans = 0;
        if(query(0, N, 0, 0, N) >= k) {
        while(l < r) {
          int med = (l + r) / 2;
          int sum = query(0, med + 1, 0, 0, N);
          if(sum == k) {
            ans = med;
            r = med;
          } else if(sum > k) {
            ans = med;
            r = med;
          } else {
            l = med + 1;
          }
        }
        update(ans, -1);
        System.out.println(ret[ans]);
        } else {
          System.out.println(-1);
        }
      }
    }
  }

  public static void init(int n_) {
    int n = 1;
    while(n < n_) {
      n *= 2;
    }
    N = n;
    dat = new int[2 * N - 1];
  }

  public static void update(int k, int x) {
    int a = k + N - 1;
    dat[a] += x;
    while(a > 0) {
      a = (a - 1) / 2;
      dat[a] = dat[2 * a + 1] + dat[2 * a + 2]; 
    }
  }

  public static int query(int a, int b, int k, int l, int r) {
    if((r <= a) || (l >= b)) return 0;
    if((a <= l) && (r <= b)) {
      return dat[k];
    } else {
      int vl = query(a, b, 2 * k + 1, l, (l + r) / 2);
      int vr = query(a, b, 2 * k + 2, (l + r) / 2, r);
      return vl + vr;
    }
  }
}
0