Assume you are an awesome parent and want to give your children some cookies. But, you should give each child at most one cookie. Each child i has a greed factor gi, which is the minimum size of a cookie that the child will be content with; and each cookie j has a size sj. If sj >= gi, we can assign the cookie j to the child i, and the child i will be content. Your goal is to maximize the number of your content children and output the maximum number.

Note:
You may assume the greed factor is always positive.
You cannot assign more than one cookie to one child.

Example 1:

Input: [1,2,3], [1,1]

Output: 1

Explanation: You have 3 children and 2 cookies. The greed factors of 3 children are 1, 2, 3.
And even though you have 2 cookies, since their size is both 1, you could only make the child whose greed factor is 1 content.
You need to output 1.

Example 2:

Input: [1,2], [1,2,3]

Output: 2

Explanation: You have 2 children and 3 cookies. The greed factors of 2 children are 1, 2.
You have 3 cookies and their sizes are big enough to gratify all of the children,
You need to output 2.

//排序然后依次判断
 class Solution {
public:
int findContentChildren(vector<int>& g, vector<int>& s) {
sort(g.begin(),g.end());
sort(s.begin(),s.end());
int i,j=;
while(i<g.size()&&j<s.size()){
if(g[i]<=s[j])
i++;
j++;
}
return i;
}
};

最新文章

  1. 探讨webapp的SEO难题(上)
  2. Android中View的基础知识
  3. oracle远程连接太慢
  4. android 兼容性测试 CTS 测试过程(实践测试验证通过)
  5. (转)IIS7 优化-网站请发并发数
  6. phpcms V9 添加模块(转)
  7. AWS S3国内与国外的区别
  8. 【Xamarin-IOS 开发环境搭建】
  9. iframe,modaldialog父子窗口相互通信的问题
  10. mac相关
  11. 201521123066 《java程序设计》第一周学习总结
  12. 为了提高性能,怎样动态载入JS文件
  13. Android群英传笔记——第八章:Activity与Activity调用栈分析
  14. C# 如何隐藏或显示工作表中的网格线
  15. Vue基础之计算属性
  16. iPhone手机更换自定义铃声
  17. [UE4]创建Shooter基类,2种方法
  18. iOS ViewControllers 瘦身
  19. http 请求和格式
  20. jQuery学习-设置访问元素样式

热门文章

  1. MySQL数据库(5)_MySQL数据库视图、触发器
  2. css字体样式
  3. bootstrap插件实用方法
  4. 反射,hashlib模块,正则匹配,冒泡,选择,插入排序
  5. 【转】Linux下查看进程打开的文件句柄数
  6. flex 实现图片播放 方案二 把临时3张图片预加载放入内存
  7. JAVA ArrayUtils 数组工具类
  8. CSS实现三角形图标的原理!!!!今天总算弄懂了。
  9. matplotlib模块之子图画法
  10. Python 列表List的定义及操作