結果

問題 No.437 cwwゲーム
ユーザー neko_the_shadowneko_the_shadow
提出日時 2016-10-29 22:21:27
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 780 bytes
コンパイル時間 40 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 19,104 KB
最終ジャッジ日時 2024-05-03 19:41:21
合計ジャッジ時間 18,307 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
19,104 KB
testcase_01 AC 78 ms
12,160 KB
testcase_02 AC 127 ms
12,288 KB
testcase_03 AC 78 ms
12,288 KB
testcase_04 AC 76 ms
12,160 KB
testcase_05 AC 1,951 ms
12,288 KB
testcase_06 AC 1,945 ms
12,288 KB
testcase_07 AC 1,960 ms
12,288 KB
testcase_08 TLE -
testcase_09 AC 1,979 ms
12,416 KB
testcase_10 AC 1,980 ms
12,416 KB
testcase_11 AC 1,981 ms
12,544 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

class Solver

    def initialize(n)
        @digits = []
        while n > 0
            @digits << n % 10
            n /= 10
        end
        @digits.reverse!
    end

    def f(bit)
        idxs = (0...@digits.size).each_with_object([]){|idx, arr| arr << idx if bit & (1 << idx) == 0}

        return 0 if idxs.size < 3
        
        scores = []
        idxs.combination(3) do |i, j, k|
            x = 100 * @digits[i] + 10 * @digits[j] + @digits[k]
            b = bit | (1 << i) | (1 << j) | (1 << k)
            
            score = f(b)
            score += x if @digits[i] != 0 && @digits[j] == @digits[k] && @digits[i] != @digits[j]

            scores << score
        end
        scores.max
    end
end


n = STDIN.gets.to_i
solver = Solver.new(n)
p solver.f(0)
0