結果

問題 No.789 範囲の合計
ユーザー むらためむらため
提出日時 2019-02-11 04:59:05
言語 Nim
(2.0.2)
結果
WA  
実行時間 -
コード長 1,332 bytes
コンパイル時間 2,635 ms
コンパイル使用メモリ 67,072 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-14 11:54:12
合計ジャッジ時間 5,278 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
4,380 KB
testcase_02 TLE -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sequtils,algorithm
setStdIoUnbuffered()
proc getchar_unlocked():char {. importc:"getchar_unlocked",header: "<stdio.h>" ,discardable.}
proc scan(): int =
  while true:
    let k = getchar_unlocked()
    if k < '0': return
    result = 10 * result + k.ord - '0'.ord

template useBinaryIndexedTree() = # 部分和検索 / 更新 O(log(N))
  type BinaryIndexedTree[T] = ref object
    data: seq[T] # 引数以下の部分和(Fenwick Tree)
  proc initBinaryIndexedTree[T](n:int):BinaryIndexedTree[T] =
    new(result)
    result.data = newSeq[T](n)
  proc len[T](self:BinaryIndexedTree[T]): int = self.data.len()
  proc update[T](self:var BinaryIndexedTree[T],i:int,val:T) =
    var i = i
    while i < self.len():
      self.data[i] += val
      i = i or (i + 1)
  proc `[]`[T](self:BinaryIndexedTree[T],i:int): T =
    var i = i
    while i >= 0:
      result += self.data[i]
      i = (i and (i + 1)) - 1
useBinaryIndexedTree()
let n = scan()
let Q = newSeqWith(n,(q:scan(),x:scan(),y:scan()))
var V = newSeq[int]()
for q in Q:
  V &= q.x
  V &= q.y
V = V.sorted(cmp).deduplicate()
var bit = initBinaryIndexedTree[int](V.len + 1)
var ans = 0
for q in Q:
  let x = V.lowerBound(q.x)
  let y = V.lowerBound(q.y)
  if q.q == 0 : bit.update(q.x,q.y)
  else:
    if x == 0 : ans += bit[y]
    else: ans += bit[y] - bit[x-1]
echo ans
0