結果
問題 | No.2924 <===Super Spaceship String===> |
ユーザー | erbowl |
提出日時 | 2024-10-12 15:04:12 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 916 bytes |
コンパイル時間 | 3,044 ms |
コンパイル使用メモリ | 251,188 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-12 15:04:16 |
合計ジャッジ時間 | 3,710 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,820 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,820 KB |
testcase_05 | WA | - |
testcase_06 | AC | 1 ms
6,816 KB |
testcase_07 | AC | 14 ms
6,816 KB |
testcase_08 | AC | 14 ms
6,816 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
ソースコード
typedef long long ll; typedef long double ld; #include <bits/stdc++.h> using namespace std; signed main() { string s; std::cin >> s; stack<pair<ll,bool>> st; ll n = s.size(); ll m = n; ll ald = 0; for (int i = 0; i < n; i++) { if(st.size()==0){ ald = 0; if(s[i]=='<'){ st.push({i,false}); } }else{ if(s[i]=='<'){ st.push({i,false}); }else if(s[i]=='='){ st.top().second = true; }else{ if(st.top().second){ m -= i-st.top().first+1-ald; ald += i-st.top().first+1; st.pop(); }else{ while(st.size()){ st.pop(); } } } } } std::cout << m << std::endl; };