結果

問題 No.1802 Range Score Query for Bracket Sequence
ユーザー ForestedForested
提出日時 2022-01-07 12:19:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 881 bytes
コンパイル時間 616 ms
コンパイル使用メモリ 72,036 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-04-26 18:21:21
合計ジャッジ時間 4,418 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
8,704 KB
testcase_01 TLE -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <string>
#include <iostream>

#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
#pragma GCC target("avx2")

int main() {
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);
    
    std::size_t n, q;
    std::cin >> n >> q;
    std::string s;
    std::cin >> s;
    
    for (std::size_t qi = 0; qi < q; ++qi) {
        std::size_t type;
        std::cin >> type;
        if (type == 1) {
            std::size_t i;
            std::cin >> i;
            --i;
            s[i] ^= '(' ^ ')';
        } else {
            std::size_t l, r;
            std::cin >> l >> r;
            --l;
            std::size_t ans = 0;
            for (std::size_t i = l; i < r - 1; ++i) {
                if (s[i] == '(' && s[i + 1] == ')') {
                    ++ans;
                }
            }
            std::cout << ans << '\n';
        }
    }
}
0