結果

問題 No.684 Prefix Parenthesis
ユーザー mkawa2mkawa2
提出日時 2022-01-25 11:13:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,422 bytes
コンパイル時間 474 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 104,704 KB
最終ジャッジ日時 2024-05-09 09:41:15
合計ジャッジ時間 6,113 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,480 KB
testcase_01 AC 41 ms
52,352 KB
testcase_02 AC 41 ms
52,480 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 164 ms
91,136 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 168 ms
93,696 KB
testcase_12 AC 85 ms
76,544 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 166 ms
98,048 KB
testcase_17 AC 124 ms
89,088 KB
testcase_18 AC 63 ms
62,848 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 114 ms
104,704 KB
testcase_23 AC 115 ms
104,576 KB
testcase_24 AC 158 ms
99,840 KB
testcase_25 AC 147 ms
94,720 KB
testcase_26 AC 41 ms
52,480 KB
testcase_27 AC 42 ms
52,352 KB
testcase_28 AC 41 ms
52,096 KB
testcase_29 WA -
testcase_30 AC 235 ms
93,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = (1 << 63)-1
inf = (1 << 31)-1
md = 10**9+7
# md = 998244353

n = II()
s = SI()
cs = [0]
cnt = cur = 0
for c in s:
    if c == "(":
        cs.append(cs[-1]+1)
        cur += 1
    else:
        cs.append(cs[-1]-1)
    cnt += cur

mn = [inf]
for s in cs[1:]:
    mn.append(min(mn[-1], s))
# pDB(cs)
# pDB(mn)

pos,neg=[],[]
for s,m in zip(cs[1:],mn[1:]):
    if s>=0:
        pos.append((s,m))
    else:
        neg.append((s,m))
pos.sort(key=lambda x:(-x[1],-x[0]))
neg.sort(key=lambda x:(x[1]-x[0],-x[1]))

# sm = [(s, m) for s, m in zip(cs[1:], mn[1:])]
# sm.sort(key=lambda x: (-x[0], x[1]))

now = 0
loss = 0
for s, m in pos+neg:
    loss += max(0, -now-m)
    now += s
    # pDB(s, m, now, loss)

ans = max(0, min(cnt, n*(n+1)//2-cnt-loss))
print(ans*2)
0