投递去哪儿等公司10个岗位 >
0 点赞 评论 收藏
分享
月亮粑粑201908072039983:感恩!已填写!请问下楼主填了这个内推链接还需要去校招官网补充什么信息吗
投递去哪儿等公司10个岗位 >
0 点赞 评论 收藏
分享
0 点赞 评论 收藏
分享
0 点赞 评论 收藏
分享
0 点赞 评论 收藏
分享
0 点赞 评论 收藏
分享
0 点赞 评论 收藏
分享
启1278:策略有点像田忌赛马。 1,把A和B进行排序 2,遍历B,对B中每一个数找到A中第一个大于这个数的 public static int getMostBonus(int n, int teamA[], int teamB[]) {
int res=0;
Arrays.sort(teamA);
Arrays.sort(teamB);
int i=0;
int j=0;
for( ;i<teamB.length;i++){
for( ;j<teamA.length;j++){
if(teamA[j]>teamB[i]){
res+=100;
j++;
break;
}
}
if (j==teamA.length){
res-=(teamB.length-i-1)*100;
break;
}
}
return res;
}
0 点赞 评论 收藏
分享
0 点赞 评论 收藏
分享
关注他的用户也关注了: