結果

問題 No.1021 Children in Classrooms
ユーザー kohei2019kohei2019
提出日時 2022-05-15 15:44:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 684 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 122,084 KB
最終ジャッジ日時 2024-09-12 22:49:43
合計ジャッジ時間 3,493 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,580 KB
testcase_01 AC 36 ms
52,156 KB
testcase_02 AC 37 ms
53,968 KB
testcase_03 AC 54 ms
65,744 KB
testcase_04 AC 56 ms
65,740 KB
testcase_05 AC 56 ms
67,412 KB
testcase_06 AC 53 ms
66,516 KB
testcase_07 AC 55 ms
66,992 KB
testcase_08 AC 54 ms
66,440 KB
testcase_09 AC 133 ms
113,640 KB
testcase_10 AC 133 ms
113,656 KB
testcase_11 AC 130 ms
113,624 KB
testcase_12 AC 141 ms
106,228 KB
testcase_13 AC 140 ms
105,884 KB
testcase_14 AC 140 ms
105,888 KB
testcase_15 AC 108 ms
108,452 KB
testcase_16 AC 112 ms
110,876 KB
testcase_17 AC 112 ms
108,664 KB
testcase_18 AC 124 ms
122,084 KB
testcase_19 AC 55 ms
63,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
lsA = list(map(int,input().split()))
S = input()
l = 0
r = 0
c = 0
for i in range(M):
    if S[i] == 'L':
        c -= 1
        l = min(l,c)
    else:
        c += 1
        r = max(r,c)
ans = [0]*N
l = abs(l)
if r+l >= N-1:
    ans[0] = sum(lsA)
else:
    ans = lsA[:]
    for i in range(l):
        ans[i+1] += ans[i]
        ans[i] = 0
    for i in range(N-1,N-1-r,-1):
        ans[i-1] += ans[i]
        ans[i] = 0
    ind = 0
    while ans[ind] == 0:
        ind += 1
    ans = ans[ind:]+[0]*ind
ind = 0
for i in range(M):
    if S[i] == 'L':
        ind = max(ind-1,0)
    else:
        ind = min(N-1,ind+1)

ans = [0]*ind+ans[:]

print(*ans[:N])
0