結果

問題 No.649 ここでちょっとQK!
ユーザー te-shte-sh
提出日時 2018-02-13 17:54:20
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 186 ms / 3,000 ms
コード長 2,033 bytes
コンパイル時間 1,844 ms
コンパイル使用メモリ 162,440 KB
実行使用メモリ 26,176 KB
最終ジャッジ日時 2024-06-12 23:53:53
合計ジャッジ時間 5,865 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 105 ms
6,940 KB
testcase_04 AC 147 ms
25,928 KB
testcase_05 AC 152 ms
26,176 KB
testcase_06 AC 92 ms
6,944 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 86 ms
10,592 KB
testcase_13 AC 89 ms
11,000 KB
testcase_14 AC 87 ms
10,036 KB
testcase_15 AC 88 ms
10,004 KB
testcase_16 AC 80 ms
9,948 KB
testcase_17 AC 95 ms
10,704 KB
testcase_18 AC 107 ms
21,004 KB
testcase_19 AC 120 ms
20,472 KB
testcase_20 AC 124 ms
21,116 KB
testcase_21 AC 134 ms
21,352 KB
testcase_22 AC 144 ms
22,468 KB
testcase_23 AC 155 ms
23,044 KB
testcase_24 AC 168 ms
24,464 KB
testcase_25 AC 180 ms
25,324 KB
testcase_26 AC 186 ms
24,312 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 67 ms
9,232 KB
testcase_31 AC 65 ms
9,400 KB
testcase_32 AC 1 ms
6,944 KB
testcase_33 AC 1 ms
6,940 KB
testcase_34 AC 1 ms
6,944 KB
testcase_35 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.d(31): Deprecation: foreach: loop index implicitly converted from `size_t` to `int`

ソースコード

diff #

import std.algorithm, std.conv, std.range, std.stdio, std.string;
import std.container; // SList, DList, BinaryHeap
import std.typecons;  // Tuple, Nullable, BigFlags

void readV(T...)(ref T t){auto r=readln.splitter;foreach(ref v;t){v=r.front.to!(typeof(v));r.popFront;}}
T[] readArray(T)(size_t n){auto a=new T[](n),r=readln.splitter;foreach(ref v;a){v=r.front.to!T;r.popFront;}return a;}
T[] readArrayM(T)(size_t n){auto a=new T[](n);foreach(ref v;a)v=readln.chomp.to!T;return a;}

void main()
{
  auto rbt = redBlackTree!(true, long)();
  int q, k; readV(q, k);
  auto v = new long[](q);
  foreach (i; 0..q) {
    auto rd = readln.splitter;
    auto t = rd.front.to!int; rd.popFront();
    switch (t) {
    case 1:
      v[i] = rd.front.to!long;
      break;
    case 2:
      v[i] = -1;
      break;
    default:
      assert(0);
    }
  }

  auto u = v.dup.sort.uniq.array, n = u.length.to!int;
  int[long] buf;
  foreach (int i, ui; u) buf[ui] = i;

  auto bt = BiTree!int(n);
  foreach (vi; v) {
    if (vi != -1) {
      ++bt[buf[vi]];
    } else {
      if (bt[0..$] < k) {
        writeln(-1);
      } else {
        auto bs = iota(0, n).map!(x => tuple(x, bt[0..x])).assumeSorted!"a[1] < b[1]";
        auto r = bs.lowerBound(tuple(0, k)).back[0];
        writeln(u[r]);
        --bt[r];
      }
    }
  }
}

struct BiTree(T)
{
  const size_t n;
  T[] buf;

  this(size_t n)
  {
    this.n = n;
    this.buf = new T[](n+1);
  }

  void opIndexOpAssign(string op)(T val, size_t i) if (op == "+" || op == "-")
  {
    ++i;
    for (; i <= n; i += i & -i) mixin("buf[i] " ~ op ~ "= val;");
  }

  void opIndexUnary(string op)(size_t i) if (op == "++" || op == "--")
  {
    ++i;
    for (; i <= n; i += i & -i) mixin("buf[i]" ~ op ~ ";");
  }

  pure T opSlice(size_t r, size_t l) { return get(l) - get(r); }
  pure T opIndex(size_t i) { return opSlice(i, i+1); }
  pure size_t opDollar() { return n; }

private:

  pure T get(size_t i)
  {
    auto s = T(0);
    for (; i > 0; i -= i & -i) s += buf[i];
    return s;
  }
}
0