結果

問題 No.5002 stick xor
ユーザー letrangerjpletrangerjp
提出日時 2018-05-26 10:21:05
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 1,717 bytes
コンパイル時間 34,409 ms
実行使用メモリ 4,620 KB
スコア 18,714
最終ジャッジ日時 2018-05-26 10:21:43
ジャッジサーバーID
(参考情報)
judge10 /
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 AC 920 ms
4,616 KB
testcase_04 AC 821 ms
4,612 KB
testcase_05 AC 861 ms
4,616 KB
testcase_06 AC 801 ms
4,616 KB
testcase_07 AC 791 ms
4,612 KB
testcase_08 TLE -
testcase_09 AC 946 ms
4,608 KB
testcase_10 AC 910 ms
4,612 KB
testcase_11 AC 959 ms
4,612 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 802 ms
4,620 KB
testcase_20 AC 809 ms
4,616 KB
testcase_21 AC 851 ms
4,608 KB
testcase_22 AC 827 ms
4,616 KB
testcase_23 AC 850 ms
4,608 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 947 ms
4,616 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 918 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