結果
| 問題 |
No.1623 三角形の制作
|
| コンテスト | |
| ユーザー |
yuruhiya
|
| 提出日時 | 2021-07-23 21:47:20 |
| 言語 | Crystal (1.14.0) |
| 結果 |
AC
|
| 実行時間 | 270 ms / 2,000 ms |
| コード長 | 6,620 bytes |
| コンパイル時間 | 12,394 ms |
| コンパイル使用メモリ | 294,740 KB |
| 実行使用メモリ | 6,912 KB |
| 最終ジャッジ日時 | 2024-07-18 17:27:24 |
| 合計ジャッジ時間 | 18,423 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 19 |
ソースコード
# require "/scanner"
# ### Specifications
#
# ```plain
# Inside input macro | Expanded code
# ----------------------------------------------+---------------------------------------
# Uppercase string: Int32, Int64, Float64, etc. | {}.new(Scanner.s)
# s | Scanner.s
# c | Scanner.c
# Other lowercase string: i, i64, f, etc. | Scanner.s.to_{}
# operator[]: type[size] | Array.new(input(size)) { input(type) }
# Tuple literal: {t1, t2, t3} | {input(t1), input(t2), input(t3)}
# Array literal: [t1, t2, t3] | [input(t1), input(t2), input(t3)]
# Range literal: t1..t2 | input(t1)..input(t2)
# If: cond ? t1 : t2 | cond ? input(t1) : input(t2)
# Assign: target = value | target = input(value)
# ```
#
# ### Examples
#
# Input:
# ```plain
# 5 3
# foo bar
# 1 2 3 4 5
# ```
# ```
# n, m = input(Int32, Int64) # => {5, 10i64}
# input(String, Char[m]) # => {"foo", ['b', 'a', 'r']}
# input(Int32[n]) # => [1, 2, 3, 4, 5]
# ```
# ```
# n, m = input(i, i64) # => {5, 10i64}
# input(s, c[m]) # => {"foo", ['b', 'a', 'r']}
# input(i[n]) # => [1, 2, 3, 4, 5]
# ```
#
# Input:
# ```plain
# 2 3
# 1 2 3
# 4 5 6
# ```
#
# ```
# h, w = input(i, i) # => {2, 3}
# input(i[h, w]) # => [[1, 2, 3], [4, 5, 6]]
# ```
# ```
# input(i[i][i]) # => [[1, 2, 3], [4, 5, 6]]
# ```
#
# Input:
# ```plain
# 5 3
# 3 1 4 2 5
# 1 2
# 2 3
# 3 1
# ```
# ```
# n, m = input(i, i) # => {5, 3}
# input(i.pred[n]) # => [2, 0, 3, 1, 4]
# input({i - 1, i - 1}[m]) # => [{0, 1}, {1, 2}, {2, 0}]
# ```
#
# Input:
# ```plain
# 3
# 1 2
# 2 2
# 3 2
# ```
# ```
# input({tmp = i, tmp == 1 ? i : i.pred}[i]) # => [{1, 2}, {2, 1}, {3, 1}]
# ```
#
# Input:
# ```plain
# 3
# 1 2
# 2 3
# 3 1
# ```
# ```
# n = input(i)
# input_column({i, i}, n) # => {[1, 2, 3], [2, 3, 1]}
# ```
class Scanner
private def self.skip_to_not_space
peek = STDIN.peek
not_space = peek.index { |x| x != 32 && x != 10 } || peek.size
STDIN.skip(not_space)
end
def self.c
skip_to_not_space
STDIN.read_char.not_nil!
end
def self.s
skip_to_not_space
peek = STDIN.peek
if index = peek.index { |x| x == 32 || x == 10 }
STDIN.skip(index + 1)
return String.new(peek[0, index])
end
String.build do |buffer|
loop do
buffer.write peek
STDIN.skip(peek.size)
peek = STDIN.peek
break if peek.empty?
if index = peek.index { |x| x == 32 || x == 10 }
buffer.write peek[0, index]
STDIN.skip(index)
break
end
end
end
end
end
macro internal_input(type, else_ast)
{% if Scanner.class.has_method?(type.id) %}
Scanner.{{type.id}}
{% elsif type.stringify == "String" %}
Scanner.s
{% elsif type.stringify == "Char" %}
Scanner.c
{% elsif type.stringify =~ /[A-Z][a-z0-9_]*/ %}
{{type.id}}.new(Scanner.s)
{% elsif String.has_method?("to_#{type}".id) %}
Scanner.s.to_{{type.id}}
{% else %}
{{else_ast}}
{% end %}
end
macro internal_input_array(type, args)
{% for i in 0...args.size %}
%size{i} = input({{args[i]}})
{% end %}
{% begin %}
{% for i in 0...args.size %} Array.new(%size{i}) { {% end %}
input({{type.id}})
{% for i in 0...args.size %} } {% end %}
{% end %}
end
macro input(type)
{% if type.is_a?(Call) %}
{% if type.receiver.is_a?(Nop) %}
internal_input(
{{type.name}}, {{type.name}}(
{% for argument in type.args %} input({{argument}}), {% end %}
)
)
{% elsif type.name.stringify == "[]" %}
internal_input_array({{type.receiver}}, {{type.args}})
{% else %}
input({{type.receiver}}).{{type.name.id}}(
{% for argument in type.args %} input({{argument}}), {% end %}
) {{type.block}}
{% end %}
{% elsif type.is_a?(TupleLiteral) %}
{ {% for i in 0...type.size %} input({{type[i]}}), {% end %} }
{% elsif type.is_a?(ArrayLiteral) %}
[ {% for i in 0...type.size %} input({{type[i]}}), {% end %} ]
{% elsif type.is_a?(RangeLiteral) %}
Range.new(input({{type.begin}}), input({{type.end}}), {{type.excludes_end?}})
{% elsif type.is_a?(If) %}
{{type.cond}} ? input({{type.then}}) : input({{type.else}})
{% elsif type.is_a?(Assign) %}
{{type.target}} = input({{type.value}})
{% else %}
internal_input({{type.id}}, {{type.id}})
{% end %}
end
macro input(*types)
{ {% for type in types %} input({{type}}), {% end %} }
end
macro input_column(types, size)
{% for type, i in types %}
first_value = input({{type}})
%array{i} = Array(typeof(first_value)).new({{size}})
%array{i} << first_value
{% end %}
{{size}}.pred.times do
{% for type, i in types %}
%array{i} << input({{type}})
{% end %}
end
{
{% for type, i in types %}
%array{i},
{% end %}
}
end
# require "/datastructure/binary_indexed_tree"
class BinaryIndexedTree(T)
getter size : Int32
def initialize(@size)
@a = Array(T).new(@size + 1, T.zero)
end
def initialize(a : Array(T))
@a = [T.zero]
@a.concat a
@size = a.size
(1...size).each do |i|
j = i + (i & -i)
next if j > size
@a[j] += @a[i]
end
end
# Add *x* to `a[i]`.
def add(i : Int, x) : Nil
raise IndexError.new unless 0 <= i < size
i += 1
while i <= size
@a[i] += x
i += i & -i
end
end
# Set *x* to `a[i]`.
def set(i : Int, x) : Nil
add(i, x - self[i, 1])
end
# Culculates sum of `a[0...i]`.
def left_sum(i : Int) : T
raise IndexError.new unless 0 <= i <= size
sum = T.zero
while i > 0
sum += @a[i]
i -= i & -i
end
sum
end
def [](start : Int, count : Int) : T
left_sum(start + count) - left_sum(start)
end
def [](range : Range) : T
self[*Indexable.range_to_index_and_count(range, size) || raise IndexError.new]
end
def to_a : Array(T)
(0...size).map { |i| self[i..i] }
end
end
MAX_A = 3000
n = input(i)
a, b, c = input(i[n], i[n], i[n])
cnt_a, cnt_b, cnt_c = {a, b, c}.map { |arr|
cnt = [0i64] * MAX_A.succ
arr.each { |x| cnt[x] += 1 }
cnt
}
bit = BinaryIndexedTree(Int64).new(MAX_A * 2 + 1)
puts (1..MAX_A).sum { |x|
cnt_c.each_with_index do |cc, z|
bit.add(x + z, cnt_b[x] * cc)
break if x == z
end
cnt_b.each_with_index do |cb, y|
break if x == y
bit.add(x + y, cb * cnt_c[x])
end
cnt_a[x] * bit[x + 1..]
}
yuruhiya