There are some problems: mismatch of model and reality; gradient explosion so, the dynamics can be quite messy, and backpropogating can be quite probl ...
分类:
其他好文 时间:
2018-05-23 20:26:52
阅读次数:
163
back function (return number) remember the structure Solution 2: dp keywards: how many ways and optimal 70. Climbing Stairs ...
分类:
其他好文 时间:
2018-05-16 15:15:34
阅读次数:
162
https://vjudge.net/problem/POJ-3616 猛刷简单dp的第一天第二题。 这道题乍一看跟背包很像,不同的在于它是一个区间,背包是定点,试了很久想往背包上套,都没成功。 这题的思路感觉有点陌生,又有点类似于求最长不降子序列的题。 dp[i]为到第i个区间为止(该区间肯定有i ...
分类:
其他好文 时间:
2018-05-12 03:24:42
阅读次数:
217
tomcat启动出现如下问题: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.libra ...
分类:
其他好文 时间:
2018-05-02 13:24:08
阅读次数:
218
题意: 给出n个点,以及每个点到其他点的有向距离,要求设计线路使得每一个点都在一个环中,如果设计的线路拥有最小值,那么这个线路就是可选的。输出这个最小值或者说明最小线路不存在。 思路: 在DAG的最小路径覆盖中,找到的最大匹配数实际是非终点的点的最大数量(每一个匹配对应一个起点),点数减去这个数量就 ...
分类:
其他好文 时间:
2018-04-12 18:00:39
阅读次数:
158
#include<iostream>#include<cstring>char a[10010][85],za[85][10010];int R[10010],C[10010];using std::cin;using std::cout;using std::endl;int r,c; void ...
分类:
其他好文 时间:
2018-04-11 23:11:02
阅读次数:
337
题目描述 In a 10-dollar shop, everything is worthy 10 dollars or less. In order to serve customers more effectively at the cashier, change needs to be pro ...
分类:
其他好文 时间:
2018-04-06 20:20:14
阅读次数:
226
"luogu" 题意 给你一个无向图$G(V,E)$。 每个顶点都有一个int范围内的整数的标记。 不同的顶点可能有相同的标记。 对于边$(u,v)$,我们定义$Cost(u,v)=\rm mark_u\ xor \ mark_v$。 现在我们知道某些节点的标记了。你需要确定其他节点的标记,以使边的 ...
分类:
其他好文 时间:
2018-04-06 10:48:42
阅读次数:
159
"luogu" 题意 给你一个无向图$G(V,E)$。 每个顶点都有一个int范围内的整数的标记。 不同的顶点可能有相同的标记。 对于边$(u,v)$,我们定义$Cost(u,v)=\rm mark_u\ xor \ mark_v$。 现在我们知道某些节点的标记了。你需要确定其他节点的标记,以使边的 ...
分类:
其他好文 时间:
2018-04-05 23:13:01
阅读次数:
185
Description 三个农民每天清晨5点起床,然后去牛棚给3头牛挤奶。第一个农民在300时刻(从5点开始计时,秒为单位)给他的牛挤奶,一直到1000时刻。第二个农民在700时刻开始,在 1200时刻结束。第三个农民在1500时刻开始2100时刻结束。期间最长的至少有一个农民在挤奶的连续时间为90 ...
分类:
其他好文 时间:
2018-04-04 12:40:14
阅读次数:
126