题解 | #数的选择#前缀和的思想

数的选择

https://www.nowcoder.com/practice/12f72e06fc424e4d9c685cd89f2bed36

import java.util.*;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    public static void main(String[] args) {
      Scanner in = new Scanner(System.in);
        // 注意 hasNext 和 hasNextLine 的区别
        int n=in.nextInt();
        int[]nums=new int[n];
        for (int i = 0; i < n; i++) {
            nums[i]=in.nextInt();
        }
        Arrays.sort(nums);
        long[]small=new long[n];
        small[0]=nums[0];
        for (int i = 1; i < n; i++) {
              small[i]=small[i-1]+nums[i];
        }
        long[]big=new long[n];
              long[]copy=new long[n];
        for (int i = 0; i < n; i++) {
            copy[i]=nums[nums.length-1-i];
            
        }
        big[0]=copy[0];
        for (int i =1; i <n; i++) {
            big[i]=big[i-1]+copy[i];
        }
         int left=1,right=0;
        while(left<nums.length) {
            if (big[right] > small[left]) {
                System.out.println(right+1);
                return;
            }
           right++;
            if(right<=left){
                left++;
            }
        }
        if(left==nums.length){
             System.out.println(-1);
        }
    }
}

全部评论

相关推荐

11-06 10:58
已编辑
门头沟学院 嵌入式工程师
双非25想找富婆不想打工:哦,这该死的伦敦腔,我敢打赌,你简直是个天才,如果我有offer的话,我一定用offer狠狠的打在你的脸上
点赞 评论 收藏
分享
白菜小丑呜呜:Radis写错了兄弟
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务