結果

問題 No.2924 <===Super Spaceship String===>
ユーザー じきお。じきお。
提出日時 2024-10-13 03:43:57
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 18 ms / 2,000 ms
コード長 1,255 bytes
コンパイル時間 2,891 ms
コンパイル使用メモリ 252,200 KB
実行使用メモリ 6,632 KB
最終ジャッジ日時 2024-10-16 17:56:15
合計ジャッジ時間 3,647 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 5 ms
5,248 KB
testcase_08 AC 5 ms
5,248 KB
testcase_09 AC 11 ms
5,248 KB
testcase_10 AC 18 ms
6,504 KB
testcase_11 AC 14 ms
5,248 KB
testcase_12 AC 11 ms
5,248 KB
testcase_13 AC 15 ms
6,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

#ifdef LOCAL
#include <debug_print.hpp>
#define debug(...) debug_print::multi_print(#__VA_ARGS__, __VA_ARGS__)
#else
#define debug(...) (static_cast<void>(0))
#endif

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    cout << fixed << setprecision(20);
    string S;
    cin >> S;

    int N = S.size(), ans = N;
    stack<pair<char, int>> stk;
    for (int i = 0; i < N; i++) {
        if (stk.empty()) {
            stk.emplace(S[i], 1);
        } else {
            if (S[i] == '=' && stk.top().first == '=') {
                stk.top().second++;
            } else {
                stk.emplace(S[i], 1);
            }
        }
        while (stk.size() >= 3) {
            auto [c3, cnt3] = stk.top();
            stk.pop();
            auto [c2, cnt2] = stk.top();
            stk.pop();
            auto [c1, cnt1] = stk.top();
            stk.pop();
            if (c1 == '<' && c2 == '=' && c3 == '>') {
                ans -= cnt2 + 2;
            } else {
                stk.emplace(c1, cnt1);
                stk.emplace(c2, cnt2);
                stk.emplace(c3, cnt3);
                break;
            }
        }
    }

    cout << ans << '\n';
}
0