結果
問題 | No.43 野球の試合 |
ユーザー | tshig |
提出日時 | 2016-08-05 17:24:27 |
言語 | Ruby (3.3.0) |
結果 |
AC
|
実行時間 | 693 ms / 5,000 ms |
コード長 | 909 bytes |
コンパイル時間 | 109 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 24,832 KB |
最終ジャッジ日時 | 2024-06-08 02:23:38 |
合計ジャッジ時間 | 2,253 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 88 ms
12,160 KB |
testcase_01 | AC | 86 ms
12,416 KB |
testcase_02 | AC | 86 ms
12,416 KB |
testcase_03 | AC | 90 ms
12,288 KB |
testcase_04 | AC | 85 ms
12,160 KB |
testcase_05 | AC | 86 ms
12,160 KB |
testcase_06 | AC | 90 ms
12,416 KB |
testcase_07 | AC | 693 ms
24,832 KB |
testcase_08 | AC | 88 ms
12,416 KB |
testcase_09 | AC | 82 ms
12,416 KB |
testcase_10 | AC | 85 ms
12,160 KB |
コンパイルメッセージ
Syntax OK
ソースコード
class Calc0043 def initialize(args) args = args.map { |l| l.chomp.split(/\s+/) } @n = args.shift.first.to_i @wl = args.map(&:first).map { |l| l.split(//) } end def run no_games = (0...@n).flat_map { |i| ((i + 1)...@n).map { |j| @wl[i][j] == '-' ? [i, j] : nil } }.compact if no_games.empty? calc_rank(@wl) else cands = no_games.map { |n| ['x', 'o'] } cands.first.product(*cands.drop(1)).map { |cand| calc(no_games, cand) }.min end end def calc(no_games, cand) wl = @wl.map { |r| r.clone } no_games.zip(cand) { |(i, j), c| wl[i][j] = c wl[j][i] = c == 'o' ? 'x' : 'o' } calc_rank(wl) end def calc_rank(wl) ws = wl.map { |r| r.count { |c| c == 'o' } } w0 = ws[0] ws.uniq.sort.reverse.index(w0) + 1 end end puts Calc0043.new(STDIN.readlines).run if __FILE__ == $0