题解 | #素数伴侣#

素数伴侣

https://www.nowcoder.com/practice/b9eae162e02f4f928eac37d7699b352e

理解了一下匈牙利算法,好像是这么个事

import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Scanner;
import java.util.Set;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int n = in.nextInt();
        int[] nums = new int[n];
        for (int i = 0; i < n; i++) {
            nums[i] = in.nextInt();
        }
        List<Integer> aList = new ArrayList<>();
        List<Integer> bList = new ArrayList<>();
        List<Integer> cList = new ArrayList<>();

        for (int num : nums) { //根据奇偶分到两个list
            if (num % 2 == 0) {
                bList.add(num);
            } else {
                aList.add(num);
            }
        }

        if (aList.size() > bList.size()) { //使aList是总数较小的那个
            List<Integer> t = bList;
            bList = aList;
            aList = t;
        }

        n = aList.size();
        int m = bList.size();
        int[] use = new int[m];
        for (int i = 0; i < m; i++) {//标记use[j] = -1为未使用
            use[i] = -1;
        }
        int maxPartner = 0;
        for (int i = 0; i < n; i++) {
            boolean suc = find(aList, bList, i, use, cList);
            if (suc) {
                maxPartner++;
            }
        }
        System.out.println(maxPartner);
    }

    public static boolean find(List<Integer> aList, List<Integer> bList, int i,
                                   int[]use, List<Integer> cList) {
        int a = aList.get(i);
        for (int j = 0; j < bList.size(); j++) { //优先找没用的
            if (use[j] != -1) {
                continue;
            }
            if (isPrime(a + bList.get(j))) {
                use[j] = i;
                cList.add(j);
                return true;
            }
        }
        
        for(Integer j : cList) { //再找之前用过的,递归过程中标记use[j] = -2锁定这个j不能再被换
            if(use[j] == -2) {
                continue;
            }
            if (!isPrime(a + bList.get(j))) {
                continue;
            }
            int oldUse = use[j];
            use[j] = -2;
            if(find(aList, bList, oldUse, use, cList)) {
                use[j] = i;
                return true;
            }
            use[j] = oldUse;
        }
        return false;
    }


    static Map<Integer, Boolean> cache = new HashMap<>();
    public static boolean isPrime(int number) {
        if (cache.containsKey(number)) {
            return cache.get(number);
        }
        for (int i = 2; i <= Math.sqrt(number); i++) {
            if (number % i == 0) {
                return false;
            }
        }
        return true;
    }
}

全部评论

相关推荐

头像
10-22 20:13
中南大学 Java
序言大家好呀。我是希晨er,一个初入职场的程序猿小登最近上班摸鱼刷到了一篇文章:10年深漂,放弃高薪,回长沙一年有感,还有聊聊30岁大龄程序员过往的心路历程,突然就有点感慨。我如今也做出了和大明哥一样的抉择,只是更早。此外我22年的人生,好像从来没好好记录过。正好现在工作不太忙,就想把这些经历写下来,也希望能得到社区里各位前辈的指点个人背景我是03年出生的西安娃,父母都是普通打工人。刚从中南大学软件工程专业毕业半年,现在在老家的央企过着躺平摆烂的日子成长轨迹从农村到城市的童年我家并不是西安的,只是爸妈在西安上班,从小学之后就把我接到了西安。后来老家房子拆了,爷爷奶奶也搬了过来。农村的生活,我觉...
Yki_:看哭了,恋爱那一段你女朋友说你不够关心她,可你毕竟也愿意遇到矛盾写几千字来和她慢慢分析;说不愿意给她花钱,我感觉可能只是消费观不一样;如果她想留在长沙,也应该提前跟你说开。不过她也许会心疼你放弃大厂offer转向数字马力?我也因为同样的原因有过一段幸福而充满遗憾的感情,不过跟爱情相比确实前途更重要一点。至于offer的选择,换我我也会这么选。把这些旧事记录下来以后,接下来就好好向前看吧,加油兄弟
🍊晨光随笔
点赞 评论 收藏
分享
点赞 评论 收藏
分享
评论
1
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务