結果

問題 No.1021 Children in Classrooms
ユーザー もりをもりを
提出日時 2020-04-10 21:47:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 969 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 114,048 KB
最終ジャッジ日時 2024-09-15 19:52:55
合計ジャッジ時間 3,428 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 42 ms
52,096 KB
testcase_03 AC 58 ms
63,232 KB
testcase_04 AC 61 ms
63,488 KB
testcase_05 AC 59 ms
63,744 KB
testcase_06 AC 58 ms
63,744 KB
testcase_07 AC 59 ms
63,744 KB
testcase_08 AC 60 ms
64,128 KB
testcase_09 AC 135 ms
105,600 KB
testcase_10 AC 136 ms
105,472 KB
testcase_11 AC 134 ms
105,600 KB
testcase_12 AC 143 ms
105,344 KB
testcase_13 AC 140 ms
105,984 KB
testcase_14 AC 141 ms
105,728 KB
testcase_15 AC 119 ms
98,816 KB
testcase_16 AC 119 ms
98,688 KB
testcase_17 AC 120 ms
98,688 KB
testcase_18 AC 129 ms
114,048 KB
testcase_19 AC 63 ms
73,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
a = list(map(int,input().split()))
s = input()

# [l, r]
l,r = 0,n-1
l_margin = 0
r_margin = 0

for com in s:
    if l == r:
        if com == 'L':
            if l_margin:
                l_margin -= 1
                r_margin += 1
        else:
            if r_margin:
                r_margin -= 1
                l_margin += 1
        continue

    if com == 'L':
        if l_margin:
            l_margin -= 1
            r_margin += 1
            continue
        if l + 1 >= n:
            continue
        a[l + 1] += a[l]
        a[l] = 0
        l += 1
        r_margin += 1
    else:
        if r_margin:
            r_margin -= 1
            l_margin += 1
            continue
        if r - 1 < 0:
            continue
        a[r - 1] += a[r]
        a[r] = 0
        r -= 1
        l_margin += 1
    # print(a, l, r, l_margin, r_margin)

res = [0] * l_margin
res += a[l:r+1]
res += [0] * r_margin
print(*res)
# print(l, r)
0