結果

問題 No.2924 <===Super Spaceship String===>
ユーザー GOTKAKOGOTKAKO
提出日時 2024-10-12 14:48:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 252 ms / 2,000 ms
コード長 846 bytes
コンパイル時間 2,335 ms
コンパイル使用メモリ 213,192 KB
実行使用メモリ 29,408 KB
最終ジャッジ日時 2024-10-16 17:53:24
合計ジャッジ時間 4,356 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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();
            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++;
            }
            if(era.size() == 2){
                while(st.size()) st.pop();
            }
            else for(auto e : era) S.erase(e);
        }
    }
    cout << S.size() << endl;
}

0