結果
問題 | No.844 split game |
ユーザー | te-sh |
提出日時 | 2021-07-07 09:43:28 |
言語 | Crystal (1.11.2) |
結果 |
AC
|
実行時間 | 102 ms / 2,000 ms |
コード長 | 5,140 bytes |
コンパイル時間 | 12,373 ms |
コンパイル使用メモリ | 299,296 KB |
実行使用メモリ | 16,688 KB |
最終ジャッジ日時 | 2024-07-01 12:18:59 |
合計ジャッジ時間 | 16,363 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
8,704 KB |
testcase_01 | AC | 35 ms
9,600 KB |
testcase_02 | AC | 93 ms
14,948 KB |
testcase_03 | AC | 66 ms
12,556 KB |
testcase_04 | AC | 34 ms
7,808 KB |
testcase_05 | AC | 94 ms
15,284 KB |
testcase_06 | AC | 30 ms
7,168 KB |
testcase_07 | AC | 25 ms
9,220 KB |
testcase_08 | AC | 15 ms
6,944 KB |
testcase_09 | AC | 72 ms
10,880 KB |
testcase_10 | AC | 96 ms
15,824 KB |
testcase_11 | AC | 89 ms
15,592 KB |
testcase_12 | AC | 72 ms
10,880 KB |
testcase_13 | AC | 44 ms
7,808 KB |
testcase_14 | AC | 43 ms
8,704 KB |
testcase_15 | AC | 99 ms
16,608 KB |
testcase_16 | AC | 99 ms
16,584 KB |
testcase_17 | AC | 101 ms
16,656 KB |
testcase_18 | AC | 102 ms
16,688 KB |
testcase_19 | AC | 100 ms
16,620 KB |
testcase_20 | AC | 101 ms
16,672 KB |
testcase_21 | AC | 101 ms
16,668 KB |
testcase_22 | AC | 99 ms
16,604 KB |
testcase_23 | AC | 5 ms
6,940 KB |
testcase_24 | AC | 9 ms
6,944 KB |
testcase_25 | AC | 7 ms
6,940 KB |
testcase_26 | AC | 4 ms
6,940 KB |
testcase_27 | AC | 8 ms
6,940 KB |
testcase_28 | AC | 3 ms
6,940 KB |
testcase_29 | AC | 9 ms
6,944 KB |
testcase_30 | AC | 10 ms
6,944 KB |
testcase_31 | AC | 8 ms
6,944 KB |
testcase_32 | AC | 3 ms
6,944 KB |
testcase_33 | AC | 11 ms
6,940 KB |
testcase_34 | AC | 7 ms
6,940 KB |
testcase_35 | AC | 13 ms
6,944 KB |
testcase_36 | AC | 9 ms
6,940 KB |
testcase_37 | AC | 18 ms
6,940 KB |
testcase_38 | AC | 36 ms
7,296 KB |
testcase_39 | AC | 74 ms
12,160 KB |
testcase_40 | AC | 23 ms
6,944 KB |
testcase_41 | AC | 2 ms
6,940 KB |
testcase_42 | AC | 2 ms
6,944 KB |
testcase_43 | AC | 2 ms
6,940 KB |
testcase_44 | AC | 1 ms
6,944 KB |
testcase_45 | AC | 2 ms
6,940 KB |
testcase_46 | AC | 2 ms
6,940 KB |
testcase_47 | AC | 2 ms
6,944 KB |
testcase_48 | AC | 2 ms
6,940 KB |
testcase_49 | AC | 2 ms
6,940 KB |
testcase_50 | AC | 2 ms
6,940 KB |
testcase_51 | AC | 2 ms
6,940 KB |
testcase_52 | AC | 2 ms
6,944 KB |
testcase_53 | AC | 2 ms
6,940 KB |
testcase_54 | AC | 2 ms
6,940 KB |
testcase_55 | AC | 2 ms
6,944 KB |
testcase_56 | AC | 2 ms
6,944 KB |
testcase_57 | AC | 2 ms
6,944 KB |
testcase_58 | AC | 2 ms
6,940 KB |
testcase_59 | AC | 2 ms
6,940 KB |
ソースコード
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)