Alien Skin Eye Candy 7 for Mac是运行在ps上的滤镜包,alien skin eye candy 7 mac版主要用于制作各种特效,比如火焰、动物毛皮、烟雾、闪电等。这里带来eye candy 7特别版,安装后即可在photoshop中使用。 更容易 我们完全重写了Eye ...
分类:
其他好文 时间:
2021-04-15 12:12:56
阅读次数:
0
Alice and Bob received nn candies from their parents. Each candy weighs either 1 gram or 2 grams. Now they want to divide all candies among themselves ...
分类:
其他好文 时间:
2021-01-26 11:57:06
阅读次数:
0
Candies POJ - 3159 题意: 给班级小朋友分糖果,要求满足以下条件:给定$m$组关系$A,B,c$,表示$B$得到的糖果比$A$得到的不多于$c$个,即$candy[B]-candy[A]≤c$,求$1$号小朋友与$N$号小朋友糖果数之差的最大值。 思路: 线性差分约束。对式子$ca ...
分类:
其他好文 时间:
2020-07-29 10:05:28
阅读次数:
64
class Solution { public int candy(int[] ratings) { int n = ratings.length; int[] arr = new int[n]; Arrays.fill(arr,1); // 先每人分一个 for(int i = 1; i < n; ...
分类:
其他好文 时间:
2020-07-24 19:04:42
阅读次数:
61
Alice and Bob have candy bars of different sizes: A[i] is the size of the i-th bar of candy that Alice has, and B[j] is the size of the j-th bar of ca ...
分类:
其他好文 时间:
2020-07-02 10:42:14
阅读次数:
53
luogu AC通道! (官方数据) 题目描述 小智家里来了很多的朋友,总共有N个人,站成一排,分别编号为0到N-1,小智要给他们分糖果。但 是有的朋友有一些特殊的要求,有的人要求他左右的两个人(左边一个、右边一个,一共2个人)的 糖果数都比他的多,有的人要求他左右的两个人的糖果数都比他的少。同时小 ...
分类:
其他好文 时间:
2020-05-15 20:15:49
阅读次数:
116
给定 N 堆糖果,第 i 堆包含 ai 个糖果。
现在两人进行博弈。有两种操作选择:
(1)吃掉包含最多糖果的糖果堆。
(2)每堆吃掉一颗。
吃掉最后一颗糖的人判输,问谁必胜? ...
分类:
其他好文 时间:
2020-03-10 22:13:11
阅读次数:
57
如何用Haskell写一颗红黑树 "同步更新于Candy?的新家" Candy?在上学期的数算课上学了红黑树,但是他一直没写过。 最近他入门了一下Haskell,得知用Haskell可以很方便实现各种树结构,于是就去学了一下如何用Haskell写红黑树,发现只要不到60行(包括空行和类型签名)! 下 ...
分类:
其他好文 时间:
2020-02-11 19:32:36
阅读次数:
84
This is an interesting puzzle game. In the game, you need to use your brain, think carefully, operate reasonably, point your fingers to catch things, ...
分类:
其他好文 时间:
2019-12-07 19:33:20
阅读次数:
68
A Sweet Problem 题意:有3种糖果(什么蜡烛?分不清candy和candle的一定不止我一个中国人),每天要吃两种不同的各1颗。给出3种的数量,求可以吃多少天。 题解:假如数据小的话直接每次去最高的两个 ,然后sort就行了。可惜搞不得。但是每次取最高这个思路是没错的。假如三种数量很平 ...
分类:
其他好文 时间:
2019-11-30 09:39:06
阅读次数:
99