結果

問題 No.1021 Children in Classrooms
ユーザー 炭酸水炭酸水
提出日時 2022-05-17 22:09:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 401 ms / 2,000 ms
コード長 1,168 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,692 KB
最終ジャッジ日時 2024-09-15 19:46:25
合計ジャッジ時間 5,391 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 33 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 33 ms
10,880 KB
testcase_04 AC 33 ms
11,008 KB
testcase_05 AC 33 ms
10,880 KB
testcase_06 AC 34 ms
10,752 KB
testcase_07 AC 35 ms
11,008 KB
testcase_08 AC 35 ms
10,880 KB
testcase_09 AC 336 ms
30,340 KB
testcase_10 AC 334 ms
30,060 KB
testcase_11 AC 336 ms
30,296 KB
testcase_12 AC 357 ms
30,080 KB
testcase_13 AC 351 ms
30,216 KB
testcase_14 AC 354 ms
30,336 KB
testcase_15 AC 328 ms
25,468 KB
testcase_16 AC 351 ms
25,420 KB
testcase_17 AC 337 ms
26,140 KB
testcase_18 AC 401 ms
30,692 KB
testcase_19 AC 168 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

l = 0
r = 0
L = 0
R = 0
count = 0
count_ex = 0
ex_sw = True
for i in range(m):
    if s[i] == "L":
        l += 1
        count -= 1
        count_ex -= 1
        if L < l - r:
            L = l - r
            count = 0
        if count_ex < 0:
            count_ex = 0
    elif s[i] == "R":
        r += 1
        count += 1
        count_ex += 1
        if R < r - l:
            R = r - l
        if count_ex > n - 1:
            count_ex = n - 1

    if L + R == n - 1 and ex_sw:
        ex_sw = False
        if s[i] == "L":
            count_ex = 0
        elif s[i] == "R":
            count_ex = n - 1

if ex_sw:
    ans_L = 0
    ans_R = 0
    for i in range(L + 1):
        ans_L += a[i]
    for i in range(n - R - 1, n):
        ans_R += a[i]
    ans = [0] * count 
    ans.append(ans_L)
    if L + 1 < n - R - 1:
        ans[count + 1:] = a[L + 1: n - R - 1]
    ans.append(ans_R)
    for _ in range(n - len(ans)):
        ans.append(0)
    print(*ans)

else:
    ans_sum = 0
    for i in a:
        ans_sum += i
    ans = [0] * n
    ans[count_ex] = ans_sum
    print(*ans)
0