题解 | 名字的漂亮度
名字的漂亮度
https://www.nowcoder.com/practice/02cb8d3597cf416d9f6ae1b9ddc4fde3
#include <iostream> #include <vector> #include <algorithm> using namespace std; int main() { int T; cin >> T; string str; while(cin >> str) { vector<int> alpha(26, 0); for(const char& c: str) { ++alpha[c - 'a']; } sort(alpha.begin(), alpha.end(), greater<int>()); int beauty = 0, initial = 26; for(const int& a: alpha) { if(a) { beauty += a * (initial--); } } cout << beauty << endl; } return 0; }