网易开发工程师编程题 比较重量 Java

比较重量

小明陪小红去看钻石,他们从一堆钻石中随机抽取两颗并比较她们的重量。这些钻石的重量各不相同。在他们们比较了一段时间后,它们看中了两颗钻石g1和g2。现在请你根据之前比较的信息判断这两颗钻石的哪颗更重。

给定两颗钻石的编号g1,g2,编号从1开始,同时给定关系数组vector,其中元素为一些二元组,第一个元素为一次比较中较重的钻石的编号,第二个元素为较轻的钻石的编号。最后给定之前的比较次数n。请返回这两颗钻石的关系,若g1更重返回1,g2更重返回-1,无法判断返回0。输入数据保证合法,不会有矛盾情况出现。

测试样例:
2,3,[[1,2],[2,4],[1,3],[4,3]],4

返回: 1

Solution
 import java.util.*;

 public class Cmp {
public int cmp(int g1, int g2, int[][] records, int n) {
Map<Integer,List<Integer>> map=new HashMap<Integer,List<Integer>>();
int max=0;
for(int[] pair:records){
if(!map.containsKey(pair[0])){
List<Integer> list=new ArrayList<Integer>();
list.add(pair[1]);
map.put(pair[0],list);
}
else map.get(pair[0]).add(pair[1]);
int temp=(pair[0]>pair[1])?pair[0]:pair[1];
max=(max>temp)?max:temp;
}
boolean[] isVisited1=new boolean[++max];
boolean[] isVisited2=new boolean[max];
if(isReachable(g1,g2,map,isVisited1)) return 1;
else if(isReachable(g2,g1,map,isVisited2)) return -1;
else return 0; }
private boolean isReachable(int now,int target,Map<Integer,List<Integer>> map,boolean[] isVisited){
if(now==target) return true;
isVisited[now]=true;
if(map.get(now)==null) return false;
int size=map.get(now).size();
for(int i=0;i<size;i++){
int next=map.get(now).get(i);
if(isVisited[next]) continue;
else if(isReachable(next,target,map,isVisited)) return true;
}
return false;
}
}
上一篇:业界观察:EMC摸索云存储的未来方向


下一篇:python接口自动化-参数化