結果
問題 | No.2924 <===Super Spaceship String===> |
ユーザー | Nzt3 |
提出日時 | 2024-10-19 17:40:17 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 13 ms / 2,000 ms |
コード長 | 989 bytes |
コンパイル時間 | 2,349 ms |
コンパイル使用メモリ | 206,652 KB |
実行使用メモリ | 8,916 KB |
最終ジャッジ日時 | 2024-10-19 17:40:21 |
合計ジャッジ時間 | 3,348 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 4 ms
6,816 KB |
testcase_08 | AC | 5 ms
6,816 KB |
testcase_09 | AC | 5 ms
6,820 KB |
testcase_10 | AC | 13 ms
8,916 KB |
testcase_11 | AC | 7 ms
6,820 KB |
testcase_12 | AC | 5 ms
6,820 KB |
testcase_13 | AC | 8 ms
8,276 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; using ll=long long; constexpr int MOD=998244353; #define rep(i,n) for(int i=0;i<(int)(n);i++) #define rep2(i,l,r) for(int i=(l);i<(int)(r);i++) #define all(v) v.begin(),v.end() int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); string S; cin>>S; int ans=S.size(); stack<pair<char,int>,vector<pair<char,int>>> memo; for(auto i:S){ if(i=='<'){ memo.push({'<',1}); }else if(i=='='){ if(!memo.empty()&&memo.top().first=='='){ memo.top().second+=1; }else{ memo.push({'=',1}); } }else if(i=='>'){ if(memo.size()>=2){ auto b=memo.top(); memo.pop(); auto a=memo.top(); memo.pop(); if(a.first=='<'&&b.first=='='){ ans-=a.second+b.second+1; }else{ memo.push(a); memo.push(b); memo.push({'>',1}); } }else{ memo.push({'>',1}); } } } cout<<ans<<'\n'; }