結果

問題 No.2591 安上がりな括弧列
ユーザー H20H20
提出日時 2023-11-26 22:15:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 495 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 69,864 KB
最終ジャッジ日時 2024-09-27 08:31:06
合計ジャッジ時間 2,228 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,868 KB
testcase_01 AC 40 ms
54,192 KB
testcase_02 AC 41 ms
54,056 KB
testcase_03 AC 40 ms
53,084 KB
testcase_04 AC 40 ms
53,852 KB
testcase_05 AC 40 ms
53,132 KB
testcase_06 AC 40 ms
53,268 KB
testcase_07 AC 40 ms
52,396 KB
testcase_08 AC 40 ms
52,460 KB
testcase_09 AC 39 ms
53,456 KB
testcase_10 AC 41 ms
53,012 KB
testcase_11 AC 57 ms
65,988 KB
testcase_12 AC 53 ms
63,888 KB
testcase_13 AC 62 ms
67,404 KB
testcase_14 AC 55 ms
65,980 KB
testcase_15 AC 64 ms
68,952 KB
testcase_16 AC 60 ms
68,272 KB
testcase_17 AC 44 ms
58,904 KB
testcase_18 AC 53 ms
64,760 KB
testcase_19 AC 56 ms
64,592 KB
testcase_20 AC 68 ms
69,864 KB
testcase_21 AC 61 ms
67,752 KB
testcase_22 AC 67 ms
69,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
N = int(input())
S = list(input())
A = list(map(int, input().split())) 
ans = 0
h = []
cnt = 0
for s,a in zip(S,A):
    if s=='(':
        cnt+=1
    else:
        heapq.heappush(h,a)
        cnt-=1
        if cnt<0:
            cnt+=2
            ans+=heapq.heappop(h)
h = []
cnt = 0
for s,a in zip(S[::-1],A[::-1]):
    if s==')':
        cnt+=1
    else:
        heapq.heappush(h,a)
        cnt-=1
        if cnt<0:
            cnt+=2
            ans+=heapq.heappop(h)
print(ans)
0