博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
assign-cookies
阅读量:6812 次
发布时间:2019-06-26

本文共 954 字,大约阅读时间需要 3 分钟。

https://leetcode.com/problems/assign-cookies/

用贪心算法即可。

package com.company;import java.util.Arrays;import java.util.HashMap;import java.util.Map;class Solution {    public int findContentChildren(int[] g, int[] s) {        Arrays.sort(g);        Arrays.sort(s);        int i=0, j=0;        for (; i
s[j]) { j++; } if (j == s.length) { break; } j++; } return i; }}public class Main { public static void main(String[] args) throws InterruptedException { System.out.println("Hello!"); Solution solution = new Solution(); // Your Codec object will be instantiated and called as such: int[] g = {
1, 2, 3}; int[] s = {
3}; int ret = solution.findContentChildren(g, s); System.out.printf("ret:%d\n", ret); System.out.println(); }}

 

转载于:https://www.cnblogs.com/charlesblc/p/6075049.html

你可能感兴趣的文章
伪造邮件***,社工钓鱼,你中招了吗【一】
查看>>
笔试/面试题
查看>>
python set dict tuple and list
查看>>
Javascript小括号“()”的多义性
查看>>
Print 与Debug.Log的区别
查看>>
tornado(五)
查看>>
常用排序算法:桶排序
查看>>
Why bugs don’t get fixed? 不是所有的Bug都要修复
查看>>
C#DateTime的用法
查看>>
顺序链表(C++)
查看>>
opencv学习之路(2)--(图像创建复制和保存)
查看>>
Windows下搭建GCC + Eclipse + OpenOCD的ARM开发环境
查看>>
overflow
查看>>
约瑟夫环的线段树解法
查看>>
ACdream 1728 SJY's First Task
查看>>
HDU 3732 Ahui Writes Word
查看>>
leetcode 11 Contain with most water
查看>>
javascript 计时器,消失计时器
查看>>
Linux内核如何装载和启动一个可执行程序
查看>>
曼哈顿最小生成树
查看>>