题解 | #点击消除#

点击消除

http://www.nowcoder.com/practice/8d3643ec29654cf8908b5cf3a0479fd5

#include <bits/stdc++.h>
using namespace std;
int main()
{
    stack<char> st;
    string s;
    cin>>s;
    for (auto& c: s) {
        bool flag = true;
        while (!st.empty() && st.top() == c) {
            st.pop();
            flag = false;
        }
        if (flag) st.push(c);
    }
    s = "";
    while (!st.empty()) {
        s = st.top() + s; st.pop();
    }
    if (s.size() > 0) cout<<s<<endl;
    else cout<<0<<endl;
    return 0;
}
全部评论

相关推荐

我即大橘:耐泡王
点赞 评论 收藏
分享
找不到工作死了算了:没事的,雨英,hr肯主动告知结果已经超越大部分hr了
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务