結果

問題 No.582 キャンディー・ボックス3
ユーザー maimai
提出日時 2017-04-14 00:48:29
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 1,071 bytes
コンパイル時間 33 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 54,820 KB
最終ジャッジ日時 2024-07-19 21:31:16
合計ジャッジ時間 5,923 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
17,664 KB
testcase_01 AC 87 ms
12,160 KB
testcase_02 AC 87 ms
12,160 KB
testcase_03 AC 78 ms
12,160 KB
testcase_04 AC 78 ms
12,288 KB
testcase_05 AC 77 ms
12,032 KB
testcase_06 AC 78 ms
12,288 KB
testcase_07 AC 86 ms
12,160 KB
testcase_08 AC 79 ms
12,288 KB
testcase_09 AC 79 ms
12,288 KB
testcase_10 AC 80 ms
12,032 KB
testcase_11 AC 78 ms
12,160 KB
testcase_12 AC 186 ms
14,080 KB
testcase_13 AC 119 ms
16,128 KB
testcase_14 AC 106 ms
14,848 KB
testcase_15 AC 492 ms
18,048 KB
testcase_16 AC 114 ms
16,768 KB
testcase_17 AC 80 ms
12,032 KB
testcase_18 TLE -
testcase_19 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def scan; gets.chomp!.split.map(&:to_i); end


def flip(turn)
    turn == :a_san ? :b_san : :a_san
end

@memo={}
def solve(c, turn = :a_san)
    c.delete(0)
    
    key = c+[turn]
    
    # すべての箱が空になりキャンディーを取れなくなったほうが負け
    return flip(turn) if c.empty?
    
    # メモ化(しなくても十分に間に合う.)
    return @memo[key] if @memo[key]
    
    c.each_index{|i|
        # i番目の箱から1つ取り出して相手の番に移った時,自分が必勝であればその手を打つ
        c[i] -= 1
        return @memo[key]=turn if solve(c.clone, flip(turn)) == turn
        if turn == :b_san && 0 < c[i]
            # Bさんはもう1個とれる
            c[i] -= 1
            return @memo[key]=turn if solve(c.clone, flip(turn)) == turn
            c[i] += 1
        end
        c[i] += 1
    }
    return @memo[key]=flip(turn)
end


gets
c = scan

# End Of Line
abort if gets


#puts solve(c.clone) == :a_san ? 'A' : 'B'

c.map!{|e| [3,e].min}
puts solve(c) == :a_san ? 'A' : 'B'

0