public class Solution { public int FindContentChildren(int[] g, int[] s) { var listg = g.OrderBy(x => x).ToList(); var lists = s.OrderBy(x => x).ToList(); i
转载 2017-04-19 11:09:00
54阅读
转自:http://blog.csdn.net/mobius_strip/article/details/40584263//暴力,数组运用,适合小数据#include#includeusing %d", &T); while(T--){
转载 2022-10-21 16:06:53
29阅读
原题链接 描述 Assume you are an awesome parent and want to give yo
转载 2021-08-10 20:59:00
26阅读
2评论
g(i)s(...
原创 2023-06-05 16:05:37
63阅读
地址:http://codeforces.com/problemset/problem/455/A Alex doesn't like boredom. That's why whenever he gets bored, he comes up with games. One long winte
原创 2022-09-26 16:41:54
43阅读
Periodic StringsTime Limit: 3000MS Memory Limit: Unknown 64bit IO Format: %lld & %lluDescription Periodic ...
转载 2016-01-10 20:56:00
98阅读
2评论
原题链接 考察:线性dp(状态机dp?) 错误思路: 对于每个数字按出现次数sz与值val的乘积排序,假设第一个值为x,$x*sz[x]>(x-1)*sz[x-1]\(但这并不表明\)(x-1)*sz[x-1]+(x+1)sz[x+1]会<xsz[x]$.所以贪心是不可取的. 正确思路: 选择没有规
转载 2021-06-30 19:29:00
178阅读
2评论
  A. Boredom time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output Alex doesn't like boredom. That's why whenever he gets bored, he comes
转载 2014-08-09 20:39:00
105阅读
2评论
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 g
转载 2018-12-01 17:17:00
41阅读
2评论
题目: 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 si
原创 2023-03-07 12:37:29
83阅读
题目大意:求字符串的最小周期,也就是子字符串的最小长度。解题思路:两个循环,暴力解决。注意格式,可能跟“编译器偷懒”有关,改了一次,大概就是确保每次得到子字符串是自己想要的。ac代码:#include #include using namespace std;int main(){ char a[1005], b[1005], c[1005]; int n, len
原创 2021-12-01 16:27:12
55阅读
/*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
原创 2022-02-03 14:36:28
82阅读
贪心class Solution { public int findContentChildren(int[] g, int[] s) {
原创 2022-07-29 06:40:15
64阅读
假设你是一位很棒的家长,想要给你的孩子们一些小饼干。但是,每个孩子最多只能给一块饼干。 对每个孩子 i,都有一个胃口值 g[i],这是能让孩子们满足胃口的饼干的最小尺寸;并且每块饼干 j,都有一个尺寸 s[j] 。如果 s[j] >= g[i],我们可以将这个饼干 j 分配给孩子 i ,这个孩子会得 ...
转载 2021-09-21 16:25:00
44阅读
2评论
每个孩子最多只能给一块饼干。对每个孩子 i,都有一个胃口值g[i],这是能让孩子们满足胃口的饼干的最小尺寸;并且每块饼干 j,都有一个尺寸 s[j]。如果 s[j]>= g[i],我们可以将这个饼干 j 分配给孩子 i ,这个孩子会得到满足。你的目标是尽可能满足越多数量的孩子,并输出这个最大数值。示例1:输入: g = [1,2,3], s = [1,1]输出: 1解释:你有三个孩子和两块小饼干,3个孩子的胃口值分别是:1,2,3。虽然你有两块小饼干,由于他们的尺寸...
原创 2023-03-02 18:52:12
126阅读
题目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 c
原创 5月前
21阅读
## 实现"opencv455 python"的步骤 ### 整体流程 首先,我们需要明确整个实现过程的步骤。下面是实现"opencv455 python"的步骤表格: | 步骤 | 操作 | | --- | --- | | 步骤1 | 下载并安装Python | | 步骤2 | 安装pip | | 步骤3 | 使用pip安装OpenCV | | 步骤4 | 验证安装 | ### 操作步骤
原创 2023-10-09 04:41:12
67阅读
/*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
原创 2021-07-09 14:05:12
92阅读
Alex doesn't like boredom. That's why whenever he gets bored, he comes up with games. One long winter evening he came up with a game and decided to pl
原创 2021-07-14 15:59:56
197阅读
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 g
转载 2020-07-03 11:45:00
61阅读
  • 1
  • 2
  • 3
  • 4
  • 5