結果
問題 | No.217 魔方陣を作ろう |
ユーザー |
![]() |
提出日時 | 2021-08-08 12:05:44 |
言語 | Crystal (1.14.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 14,224 bytes |
コンパイル時間 | 11,429 ms |
コンパイル使用メモリ | 296,036 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-19 07:37:10 |
合計ジャッジ時間 | 11,810 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 18 |
ソースコード
# require "/template"# 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({Int32, Int32}, n) # => {[1, 2, 3], [2, 3, 1]}# ```class Scannerprivate def self.skip_to_not_spacepeek = STDIN.peeknot_space = peek.index { |x| x != 32 && x != 10 } || peek.sizeSTDIN.skip(not_space)enddef self.cskip_to_not_spaceSTDIN.read_char.not_nil!enddef self.sskip_to_not_spacepeek = STDIN.peekif index = peek.index { |x| x == 32 || x == 10 }STDIN.skip(index + 1)return String.new(peek[0, index])endString.build do |buffer|loop dobuffer.write peekSTDIN.skip(peek.size)peek = STDIN.peekbreak if peek.empty?if index = peek.index { |x| x == 32 || x == 10 }buffer.write peek[0, index]STDIN.skip(index)breakendendendendendmacro 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 %}endmacro 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 %}endmacro 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 %}endmacro input(*types){ {% for type in types %} input({{type}}), {% end %} }endmacro input_column(types, size){% for type, i in types %}%array{i} = Array({{type}}).new({{size}}){% end %}{{size}}.times do{% for type, i in types %}%array{i} << input({{type}}){% end %}end{ {% for type, i in types %} %array{i}, {% end %} }end# require "./tuple/times"struct Tupledef times(&block) : Nil{% begin %}{% for i in 0...@type.size %}{% if @type[i].has_method?(:each) %}self[{{i}}].each do |i{{i}}|{% else %}self[{{i}}].times do |i{{i}}|{% end %}{% end %}yield({% for i in 0...@type.size %} i{{i}}, {% end %}){% for i in 0...@type.size %} end {% end %}{% end %}endprivate class TimesIterator(T)include Iterator(T)def initialize(@n : T)tuple = {% begin %}{ {% for i in 0...T.size %} T[{{i}}].zero, {% end %} }{% end %}@index = tuple.as(T)@first = trueenddef nextif @first@first = falsereturn @indexend{% begin %}{%type = @type.type_vars[0]size = type.size%}{% for i in 1..size %}if @index[{{size - i}}] < @n[{{size - i}}] - 1@index = {{% for j in 0...size %}{% if j < size - i %}@index[{{j}}],{% elsif j == size - i %}@index[{{j}}] + 1,{% else %}{{type[j]}}.zero,{% end %}{% end %}}return @indexend{% end %}stop{% end %}endenddef timesTimesIterator(self).new(self)endend# require "./comparable/min_max"module Comparable(T)def min(x : T)self > x ? x : selfenddef max(x : T)self < x ? x : selfendend# require "./array/new"class Arraydef self.new(sizes : Tuple(*T), initial_value) forall T{% begin %}{% for i in 0...T.size %} Array.new(sizes[{{i}}]) { {% end %}initial_value{% for i in 0...T.size %} } {% end %}{% end %}enddef self.new(sizes : Tuple(*T), &block) forall T{% begin %}{% for i in 0...T.size %} Array.new(sizes[{{i}}]) { |index{{i}}| {% end %}yield({% for i in 0...T.size %} index{{i}}, {% end %}){% for i in 0...T.size %} } {% end %}{% end %}endend# require "./array/change"class Array(T)def chmin(i : Int, value : T)(self[i] > value).tap do |f|self[i] = value if fendendprotected def chmin(i : Int, *indexes, value)self[i].chmin(*indexes, value: value)enddef chmin(indexes : Tuple, value)chmin(*indexes, value: value)enddef chmax(i : Int, value : T)(self[i] < value).tap do |f|self[i] = value if fendendprotected def chmax(i : Int, *indexes, value)self[i].chmax(*indexes, value: value)enddef chmax(indexes : Tuple, value)chmax(*indexes, value: value)endend# require "/point"struct Pointinclude Comparable(Point)extend Indexable(Point)property y : Int32, x : Int32Direction4 = [Point.up, Point.left, Point.down, Point.right]Direction8 = Direction4 + [Point.ul, Point.ur, Point.dl, Point.dr]class_getter! height : Int32, width : Int32def self.set_range(height : Int32, width : Int32)raise ArgumentError.new unless 0 < height && 0 < width@@height, @@width = height, widthenddef self.sizeheight * widthenddef self.unsafe_fetch(index : Int)Point.new(index // Point.width, index % Point.width)enddef self.each(h : Int, w : Int, &block)h.times do |y|w.times do |x|yield Point[y, x]endendenddef self.each(y : Int, w : Int)size.times.map { |i| Point.new(i) }enddef initialize@y, @x = 0, 0enddef initialize(@y : Int32, @x : Int32)enddef initialize(i : Int32)raise ArgumentError.new unless 0 <= i && i < Point.size@y, @x = i // Point.width, i % Point.widthenddef self.from(array : Array(Int32)) : selfraise ArgumentError.new unless array.size == 2Point.new(array.unsafe_fetch(0), array.unsafe_fetch(1))enddef self.[](y : Int32, x : Int32) : selfPoint.new(y, x)endprivate macro define_direction(name, dy, dx)def self.{{name}}Point.new({{dy}}, {{dx}})enddef {{name}}Point.new(y + {{dy}}, x + {{dx}})enddef {{name}}!@y += {{dy}}@x += {{dx}}selfendenddefine_direction(zero, 0, 0)define_direction(up, -1, 0)define_direction(left, 0, -1)define_direction(down, 1, 0)define_direction(right, 0, 1)define_direction(ul, -1, -1)define_direction(ur, -1, 1)define_direction(dl, 1, -1)define_direction(dr, 1, 1){% for op in %w[+ - * // %] %}def {{op.id}}(other : Point)Point.new(y {{op.id}} other.y, x {{op.id}} other.x)enddef {{op.id}}(other : Int32)Point.new(y {{op.id}} other, x {{op.id}} other)end{% end %}def xyPoint.new(x, y)enddef yxselfenddef ==(other : Point)x == other.x && y == other.yenddef <=>(other : Point)to_i <=> other.to_ienddef [](i : Int32)return y if i == 0return x if i == 1raise IndexError.newenddef succraise IndexError.new unless in_range? && self != Point.lastif x < Point.width - 1Point.new(y, x + 1)elsePoint.new(y + 1, 0)endenddef predraise IndexError.new unless in_range? && self != Point.firstif x > 0Point.new(y, x - 1)elsePoint.new(y - 1, Point.width - 1)endenddef in_range?(0...Point.height).includes?(y) && (0...Point.width).includes?(x)enddef to_i : Int32raise IndexError.new unless in_range?y * Point.width + xenddef distance_square(other : Point)(y - other.y) ** 2 + (x - other.x) ** 2enddef distance(other : Point)Math.sqrt(distance_square(other))enddef manhattan(other : Point)(y - other.y).abs + (x - other.x).absenddef chebyshev(other : Point)Math.max((y - other.y).abs, (x - other.x).abs)end{% for i in [4, 8] %}def adjacent{{i}}(&block) : NilDirection{{i}}.each do |d|yield self + dendenddef adjacent{{i}}Direction{{i}}.each.map { |p| self + p }enddef adj{{i}}_in_range(&block) : NilDirection{{i}}.each do |d|point = self + dyield point if point.in_range?endenddef adj{{i}}_in_rangeadjacent{{i}}.select(&.in_range?)end{% end %}def to_s(io : IO) : Nilio << '(' << y << ", " << x << ')'enddef inspect(io : IO) : Nilto_s(io)enddef to_direction_char?(lrud = "LRUD") : Char?if y == 0 && x != 0x < 0 ? lrud[0] : lrud[1]elsif x == 0 && y != 0y < 0 ? lrud[2] : lrud[3]endenddef self.to_direction?(c : Char, lrud = "LRUD")raise ArgumentError.new unless lrud.size == 4lrud.index(c).try { |i| {left, right, up, down}[i] }enddef self.to_direction?(s : String, lrud = "LRUD")case s.sizewhen 1to_direction?(s[0], lrud)when 2p1 = to_direction?(s[0], lrud) || return nilp2 = to_direction?(s[1], lrud) || return nilreturn nil unless p1.x ^ p2.x != 0 && p1.y ^ p2.y != 0p1 + p2endendendmodule Indexable(T)private def check_index_out_of_bounds(point : Point)check_index_out_of_bounds(point) { raise IndexError.new }endprivate def check_index_out_of_bounds(point : Point)if 0 <= point.y < size && 0 <= point.x < unsafe_fetch(point.y).sizepointelseyieldendenddef fetch(point : Point)point = check_index_out_of_bounds(point) doreturn yield pointendunsafe_fetch(point.y)[point.x]enddef [](point : Point)fetch(point) { raise IndexError.new }enddef []?(point : Point)fetch(point, nil)endendclass Array(T)def []=(point : Point, value)index = check_index_out_of_bounds point@buffer[index.y][index.x] = valueendenddef generate_odd(n)a = Array.new({n, n}, nil.as(Int32?))p = Point[0, n // 2]k = 0loop doa[p %= n] = (k += 1)if a[p.ur % n].nil?p.ur!elsif a[p.down % n].nil?p.down!elsebreakendenda.map &.map &.not_nil!enddef generate_4x(n)a = Array.new({n, n}, nil.as(Int32?))Point.each do |p|p2 = p % 4if p2.x == p2.y || (p2.x + p2.y) == 3a[p] = p.to_i + 1endendPoint.reverse_each do |p|if a[p].nil?a[p] = n * n - p.to_iendenda.map &.map &.not_nil!endLUX = [[[4, 1], [2, 3]],[[1, 4], [2, 3]],[[1, 4], [3, 2]],]def generate_4x2(n)k = n // 4m = k * 2 + 1b = generate_odd(m).map &.map { |x| x.pred * 4 }a = Array.new({n, n}, 0)Point.each(m, m) do |p|index = if (p.y <= k && p != Point[k, k]) || p == Point[k + 1, k]0elsif p.y <= k + 11else2end{Point.zero, Point.right, Point.down, Point.dr}.each do |d|a[p * 2 + d] = LUX[index][d] + b[p]endendaendn = input(i)Point.set_range(n, n)ans = if n.odd?generate_odd(n)elsif n % 4 == 0generate_4x(n)elsegenerate_4x2(n)endputs ans.join('\n', &.join(' '))