結果
問題 | No.2924 <===Super Spaceship String===> |
ユーザー | ManjushriMitra |
提出日時 | 2024-11-29 19:22:07 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,738 bytes |
コンパイル時間 | 3,057 ms |
コンパイル使用メモリ | 249,344 KB |
実行使用メモリ | 14,312 KB |
最終ジャッジ日時 | 2024-11-29 19:22:11 |
合計ジャッジ時間 | 3,958 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
ソースコード
#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{ if(rle.back().fi == '=') rle.back().se += l; else rle.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; }