結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー TANIGUCHI KousukeTANIGUCHI Kousuke
提出日時 2019-12-05 19:35:08
言語 Ruby
(3.3.0)
結果
AC  
実行時間 539 ms / 2,000 ms
コード長 605 bytes
コンパイル時間 803 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 12,544 KB
最終ジャッジ日時 2024-09-14 06:03:37
合計ジャッジ時間 16,401 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
12,160 KB
testcase_01 AC 131 ms
12,160 KB
testcase_02 AC 141 ms
12,288 KB
testcase_03 AC 197 ms
12,288 KB
testcase_04 AC 298 ms
12,032 KB
testcase_05 AC 192 ms
12,032 KB
testcase_06 AC 205 ms
12,160 KB
testcase_07 AC 237 ms
12,032 KB
testcase_08 AC 523 ms
12,416 KB
testcase_09 AC 333 ms
12,416 KB
testcase_10 AC 346 ms
12,288 KB
testcase_11 AC 473 ms
12,544 KB
testcase_12 AC 88 ms
12,032 KB
testcase_13 AC 86 ms
12,288 KB
testcase_14 AC 89 ms
12,032 KB
testcase_15 AC 86 ms
12,032 KB
testcase_16 AC 87 ms
12,032 KB
testcase_17 AC 539 ms
12,544 KB
testcase_18 AC 332 ms
12,160 KB
testcase_19 AC 201 ms
12,288 KB
testcase_20 AC 429 ms
12,416 KB
testcase_21 AC 97 ms
12,032 KB
testcase_22 AC 176 ms
12,160 KB
testcase_23 AC 87 ms
12,032 KB
testcase_24 AC 89 ms
12,160 KB
testcase_25 AC 90 ms
12,160 KB
testcase_26 AC 90 ms
12,032 KB
testcase_27 AC 86 ms
12,160 KB
testcase_28 AC 88 ms
12,032 KB
testcase_29 AC 88 ms
12,032 KB
testcase_30 AC 88 ms
12,160 KB
testcase_31 AC 89 ms
12,160 KB
testcase_32 AC 93 ms
12,160 KB
testcase_33 AC 474 ms
12,416 KB
testcase_34 AC 359 ms
12,416 KB
testcase_35 AC 382 ms
12,416 KB
testcase_36 AC 216 ms
12,032 KB
testcase_37 AC 414 ms
12,288 KB
testcase_38 AC 208 ms
12,160 KB
testcase_39 AC 378 ms
12,544 KB
testcase_40 AC 393 ms
12,416 KB
testcase_41 AC 397 ms
12,544 KB
testcase_42 AC 420 ms
12,288 KB
testcase_43 AC 404 ms
12,544 KB
testcase_44 AC 125 ms
12,160 KB
testcase_45 AC 514 ms
12,416 KB
testcase_46 AC 101 ms
12,032 KB
testcase_47 AC 172 ms
12,160 KB
testcase_48 AC 341 ms
12,160 KB
testcase_49 AC 183 ms
12,288 KB
testcase_50 AC 334 ms
12,160 KB
testcase_51 AC 286 ms
12,416 KB
testcase_52 AC 274 ms
12,288 KB
testcase_53 AC 520 ms
12,416 KB
testcase_54 AC 268 ms
12,032 KB
testcase_55 AC 99 ms
12,160 KB
testcase_56 AC 368 ms
12,288 KB
testcase_57 AC 248 ms
12,032 KB
testcase_58 AC 87 ms
12,032 KB
testcase_59 AC 85 ms
12,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def min(a,b); a < b ? a : b; end
def max(a,b); a > b ? a : b; end

N = gets.to_i
S = gets.chomp
A = gets.split.map(&:to_i)
Q = gets.to_i
K = gets.split.map(&:to_i)

E = Array.new(N + 1, 0).tap do |it|
  N.times do |i|
    it[i + 1] = it[i] + (S[i] == 'E' ? 1 : 0)
  end
end
H = Array.new(N + 1, 0).tap do |it|
  N.times do |i|
    it[i + 1] = it[i] + A[i]
  end
end

dp = Array.new(E[N] + 1, max(H[N] * 2, K.max * 2))

(1 .. N).each do |i|
  (0 ... i).each do |j|
    e = E[i] - E[j]
    k = H[i] - H[j]
    dp[e - 1] = min(dp[e - 1], k) if e > 0
  end
end
puts K.map{|k| dp.bsearch_index{|v| k < v } }


0