結果

問題 No.832 麻雀修行中
ユーザー te-shte-sh
提出日時 2021-07-03 23:24:07
言語 Crystal
(1.11.2)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 2,259 bytes
コンパイル時間 20,665 ms
コンパイル使用メモリ 266,832 KB
実行使用メモリ 11,960 KB
最終ジャッジ日時 2023-09-13 05:17:58
合計ジャッジ時間 23,402 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
11,960 KB
testcase_01 AC 40 ms
11,792 KB
testcase_02 AC 39 ms
11,772 KB
testcase_03 AC 39 ms
11,828 KB
testcase_04 AC 40 ms
11,796 KB
testcase_05 AC 39 ms
11,904 KB
testcase_06 AC 40 ms
11,808 KB
testcase_07 AC 39 ms
11,904 KB
testcase_08 AC 40 ms
11,796 KB
testcase_09 AC 40 ms
11,832 KB
testcase_10 AC 40 ms
11,936 KB
testcase_11 AC 40 ms
11,728 KB
testcase_12 AC 40 ms
11,952 KB
testcase_13 AC 40 ms
11,868 KB
testcase_14 AC 39 ms
11,884 KB
testcase_15 AC 40 ms
11,796 KB
testcase_16 AC 39 ms
11,732 KB
testcase_17 AC 39 ms
11,796 KB
testcase_18 AC 40 ms
11,824 KB
testcase_19 AC 39 ms
11,740 KB
testcase_20 AC 40 ms
11,880 KB
testcase_21 AC 39 ms
11,844 KB
testcase_22 AC 39 ms
11,936 KB
testcase_23 AC 39 ms
11,892 KB
testcase_24 AC 39 ms
11,788 KB
testcase_25 AC 39 ms
11,880 KB
testcase_26 AC 39 ms
11,804 KB
testcase_27 AC 39 ms
11,896 KB
testcase_28 AC 39 ms
11,808 KB
testcase_29 AC 38 ms
11,768 KB
testcase_30 AC 39 ms
11,820 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
In Main.cr:11:15

 11 | pai = atama.product(mens).map { |a, m| (a + m).sort }.reject { |m| (1..9).any? { |i| m.count(i) > 4 } } +
                  ^------
Warning: Deprecated Array(Array(Int32))#product. Use `Indexable#cartesian_product(*others : Indexable)` instead

A total of 1 warnings were found.

ソースコード

diff #

def main(io)
  atama = (1..9).map { |i| [i, i] }
  ko = (1..9).map { |i| [i, i, i] }
  shun = (1..7).map { |i| [i, i+1, i+2] }
  men = ko + shun

  mens = men.repeated_combinations(4)
         .map { |m| m.flatten }

  pai = atama.product(mens).map { |a, m| (a + m).sort }.reject { |m| (1..9).any? { |i| m.count(i) > 4 } } +
        atama.combinations(7).map(&.flatten)

  pai.uniq!.sort!

  s = io.get(String)
  b = s.chars.map(&.to_i)

  (1..9).each do |i|
    io.put i if pai.includes?((b + [i]).sort)
  end
end

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

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

  def get(*ks : T.class) forall T
    ks.map { |k| get_v(k) }
  end

  macro define_getn
    {% for i in (2..9) %}
      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_getn

  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 : T.class) forall T
    a = Array.new(n) { get(*ks) }
    ks.map_with_index { |_, i| a.map { |e| e[i] } }
  end

  macro define_getn_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_getn_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

main(ProconIO.new)
0