結果

問題 No.449 ゆきこーだーの雨と雪 (4)
ユーザー te-shte-sh
提出日時 2017-12-22 13:56:36
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 2,324 bytes
コンパイル時間 2,096 ms
コンパイル使用メモリ 157,384 KB
実行使用メモリ 19,548 KB
最終ジャッジ日時 2023-09-03 17:46:17
合計ジャッジ時間 10,644 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 132 ms
19,276 KB
testcase_38 WA -
testcase_39 AC 108 ms
16,736 KB
testcase_40 WA -
testcase_41 AC 120 ms
16,152 KB
testcase_42 AC 124 ms
17,972 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 122 ms
19,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

void main()
{
  auto n = readln.chomp.to!int;
  auto l = readln.split.to!(int[]);
  auto t = readln.chomp.to!int;
  auto names = new string[](t), p = new int[](t);
  foreach (i; 0..t) {
    auto rd = readln.splitter;
    names[i] = rd.front; rd.popFront();
    auto pi = rd.front[0];
    p[i] = pi == '?' ? -1 : cast(int)(pi-'A');
  }

  int[string] za1;
  auto id1 = 0;
  foreach (name; names.dup.sort().uniq) za1[name] = id1++;
  auto nnids = za1.length.to!int;

  auto nids = new int[](t);
  foreach (i; 0..t) nids[i] = za1[names[i]];

  auto acs = new int[](n), scores = new int[](nnids), vscs = [0];
  foreach (nid, pi; lockstep(nids, p)) {
    if (pi == -1) continue;
    acs[pi]++;
    auto pt = 50*l[pi] + 500*l[pi]/(8+2*acs[pi]);
    scores[nid] += pt;
    vscs ~= scores[nid];
  }

  int[int] za2;
  auto id2 = 0;
  foreach (vsc; vscs.sort().uniq) za2[vsc] = id2++;
  auto nvscs = za2.length.to!int;

  auto btb = BiTree!int(nvscs), btcs = new BiTree!int[](nvscs);
  foreach (ref btc; btcs) btc = BiTree!int(4);

  auto rankInScore = new int[](nnids);
  acs[] = 0; scores[] = 0;
  foreach (nid, pi; lockstep(nids, p)) {
    if (pi != -1) {
      acs[pi]++;
      auto pt = 50*l[pi] + 500*l[pi]/(8+2*acs[pi]);

      auto psc = za2[scores[nid]];
      if (psc > 0) {
        btb[psc] += -1;
        btcs[psc][rankInScore[nid]] += -1;
      }

      scores[nid] += pt;
      auto nsc = za2[scores[nid]];
      rankInScore[nid] = btb[nsc];
      btb[nsc] += 1;
      btcs[nsc][rankInScore[nid]] += 1;
    } else {
      auto sc = za2[scores[nid]];
      writeln(btb[sc+1..$] + btcs[sc][0..rankInScore[nid]] + 1);
    }
  }
}

struct BiTree(T)
{
  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 (i > n) {
      n *= 2;
      buf.length = n+1;
    }

    ++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