結果

問題 No.2924 <===Super Spaceship String===>
ユーザー はるお味はるお味
提出日時 2024-10-14 09:14:02
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 836 bytes
コンパイル時間 2,955 ms
コンパイル使用メモリ 248,856 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-14 09:14:06
合計ジャッジ時間 3,601 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
typedef vector<int> VI;
typedef vector<VI> VVI;
typedef vector<long long> VL;
typedef vector<VL> VVL;
typedef long long LL;
#define all(a) (a).begin(), (a).end()
#define Yes(n) cout << ((n) ? "Yes" : "No"  ) << endl
#define ALL(a)  (a).begin(),(a).end()
#define pb push_back

int main() {
  string s;cin>>s;
  int n=s.size();
  int ans=n;
  int b=0,a,mod=-1;
  stack<int> B;
  rep(i,n){
    if(s[i]=='<'){mod=1;B.push(b); b=0;}
    if(s[i]=='>'){
      if(b>0){ans-=(b+2);
        if(B.size()>0){
          b=B.top();B.pop();
        }
        else{
          b=0;mod=-1;
        }
      }
      else{
        b=0;
        while(B.size()>0){B.pop();}
        mod=-1;
      }
    }
    if(s[i]=='='&&mod==1){b++;}
  }
  cout<<ans<<endl;
}
0