链接:https://ac.nowcoder.com/acm/contest/5600/E
来源:牛客网
题目描述
牛牛拿到了一个字符串。
他每次“点击”,可以把字符串中相邻两个相同字母消除,例如,字符串"abbc"点击后可以生成"ac"。
但相同而不相邻、不相同的相邻字母都是不可以被消除的。
牛牛想把字符串变得尽可能短。他想知道,当他点击了足够多次之后,字符串的最终形态是什么?
输入描述:
一个字符串,仅由小写字母组成。(字符串长度不大于300000)
输出描述:
一个字符串,为“点击消除”后的最终形态。若最终的字符串为空串,则输出0。
示例1
输入
复制
abbc
输出
复制
ac
示例2
输入
复制
abba
输出
复制
0
示例3
输入
复制
bbbbb
输出
复制
b
相邻的两个消掉,用栈来模拟,类似于括号配对
f
o
r
for
for这个数组,如果栈顶和
s
t
r
[
i
]
str[i]
str[i]相同则可以消掉(出栈)
注意输出0的情况即可
#ifdef debug
#include <time.h>
#include "/home/majiao/mb.h"
#endif
#include <iostream>
#include <algorithm>
#include <vector>
#include <string.h>
#include <map>
#include <set>
#include <stack>
#include <queue>
#include <math.h>
#define MAXN ((int)1e5+7)
#define ll long long int
#define INF (0x7f7f7f7f)
#define QAQ (0)
using namespace std;
#ifdef debug
#define show(x...) \
do { \
cout << "\033[31;1m " << #x << " -> "; \
err(x); \
} while (0)
void err() { cout << "\033[39;0m" << endl; }
#endif
template<typename T, typename... A>
void err(T a, A... x) { cout << a << ' '; err(x...); }
int n, m, Q, K, a[MAXN];
int main() {
#ifdef debug
freopen("test", "r", stdin);
clock_t stime = clock();
#endif
#if 0
scanf("%d %d ", &n, &m);
double tmin = 0, tmax = 0;
for(int i=1; i<=(n-m); i++) scanf("%d ", a+i), tmin += a[i];
tmax = tmin;
tmin += m;
tmax += 5*m;
printf("%.5lf %.5lf\n", tmin/n, tmax/n);
#endif
string str, line;
cin >> line;
for(int i=0; i<(int)line.length(); i++) {
if(!str.empty() && str.back()==line[i]) {
str.pop_back();
} else {
str.push_back(line[i]);
}
}
if(str.empty())
cout << "0" << endl;
else
cout << str << endl;
#ifdef debug
clock_t etime = clock();
printf("rum time: %lf 秒\n",(double) (etime-stime)/CLOCKS_PER_SEC);
#endif
return 0;
}