結果

問題 No.2924 <===Super Spaceship String===>
ユーザー erbowlerbowl
提出日時 2024-10-12 15:07:31
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 18 ms / 2,000 ms
コード長 1,096 bytes
コンパイル時間 2,954 ms
コンパイル使用メモリ 255,308 KB
実行使用メモリ 7,856 KB
最終ジャッジ日時 2024-10-16 17:53:59
合計ジャッジ時間 3,316 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 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 1 ms
5,248 KB
testcase_07 AC 13 ms
5,248 KB
testcase_08 AC 13 ms
5,248 KB
testcase_09 AC 14 ms
5,248 KB
testcase_10 AC 17 ms
5,248 KB
testcase_11 AC 14 ms
5,248 KB
testcase_12 AC 13 ms
5,248 KB
testcase_13 AC 18 ms
7,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

typedef long long ll;
typedef long double ld;

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

signed main() {
    string s;
    std::cin >> s;
    stack<pair<ll,bool>> st;
    ll n = s.size();
    ll m = n;
    stack<ll> ald;
    for (int i = 0; i < n; i++) {
        if(st.size()==0){
            if(s[i]=='<'){
                st.push({i,false});
                ald.push(0);
            }
        }else{
            if(s[i]=='<'){
                st.push({i,false});
                ald.push(0);
            }else if(s[i]=='='){
                st.top().second = true;
            }else{
                if(st.top().second){
                    m -= i-st.top().first+1-ald.top();
                    ald.pop();
                    if(ald.size()){
                        ald.top() += i-st.top().first+1;
                    }
                    st.pop();
                }else{
                    while(st.size()){
                        st.pop();
                        ald.pop();
                    }
                }
            }
        }
    }
    std::cout << m << std::endl;

};
0