結果

問題 No.5002 stick xor
ユーザー letrangerjpletrangerjp
提出日時 2018-05-26 03:40:55
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 1,765 bytes
コンパイル時間 32,956 ms
実行使用メモリ 4,584 KB
スコア 29,784
最終ジャッジ日時 2018-05-26 03:41:30
ジャッジサーバーID
(参考情報)
judge9 /
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 943 ms
4,576 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 AC 970 ms
4,580 KB
testcase_05 AC 991 ms
4,576 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 939 ms
4,572 KB
testcase_12 AC 944 ms
4,568 KB
testcase_13 AC 997 ms
4,572 KB
testcase_14 AC 989 ms
4,568 KB
testcase_15 AC 909 ms
4,568 KB
testcase_16 AC 886 ms
4,568 KB
testcase_17 AC 960 ms
4,568 KB
testcase_18 AC 910 ms
4,568 KB
testcase_19 AC 963 ms
4,572 KB
testcase_20 AC 880 ms
4,568 KB
testcase_21 AC 960 ms
4,584 KB
testcase_22 AC 894 ms
4,572 KB
testcase_23 AC 965 ms
4,572 KB
testcase_24 AC 874 ms
4,580 KB
testcase_25 AC 976 ms
4,568 KB
testcase_26 AC 908 ms
4,568 KB
testcase_27 AC 952 ms
4,568 KB
testcase_28 AC 958 ms
4,568 KB
testcase_29 AC 911 ms
4,576 KB
testcase_30 AC 904 ms
4,572 KB
testcase_31 AC 938 ms
4,580 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.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 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.chars.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.chars.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
    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() if DEBUG
0