結果

問題 No.2924 <===Super Spaceship String===>
ユーザー masamasa
提出日時 2024-10-12 16:47:04
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 1,750 ms / 2,000 ms
コード長 734 bytes
コンパイル時間 4,263 ms
コンパイル使用メモリ 130,196 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-16 17:55:44
合計ジャッジ時間 4,105 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 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 14 ms
5,248 KB
testcase_08 AC 13 ms
5,248 KB
testcase_09 AC 14 ms
5,248 KB
testcase_10 AC 20 ms
5,248 KB
testcase_11 AC 16 ms
5,248 KB
testcase_12 AC 13 ms
5,248 KB
testcase_13 AC 1,750 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <vector>
#include <algorithm>
#include <string>
#include <utility>
#include <tuple>
#include <set>
#include <map>
#include <cassert>
#include <deque>

using namespace std;

int main() {
	string s;
	cin >> s;

	vector<char> v;

	int ans = 0;
	for (char c: s) {
		v.push_back(c);
		if (c != '>') { continue; }

		auto tmp = v;
		tmp.pop_back();
		if (tmp.empty() || tmp.back() != '=') {
			ans += v.size();
			v.clear();
			continue;
		}

		while (!tmp.empty() && tmp.back() == '=') {
			tmp.pop_back();
		}

		if (!tmp.empty() && tmp.back() == '<') {
			tmp.pop_back();
			v = tmp;
		} else {
			ans += v.size();
			v.clear();
		}
	}

	ans += v.size();
	cout << ans << endl;
	return 0;
}
0