由于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
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
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
"题目链接" 问题分析 比较显见的容斥,新颖之处在于需要把横竖一起考虑…… 可以枚举没有$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
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
题目描述 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
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
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