結果

問題 No.151 セグメントフィッシング
ユーザー te-shte-sh
提出日時 2018-07-12 12:21:17
言語 D
(dmd 2.107.1)
結果
AC  
実行時間 18 ms / 5,000 ms
コード長 1,577 bytes
コンパイル時間 736 ms
コンパイル使用メモリ 91,680 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-03 20:40:46
合計ジャッジ時間 2,510 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 1 ms
4,384 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 1 ms
4,376 KB
testcase_08 AC 4 ms
4,380 KB
testcase_09 AC 4 ms
4,380 KB
testcase_10 AC 4 ms
4,380 KB
testcase_11 AC 4 ms
4,380 KB
testcase_12 AC 14 ms
4,376 KB
testcase_13 AC 14 ms
4,380 KB
testcase_14 AC 14 ms
4,376 KB
testcase_15 AC 14 ms
4,380 KB
testcase_16 AC 14 ms
4,376 KB
testcase_17 AC 10 ms
4,376 KB
testcase_18 AC 10 ms
4,380 KB
testcase_19 AC 18 ms
4,376 KB
testcase_20 AC 18 ms
4,380 KB
testcase_21 AC 11 ms
4,380 KB
testcase_22 AC 12 ms
4,376 KB
testcase_23 AC 11 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.algorithm, std.container, std.conv, std.math, std.range, std.typecons, std.stdio, std.string;

auto rdsp(){return readln.splitter;}
void pick(R,T)(ref R r,ref T t){t=r.front.to!T;r.popFront;}
void readV(T...)(ref T t){auto r=rdsp;foreach(ref v;t)pick(r,v);}

void main()
{
  int n, q; readV(n, q);

  auto n2 = n*2, ft = new FenwickTree!long(n2);
  foreach (t; 0..q) {
    string x; int y, z; readV(x, y, z);
    switch (x) {
    case "L":
      ft[(y+t)%n2] += z;
      break;
    case "R":
      ft[(n2-1-y+t)%n2] += z;
      break;
    case "C":
      auto r = 0L;
      auto u1 = (y+t)%n2, v1 = (z-1+t)%n2+1;
      r += u1 < v1 ? ft[u1..v1] : ft[0..v1]+ft[u1..n2];
      auto u2 = (n2-y+t-1)%n2+1, v2 = (n2-z+t)%n2;
      r += v2 < u2 ? ft[v2..u2] : ft[0..u2]+ft[v2..n2];
      writeln(r);
      break;
    default:
      assert(0);
    }
  }
}

class FenwickTree(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 == "+" || op == "-")
  {
    ++i;
    for (; i <= n; i += i & -i) mixin("buf[i] " ~ op ~ "= val;");
  }

  void opIndexUnary(string op)(size_t i) if (op == "++" || op == "--")
  {
    ++i;
    for (; i <= n; i += i & -i) mixin("buf[i]" ~ op ~ ";");
  }

  pure T opSlice(size_t r, size_t l) { return get(l) - get(r); }
  pure T opIndex(size_t i) { return opSlice(i, i+1); }
  pure size_t opDollar() { return n; }

private:

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