結果
問題 | No.43 野球の試合 |
ユーザー | TANIGUCHI Kousuke |
提出日時 | 2020-03-13 13:23:04 |
言語 | Ruby (3.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 654 bytes |
コンパイル時間 | 229 ms |
コンパイル使用メモリ | 7,424 KB |
実行使用メモリ | 17,792 KB |
最終ジャッジ日時 | 2024-11-21 23:52:25 |
合計ジャッジ時間 | 1,832 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 85 ms
12,032 KB |
testcase_01 | AC | 84 ms
12,160 KB |
testcase_02 | AC | 83 ms
12,032 KB |
testcase_03 | AC | 85 ms
12,160 KB |
testcase_04 | AC | 88 ms
12,032 KB |
testcase_05 | AC | 84 ms
12,288 KB |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | AC | 88 ms
12,160 KB |
testcase_09 | AC | 87 ms
12,288 KB |
testcase_10 | WA | - |
コンパイルメッセージ
Main.rb:27: warning: assigned but unused variable - a Main.rb:27: warning: assigned but unused variable - b Syntax OK
ソースコード
def min(a,b); a < b ? a : b; end def max(a,b); a > b ? a : b; end N = gets.to_i B = N.times.map { gets.chomp } W = Array.new(N, 0) Q = [] (0 ... N).each do |i| (i ... N).each do |j| if B[i][j] == 'o' W[i] += 1 elsif B[i][j] == 'x' W[j] += 1 elsif B[i][j] == '-' if i == 0 W[0] += 1 else Q << [i, j] end end end end def dfs(i) if i < Q.size a,b = Q[i] Q[i].map do |i| W[i] += 1 s = dfs(i + 1) W[i] -= 1 s end.min else r = (0 ... N).group_by{|i| W[i] } return r.keys.sort.reverse.index{|t| r[t].include?(0) } + 1 end end puts dfs(0)