結果

問題 No.2924 <===Super Spaceship String===>
ユーザー ManjushriMitraManjushriMitra
提出日時 2024-11-29 19:15:35
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,676 bytes
コンパイル時間 2,983 ms
コンパイル使用メモリ 249,860 KB
実行使用メモリ 15,076 KB
最終ジャッジ日時 2024-11-29 19:15:40
合計ジャッジ時間 4,389 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,824 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 WA -
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 4 ms
6,816 KB
testcase_08 AC 3 ms
6,816 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 13 ms
14,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i,m,n) for(int i=m; i<int(n); ++i)
#define repll(i,m,n) for(ll i=m; i<ll(n); ++i)
#define all(a) (a).begin(), (a).end()
#define rall(a) (a).rbegin(), (a).rend()
#define fi first
#define se second

template<typename T> bool chmin(T& a, T b){ if(a > b){a = b; return true;} return false; }
template<typename T> bool chmax(T& a, T b){ if(a < b){a = b; return true;} return false; }

template<typename T> T gcd(T a, T b){ return a % b ? gcd(b, a % b) : b; }
template<typename T> T lcm(T a, T b){ return a / gcd(a, b) * b; }

vector<pair<char, int>> run_length(string s){
    int n = s.size();
    vector<pair<char, int>> res;

    char pre = s[0];
    int cnt = 1;
    rep(i, 1, n){
        if(s[i] == pre){
            ++cnt;
        }else{
            res.push_back({pre, cnt});
            pre = s[i], cnt = 1;
        }
    }
    res.push_back({pre, cnt});

    return res;
}

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

    string S;
    cin >> S;

    auto rle = run_length(S);

    vector<pair<char, int>> stk;
    for(auto [c, l] : rle){
        if(c != '='){
            rep(i, 0, l){
                stk.push_back({c, 1});
                int n = stk.size();
                if(n >= 3 && stk[n-3].fi == '<' && stk[n-2].fi == '=' && stk[n-1].fi == '>'){
                    rep(j, 0, 3) stk.pop_back();
                }
            }
        }else{
            stk.push_back({c, l});
        }
    }

    int ans = 0;
    for(auto [c, l] : stk){
        // rep(i, 0, l) cout << c;
        ans += l;
    }
    // cout << endl;
    cout << ans << endl;

    return 0;
}
0