码迷,mamicode.com
首页 >  
搜索关键字:choose the best rout    ( 3445个结果
CF1221F Choose a Square(二维偏序)
由于y=x,我们可以将点对称过来,以便(x,y)(x ...
分类:其他好文   时间:2019-10-07 11:28:19    阅读次数:86
条件控制
El可以从不同的域取出数据,但是不能进行逻辑处理,JSTL标签能通过:if、choose、when、otherwise进行条件控制。 1、<c:if>标签: 表单提交数据: <c:if>标签进行判断: 注意事项:对于EL标签内的字符串判断是否相等,不能用equals()方法,直接用==,即可。JST ...
分类:其他好文   时间:2019-10-06 18:25:01    阅读次数:96
一些数学上杂七杂八的东西
组合恒等式: $\sum\limits_{i=0}^n( 1)^i{n\choose i}=[n=0]$ 二项式反演: $f(n)=\sum\limits_{i=0}^n{n\choose i}g(i)\Leftrightarrow g(n)=\sum\limits_{i=0}^n( 1)^{n i ...
分类:其他好文   时间:2019-10-05 22:52:30    阅读次数:144
Machine Learning 错题集
Week1 Question 4 Some of the problems below are best addressed using a supervised learning algorithm, and the others with an unsupervised learning alg ...
分类:系统相关   时间:2019-10-05 10:39:03    阅读次数:157
bzoj3659Which Dreamed It
Solution $BEST$ 定理,套用完成后,由于每一个路径都对应了 $deg_1$ 这么多的不同起始方向的情况数,乘上去就可以了。 Code cpp include using namespace std; inline void read (int&a) { a = 0; char k = ...
分类:其他好文   时间:2019-10-02 23:22:17    阅读次数:176
CF1228E Another Filling the Grid
"题目链接" 问题分析 比较显见的容斥,新颖之处在于需要把横竖一起考虑…… 可以枚举没有$1$的行数和列数,答案就是 $$ \sum\limits_{i=0}^n\sum\limits_{j=0}^m( 1)^{i+j}{n\choose i}{n \choose j}(k 1)^{i n+j n ...
分类:其他好文   时间:2019-10-02 16:31:26    阅读次数:64
leetcode 188. Best Time to Buy and Sell Stock IV
class Solution { public: int maxProfit(int k, vector<int> &prices){ int n=prices.size(),v=0,p=0,ret=0; vector<int> profits; stack<pair<int,int>> vp; w... ...
分类:其他好文   时间:2019-10-02 12:58:58    阅读次数:62
LC 599. Minimum Index Sum of Two Lists
题目描述 Suppose Andy and Doris want to choose a restaurant for dinner, and they both have a list of favorite restaurants represented by strings. You need ...
分类:其他好文   时间:2019-09-30 23:35:43    阅读次数:128
Quick Sort
package sort /** * QuckSort best case O(nlgn), worst case O(n^2) * worst case occurred in: * 1. all element sorted * 2. partition unbalanced * */ clas... ...
分类:其他好文   时间:2019-09-30 12:45:21    阅读次数:84
AtCoder Beginner Contest 142【D题】【判断素数的模板+求一个数的因子的模板】
D - Disjoint Set of Common Divisors Problem Statement Given are positive integers AA and BB. Let us choose some number of positive common divisors of  ...
分类:其他好文   时间:2019-09-29 11:15:27    阅读次数:133
3445条   上一页 1 ... 30 31 32 33 34 ... 345 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!