标签:[] 自己 div bsp 不能 for color .so 另一个
思路:策略就是选出自己方恰好强于对方的一匹马,只到选完,就是就是在一个数组里选择有多少数比另一个数组里某个数大,尽可能选差距小的,不能重复选。
public int winMost(int[] oppo, int[] horses, int n) { Arrays.sort(oppo); Arrays.sort(horses); int j=0,res=0; for(int i=0;i<n;i++){ if(horses[i]>oppo[j]){ j++; res++; } } return res; }
标签:[] 自己 div bsp 不能 for color .so 另一个
原文地址:http://www.cnblogs.com/team42/p/6719506.html