455.分发饼干

原题链接:455.分发饼干

思路:
先使用大饼干喂饱大胃口的,再到剩余的里面用大饼干喂剩下大胃口的 ,直到全部满足或者喂不了了为止。

全代码:

class Solution {
public:
    int findContentChildren(vector<int>& g, vector<int>& s) {
        sort(g.begin(),g.end());
        sort(s.begin(),s.end());
        int s_index = s.size()-1;
        int count = 0;
        for(int i = g.size()-1; i >=0;i--)
        {
            if(s_index >= 0 && g[i] <= s[s_index])
            {//这里注意得s_index >=0放在前面 不然必然数组越界
                count++;
                s_index--;
            }
        }
        return count;
    }
};

你可能感兴趣的:(贪心)