B. Hate "A"

题目链接
Bob has a string s consisting of lowercase English letters. He defines s′ to be the string after removing all “a” characters from s (keeping all other characters in the same order). He then generates a new string t by concatenating s and s′. In other words, t=s+s′ (look at notes for an example).

You are given a string t. Your task is to find some s that Bob could have used to generate t. It can be shown that if an answer exists, it will be unique.

Input
The first line of input contains a string t (1≤|t|≤105) consisting of lowercase English letters.

Output
Print a string s that could have generated t. It can be shown if an answer exists, it is unique. If no string exists, print “?” (without double quotes, there is no space between the characters).

input
aaaaa

output
aaaaa

input
aacaababc

output
?

input
ababacacbbcc

output
ababacac

input
baba

output
?

Note
In the first example, we have s= “aaaaa”, and s′= “”.

In the second example, no such s can work that will generate the given t.

In the third example, we have s= “ababacac”, and s′= “bbcc”, and t=s+s′= “ababacacbbcc”.

题解: pre统计的是s串,suf统计的是去掉a之后的字符串,如果两个字符串长度相等,就判断是否连接起来能构成s串,能构成就是可以,否则就是不可以,样例运行截图,用以理解
注意:一个超时点,必须先判断长度,否则,就超时!!
在这里插入图片描述

#include<bits/stdc++.h>
using namespace std;
int main(){
	string str,pre,suf;
	cin >> str;
	for(char c : str){
		pre += c;
		if(c != 'a') suf += c;
		if(pre.size() + suf.size() == str.size() && pre + suf == str){
			cout << pre << endl;
			return 0;
		}
	} 
	cout << ":(" << endl;
	return 0;
}
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值