結果

問題 No.832 麻雀修行中
ユーザー te-shte-sh
提出日時 2021-07-03 22:30:28
言語 Crystal
(1.11.2)
結果
WA  
実行時間 -
コード長 2,436 bytes
コンパイル時間 18,810 ms
コンパイル使用メモリ 257,736 KB
実行使用メモリ 4,572 KB
最終ジャッジ日時 2023-09-13 04:20:26
合計ジャッジ時間 20,976 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,560 KB
testcase_01 WA -
testcase_02 AC 2 ms
4,544 KB
testcase_03 AC 3 ms
4,408 KB
testcase_04 AC 3 ms
4,428 KB
testcase_05 AC 3 ms
4,380 KB
testcase_06 AC 2 ms
4,484 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 3 ms
4,380 KB
testcase_10 AC 3 ms
4,476 KB
testcase_11 AC 2 ms
4,412 KB
testcase_12 AC 3 ms
4,488 KB
testcase_13 WA -
testcase_14 AC 2 ms
4,380 KB
testcase_15 AC 2 ms
4,480 KB
testcase_16 AC 3 ms
4,572 KB
testcase_17 AC 2 ms
4,480 KB
testcase_18 AC 3 ms
4,400 KB
testcase_19 AC 3 ms
4,484 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 2 ms
4,428 KB
testcase_23 AC 2 ms
4,488 KB
testcase_24 AC 3 ms
4,488 KB
testcase_25 AC 2 ms
4,400 KB
testcase_26 AC 3 ms
4,480 KB
testcase_27 AC 2 ms
4,380 KB
testcase_28 AC 2 ms
4,428 KB
testcase_29 AC 2 ms
4,476 KB
testcase_30 AC 3 ms
4,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main(io)
  s = io.get(String)
  t = s.chars.map(&.to_i)
  u = Array.new(9, 0)
  t.each do |ti|
    u[ti-1] += 1
  end

  (0...9).each do |i|
    next if u[i] == 4
    v = u.dup
    v[i] += 1
    io.put i+1 if agari?(v)
  end
end

def agari?(v)
  return true if v.all? { |vi| vi == 0 || vi == 2 }

  (0...9).any? do |i|
    next if v[i] < 2
    w = v.dup
    w[i] -= 2
    agari_without_atama?(w)
  end
end

def agari_without_atama?(w)
  (0...9).each do |i|
    w[i] -= 3 if w[i] >= 3
  end

  while w.sum > 0
    x = w.index { |wi| wi > 0 }
    return false if x.nil?
    return false if x >= 7 || w[x+1] == 0 || w[x+2] == 0
    w[x] -= 1
    w[x+1] -= 1
    w[x+2] -= 1
  end
  true
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