Student Valera is an undergraduate student at the University. His end of term exams are approaching and he is to pass exactly n exams. Valera
is a smart guy, so he will be able to pass any exam he t...
分类:
其他好文 时间:
2014-10-22 01:09:15
阅读次数:
273
Imagine that you are in a building that has exactly n floors. You can move between the floors in a lift. Let's number the floors from bottom
to top with integers from 1 to n.
Now you're on the flo...
分类:
其他好文 时间:
2014-10-22 01:07:40
阅读次数:
217
SELECT ROUND(( DATEDIFF(minute, '2014/1/3 18:40:00', '2014/1/4 20:00:00') ) / CONVERT(FLOAT, 60), 1) AS DiffDate
分类:
其他好文 时间:
2014-10-21 15:08:41
阅读次数:
183
As you know, all the kids in Berland love playing with cubes. Little Petya has n towers consisting of cubes of the same size. Tower with number i consists
of ai cubes
stacked one on top of the oth...
分类:
其他好文 时间:
2014-10-20 23:23:25
阅读次数:
282
题目连接题意:给n*m的0/1矩阵,q次操作,每次有两种:1)将x,y位置值翻转 2)计算以(x,y)为边界的矩形的面积最大值(1?≤?n,?m,?q?≤?1000)分析:考虑以(x,y)为下边界的情况,h=(x,y)上边最多的连续1的个数。那么递减的枚举,对于当前hx,仅仅须要看两側能到达的最远距...
分类:
其他好文 时间:
2014-10-20 22:47:25
阅读次数:
181
Codeforces Round #274 (Div. 2)...
分类:
其他好文 时间:
2014-10-20 19:28:23
阅读次数:
216
用MATLAB写了个这样的程序if((0<pwr<=2))wf_temp1=round(temp_wf0/2^7);elseif((2<pwr<=4))wf_temp1=round(temp_wf0/2^8);elseif((4<pwr<=8))wf_temp1=round(temp_wf0/2^9...
分类:
其他好文 时间:
2014-10-20 19:21:07
阅读次数:
160
本人在C#中进行小数舍入的时候常常会怀念Excel中的Round、RoundUp、RoundDown这几个函数,原因就是后者“接地气”,比较符合俺小老百姓的舍入要求,啥“银行家舍入法”就让银行家去用吧。先温习一下这几个Excel函数的功能:Round(value, digits)将value按四舍五...
题意: 给定一个N*N的矩阵,由0,1组成,只允许交换相邻的两行,把矩阵转化为下三角矩阵(对角线上方全是0),最少需要多少次交换?(保证可以转化为下三角矩阵)Large: N<=40解析: 假如每一行的1的个数都是不相同的,即,最终答案中的矩阵是唯一的,这就相当于求对给定数组冒泡排序需要几次交...
分类:
其他好文 时间:
2014-10-20 17:05:12
阅读次数:
226
Math.Round函数四舍五入的问题今天客户跑过来跟我说,我们程序里面计算的价格不对,我检查了一下,发现价格是经过折算后的价格,结果是可能小数位较多,而单据上只能打印两位价格,所以就对价格调用Math.Round(price,2)函数进行四舍五入。而出现问题的单价就是1.805,函数Math.Ro...
分类:
其他好文 时间:
2014-10-20 16:47:30
阅读次数:
110