結果

問題 No.2924 <===Super Spaceship String===>
ユーザー a01sa01toa01sa01to
提出日時 2024-10-18 00:15:53
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 28 ms / 2,000 ms
コード長 965 bytes
コンパイル時間 3,474 ms
コンパイル使用メモリ 251,684 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-18 00:15:58
合計ジャッジ時間 4,437 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 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,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 22 ms
6,820 KB
testcase_08 AC 23 ms
6,816 KB
testcase_09 AC 22 ms
6,820 KB
testcase_10 AC 28 ms
6,820 KB
testcase_11 AC 24 ms
6,820 KB
testcase_12 AC 22 ms
6,816 KB
testcase_13 AC 24 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
  #include "settings/debug.cpp"
#else
  #define Debug(...) void(0)
#endif
#define rep(i, n) for (int i = 0; i < (n); ++i)
using ll = long long;
using ull = unsigned long long;

int main() {
  string s;
  cin >> s;
  stack<pair<char, int>> st;
  for (char c : s) {
    bool flag = false;
    if (st.size() >= 2) {
      auto [c1, cnt1] = st.top();
      st.pop();
      auto [c2, cnt2] = st.top();
      st.pop();
      if (c2 == '<' && c1 == '=' && c == '>') {
        flag = true;
      }
      else {
        st.push({ c2, cnt2 });
        st.push({ c1, cnt1 });
      }
    }
    if (!flag) {
      if (c == '=' && !st.empty() && st.top().first == '=') {
        st.top().second++;
      }
      else {
        st.push({ c, 1 });
      }
    }
    Debug(st);
  }
  int ans = 0;
  while (!st.empty()) {
    auto [c, cnt] = st.top();
    st.pop();
    ans += cnt;
  }
  cout << ans << endl;
  return 0;
}
0