結果

問題 No.844 split game
ユーザー te-shte-sh
提出日時 2021-07-07 09:43:28
言語 Crystal
(1.11.2)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 5,140 bytes
コンパイル時間 21,604 ms
コンパイル使用メモリ 261,828 KB
実行使用メモリ 18,176 KB
最終ジャッジ日時 2023-09-14 04:35:39
合計ジャッジ時間 27,500 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
11,928 KB
testcase_01 AC 36 ms
12,564 KB
testcase_02 AC 103 ms
15,252 KB
testcase_03 AC 68 ms
13,648 KB
testcase_04 AC 35 ms
9,332 KB
testcase_05 AC 107 ms
16,416 KB
testcase_06 AC 30 ms
8,848 KB
testcase_07 AC 24 ms
9,992 KB
testcase_08 AC 15 ms
6,840 KB
testcase_09 AC 79 ms
12,348 KB
testcase_10 AC 106 ms
16,776 KB
testcase_11 AC 100 ms
16,676 KB
testcase_12 AC 73 ms
12,376 KB
testcase_13 AC 44 ms
9,384 KB
testcase_14 AC 43 ms
10,576 KB
testcase_15 AC 112 ms
18,176 KB
testcase_16 AC 113 ms
17,952 KB
testcase_17 AC 111 ms
17,552 KB
testcase_18 AC 111 ms
18,000 KB
testcase_19 AC 112 ms
18,068 KB
testcase_20 AC 116 ms
17,676 KB
testcase_21 AC 114 ms
17,716 KB
testcase_22 AC 112 ms
17,620 KB
testcase_23 AC 6 ms
5,276 KB
testcase_24 AC 10 ms
5,692 KB
testcase_25 AC 7 ms
5,052 KB
testcase_26 AC 4 ms
5,068 KB
testcase_27 AC 9 ms
5,364 KB
testcase_28 AC 4 ms
4,920 KB
testcase_29 AC 9 ms
5,652 KB
testcase_30 AC 10 ms
5,784 KB
testcase_31 AC 9 ms
5,412 KB
testcase_32 AC 4 ms
4,992 KB
testcase_33 AC 12 ms
5,804 KB
testcase_34 AC 8 ms
5,160 KB
testcase_35 AC 14 ms
5,992 KB
testcase_36 AC 8 ms
5,468 KB
testcase_37 AC 19 ms
6,768 KB
testcase_38 AC 38 ms
9,020 KB
testcase_39 AC 82 ms
13,404 KB
testcase_40 AC 24 ms
8,708 KB
testcase_41 AC 3 ms
4,564 KB
testcase_42 AC 3 ms
4,392 KB
testcase_43 AC 2 ms
4,544 KB
testcase_44 AC 3 ms
4,504 KB
testcase_45 AC 3 ms
4,392 KB
testcase_46 AC 3 ms
4,444 KB
testcase_47 AC 3 ms
4,492 KB
testcase_48 AC 3 ms
4,480 KB
testcase_49 AC 3 ms
4,588 KB
testcase_50 AC 3 ms
4,380 KB
testcase_51 AC 3 ms
4,492 KB
testcase_52 AC 3 ms
4,476 KB
testcase_53 AC 3 ms
4,396 KB
testcase_54 AC 2 ms
4,476 KB
testcase_55 AC 2 ms
4,508 KB
testcase_56 AC 3 ms
4,404 KB
testcase_57 AC 3 ms
4,400 KB
testcase_58 AC 3 ms
4,484 KB
testcase_59 AC 3 ms
4,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(io)
  n, m, a = io.get(Int32, Int32, Int64)
  q = Array.new(m) do
    li, ri, pi = io.get(Int32, Int32, Int64); li -= 1
    Q.new(li, ri, pi)
  end

  q.sort_by! { |qi| [qi.r, qi.l] }
  dp = SegmentTree.new([0_i64] + Array.new(n, -a)) { |a, b| Math.max(a, b) }
  q.each do |qi|
    li, ri, pi = qi.l, qi.r, qi.p
    max_u(dp[ri], Math.max(dp[li]+pi-(ri == n ? 0 : a), dp[0...li]+pi-(ri == n ? a : a*2)))
  end

  io.put dp[0..n]
end

record Q, l : Int32, r : Int32, p : Int64

struct Int
  def cdiv(b : Int)
    (self + b - 1) // b
  end

  {% if compare_versions(env("CRYSTAL_VERSION") || "0.0.0", "0.34.0") < 0 %}
    def bit_length : Int32
      x = self < 0 ? ~self : self

      if x.is_a?(Int::Primitive)
        Int32.new(sizeof(self) * 8 - x.leading_zeros_count)
      else
        to_s(2).size
      end
    end
  {% end %}
end

struct Int32
  SQRT_MAX = 46_340_i32

  def isqrt
    m = SQRT_MAX
    r = (1_i32..SQRT_MAX).bsearch { |i| i**2 > self }
    r.nil? ? SQRT_MAX : r - 1
  end
end

struct Int64
  SQRT_MAX = 3_037_000_499_i64

  def isqrt
    r = (1_i64..SQRT_MAX).bsearch { |i| i**2 > self }
    r.nil? ? SQRT_MAX : r - 1
  end
end

class SegmentTree(T)
  def initialize(@n : Int32, @init : T = T.zero, &@compose : (T, T) -> T)
    @an = 1 << (@n-1).bit_length
    @buf = Array.new(@an*2, @init)
    propagate_all
  end

  def initialize(b : Array(T), @init : T = T.zero, &@compose : (T, T) -> T)
    @n = b.size
    @an = 1 << (@n-1).bit_length
    @buf = Array.new(@an*2, @init)
    @buf[@an, @n] = b
    propagate_all
  end

  def [](i : Int)
    @buf[i+@an]
  end

  def [](r : Range)
    sc = Indexable.range_to_index_and_count(r, @n)
    raise ArgumentError.new("Invalid range") if sc.nil?
    start, count = sc
    l, r = start + @an, start + count + @an
    r1 = r2 = @init
    while l != r
      if l.odd?
        r1 = @compose.call(r1, @buf[l])
        l += 1
      end
      if r.odd?
        r -= 1
        r2 = @compose.call(@buf[r], r2)
      end
      l >>= 1
      r >>= 1
    end
    @compose.call(r1, r2)
  end

  def []=(i : Int, v : T)
    @buf[i+@an] = v
    propagate(i+@an)
  end


  @an : Int32
  @buf : Array(T)

  private def propagate_all
    (1...@an).reverse_each do |i|
      @buf[i] = @compose.call(@buf[i << 1], @buf[(i << 1) | 1])
    end
  end

  private def propagate(i : Int)
    while (i >>= 1) > 0
      @buf[i] = @compose.call(@buf[i << 1], @buf[(i << 1) | 1])
    end
  end
end

class Array
  macro new_md(*args, &block)
    {% if !block %}
      {% for arg, i in args[0...-2] %}
        Array.new({{arg}}) {
      {% end %}
      Array.new({{args[-2]}}, {{args[-1]}})
      {% for arg in args[0...-2] %}
        }
      {% end %}
    {% else %}
      {% for arg, i in args %}
        Array.new({{arg}}) { |_i{{i}}|
      {% end %}
      {% for block_arg, i in block.args %}
        {{block_arg}} = _i{{i}}
      {% end %}
      {{block.body}}
      {% for arg in args %}
        }
      {% end %}
    {% end %}
  end
end

struct Number
  {% if compare_versions(env("CRYSTAL_VERSION") || "0.0.0", "0.36.0") < 0 %}
    def self.additive_identity
      zero
    end

    def self.multiplicative_identity
      new(1)
    end
  {% end %}
end

class ProconIO
  def initialize
    @buf = [] of String
    @index = 0
  end

  def get(k : T.class = Int32) forall T
    get_v(k)
  end

  macro define_get
    {% for i in (2..9) %}
      def get({% for j in (1..i) %}k{{j}}{% if j < i %}, {% end %}{% end %})
        { {% for j in (1..i) %}get(k{{j}}){% if j < i %}, {% end %}{% end %} }
      end

      def get{{i}}(k : T.class = Int32) forall T
        get({% for j in (1..i) %}k{% if j < i %}, {% end %}{% end %})
      end
    {% end %}
  end
  define_get

  def get_a(n : Int, k : T.class = Int32) forall T
    Array.new(n) { get_v(k) }
  end

  def get_c(n : Int, k : T.class = Int32) forall T
    get_a(n, k)
  end

  def get_c(n : Int, *ks)
    a = Array.new(n) { get(*ks) }
    ks.map_with_index { |_, i| a.map { |e| e[i] } }
  end

  macro define_get_c
    {% for i in (2..9) %}
      def get{{i}}_c(n : Int, k : T.class = Int32) forall T
        get_c(n, {% for j in (1..i) %}k{% if j < i %}, {% end %}{% end %})
      end
    {% end %}
  end
  define_get_c

  def get_m(r : Int, c : Int, k : T.class = Int32) forall T
    Array.new(r) { get_a(c, k) }
  end

  def put(*vs)
    vs.each.with_index do |v, i|
      put_v(v)
      print i < vs.size - 1 ? " " : "\n"
    end
  end

  def put_e(*vs)
    put(*vs)
    exit
  end


  private def get_v(k : Int32.class); get_token.to_i32; end
  private def get_v(k : Int64.class); get_token.to_i64; end
  private def get_v(k : String.class); get_token; end

  private def get_token
    if @buf.size == @index
      @buf = read_line.split
      @index = 0
    end
    v = @buf[@index]
    @index += 1
    v
  end

  private def put_v(vs : Enumerable)
    vs.each_with_index do |v, i|
      print v
      print " " if i < vs.size - 1
    end
  end

  private def put_v(v)
    print v
  end
end

macro min_u(a, b)
  {{a}} = Math.min({{a}}, {{b}})
end

macro max_u(a, b)
  {{a}} = Math.max({{a}}, {{b}})
end

solve(ProconIO.new)
0