最新 最热

791. Custom Sort String

思路2: 先把T的每个字符和对应个数存入bucket数组,根据S的顺序扫一遍,最后再扫一遍剩余字符(非S中的字符)。

2019-05-26
1

K-th Smallest Prime Fraction

思路1: 一种聪明的做法,如果A = [1, 7, 23, 29, 47],那么有:

2019-05-26
1

674. Longest Continuous Increasing Subsequence

LWC 49:674. Longest Continuous Increasing SubsequenceProblem: Given an unsorted array of integers, find the length of longest continuous increasing subsequen...

2019-05-26
1

Employee Free Time

思路: 大致题意是求所有区间的并集的补集。先根据区间的start排序,假设当前区间为now,那么如果新来的区间start在now区间表示的范围内,说明两个区间存在交集,更新右边界,直到不存在交集时,能够求得第一个补集,依此类推。...

2019-05-26
1

Set Intersection Size At Least Two

思路: 在选择区间中的元素时,我们可以随意选, 但随意选的后果是不能让set最优,所以可以从侧面反映出如果有【规则】的选择,可能达到全局最优。一个思路:对end进行排序,这样我们就能根据end进行规则的选择了。 1. 很明显,对...

2019-05-26
1

754. Reach a Number

思路: 本人没有特别好的思路,只能多举几个例子发现模式。例如,从0开始,第一步能够产生{+1, -1}, 第二步能够产生{+1, -1, +3, -3},我们枚举到第六步,有:...

2019-05-26
1

Prime Number of Set Bits in Binary Representation

传送门:762. Prime Number of Set Bits in Binary Representation

2019-05-26
1

torch.gather() 和torch.sactter_()的用法简析

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/Teeyohuang/article/details/82186666

2019-05-25
1

c++ unordered_map

unordered_map key无法取得时的的默认值int main() { unordered_map<string, string> m1; unordered_map<string, bool> m2; unordered_map<string, int> m3; c...

2019-05-25
0

【DP】花瓶插花求美学最大值

现在有F束不同品种的花束,同时有至少同样数量的花瓶被按顺序摆成一行,其位置固定于架子上,并从1至V按从左到右顺序编号,V是花瓶的数目(F≤V)。花束可以移动,并且每束花用1至F的整数唯一标识。标识花束的整数决定了花束在花...

2019-05-22
1