結果

問題 No.2924 <===Super Spaceship String===>
ユーザー AyunaAyuna
提出日時 2024-10-19 15:33:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 23 ms / 2,000 ms
コード長 668 bytes
コンパイル時間 1,060 ms
コンパイル使用メモリ 76,316 KB
実行使用メモリ 9,156 KB
最終ジャッジ日時 2024-10-19 15:33:34
合計ジャッジ時間 2,536 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>

using namespace std;
using ll = long long;


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