結果

問題 No.649 ここでちょっとQK!
ユーザー ikdikd
提出日時 2018-03-20 19:48:00
言語 D
(dmd 2.109.1)
結果
AC  
実行時間 292 ms / 3,000 ms
コード長 1,759 bytes
コンパイル時間 938 ms
コンパイル使用メモリ 112,936 KB
実行使用メモリ 37,996 KB
最終ジャッジ日時 2024-06-13 00:07:07
合計ジャッジ時間 6,670 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 150 ms
6,944 KB
testcase_04 AC 255 ms
36,772 KB
testcase_05 AC 260 ms
37,996 KB
testcase_06 AC 177 ms
7,764 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 139 ms
15,788 KB
testcase_13 AC 129 ms
14,120 KB
testcase_14 AC 130 ms
16,324 KB
testcase_15 AC 131 ms
14,760 KB
testcase_16 AC 133 ms
14,392 KB
testcase_17 AC 146 ms
15,432 KB
testcase_18 AC 176 ms
31,548 KB
testcase_19 AC 190 ms
32,404 KB
testcase_20 AC 200 ms
31,808 KB
testcase_21 AC 213 ms
32,608 KB
testcase_22 AC 239 ms
33,676 KB
testcase_23 AC 245 ms
33,272 KB
testcase_24 AC 261 ms
34,396 KB
testcase_25 AC 268 ms
34,824 KB
testcase_26 AC 292 ms
34,564 KB
testcase_27 AC 3 ms
6,940 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 3 ms
6,944 KB
testcase_30 AC 106 ms
12,704 KB
testcase_31 AC 109 ms
12,576 KB
testcase_32 AC 1 ms
6,944 KB
testcase_33 AC 1 ms
6,944 KB
testcase_34 AC 1 ms
6,940 KB
testcase_35 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

void main(){
  import std.stdio, std.string, std.conv, std.algorithm;
  import std.typecons;

  int n, k; rd(n, k);
  alias Query=Tuple!(int, "t", long, "v");
  auto que=new Query[](n);
  foreach(i; 0..n){
    auto args=readln.split.to!(long[]);
    if(args.length==1) que[i].t=2;
    else que[i].t=1, que[i].v=args[$-1];
  }

  int[long] compression(Query[] q){
    long[] vs;
    foreach(e; q)if(e.t==1) vs~=e.v;
    sort(vs);
    int[long] ret;
    foreach(v; vs){
      if(v in ret) continue;
      ret[v]=to!(int)(ret.length);
    }
    return ret;
  }
  long[int] make_inv(int[long] map){
    long[int] ret;
    foreach(v; map.keys){
      ret[map[v]]=v;
    }
    return ret;
  }

  auto map=compression(que), inv=make_inv(map);
  auto tree=new SquareRootDecomposition(map.length.to!(int));
  foreach(q; que){
    if(q.t==1){
      tree.add(map[q.v], 1);
    }else{
      auto v=tree.find(k);
      if(v>=0){
        tree.add(v, -1);
        writeln(inv[v]);
      }else{
        writeln(-1);
      }
    }
  }
}

class SquareRootDecomposition{
  int D=1;
  int[] val, bucsum;
  this(int n){
    while(D*D<n) D++;
    val.length=(D*D);
    bucsum.length=D;
  }
  void add(int i, int x){
    val[i]+=x;
    bucsum[i/D]+=x;
  }
  int find(int x){
    int s=0, ret=-1;
    loop:foreach(int i; 0..D){
      if(s+bucsum[i]>=x){
        foreach(int j; 0..D){
          if(s+val[i*D+j]>=x){
            ret=i*D+j;
            break loop;
          }else{
            s+=val[i*D+j];
          }
        }
      }else{
        s+=bucsum[i];
      }
    }
    return ret;
  }
}

void rd(Query...)(ref Query x){
  import std.stdio, std.string, std.conv;
  auto l=readln.split;
  assert(l.length==x.length);
  foreach(i, ref e; x){
    e=l[i].to!(typeof(e));
  }
}
0