結果

問題 No.318 学学学学学
ユーザー te-shte-sh
提出日時 2017-06-28 17:44:22
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 609 bytes
コンパイル時間 1,693 ms
コンパイル使用メモリ 155,680 KB
実行使用メモリ 11,628 KB
最終ジャッジ日時 2024-06-12 20:37:55
合計ジャッジ時間 5,359 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
6,816 KB
testcase_01 AC 16 ms
6,940 KB
testcase_02 AC 18 ms
6,940 KB
testcase_03 AC 12 ms
6,940 KB
testcase_04 AC 15 ms
6,944 KB
testcase_05 AC 84 ms
11,568 KB
testcase_06 AC 106 ms
9,860 KB
testcase_07 AC 100 ms
7,996 KB
testcase_08 AC 92 ms
7,376 KB
testcase_09 AC 84 ms
6,944 KB
testcase_10 AC 76 ms
6,940 KB
testcase_11 AC 82 ms
11,628 KB
testcase_12 AC 78 ms
8,504 KB
testcase_13 AC 76 ms
7,492 KB
testcase_14 AC 73 ms
7,328 KB
testcase_15 AC 68 ms
6,944 KB
testcase_16 AC 66 ms
6,940 KB
testcase_17 AC 86 ms
8,408 KB
testcase_18 AC 71 ms
8,164 KB
testcase_19 AC 87 ms
8,360 KB
testcase_20 AC 59 ms
6,940 KB
testcase_21 AC 1 ms
6,940 KB
testcase_22 AC 1 ms
6,944 KB
testcase_23 AC 1 ms
6,940 KB
testcase_24 AC 1 ms
6,940 KB
testcase_25 AC 1 ms
6,940 KB
testcase_26 AC 1 ms
6,940 KB
testcase_27 AC 1 ms
6,940 KB
testcase_28 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.algorithm, std.conv, std.range, std.stdio, std.string;
import std.container; // SList, DList, BinaryHeap

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

  auto r = new int[](n);
  size_t[int] hash;

  foreach (i, ai; a) {
    if (ai in hash) r[hash[ai]] = 0;
    r[i] = ai;
    hash[ai] = i;
  }

  auto b = new int[](n);
  auto rbt = redBlackTree!("a > b", int)();
  foreach (i, ai; a) {
    rbt.insert(ai);
    b[i] = rbt.front;
    if (r[i] > 0) rbt.removeKey(r[i]);
  }

  foreach (i, bi; b) {
    write(bi);
    if (i < n-1) write(" ");
  }
  writeln;
}
0