AtCoder 总结

AtCoder

ABC 237 C

C-kasaka
题意:给定一个字符串询问在其前面加一些数量的'a'能否成为回文字符串?
思路想法:前面加'a'能构成回文字符串说明其在后面减去'a'后同样是回文字符串。
比赛时没有想清楚题目的陷阱(前面可能本身就有'a'),对STL库函数的运用不熟练,模拟能力要提升

#include <bits/stdc++.h>

int main()
{
	std::string s;
	std::cin >> s;
	int l = 0, r = s.length() - 1;
	while((r - l) >= 1 && s[l] == 'a' && s[r] == 'a'){
		l++; r--;
	}
	while(r - l >= 0 && s[r] == 'a') r--;
	s = s.substr(l, r - l + 1);
	if(s == std::string(s.rbegin(), s.rend()))
		std::cout << "Yes\n";
	else std::cout << "No\n";
	return 0;
}

ABC 237 E

E-Skiing
题意:

上一篇:.Net Core 控制台程序错误:Can not find runtime target for framework '.NETCoreApp,Version=v1.0' compatible with one of the target runtimes: 'win10-x64, win81-x64, win8-x64, win7-x64'.


下一篇:OJ-557-反转字符串中的单词-刷题计划