名字的漂亮度

名字的漂亮度

http://www.nowcoder.com/questionTerminal/02cb8d3597cf416d9f6ae1b9ddc4fde3

使用计数排序即可

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;

public class Main {
    public static void main(String[] args) throws IOException {
         BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
        int n;
        String str;
        while ((str = reader.readLine()) != null) {
            n = Integer.parseInt(str);
            for (int i = 0; i < n; i++) {
                str = reader.readLine();
                System.out.println(solution(str));
            }
        }
        reader.close();
    }

    private static int solution(String str) {
        int[] count = new int[26];
        str = str.toLowerCase();
        for (int i = 0; i < str.length(); i++) {
            count[str.charAt(i) - 'a']++;
        }
        Arrays.sort(count);
        int res = 0;
        for (int i = count.length - 1, max = 26; i >= 0; i--) {
            if (count[i] == 0) break;
            res += count[i] * max;
            max--;
        }
        return  res;

    }
}
全部评论

相关推荐

不愿透露姓名的神秘牛友
2024-12-26 09:23
点赞 评论 收藏
分享
昨天 11:16
已编辑
北京邮电大学 Java
KalznAsawind:标准的八股问烂简历,面试官碰到这种简历一般都会开始轰炸八股了。其实我一直觉得项目、实习的作用是将面试官困在你的语境中,在你的语境中跟他解释项目背景和细节,跟他battle,减少他轰炸你八股的时间,这样压力会小很多。但是你的项目是一眼无落地、无背景的包装项目,所以对方也不会去在意你的项目背景,只会针对你的项目涉及的技术栈开始轰炸八股,会增大你的压力,而你面试过不过全看你八股背的熟不熟。
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务