結果

問題 No.2924 <===Super Spaceship String===>
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-10-12 18:39:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 22 ms / 2,000 ms
コード長 852 bytes
コンパイル時間 2,204 ms
コンパイル使用メモリ 204,528 KB
実行使用メモリ 13,932 KB
最終ジャッジ日時 2024-10-16 17:56:00
合計ジャッジ時間 2,846 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

void fast_io() {
	ios_base::sync_with_stdio(false);
	cin.tie(nullptr);
}

int main() {
	fast_io();
	string s;
	cin >> s;
	vector<pair<char, int>> rle;
	for (int i = 0; i < s.size(); i++) {
		if (rle.empty() || rle.back().first != s[i] || s[i] != '=') {
			rle.push_back({s[i], 1});
		} else {
			rle.back().second++;
		}
	}
	int l = rle.size();
	vector<pair<char, int>> st;
	for (auto [c, cnt] : rle) {
		if (c == '=' && !st.empty() && st.back().first == '=') {
			st.back().second += cnt;
		} else {
			st.push_back({c, cnt});
		}
		if (st.size() >= 3 && st[st.size() - 3].first == '<' &&
			st[st.size() - 2].first == '=' && st[st.size() - 1].first == '>') {
			st.pop_back();
			st.pop_back();
			st.pop_back();
		}
	}
	int ans = 0;
	for (auto [c, cnt] : st) {
		ans += cnt;
	}
	cout << ans << endl;
}
0