找最大的三个数和最小的两个数,最大积只有两种情况

最大乘积

http://www.nowcoder.com/questionTerminal/5f29c72b1ae14d92b9c3fa03a037ac5f

最大积res只有两种情况,res=Max(最大的数乘 次大的数乘 第三大的数,最大的数乘 最小的数乘 次小的数)
举例说明的话就是,如:[1,2,3,4],[-4,-3,-2,-1],[-2,-1,0,100,200,300]都是取第一种情况
如[-200,-100,0,1,2,3]就是取第二种情况

public class Main{
    Scanner scan=new Scanner(System.in);
    public static void main(String[] args) {
       MainmaxProduct=new Main();
       maxProduct.max_product();
    }
    static Comparator<Integer> cmp = new Comparator<Integer>() {
        public int compare(Integer e1, Integer e2) {
            return e2 - e1;
        }
    };
    private void max_product(){
        int n=scan.nextInt();
        int [] arr=new int[n];
        PriorityQueue<Integer> Descending=new PriorityQueue<>(cmp);//降序
        PriorityQueue<Integer> Ascending=new PriorityQueue<>();
        for(int i=0;i<n;i++){
            int temp=scan.nextInt();
            Ascending.add(temp);
            Descending.add(temp);
        }
        long max1=Descending.poll();
        long max2=Descending.poll();
        long max3=Descending.poll();
        long min1=Ascending.poll();
        long min2=Ascending.poll();
        long res=Math.max(max1*max2*max3,max1*(min1*min2));
        System.out.println(res);

    }
}
全部评论

相关推荐

2 收藏 评论
分享
牛客网
牛客企业服务