結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 494 ms
5,252 KB
testcase_01 AC 442 ms
5,360 KB
testcase_02 AC 464 ms
5,380 KB
testcase_03 AC 541 ms
5,244 KB
testcase_04 AC 468 ms
5,360 KB
testcase_05 AC 448 ms
5,368 KB
testcase_06 AC 503 ms
5,356 KB
testcase_07 AC 451 ms
5,248 KB
testcase_08 AC 464 ms
5,252 KB
testcase_09 AC 505 ms
5,360 KB
testcase_10 AC 454 ms
5,356 KB
testcase_11 AC 458 ms
5,244 KB
testcase_12 AC 466 ms
5,244 KB
testcase_13 AC 438 ms
5,360 KB
testcase_14 AC 507 ms
5,364 KB
testcase_15 AC 464 ms
5,364 KB
testcase_16 AC 458 ms
5,368 KB
testcase_17 AC 507 ms
5,240 KB
testcase_18 AC 437 ms
5,348 KB
testcase_19 AC 442 ms
5,368 KB
testcase_20 AC 517 ms
5,248 KB
testcase_21 AC 461 ms
5,360 KB
testcase_22 AC 470 ms
5,244 KB
testcase_23 AC 528 ms
5,364 KB
testcase_24 AC 492 ms
5,364 KB
testcase_25 AC 488 ms
5,248 KB
testcase_26 AC 523 ms
5,248 KB
testcase_27 AC 481 ms
5,248 KB
testcase_28 AC 499 ms
5,364 KB
testcase_29 AC 461 ms
5,244 KB
testcase_30 AC 452 ms
5,252 KB
testcase_31 AC 507 ms
5,356 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.map &:to_i
}
$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
    }
    (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
    }
    (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|
      $rows[idx][j] ^= 1
      $cols[j][idx] ^= 1
    }
    a = c = idx + 1
    b = pos + 1
    d = pos + l
  else
    (pos...pos+l).each{|j|
      $cols[idx][j] ^= 1
      $rows[j][idx] ^= 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