leetcode 1170. 比较字符串最小字母出现频次

定义一个函数 f(s),统计 s  中(按字典序比较)最小字母的出现频次 ,其中 s 是一个非空字符串。

例如,若 s = "dcce",那么 f(s) = 2,因为字典序最小字母是 "c",它出现了 2 次。

现在,给你两个字符串数组待查表 queries 和词汇表 words 。对于每次查询 queries[i] ,需统计 words 中满足 f(queries[i]) < f(W) 的 词的数目 ,W 表示词汇表 words 中的每个词。

请你返回一个整数数组 answer 作为答案,其中每个 answer[i] 是第 i 次查询的结果。

 

示例 1:

输入:queries = ["cbd"], words = ["zaaaz"]
输出:[1]
解释:查询 f("cbd") = 1,而 f("zaaaz") = 3 所以 f("cbd") < f("zaaaz")。
示例 2:

输入:queries = ["bbb","cc"], words = ["a","aa","aaa","aaaa"]
输出:[1,2]
解释:第一个查询 f("bbb") < f("aaaa"),第二个查询 f("aaa") 和 f("aaaa") 都 > f("cc")。
 

提示:

1 <= queries.length <= 2000
1 <= words.length <= 2000
1 <= queries[i].length, words[i].length <= 10
queries[i][j]、words[i][j] 都由小写英文字母组成

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/compare-strings-by-frequency-of-the-smallest-character
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

    public int[] numSmallerByFrequency(String[] queries, String[] words) {

        int b = words.length;
        int[] w = new int[b];
        int[] buckets = new int[26];
        for (int i = 0; i < b; i++) {
            w[i] = count(words[i], buckets);
        }
        Arrays.sort(w);
        int a = queries.length;
        int[] values = new int[a];
        for (int i = 0; i < a; i++) {
            values[i] = getIndex(w, count(queries[i], buckets), 0, b - 1);
        }
        return values;
    }

    private int getIndex(int[] arr, int t, int st, int end) {
        if (arr[end] <= t) {
            return 0;
        }
        if (arr[st] > t) {
            return end + 1;
        }
        int e = end + 1;
        while (st < end) {
            int m = st + ((end - st) >> 1);
            if (arr[m] > t) {
                end = m;
            } else {
                st = m + 1;
            }
        }
        return e - st;
    }

    private int count(String a, int[] buckets) {
        Arrays.fill(buckets, 0);
        for(int i = 0, length = a.length(); i < length; i++) {
            buckets[a.charAt(i) - 'a']++;
        }
        int j;
        for(j = 0; j < 26;j++) {
            if(buckets[j] != 0) {
                return buckets[j];
            }
        }
        return 0;
    }

posted @ 2021-05-24 11:06  旺仔古李  阅读(67)  评论(0编辑  收藏  举报