为了账号安全,请及时绑定邮箱和手机立即绑定

java算法

java算法

料青山看我应如是 2018-09-10 19:31:34
题目如下:The number of different path from C to C with duration of less than 30. In the sample data, the paths are: CDC, CEBC, CEBCDC, CDCEBC, CDEBC, CEBCEBC, CEBCEBCEBC.Graph: AB5, BC4, CD8, DC8, DE6, AD5, CE2, EB3, AE7题目意思大致是求出 C to C 在 长度在不超过30范围内共有过少条路径?
查看完整描述

2 回答

?
慕桂英546537

TA贡献1848条经验 获得超10个赞

题目没有给出数据范围,如果数据比较小的话,在每个点上挂一张表,表示从C到该点有哪些路径长度可行,然后从C开始做一遍BFS即可,最后统计C点上表的大小即可。如果数据比较大可以考虑Tarjan缩环啥的……

查看完整回答
1 反对 回复 2018-09-17
?
波斯汪

TA贡献1811条经验 获得超4个赞

private static class Pair{

    char c;

    int duration;


    public Pair(char c, int duration) {

        this.c = c;

        this.duration = duration;

    }

}


public int search(String[] input){

    Map<Character, Set<Pair>> map = new HashMap<>();

    for(String s: input){

        char c1 = s.charAt(0), c2 = s.charAt(1);

        int duration = s.charAt(2) - '0';

        if(!map.containsKey(c1))

            map.put(c1, new HashSet<>());

        map.get(c1).add(new Pair(c2, duration));

    }


    int count = 0;

    Queue<Pair> q = new LinkedList<Pair>();

    q.offer(new Pair('C', 0));

    while(!q.isEmpty()){

        int size = q.size();

        while(size-- > 0){

            Pair cur = q.poll();

            for(Pair p: map.get(cur.c)){

                if(cur.duration + p.duration >= 30)

                    continue;

                if(p.c == 'C')

                    count++;

                q.offer(new Pair(p.c, cur.duration + p.duration));

            }

        }

    }

    return count;

}


@Test

public void test(){

    assertEquals(7, search(new String[]{"AB5", "BC4", "CD8", "DC8", "DE6", 

            "AD5", "CE2", "EB3", "AE7"}));

}


查看完整回答
反对 回复 2018-09-17
  • 2 回答
  • 0 关注
  • 864 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信