結果
問題 | No.43 野球の試合 |
ユーザー | fine |
提出日時 | 2016-03-23 23:24:54 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,014 bytes |
コンパイル時間 | 547 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 12,416 KB |
最終ジャッジ日時 | 2024-10-01 21:40:47 |
合計ジャッジ時間 | 1,681 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 89 ms
12,416 KB |
testcase_01 | AC | 89 ms
12,160 KB |
testcase_02 | AC | 85 ms
12,288 KB |
testcase_03 | AC | 85 ms
12,416 KB |
testcase_04 | WA | - |
testcase_05 | AC | 85 ms
12,288 KB |
testcase_06 | AC | 84 ms
12,160 KB |
testcase_07 | AC | 83 ms
12,160 KB |
testcase_08 | AC | 84 ms
12,160 KB |
testcase_09 | AC | 84 ms
12,288 KB |
testcase_10 | AC | 83 ms
12,160 KB |
コンパイルメッセージ
Syntax OK
ソースコード
def sol n,d,w,c,memo if memo[c] <= n return memo[c] end if c == 0 return w.uniq.sort.reverse.index(w[0]) + 1 end ans = n n.times{|i| (i + 1).upto(n - 1){|j| if d[i][j] == '-' d[i][j] = 'o' d[j][i] = 'x' w[i] += 1 ans = [ans, sol(n,d,w,c - 2,memo)].min d[i][j] = 'x' d[j][i] = 'o' w[i] -= 1 w[j] += 1 ans = [ans, sol(n,d,w,c - 2,memo)].min d[i][j] = '-' d[j][i] = '-' w[j] -= 1 end } } memo[c] = [ans, memo[c]].min return ans end n = gets.to_i d = Array.new(n) w = Array.new(n,0) c = 0 n.times{|i| d[i] = gets.chomp.split('') n.times{|j| if d[i][j] == 'o' w[i] += 1 elsif d[i][j] == '-' c += 1 end } } memo = Array.new(c + 1, n + 1) p sol(n,d,w,c,memo)