codeforces—1146B. Hate "A"——题解
程序员文章站
2022-05-04 16:25:29
...
这题看起来简单,but:
反正小编咕咕咕~~~~~难受
思路:
把 t 串中所有的字符a删去,形成一个新串t'。此时,我们发现:因为s'中没有字符a,所以我们删掉的都是s中的字符a,而题目告诉我们:将s中所有的字符a删去就能得到s',所以t't′就是由两个s′拼接而成。
题目中有不存在正解的情况,需要特判:
(1) t't′的长度不是偶数。此时t'不可能由两个s′拼接而成。
(2) t't′的前一半与后一半不完全相同。此时t't′不可能由两个s′拼接而成。
(3) 最难想到的一点!!! 在s′中存在字符a。与题目条件矛盾。
这是小编刚刚开始的算法(超时在第7个点):
#include<cstdio>
#include<iostream>
#include<cstring>
#include<algorithm>
using namespace std;
int main()
{
string t;
string s;
int j = 0;
cin>>t;
for(int i=0;i<t.length();i++){
if(t[i]!='a'){
s[j] = t[i];
j++;
}
}
if(j%2!=0){
cout<<":("<<endl;
return 0;
}
for(int i=0;i<j/2;i++){
if(s[i]!=s[i+j/2]){
cout<<":("<<endl;
return 0;
}
}
for(int i=t.length()-1;i>=t.length()-j/2;i--){
if(t[i] == 'a'){
cout<<":("<<endl;
return 0;
}
}
for(int i=0;i<t.length()-j/2;i++)
cout<<t[i];
return 0;
}
小编想了很久不知道怎么搞于是:
别人家的思路:
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;
}
上一篇: 队列
推荐阅读
-
Codeforces Global Round 9(A~D题解)
-
CodeForces April Fools Contest 2018题解
-
【Codeforces Global Round 7】A. Bad Ugly Numbers 题解
-
CodeForces 938E Max History 题解
-
Codeforces Round #659 (Div. 2) 题解
-
Codeforces 16D Logging 题解
-
Codeforces Round #654 (Div. 2) - 题解
-
Educational Codeforces Round 98 (Rated for Div. 2) A-E 题解
-
Codeforces Round #670 (Div. 2) (A~E题解)
-
Codeforces Round #491 (Div. 2)部分题解