LeetCode //C - 1224. Maximum Equal Frequency

1224. Maximum Equal Frequency

Given an array nums of positive integers, return the longest possible length of an array prefix of nums, such that it is possible to remove exactly one element from this prefix so that every number that has appeared in it will have the same number of occurrences.

If after removing one element there are no remaining elements, it's still considered that every appeared number has the same number of ocurrences (0).

Example 1:

Input: nums = 2,2,1,1,5,3,3,5

Output: 7

Explanation: For the subarray 2,2,1,1,5,3,3 of length 7, if we remove nums4 = 5, we will get 2,2,1,1,3,3, so that each number will appear exactly twice.

Example 2:

Input: nums = 1,1,1,2,2,2,3,3,3,4,4,4,5

Output: 13

Constraints:
  • 2 < = n u m s . l e n g t h < = 10 5 2 <= nums.length <= 10^5 2<=nums.length<=105
  • 1 < = n u m s i < = 10 5 1 <= numsi <= 10^5 1<=numsi<=105

From: LeetCode

Link: 1224. Maximum Equal Frequency


Solution:

Ideas:

We can solve this in one pass by tracking two things: each value's frequency, and how many values currently have each frequency. The key is checking when the current prefix can be fixed by deleting exactly one number.

Code:
c 复制代码
int maxEqualFreq(int* nums, int numsSize) {
    int count[100001] = {0};   // count[x] = frequency of number x
    int freq[100002] = {0};    // freq[f] = how many numbers appear f times

    int ans = 0;
    int maxFreq = 0;

    for (int i = 0; i < numsSize; i++) {
        int x = nums[i];

        if (count[x] > 0) {
            freq[count[x]]--;
        }

        count[x]++;
        freq[count[x]]++;

        if (count[x] > maxFreq) {
            maxFreq = count[x];
        }

        int len = i + 1;

        /*
            Valid cases:

            1. maxFreq == 1
               Every number appears once.
               Remove any one element.

            2. One number appears maxFreq times,
               all others appear maxFreq - 1 times.
               Remove one occurrence from that number.

            3. One number appears once,
               all others appear maxFreq times.
               Remove that single-occurrence number.
        */
        if (maxFreq == 1 ||
            freq[maxFreq] == 1 &&
            freq[maxFreq] * maxFreq + freq[maxFreq - 1] * (maxFreq - 1) == len ||
            freq[1] == 1 &&
            freq[maxFreq] * maxFreq + 1 == len) {
            ans = len;
        }
    }

    return ans;
}
相关推荐
晓蛋2 天前
c语言指的是什么意思
c语言·编译器·编程开发·集成开发环境·程序实例
倒头就睡的小比特2 天前
算法竞赛C++常用的STL
c++·算法
小羊没烦恼!2 天前
初探性能优化——2个月到4小时的性能提升
java·开发语言·windows·算法·c#
傲世仙尊2 天前
目录即文件-Ext文件系统收尾篇
linux·c语言
牵猫散步的鱼儿2 天前
重载、重写(覆盖)、重定义区别
c语言
猎头南楼2 天前
知识社区推荐系统实践:新用户冷启动与长短期兴趣建模的挑战 资深推荐算法工程师
人工智能·深度学习·算法·机器学习
phltxy2 天前
C 语言指针:从内存地址到灵活的数据访问
c语言
phltxy2 天前
C 语言中的数据存储:从类型到二进制位
c语言
旖旎夜光2 天前
力控面试题 01.01: 判定字符是否唯一(位运算) —— 题解
c++·学习·算法·leetcode·力控
wzdark2 天前
大规模并行计算中的负载均衡算法研究4
算法