結果

問題 No.610 区間賞(Section Award)
ユーザー te-shte-sh
提出日時 2017-12-11 11:05:05
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 1,049 bytes
コンパイル時間 803 ms
コンパイル使用メモリ 106,384 KB
実行使用メモリ 9,212 KB
最終ジャッジ日時 2024-06-12 22:58:31
合計ジャッジ時間 3,328 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 1 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 1 ms
6,944 KB
testcase_17 AC 1 ms
6,944 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 7 ms
6,944 KB
testcase_20 AC 33 ms
7,180 KB
testcase_21 AC 6 ms
6,944 KB
testcase_22 AC 23 ms
6,944 KB
testcase_23 AC 4 ms
6,944 KB
testcase_24 AC 10 ms
6,940 KB
testcase_25 AC 3 ms
6,944 KB
testcase_26 AC 15 ms
6,940 KB
testcase_27 AC 32 ms
7,196 KB
testcase_28 AC 30 ms
6,944 KB
testcase_29 AC 21 ms
6,944 KB
testcase_30 AC 26 ms
6,940 KB
testcase_31 AC 13 ms
6,940 KB
testcase_32 AC 30 ms
7,396 KB
testcase_33 AC 5 ms
6,940 KB
testcase_34 AC 34 ms
7,148 KB
testcase_35 AC 16 ms
6,944 KB
testcase_36 AC 32 ms
7,544 KB
testcase_37 AC 27 ms
6,944 KB
testcase_38 AC 8 ms
6,944 KB
testcase_39 AC 34 ms
7,088 KB
testcase_40 AC 34 ms
7,196 KB
testcase_41 AC 33 ms
7,288 KB
testcase_42 AC 33 ms
7,296 KB
testcase_43 AC 34 ms
7,296 KB
testcase_44 AC 67 ms
8,044 KB
testcase_45 AC 83 ms
9,212 KB
testcase_46 AC 80 ms
7,648 KB
testcase_47 AC 27 ms
7,832 KB
testcase_48 AC 25 ms
6,944 KB
testcase_49 AC 28 ms
8,928 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.d(10): Deprecation: foreach: loop index implicitly converted from `size_t` to `int`

ソースコード

diff #

import std.algorithm, std.conv, std.range, std.stdio, std.string;

void main()
{
  auto n = readln.chomp.to!int;
  auto a = readln.split.to!(int[]);
  auto b = readln.split.to!(int[]);

  auto c = new int[](n+1);
  foreach (int i, ai; a) c[ai] = i;

  foreach (ref bi; b) bi = c[bi];

  auto bt = BiTree!int(n);
  int[] r;

  foreach (bi; b) {
    if (bt[bi..$] == 0) r ~= bi;
    bt[bi] += 1;
  }

  foreach (ref ri; r) ri = a[ri];

  r.sort();

  foreach (ri; r) writeln(ri);
}

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)
  {
    ++i;
    for (; i <= n; i += i & -i)
      buf[i] += val;
  }

  pure T opSlice(size_t r, size_t l) const
  {
    return get(l) - get(r);
  }

  pure size_t opDollar() const { return n; }
  pure T opIndex(size_t i) const { return opSlice(i, i+1); }

private:

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