【T1T2】签到题

Problem Statement

东东有一个字符串X,该串包含偶数个字符,一半是 S 字符,一半是 T 字符
东东可以对该字符串执行 1010000 次操作:如果存在 ST 是该串的子串,则删除掉最左边的 ST。
即 TSTTSS⇒TTSS、SSSTTT⇒SSTT⇒ST⇒空

Input

(2 ≦ |X| ≦ 200,000)

Output

输出最终串的长度

Sample

Sample Input 1

TSTTSS

Sample Output 1

4

思路

考虑线性做法,遇到ST则删除,则直接进行类似括号匹配的操作:S则入栈,T则与栈顶S匹配,S出栈。最后栈的大小就是最终答案

代码

#include<iostream>
#include<cstdlib>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
#include<iomanip>
#include<stack>
using namespace std;
#define rep(i,s,t) for(int i=s;i<=t;i++)
#define mem(a,s) memset(a,s,sizeof(a))
stack<char> st;
char c;
int len;
int main(){
    //freopen("in.txt","r",stdin);
    while((c = getchar())!=EOF){
        if(c=='S')
            st.push(c);
        if(c=='T'){
            if(st.empty()||st.top()=='T'){
                len++;
                continue;
            }
            st.pop();
        }
    }
    cout<<len + st.size();
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值