結果
問題 | No.5002 stick xor |
ユーザー |
|
提出日時 | 2018-05-26 03:40:55 |
言語 | Ruby (3.4.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,765 bytes |
コンパイル時間 | 32,956 ms |
実行使用メモリ | 4,584 KB |
スコア | 29,784 |
最終ジャッジ日時 | 2018-05-26 03:41:30 |
ジャッジサーバーID (参考情報) |
judge9 / |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 24 TLE * 8 |
コンパイルメッセージ
Main.rb:56: warning: assigned but unused variable - size Syntax OK
ソースコード
DEBUG = falseN, K = gets.split.map &:to_iL = gets.split.map &:to_iLI = L.map.with_index{|l, i| [l, i]}.sort_by{|l, i| -l}board = $<.map{|s|s.chomp.chars}$rows = board.map{|a| a*"" }$cols = board.transpose.map{|a| a*"" }def count_white$rows.map{|a|N - a.count(?1)}.sumendFirstScore = count_whitedef calc_scorecount_white - FirstScoreendp FirstScore if DEBUGp calc_score() if DEBUGdef update_memo(len)max = 0res = nil$rows.each_with_index{|s, i|cusum = [sum = 0] + s.chars.map{|c|sum += c == ?1 ? 1 : 0}(0..N-len).each{|j|if cusum[j+len] - cusum[j] > maxmax = cusum[j+len] - cusum[j]res = [:r, max, i, j]return res if max >= lenend}}$cols.each_with_index{|s, i|cusum = [sum = 0] + s.chars.map{|c|sum += c == ?1 ? 1 : 0}(0..N-len).each{|j|if cusum[j+len] - cusum[j] > maxmax = cusum[j+len] - cusum[j]res = [:c, max, i, j]return res if max >= lenend}}resendans = []LI.each{|l, i|sym, size, idx, pos = update_memo(l)if sym.nil?sym = [:r, :c].sampleidx = rand(N)pos = rand(N)endpos = [N - l, pos].minif sym == :rt = $rows[idx][pos, l]$rows[idx][pos, l] = t.tr("01", "10")(pos...pos+l).each{|j|c = $cols[j][idx]$cols[j][idx] = c == ?1 ? ?0 : ?1}a = c = idx + 1b = pos + 1d = pos + lelset = $cols[idx][pos, l]$cols[idx][pos, l] = t.tr("01", "10")(pos...pos+l).each{|j|c = $rows[j][idx]$rows[j][idx] = c == ?1 ? ?0 : ?1}b = d = idx + 1a = pos + 1c = pos + lendans[i] = [a, b, c, d]}ans.each{|a|puts a * " "}p calc_score() if DEBUG