結果

問題 No.5002 stick xor
ユーザー letrangerjpletrangerjp
提出日時 2018-05-26 03:47:10
言語 Ruby
(3.3.0)
結果
AC  
実行時間 958 ms / 1,000 ms
コード長 1,713 bytes
コンパイル時間 27,365 ms
実行使用メモリ 4,620 KB
スコア 39,729
最終ジャッジ日時 2018-05-26 03:47:40
ジャッジサーバーID
(参考情報)
judge10 /
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 712 ms
4,608 KB
testcase_01 AC 701 ms
4,608 KB
testcase_02 AC 710 ms
4,612 KB
testcase_03 AC 756 ms
4,608 KB
testcase_04 AC 704 ms
4,608 KB
testcase_05 AC 668 ms
4,608 KB
testcase_06 AC 675 ms
4,612 KB
testcase_07 AC 763 ms
4,608 KB
testcase_08 AC 714 ms
4,608 KB
testcase_09 AC 821 ms
4,608 KB
testcase_10 AC 847 ms
4,612 KB
testcase_11 AC 782 ms
4,604 KB
testcase_12 AC 832 ms
4,612 KB
testcase_13 AC 842 ms
4,612 KB
testcase_14 AC 856 ms
4,604 KB
testcase_15 AC 882 ms
4,612 KB
testcase_16 AC 808 ms
4,612 KB
testcase_17 AC 791 ms
4,608 KB
testcase_18 AC 781 ms
4,612 KB
testcase_19 AC 778 ms
4,612 KB
testcase_20 AC 754 ms
4,608 KB
testcase_21 AC 743 ms
4,608 KB
testcase_22 AC 722 ms
4,616 KB
testcase_23 AC 777 ms
4,616 KB
testcase_24 AC 758 ms
4,608 KB
testcase_25 AC 798 ms
4,608 KB
testcase_26 AC 958 ms
4,608 KB
testcase_27 AC 855 ms
4,612 KB
testcase_28 AC 896 ms
4,616 KB
testcase_29 AC 943 ms
4,616 KB
testcase_30 AC 872 ms
4,620 KB
testcase_31 AC 870 ms
4,608 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:56: warning: assigned but unused variable - size
Syntax OK

ソースコード

diff #

DEBUG = false
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
$cols = board.transpose

def count_white
  $rows.map{|a|
    N - a.count(?1)
  }.sum
end
FirstScore = count_white

def calc_score
  count_white - FirstScore
end

p FirstScore if DEBUG
p calc_score() if DEBUG
def update_memo(len)
  max = 0
  res = nil
  $rows.each_with_index{|s, i|
    cusum = [sum = 0] + s.map{|c|
      sum += c == ?1 ? 1 : 0
    }
    (0..N-len).each{|j|
      if cusum[j+len] - cusum[j] > max
        max = cusum[j+len] - cusum[j]
        res = [:r, max, i, j]
        return res if max >= len
      end
    }
  }
  $cols.each_with_index{|s, i|
    cusum = [sum = 0] + s.map{|c|
      sum += c == ?1 ? 1 : 0
    }
    (0..N-len).each{|j|
      if cusum[j+len] - cusum[j] > max
        max = cusum[j+len] - cusum[j]
        res = [:c, max, i, j]
        return res if max >= len
      end
    }
  }
  res
end

ans = []
LI.each{|l, i|
  sym, size, idx, pos = update_memo(l)
  if sym.nil?
    sym = [:r, :c].sample
    idx = rand(N)
    pos = rand(N)
  end
  pos = [N - l, pos].min

  if sym == :r
    (pos...pos+l).each{|j|
      b = $rows[idx][j]
      $rows[idx][j] = b == ?1 ? ?0 : ?1
      c = $cols[j][idx]
      $cols[j][idx] = c == ?1 ? ?0 : ?1
    }
    a = c = idx + 1
    b = pos + 1
    d = pos + l
  else
    (pos...pos+l).each{|j|
      b = $cols[idx][j]
      $cols[idx][j] = b == ?1 ? ?0 : ?1
      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() if DEBUG
0