最小惩罚

给定⼀个 ⽆向图 包含 N 个节点和 M 条边, 每条边 Mi 的代价为 Ci 。图中⼀条
路径的惩罚是指对该路径上所有边的代价 Ci 执⾏位运算或(bitwise OR)操
作得到的。假如⼀条路径上包含了边 M1,M2,M3 … … ,Mk,那么对应的惩
罚就是 C1 OR C2 OR C3 OR … OR Ck。(OR代表位运算或,即 “|” )
问题:给定图上两个节点 start 和 end,找到从 start 到 end 的所有路径中惩罚
值最⼩的路径,对应的最⼩惩罚值作为结果返回。如果路径不存在就返回 -1。
注意:任意两个节点之间最多存在⼀条边,图中可能存在有环路。
需要实现的⽅法原型:
int minPath(int n, int[][] edges, int start, int end)
参数含义:
n:节点总数;节点编号从 1 开始,⼀直到 n,共有 n 个;
edges:⽆向图的边;edges[i] 表示边Mi,其中 edges[i][0] 和
edges[i][1] 是Mi的两个节点的编号,edges[i][2] 是Mi对应的代价 Ci;
start 和 end:路径的开始和结束节点编号
限制条件: 1 <= n <=1000
1 <= edges.length <= 10000
1 <= Ci <=1024
例:edges = [ [1,2,1],[2,3,3],[1,3,100] ],对应的图如下:
当 start = 1,end = 3 时,其最⼩惩罚路径是 1->2->3, C(1,2)=1并且C(2,3)=3,
对应的惩罚值为 1 | 3 = 3。

package A.ppp;

import java.util.*;
public class demo03 {
    public static void main(String[] args) {
        int[][] array=new int[][]{
                {1,2,1},
                {2,3,3},
                {1,3,100},
        };
        System.out.println(beautifulPath(3, array, 1, 3));
    }

    static int beautifulPath(int n, int[][] edges, int start, int end) {
        Map<Integer, Map<Integer, Integer>> edgesMap = getEdgesMap(n, edges);
        int result = minPath(edgesMap, start, end);
        return result == Integer.MAX_VALUE ? -1 : result;
    }
    
    //构建图
    private static Map<Integer, Map<Integer, Integer>> getEdgesMap(int n, int[][] edges) {
        Map<Integer, Map<Integer, Integer>> map = new HashMap<>(2 * n);
        List<int[]> list = new ArrayList<>(n);
        Collections.addAll(list, edges);
        list.forEach(e -> {
            int start = e[0];
            int end = e[1];
            int distance = e[2];
            map.computeIfAbsent(start, k -> new HashMap<Integer, Integer>(n));
            map.get(start).merge(end, distance, (a, b) -> b < a ? b : a);
        });
        return map;
    }

    //dfs求最小的路径
    private static int minPath(Map<Integer, Map<Integer, Integer>> edgesMap, int start, int end) {
        Map<Integer, Integer> startMap = edgesMap.get(start);
        int result = Integer.MAX_VALUE;
        for (Map.Entry<Integer, Integer> e : startMap.entrySet()) {
            int next = e.getKey();
            int path = e.getValue();
            if (next != end) {
                edgesMap.remove(start);
                path = path | minPath(edgesMap, next, end);
                edgesMap.put(start, startMap);
            }
            if (path < result) {
                result = path;
            }
        }
        return result;
    }
}

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值