一件趣事
CF 1063A Oh Those Palindromes 这道题。
不谈解法。
这道题的答案是相同的字符排在一起。
谈一谈代码实现。
我的写法是数一数每个字符出现了几次。
实际上最好的写法是:
string s;
cin >> s;
sort(s.begin(), s.end());
cout << s << endl;
「以解决问题为乐」
真的喜欢么?真的喜欢就去做吧。
Lost Boy Calling 。。。。
... Many of these issues are best dealt with at the algorithmic level, rather than by "tweaking" the code.
This is an obscurity that catches the unwary.
原来我什么都不懂。