結果

問題 No.684 Prefix Parenthesis
ユーザー maspymaspy
提出日時 2020-04-23 21:39:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 275 ms / 2,000 ms
コード長 811 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 29,420 KB
最終ジャッジ日時 2024-10-14 00:12:58
合計ジャッジ時間 6,663 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 93 ms
14,848 KB
testcase_04 AC 183 ms
20,896 KB
testcase_05 AC 202 ms
21,924 KB
testcase_06 AC 91 ms
14,820 KB
testcase_07 AC 195 ms
21,024 KB
testcase_08 AC 51 ms
11,776 KB
testcase_09 AC 56 ms
12,160 KB
testcase_10 AC 266 ms
26,040 KB
testcase_11 AC 187 ms
21,016 KB
testcase_12 AC 57 ms
12,288 KB
testcase_13 AC 271 ms
28,776 KB
testcase_14 AC 260 ms
28,040 KB
testcase_15 AC 110 ms
17,052 KB
testcase_16 AC 238 ms
26,960 KB
testcase_17 AC 148 ms
19,808 KB
testcase_18 AC 33 ms
10,624 KB
testcase_19 AC 267 ms
27,780 KB
testcase_20 AC 275 ms
27,400 KB
testcase_21 AC 273 ms
26,292 KB
testcase_22 AC 248 ms
28,652 KB
testcase_23 AC 250 ms
29,420 KB
testcase_24 AC 259 ms
25,648 KB
testcase_25 AC 267 ms
25,648 KB
testcase_26 AC 31 ms
10,752 KB
testcase_27 AC 30 ms
10,752 KB
testcase_28 AC 31 ms
10,496 KB
testcase_29 AC 268 ms
27,844 KB
testcase_30 AC 265 ms
26,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

N = int(readline())
S = read().rstrip().decode()

L = '('
R = ')'

dp = [(0, 0)]
total_pair = 0
now_pair = 0
for x in S:
    a, b = dp[-1]
    if x == L:
        dp.append((a, b + 1))
    else:
        if b:
            now_pair += 1
            dp.append((a, b - 1))
        else:
            dp.append((a + 1, 0))
    total_pair += now_pair

dp.sort(key=lambda x: min(x))

left = []
right = []
for a, b in dp:
    if a <= b:
        left.append((a, b))
    else:
        right.append((a, b))

x = 0
y = 0
for a, b in left + right[::-1]:
    p = min(y, a)
    total_pair += p
    y -= p
    a -= p
    if not y:
        x, y = x + a, b
    else:
        x, y = x, y + b

print(total_pair * 2)
0