結果
問題 | No.5002 stick xor |
ユーザー | letrangerjp |
提出日時 | 2018-05-26 03:19:04 |
言語 | Ruby (3.3.0) |
結果 |
AC
|
実行時間 | 422 ms / 1,000 ms |
コード長 | 1,423 bytes |
コンパイル時間 | 11,721 ms |
実行使用メモリ | 7,980 KB |
スコア | 21,189 |
最終ジャッジ日時 | 2018-05-26 03:19:19 |
ジャッジサーバーID (参考情報) |
judge9 / |
純コード判定しない問題か言語 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 296 ms
7,008 KB |
testcase_01 | AC | 300 ms
7,252 KB |
testcase_02 | AC | 277 ms
7,164 KB |
testcase_03 | AC | 312 ms
7,120 KB |
testcase_04 | AC | 340 ms
7,064 KB |
testcase_05 | AC | 320 ms
7,008 KB |
testcase_06 | AC | 323 ms
7,120 KB |
testcase_07 | AC | 299 ms
7,096 KB |
testcase_08 | AC | 356 ms
7,156 KB |
testcase_09 | AC | 236 ms
7,072 KB |
testcase_10 | AC | 320 ms
7,180 KB |
testcase_11 | AC | 231 ms
7,980 KB |
testcase_12 | AC | 311 ms
6,948 KB |
testcase_13 | AC | 298 ms
7,128 KB |
testcase_14 | AC | 269 ms
7,252 KB |
testcase_15 | AC | 281 ms
7,296 KB |
testcase_16 | AC | 319 ms
6,892 KB |
testcase_17 | AC | 321 ms
6,976 KB |
testcase_18 | AC | 247 ms
7,052 KB |
testcase_19 | AC | 376 ms
7,064 KB |
testcase_20 | AC | 302 ms
7,332 KB |
testcase_21 | AC | 363 ms
6,856 KB |
testcase_22 | AC | 422 ms
7,276 KB |
testcase_23 | AC | 284 ms
6,984 KB |
testcase_24 | AC | 326 ms
7,252 KB |
testcase_25 | AC | 363 ms
7,312 KB |
testcase_26 | AC | 355 ms
7,008 KB |
testcase_27 | AC | 345 ms
7,300 KB |
testcase_28 | AC | 252 ms
6,896 KB |
testcase_29 | AC | 391 ms
7,364 KB |
testcase_30 | AC | 310 ms
6,912 KB |
testcase_31 | AC | 321 ms
7,176 KB |
コンパイルメッセージ
Main.rb:42: warning: assigned but unused variable - size Syntax OK
ソースコード
N, K = gets.split.map &:to_i L = gets.split.map &:to_i LI = 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) }.sum end FirstScore = count_white def calc_score count_white - FirstScore end # p FirstScore # p calc_score() $memo = [] def update_memo(re = /1{5,}/) $memo.clear() $rows.map.with_index{|s, i| s.scan(re){ $memo << [:r, $&.size, i, $`.size] } } $cols.map.with_index{|s, i| s.scan(re){ $memo << [:c, $&.size, i, $`.size] } } $memo.sort_by!{|sym, size, idx, pos| -size} end ans = [] LI.each{|l, i| update_memo(/1{#{l-3},}/) sym, size, idx, pos = $memo.shift if sym.nil? sym = [:r, :c].sample idx = rand(N) pos = rand(N) end pos = [N - l, pos].min if sym == :r t = $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 + 1 b = pos + 1 d = pos + l else t = $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 + 1 a = pos + 1 c = pos + l end ans[i] = [a, b, c, d] } ans.each{|a| puts a * " " } # p calc_score()