题意:输入一个数x 从小到大输出所有满足 (k*leny+y)*x=y*10+k 的k*leny+y思路:因为x 为浮点数 所以等式两边都要乘 1e4 将等式化为 k(leny*x-1)*1e4=y(1e5-x*1e4) 可以通过枚举 len k 来求出y是否存在 存在时位数又是否符合条...
分类:
其他好文 时间:
2015-04-05 06:37:21
阅读次数:
152
Only trick is the 'Z'. Because when the number % 26 == 0, means there is a 'Z'. But when you n/=26, there is an extra 1 added to the n. EX:27 % 26 = 1...
分类:
其他好文 时间:
2015-03-19 09:59:13
阅读次数:
110
Since it need the min value of initial health, this dp tracks from the back to the start.The trick is either this knight has 1 health or base on next ...
分类:
其他好文 时间:
2015-03-19 08:51:07
阅读次数:
138
1. 问题描述页面滚动后,菜单栏会固定在页头,当锚点定位时,菜单会遮盖部分定位后的内容,所以需要在锚点定位后自动向下漂移Xpx。2. 解决办法a. 设定占位锚点,并给占位锚点设置样式,比如 hehehe .anchor { ...
分类:
其他好文 时间:
2015-03-16 16:13:37
阅读次数:
103
引自:http://wittawat.com/log-sum_exp_underflow.htmlMultiplying a series of termsp1p2?pnwhere0≤pi≤1can easily result in a numerical underflow. This is es...
分类:
其他好文 时间:
2015-03-15 23:36:10
阅读次数:
561
SVM是机器学习中神一般的存在,虽然自深度学习以来有被拉下神坛的趋势,但不得不说SVM在这个领域有着举足轻重的地位。本文从Hard SVM 到 Dual Hard SVM再引进Kernel Trick,然后推广到常用的Soft Kernel SVM。 一、Hard SVM SVM本身是从感知...
分类:
其他好文 时间:
2015-03-11 00:29:17
阅读次数:
120
【求N个数的最小公倍数】1、两两依次求解+提取公因数法。 2、质因数分解法。 例题 2、提取部分公因数法。 3、倍数Trick。 4、幂次Trick。
分类:
其他好文 时间:
2015-03-09 20:54:10
阅读次数:
115
【快速求解GCD的三个Trick】1、(ma,mb)=m(a,b)。 2、若(a,b)=1,则(ac,b) = (c,b)。 3、(a^n,b^n)=(a,b)^n
分类:
其他好文 时间:
2015-03-09 18:46:31
阅读次数:
122
http://ionicframework.com/getting-started/5 Ionic Framework App Development Tips and Trickshttp://www.sitepoint.com/5-ionic-app-development-tips-trick...
分类:
移动开发 时间:
2015-03-07 15:25:08
阅读次数:
162
题目链接:点击打开链接
题意:
给定n个点的树。
下面n-1行给出树
Q个询问。
每次询问 (u,v)问树上有多少个点到u点距离=到v点距离
思路:
首先这两个点的距离必须是偶数,若为奇数答案就是0
然后用lca找到中间节点即可。
trick : u==v ans = n
#include"cstdio"
#include"iostream"
#include"queue"
#...
分类:
其他好文 时间:
2015-03-03 23:42:20
阅读次数:
153