最近求职真慌,一方面要看机器学习,一方面还刷代码。还是静下心继续看看课程,因为觉得实在讲的太好了。能求啥样搬砖工作就随缘吧。这节课的核心就在如何把kernel trick到logistic regression上。首先把松弛变量的表达形式修改一下,把constrained的形式改成unconstra...
分类:
其他好文 时间:
2015-07-09 19:34:53
阅读次数:
137
说到素数不得不说素数判定算法。其中极为经典的为Rabin Miller测试。通过二次探测的方法,我们可以将其正确率上升到一个很高的高度。二次探测的原理我还是不太懂,所以NOI前我暂时只是梳理一下这个算法的流程。首先,我来介绍一些小Trick。$O(1)$的快速乘。在一些卡常数而且爆long long...
分类:
其他好文 时间:
2015-07-07 10:55:26
阅读次数:
310
Well, it seems that many people meet the TLE problem. Well, I use a simple trick in my code to aoivd TLE. That is, each time before I try to break the...
分类:
其他好文 时间:
2015-06-10 10:21:23
阅读次数:
85
在SF上,有人提出一个问题:不用table,如何把Div分成3行*3列。提供了三种思路:第一种方式html:
1
2
3
4...
分类:
其他好文 时间:
2015-06-01 14:50:33
阅读次数:
112
:target是什么?MDN是这样描述的::target
The :target pseudo-class represents the unique element, if any, with >an id matching the fragment identifier of the URI of the document.
在document中,可以设置锚链接,举个粟子:<a href="...
分类:
其他好文 时间:
2015-06-01 14:49:49
阅读次数:
138
在JQuery中,有六个基本动画函数:show()/hide()、fadeIn()/fadeOut()、slideUp()/slideDown()。这篇文章,就利用CSS3+checkbox实现这六个基本动画。show()/hide()的实现show()/hide()的实现主要控制元素的display属性。
html:
<input type="checkbox...
分类:
Web程序 时间:
2015-06-01 13:17:39
阅读次数:
113
题意:给出多个double数,去掉其最小的和最大的,再对余下的求均值。思路:再输入时将最大和最小去掉,顺便统计非最值的和,输出时除一下个数即可。 1 #include 2 using namespace std; 3 4 int main() 5 { 6 //freopen("input...
分类:
其他好文 时间:
2015-05-29 17:49:20
阅读次数:
125
描述 Please look the picture carefully. Then I'll give you two integers and your task is output the third one.
Please never doubt the picture.
输入The first line is a number T(1
Each case contain...
分类:
其他好文 时间:
2015-05-27 14:03:14
阅读次数:
159
题意:
给出一组数据n个数,m个询问q,问最近的q的输入下标是多少?分析:
首先数据量比较大100000,查询的话肯定要用些技巧,刚开始想的是二分查询,用set,可是不知道set里放数据结构struct如何按照关键字lower_bound()。后来看了官方题解,先把数据离散话,然后利用set[]来存储下标。那么输出的时候就直接输出begin,删除也可以erase().
这里有个trick,刚开...
分类:
其他好文 时间:
2015-05-24 08:52:50
阅读次数:
113
hdu 2586How far away ?题目大意:给定n-1条边构成一棵树,无向的;和m个询问,对于每一个询问按顺序回答。结题思路:lca算法算出最近公共祖先,然后dis[u]+dis[v]-2*dis[father](father是u,v的最近公共祖先),小trick是在构造询问树的时候把权值...
分类:
其他好文 时间:
2015-05-20 11:10:47
阅读次数:
124