結果

問題 No.2924 <===Super Spaceship String===>
ユーザー たごころたごころ
提出日時 2024-10-13 14:08:43
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 11 ms / 2,000 ms
コード長 1,314 bytes
コンパイル時間 1,094 ms
コンパイル使用メモリ 94,280 KB
実行使用メモリ 6,628 KB
最終ジャッジ日時 2024-10-16 17:56:15
合計ジャッジ時間 1,753 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,248 KB
testcase_07 AC 7 ms
6,508 KB
testcase_08 AC 7 ms
6,508 KB
testcase_09 AC 6 ms
5,864 KB
testcase_10 AC 11 ms
6,504 KB
testcase_11 AC 8 ms
6,248 KB
testcase_12 AC 6 ms
5,992 KB
testcase_13 AC 8 ms
6,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
using namespace std;
#define rep(i, n) for (int i = 0; i < (n); ++i)

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

    string s;
    cin >> s;
    int n = s.size();

    vector<int> v(n);
    int now = 0;
    vector<bool> co(n, true);
    vector<bool> judge(n, true);
    vector<char> st;

    rep(i, n){
        st.push_back(s[i]);

        if(s[i] == '<'){
            now++;
            if (now >= n) now = n - 1;
        }
        else if(s[i] == '>'){
            if(now > 0 && judge[now]){
                if(v[now] == 0){
                    v[now] = 0;
                    now--;
                    if(now >= 0) judge[now] = false;
                    if(now == 0) judge = co;
                }
                else{
                    int cnt = v[now] + 2;
                    if(st.size() >= cnt){ 
                        for(int j = 0; j < cnt; j++){
                            st.pop_back();
                        }
                    }
                    v[now] = 0;
                    now--;
                }
            }
        }
        else {
            if(now >= 0 && now < n) {
                v[now]++;
            }
        }
        if (now < 0) now = 0;
    }

    cout << st.size() << endl;
}
0