結果

問題 No.2145 Segment +-
ユーザー sotanishysotanishy
提出日時 2022-12-02 23:54:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 270 ms / 2,000 ms
コード長 753 bytes
コンパイル時間 354 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-10-10 02:18:37
合計ジャッジ時間 3,549 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 38 ms
51,712 KB
testcase_04 AC 39 ms
52,224 KB
testcase_05 AC 38 ms
52,480 KB
testcase_06 AC 43 ms
59,392 KB
testcase_07 AC 43 ms
59,392 KB
testcase_08 AC 44 ms
59,136 KB
testcase_09 AC 44 ms
59,008 KB
testcase_10 AC 221 ms
76,544 KB
testcase_11 AC 220 ms
76,160 KB
testcase_12 AC 39 ms
52,608 KB
testcase_13 AC 38 ms
52,736 KB
testcase_14 AC 38 ms
52,608 KB
testcase_15 AC 82 ms
76,160 KB
testcase_16 AC 67 ms
69,376 KB
testcase_17 AC 59 ms
67,200 KB
testcase_18 AC 69 ms
72,576 KB
testcase_19 AC 59 ms
66,944 KB
testcase_20 AC 195 ms
76,032 KB
testcase_21 AC 82 ms
76,176 KB
testcase_22 AC 66 ms
70,016 KB
testcase_23 AC 40 ms
52,480 KB
testcase_24 AC 197 ms
76,160 KB
testcase_25 AC 270 ms
76,436 KB
testcase_26 AC 256 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
S = input().rstrip()
L = 30
dp0 = [-10**18] * L
dp1 = [-10**18] * L
dp0[0] = 0
for i in range(N):
    for j in range(L-1):
        dp1[j+1] = max(dp1[j+1], dp0[j])
    ndp0 = [-10**18] * L
    ndp1 = [-10**18] * L
    if S[i] != "-":
        for j in range(L):
            ndp0[j] = max(ndp0[j], dp0[j]+1)
            if dp1[j]-1 >= 0:
                ndp1[j] = max(ndp1[j], dp1[j]-1)
    if S[i] != "+":
        for j in range(L):
            if dp0[j]-1 >= 0:
                ndp0[j] = max(ndp0[j], dp0[j]-1)
            ndp1[j] = max(ndp1[j], dp1[j]+1)
    dp0 = ndp0
    dp1 = ndp1
    for j in range(L):
        dp0[j] = max(dp0[j], dp1[j])
ans = 0
while dp0[ans] < 0:
    ans += 1
print(ans)
0