結果

問題 No.1021 Children in Classrooms
ユーザー hedwig100hedwig100
提出日時 2020-04-10 21:57:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 443 ms / 2,000 ms
コード長 1,031 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,824 KB
最終ジャッジ日時 2024-09-15 20:18:08
合計ジャッジ時間 5,964 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,752 KB
testcase_01 AC 33 ms
10,880 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 35 ms
10,880 KB
testcase_04 AC 35 ms
10,880 KB
testcase_05 AC 35 ms
10,880 KB
testcase_06 AC 35 ms
11,008 KB
testcase_07 AC 36 ms
11,008 KB
testcase_08 AC 36 ms
11,008 KB
testcase_09 AC 441 ms
30,212 KB
testcase_10 AC 426 ms
30,192 KB
testcase_11 AC 431 ms
30,084 KB
testcase_12 AC 442 ms
30,216 KB
testcase_13 AC 443 ms
30,212 KB
testcase_14 AC 442 ms
30,468 KB
testcase_15 AC 326 ms
25,256 KB
testcase_16 AC 344 ms
25,432 KB
testcase_17 AC 333 ms
26,400 KB
testcase_18 AC 388 ms
30,824 KB
testcase_19 AC 208 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7
INF = 10 ** 10
import sys
sys.setrecursionlimit(100000000)
dy = (-1,0,1,0)
dx = (0,1,0,-1)
from collections import deque
from heapq import heapify,heappush,heappop

def main():
    n,m = map(int,input().split())
    a = list(map(int,input().split()))
    s = input()
    d = 0
    r = 0
    l = 0
    lk = 0
    rk = n - 1
    for i in range(m):
        if s[i] == 'R':
            d += 1
            lk = min(lk + 1,n - 1)
            rk = min(rk + 1,n - 1)
            r = max(r,d)
        else:
            d -= 1
            lk = max(0,lk - 1)
            rk = max(0,rk - 1)
            l = min(l,d)
    
    l = -l
    ans = [0] * n
    if r + l >= n - 1:
        t = sum(a)
        ans[lk] = t
    else:
        j = lk
        for i in range(n):
            if i < l + 1:
                ans[lk] += a[i]
            elif l + 1 <= i < n - r - 1:
                j += 1
                ans[j] += a[i]
            else:
                ans[rk] += a[i]

    print(*ans)


if __name__ =='__main__':
    main()  
0