結果

問題 No.151 セグメントフィッシング
ユーザー te-shte-sh
提出日時 2017-05-08 14:32:37
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 21 ms / 5,000 ms
コード長 1,623 bytes
コンパイル時間 818 ms
コンパイル使用メモリ 102,116 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-12 19:03:19
合計ジャッジ時間 1,703 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 5 ms
6,940 KB
testcase_09 AC 5 ms
6,940 KB
testcase_10 AC 5 ms
6,940 KB
testcase_11 AC 5 ms
6,944 KB
testcase_12 AC 18 ms
6,944 KB
testcase_13 AC 17 ms
6,944 KB
testcase_14 AC 18 ms
6,940 KB
testcase_15 AC 18 ms
6,940 KB
testcase_16 AC 17 ms
6,940 KB
testcase_17 AC 14 ms
6,940 KB
testcase_18 AC 15 ms
6,940 KB
testcase_19 AC 21 ms
6,940 KB
testcase_20 AC 20 ms
6,944 KB
testcase_21 AC 16 ms
6,944 KB
testcase_22 AC 15 ms
6,944 KB
testcase_23 AC 16 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], q = rd[1];

  auto pondL = BiTree!long(n + q + 2);
  auto pondR = BiTree!long(n + q + 2);

  foreach (t; 0..q) {
    auto pl(size_t i) { return i + t + 2; }
    auto pr(size_t i) { return i - t + q + 1; }

    auto rd2 = readln.split;
    switch (rd2[0]) {
    case "L":
      auto y = rd2[1].to!size_t, z = rd2[2].to!long;
      pondL[pl(y)] += z;
      break;
    case "R":
      auto y = rd2[1].to!size_t, z = rd2[2].to!long;
      pondR[pr(y)] += z;
      break;
    case "C":
      auto y = rd2[1].to!size_t, z = rd2[2].to!size_t;
      auto nl = pondL[pl(y)..pl(z)];
      auto nr = pondR[pr(y)..pr(z)];
      writeln(nl + nr);
      break;
    default:
      assert(0);
    }

    auto vl = pondL[pl(0)];
    auto vr = pondR[pr(n-1)];
    if (vl) {
      pondL[pl(0)] += -vl; pondR[pr(-1)] += vl;
    }
    if (vr) {
      pondR[pr(n-1)] += -vr; pondL[pl(n)] += vr;
    }
  }
}

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

  pure size_t opDollar() { return n; }

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

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

private:

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