結果

問題 No.777 再帰的ケーキ
ユーザー ikdikd
提出日時 2020-05-03 10:53:51
言語 Nim
(2.0.2)
結果
AC  
実行時間 418 ms / 2,000 ms
コード長 1,997 bytes
コンパイル時間 3,270 ms
コンパイル使用メモリ 69,996 KB
実行使用メモリ 21,996 KB
最終ジャッジ日時 2024-06-11 16:09:10
合計ジャッジ時間 7,422 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 1 ms
6,940 KB
testcase_19 AC 1 ms
6,940 KB
testcase_20 AC 1 ms
6,944 KB
testcase_21 AC 4 ms
6,940 KB
testcase_22 AC 4 ms
6,944 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 4 ms
6,940 KB
testcase_26 AC 4 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 412 ms
21,924 KB
testcase_29 AC 416 ms
21,740 KB
testcase_30 AC 413 ms
21,776 KB
testcase_31 AC 418 ms
21,804 KB
testcase_32 AC 266 ms
21,736 KB
testcase_33 AC 81 ms
11,416 KB
testcase_34 AC 115 ms
17,628 KB
testcase_35 AC 364 ms
21,996 KB
testcase_36 AC 275 ms
21,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import strutils, algorithm, sequtils, math, sugar

type SegmentTree[T] = object
  n: int
  dat: seq[T]
  e: T
  multiply: proc(a, b: T): T

proc initSegmentTree[T](n: int, e: T, f: proc(a, b: T): T): SegmentTree[T] =
  let nn = nextPowerOfTwo(n)
  var dat = newSeqWith(nn * 2 - 1, e)
  return SegmentTree[T](n: nn, dat: dat, e: e, multiply: f)

proc get[T](this: SegmentTree[T], i: int): T =
  return this.dat[i + this.n - 1]

proc update[T](this: var SegmentTree[T], i: int, x: T) =
  var k = i + this.n - 1
  this.dat[k] = x
  while k > 0:
    k = (k - 1) div 2
    this.dat[k] = this.multiply(this.dat[k * 2 + 1], this.dat[k * 2 + 2])

proc query[T](this: SegmentTree[T], ql, qr, i, il, ir: int): T =
  if ql <= il and ir <= qr:
    return this.dat[i]
  if qr <= il or ir <= ql:
    return this.e
  let m = (il + ir) div 2
  return this.multiply(
    this.query(ql, qr, i * 2 + 1, il, m),
    this.query(ql, qr, i * 2 + 2, m, ir))

proc query[T](this: SegmentTree[T], ql, qr: int): T =
  return this.query(ql, qr, 0, 0, this.n)

let read = iterator: string {.closure.} =
  while true:
    for s in stdin.readLine.split:
      yield s

proc uniq[T](a: seq[T]): seq[T] =
  let sortedA = a.sorted(cmp)
  var res = newSeq[T]()
  for it in sortedA:
    if res.len == 0:
      res.add(it)
    elif res[^1] != it:
      res.add(it)
  return res

proc main() =
  let n = read().parseInt
  type P = tuple[a, b, c: int]
  var cakes = newSeq[P]()
  for i in 0..<n:
    let a, b, c = read().parseInt
    cakes.add((a, b, c))

  var bs = newSeq[int]()
  for p in cakes:
    bs.add(p.b)
  bs.sort(cmp)
  bs = bs.uniq
  proc map(b: int): int =
    return bs.lowerBound(b)
  let m = bs.len
  var seg = initSegmentTree[int64](
    m,
    0.int64,
    proc(x, y: int64): int64 = max(x, y))
  cakes.sort((p, q: P) => (if p.a == q.a: cmp(p.b, q.b) else: cmp(q.a, p.a)))
  for p in cakes:
    let i = map(p.b)
    let h = seg.query(i + 1, m)
    seg.update(i, max(seg.get(i), h + p.c))
  echo seg.query(0, m)
main()
0