LintCode 主元素 II

作者: 六尺帐篷 | 来源:发表于2017-03-07 19:00 被阅读53次

题目

给定一个整型数组,找到主元素,它在数组中的出现次数严格大于数组元素个数的三分之一。

** 注意事项**
数组中只有唯一的主元素

样例
给出数组[1,2,1,2,1,3,3] 返回 1

分析

三三抵销法,但是也有需要注意的地方:
我们对cnt1,cnt2减数时,相当于丢弃了3个数字(当前数字,candidate1, candidate2)。也就是说,每一次丢弃数字,我们是丢弃3个不同的数字。
而Majority number超过了1/3所以它最后一定会留下来。
而m > N/3, N - 3x > 0.
3m > N, N > 3x 所以 3m > 3x, m > x 也就是说 m一定没有被扔完
最坏的情况,Majority number每次都被扔掉了,但它一定会在n1,n2中。

代码

public class Solution {
    /**
     * @param nums: A list of integers
     * @return: The majority number that occurs more than 1/3
     */
    public int majorityNumber(ArrayList<Integer> nums) {
        // write your code
        int candidate1 = 0, candidate2 = 0;
        int count1, count2;
        count1 = count2 = 0;
        
        for(int i=0;i<nums.size();i++) {
            if(candidate1 == nums.get(i)) {
                count1++;
            } else if(candidate2 == nums.get(i)) {
                count2++;
            }else if(count1 == 0) {
                candidate1 = nums.get(i);
                count1 = 1;
            }else if(count2 == 0) {
                candidate2 = nums.get(i);
                count2=1;
            } else {
                count1--;
                count2--;
            }
        }
        
        count1 = count2 = 0;
        for(int i=0;i<nums.size();i++) {
            if(nums.get(i) == candidate1) {
                count1++;
            } else if(nums.get(i) == candidate2) {
                count2++;
            }
        }
        
        return count1>count2?candidate1 :candidate2;
    }
}

相关文章

  • LintCode 主元素 II

    题目 给定一个整型数组,找到主元素,它在数组中的出现次数严格大于数组元素个数的三分之一。 ** 注意事项**数组中...

  • [LintCode]主元素

    原文发表在我的博客:主元素求关注、求交流、求意见、求建议。 问题 LintCode:主元素 描述 给定一个整型数组...

  • lintcode 主元素(|、||、|||)

    三道题感觉是一个题给定一个整型数组,找到主元素,它在数组中的出现次数严格大于数组元素个数的1/k。样例给出数组 [...

  • LintCode 主元素 III

    题目 给定一个整型数组,找到主元素,它在数组中的出现次数严格大于数组元素个数的1/k。注意事项数组中只有唯一的主元...

  • Flip Game II

    https://www.lintcode.com/problem/flip-game-ii/description

  • LintCode 221. Add Two Numbers II

    原题 LintCode 221. Add Two Numbers II Description You have ...

  • 8.Backpack II

    http://www.lintcode.com/zh-cn/problem/backpack-ii/

  • LintCode 150. Best Time to Buy a

    原题 LintCode 150. Best Time to Buy and Sell Stock II Descr...

  • LintCode 125. Backpack II

    原题 LintCode 125. Backpack II Description Given n items wi...

  • LintCode 70. Binary Tree Level O

    原题 LintCode 70. Binary Tree Level Order Traversal II Desc...

网友评论

    本文标题:LintCode 主元素 II

    本文链接:https://www.haomeiwen.com/subject/cfxvgttx.html