結果

問題 No.2924 <===Super Spaceship String===>
ユーザー GOTKAKOGOTKAKO
提出日時 2024-10-12 14:47:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 861 bytes
コンパイル時間 2,415 ms
コンパイル使用メモリ 215,036 KB
実行使用メモリ 29,408 KB
最終ジャッジ日時 2024-10-12 14:47:40
合計ジャッジ時間 3,812 ms
ジャッジサーバーID
(参考情報)
judge2 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 203 ms
29,408 KB
testcase_08 AC 145 ms
26,984 KB
testcase_09 AC 229 ms
27,108 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    string s; cin >> s;
    int N = s.size();
    set<int> S;
    for(int i=0; i<N; i++) S.insert(i);

    stack<int> st;
    for(int i=0; i<N; i++){
        if(s.at(i) == '<'){st.push(i); continue;}
        if(s.at(i) == '=') continue;
        if(st.size()){
            int l = st.top(); st.pop();
            if(l+1 == i){
                while(st.size()) st.pop();
                continue; 
            }
            auto itr = S.lower_bound(l);
            vector<int> era;
            while(itr != S.end()){
                int p = *itr;
                if(p > i) break;
                era.push_back(p);
                itr++;
            }
            for(auto e : era) S.erase(e);
        }
    }
    cout << S.size() << endl;
}

0