結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー te-shte-sh
提出日時 2017-10-30 11:17:37
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 117 ms / 4,000 ms
コード長 719 bytes
コンパイル時間 1,533 ms
コンパイル使用メモリ 132,568 KB
実行使用メモリ 9,940 KB
最終ジャッジ日時 2024-06-12 22:14:16
合計ジャッジ時間 7,296 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
8,884 KB
testcase_01 AC 105 ms
8,816 KB
testcase_02 AC 94 ms
9,424 KB
testcase_03 AC 94 ms
8,900 KB
testcase_04 AC 93 ms
8,920 KB
testcase_05 AC 98 ms
8,460 KB
testcase_06 AC 117 ms
8,256 KB
testcase_07 AC 98 ms
8,312 KB
testcase_08 AC 97 ms
8,572 KB
testcase_09 AC 85 ms
8,428 KB
testcase_10 AC 84 ms
8,496 KB
testcase_11 AC 87 ms
8,584 KB
testcase_12 AC 89 ms
8,376 KB
testcase_13 AC 75 ms
9,020 KB
testcase_14 AC 75 ms
8,768 KB
testcase_15 AC 73 ms
8,368 KB
testcase_16 AC 85 ms
8,708 KB
testcase_17 AC 90 ms
9,224 KB
testcase_18 AC 89 ms
9,640 KB
testcase_19 AC 77 ms
8,240 KB
testcase_20 AC 80 ms
8,364 KB
testcase_21 AC 80 ms
8,236 KB
testcase_22 AC 85 ms
8,360 KB
testcase_23 AC 82 ms
8,840 KB
testcase_24 AC 80 ms
9,136 KB
testcase_25 AC 82 ms
8,532 KB
testcase_26 AC 75 ms
8,868 KB
testcase_27 AC 80 ms
8,864 KB
testcase_28 AC 76 ms
9,940 KB
testcase_29 AC 80 ms
9,500 KB
testcase_30 AC 1 ms
6,944 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 87 ms
8,728 KB
testcase_33 AC 92 ms
8,744 KB
testcase_34 AC 85 ms
9,668 KB
testcase_35 AC 1 ms
6,940 KB
testcase_36 AC 2 ms
6,940 KB
testcase_37 AC 1 ms
6,944 KB
testcase_38 AC 1 ms
6,944 KB
testcase_39 AC 2 ms
6,940 KB
testcase_40 AC 2 ms
6,940 KB
testcase_41 AC 7 ms
6,940 KB
testcase_42 AC 8 ms
6,940 KB
testcase_43 AC 7 ms
6,944 KB
testcase_44 AC 8 ms
6,944 KB
testcase_45 AC 2 ms
6,940 KB
testcase_46 AC 10 ms
6,940 KB
testcase_47 AC 10 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

void main()
{
  auto rd = readln.split.to!(size_t[]), n = rd[0], k = rd[1];

  struct Score { size_t i; int s, p, u; size_t ui; }
  auto scores = new Score*[](n);

  foreach (i; 0..n) {
    auto rd2 = readln.splitter;
    auto s = rd2.front.to!int; rd2.popFront();
    auto p = rd2.front.to!int; rd2.popFront();
    auto u = rd2.front.to!int;
    scores[i] = new Score(i, s, p, u);
  }

  scores.multiSort!("a.u < b.u", "a.s > b.s", "a.p < b.p");
  foreach (g; scores.chunkBy!"a.u == b.u")
    foreach (i, gi; g.enumerate)
      gi.ui = i;

  scores.multiSort!("a.s > b.s", "a.ui < b.ui", "a.p < b.p");

  foreach (i; 0..k)
    writeln(scores[i].i);
}
0