結果

問題 No.1021 Children in Classrooms
ユーザー simansiman
提出日時 2020-09-04 03:17:33
言語 Ruby
(3.3.0)
結果
AC  
実行時間 306 ms / 2,000 ms
コード長 640 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 29,824 KB
最終ジャッジ日時 2024-05-03 13:45:10
合計ジャッジ時間 6,055 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
12,160 KB
testcase_01 AC 79 ms
12,288 KB
testcase_02 AC 78 ms
12,416 KB
testcase_03 AC 81 ms
12,288 KB
testcase_04 AC 79 ms
12,416 KB
testcase_05 AC 77 ms
12,544 KB
testcase_06 AC 78 ms
12,288 KB
testcase_07 AC 83 ms
12,544 KB
testcase_08 AC 80 ms
12,672 KB
testcase_09 AC 286 ms
29,440 KB
testcase_10 AC 292 ms
29,824 KB
testcase_11 AC 288 ms
29,696 KB
testcase_12 AC 288 ms
29,568 KB
testcase_13 AC 299 ms
29,568 KB
testcase_14 AC 290 ms
29,568 KB
testcase_15 AC 268 ms
26,368 KB
testcase_16 AC 271 ms
26,752 KB
testcase_17 AC 276 ms
27,264 KB
testcase_18 AC 306 ms
29,696 KB
testcase_19 AC 135 ms
12,672 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, M = gets.split.map(&:to_i)
A = gets.split.map(&:to_i)
S = gets.chomp

idx = 0
zure = 0
min_idx = Float::INFINITY
max_idx = -Float::INFINITY

S.each_char do |s|
  if s == 'L'
    idx -= 1
    zure -= 1
  else
    idx += 1
    zure += 1
  end

  zure = 0 if zure < 0
  zure = N - 1 if N <= zure

  min_idx = idx if min_idx > idx
  max_idx = idx if max_idx < idx
end

min_idx.abs.times do
  if A.size >= 2
    a1, a2 = A.shift(2)
    A.unshift(a1 + a2)
  end
end

max_idx.times do
  if A.size >= 2
    a1, a2 = A.pop(2)
    A.push(a1 + a2)
  end
end

ans = Array.new(N, 0)

A.each do |a|
  ans[zure] = a
  zure += 1
end

puts ans.join(' ')
0