結果

問題 No.684 Prefix Parenthesis
ユーザー tktk_snsntktk_snsn
提出日時 2021-01-16 09:28:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 556 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 88,244 KB
最終ジャッジ日時 2024-11-27 09:12:39
合計ジャッジ時間 4,761 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,096 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 42 ms
51,968 KB
testcase_03 AC 96 ms
78,884 KB
testcase_04 AC 147 ms
84,096 KB
testcase_05 AC 156 ms
84,992 KB
testcase_06 AC 96 ms
78,180 KB
testcase_07 WA -
testcase_08 AC 71 ms
70,784 KB
testcase_09 WA -
testcase_10 AC 188 ms
88,192 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 76 ms
76,928 KB
testcase_14 AC 76 ms
75,904 KB
testcase_15 AC 62 ms
67,456 KB
testcase_16 AC 53 ms
65,152 KB
testcase_17 AC 51 ms
62,208 KB
testcase_18 AC 46 ms
57,856 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 194 ms
88,052 KB
testcase_22 AC 46 ms
58,880 KB
testcase_23 AC 47 ms
58,752 KB
testcase_24 AC 53 ms
65,280 KB
testcase_25 AC 130 ms
86,032 KB
testcase_26 AC 47 ms
52,096 KB
testcase_27 AC 42 ms
52,480 KB
testcase_28 AC 41 ms
52,208 KB
testcase_29 WA -
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()

R = 0  # (((
LR = []  # ))((
L = 0  # ))

ans = 0

add = 0
cntL = 0
cntR = 0
for s in S:
    if s == ")":
        if cntR:
            cntR -= 1
            add += 2
        else:
            cntL += 1
    elif s == "(":
        cntR += 1

    ans += add

    if cntL and cntR:
        LR.append((cntL, cntR))
    elif cntL:
        L += cntL
    elif cntR:
        R += cntR


LR.sort(key=lambda x: (x[0], -x[1]))
for l, r in LR:
    d = min(R, l)
    ans += 2 * d
    R -= d
    R += r
d = min(R, L)
ans += 2 * d

print(ans)
0