题解 | #数组分组#

数组分组

https://www.nowcoder.com/practice/9af744a3517440508dbeb297020aca86

import java.util.*;
public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        while (sc.hasNextInt()) {
            ArrayList<Integer> list = new ArrayList<>();
            int n = sc.nextInt();
            int val = 0;
            int sum = 0;
            for (int i = 0; i < n; i++) {
                int k = sc.nextInt();
                sum = sum + k;
                if (k % 5 == 0) {
                    val = val + k;
                } else if (k % 3 != 0) {
                    list.add(k);
                }
            }
            if (sum % 2 != 0) {
                System.out.println(false);
            } else {
                int num = sum / 2 - val;
                System.out.println(function(list, num));
            }
        }
    }

    public static boolean function(List<Integer> list, int n) {
        if (n == 0) {
            return true;
        }
        if (list.size() == 0) {
            return false;
        }
        for (int i = 0; i < list.size(); i++) {
            if (list.get(i) == n) {
                return true;
            }
        }
        for (int i = 0; i < list.size(); i++) {
            int k = list.get(i);
            List<Integer> tempList = new ArrayList<>(list);
            tempList.remove((Integer)k);
            if (function(tempList, n - k)) {
                return true;
            }
        }
        return false;
    }
}

全部评论

相关推荐

Bug压路:老哥看得出来你是想多展示一些项目,但好像一般最多两个就够了😂页数一般一页,多的也就2页;这些项目应该是比较同质化的,和评论区其他大佬一样,我也觉得应该展示一些最拿手的(质量>数量)😁😁😁专业技能部分也可以稍微精简一些
点赞 评论 收藏
分享
11-15 17:19
湖南大学 Java
成果成果成果果:这是哪个公司的hr,这么离谱吗,我没见过用性别卡技术岗的,身边女性同学拿大厂offer的比比皆是
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务