結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー TANIGUCHI KousukeTANIGUCHI Kousuke
提出日時 2019-12-06 11:27:18
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 530 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-06-02 09:16:45
合計ジャッジ時間 14,145 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
12,160 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 AC 168 ms
12,032 KB
testcase_04 AC 249 ms
12,288 KB
testcase_05 AC 163 ms
12,160 KB
testcase_06 AC 175 ms
12,416 KB
testcase_07 AC 203 ms
12,288 KB
testcase_08 RE -
testcase_09 AC 279 ms
12,416 KB
testcase_10 AC 295 ms
12,416 KB
testcase_11 AC 405 ms
12,672 KB
testcase_12 AC 78 ms
12,160 KB
testcase_13 AC 77 ms
12,160 KB
testcase_14 AC 77 ms
12,160 KB
testcase_15 AC 77 ms
12,160 KB
testcase_16 AC 77 ms
12,160 KB
testcase_17 AC 466 ms
12,544 KB
testcase_18 AC 277 ms
12,160 KB
testcase_19 AC 177 ms
12,416 KB
testcase_20 AC 356 ms
12,544 KB
testcase_21 AC 92 ms
12,160 KB
testcase_22 AC 155 ms
12,288 KB
testcase_23 AC 80 ms
12,416 KB
testcase_24 AC 83 ms
12,160 KB
testcase_25 AC 86 ms
12,288 KB
testcase_26 AC 78 ms
12,160 KB
testcase_27 AC 75 ms
12,288 KB
testcase_28 AC 76 ms
12,032 KB
testcase_29 AC 78 ms
12,160 KB
testcase_30 AC 76 ms
12,160 KB
testcase_31 RE -
testcase_32 AC 79 ms
12,160 KB
testcase_33 AC 397 ms
12,544 KB
testcase_34 AC 303 ms
12,672 KB
testcase_35 RE -
testcase_36 RE -
testcase_37 AC 350 ms
12,288 KB
testcase_38 AC 177 ms
12,160 KB
testcase_39 RE -
testcase_40 RE -
testcase_41 AC 332 ms
12,672 KB
testcase_42 AC 351 ms
12,544 KB
testcase_43 AC 340 ms
12,544 KB
testcase_44 AC 113 ms
12,672 KB
testcase_45 AC 444 ms
12,416 KB
testcase_46 AC 91 ms
12,160 KB
testcase_47 RE -
testcase_48 RE -
testcase_49 RE -
testcase_50 AC 281 ms
12,416 KB
testcase_51 AC 242 ms
12,416 KB
testcase_52 AC 235 ms
12,544 KB
testcase_53 RE -
testcase_54 AC 235 ms
12,032 KB
testcase_55 AC 86 ms
12,160 KB
testcase_56 AC 309 ms
12,416 KB
testcase_57 RE -
testcase_58 AC 84 ms
12,160 KB
testcase_59 AC 77 ms
12,288 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)
H = Array.new(N + 1, 0)

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

dp = Array.new(E[N] + 10, Float::INFINITY)
dp[0] = 0

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