需要看的文档http://www.3gpp.org/ftp/Specs/archive/26_series/3GPP TS 26.2333GPP TS 26.2433GPP TS 26.244luxh找到的一个好东西http://isotc.iso.org/livelink/livelink/fe....
分类:
其他好文 时间:
2014-09-13 10:30:55
阅读次数:
828
矩阵快速幂+二分求前n项和
矩阵快速幂是有模板的,多做几道题就会理解,前提是要会快速幂取模;
之所以用二分是因为求和的过程:A^1+A^2...+A^(k-1)+A^k, k是1e9的,所以暴力求和肯定会TLE,在网上找到
了二分求矩阵和的方法;
公式为 (1+A^(k/2))*(A+A^2+..+A^k/2) 的,所以可以写成二分递归,如果k为奇数的话,su...
分类:
其他好文 时间:
2014-09-10 23:59:01
阅读次数:
601
Solve the puzzle, Save the world!Problem DescriptionIn the popular TV series Heroes, there is a tagline "Save the cheerleader, Save the world!". Here ...
分类:
其他好文 时间:
2014-09-09 23:01:19
阅读次数:
387
题意:求S(k) = A+A^2+...+A^k.解法:二分即可。if(k为奇) S(k) = S(k-1)+A^kelse S(k) = S(k/2)*(I+A^(k/2))代码:#include #include #include #include #define SMod musing ...
分类:
其他好文 时间:
2014-09-09 12:28:28
阅读次数:
199
AIX下RAC搭建系列AIX下RAC搭建Oracle10G(四)安装CRS环境节点节点1节点2小机型号IBM P-series 630IBM P-series 630主机名AIX203AIX204交换机SAN光纤交换机存储SAN T3存储大纲流程例如以下:第一部分:主机配置一、检測系统环境二、网络配...
分类:
数据库 时间:
2014-09-09 11:30:48
阅读次数:
392
tChart1.Aspect.View3D = false;//此属性默认是true3d的效果2d平面的效果题外话,在使用控件的时候,需要注意:在TChart控件上增加Series, series的3d属性会受到父控件的影响的如果TChart的Aspect.View3D为false的话,这里的设置....
分类:
其他好文 时间:
2014-09-03 16:27:26
阅读次数:
399
浙大acm,第一题 Calculate a + b Input The input will consist of a series of pairs of integers a and b,separated by a space, one pair of integers per line. Output For each pair of input integers a ...
分类:
编程语言 时间:
2014-09-03 06:16:56
阅读次数:
260
Migrating BDE Applications to FireDACGo Up to Migrating to FireDACThis article guides you through a series of the steps to migrate the BDE application...
分类:
其他好文 时间:
2014-09-02 19:46:55
阅读次数:
388
1 前言最近一个多月在做Web项目,用到的技术有(也不算泄漏公司机密吧):后台:Struts 2(with JSP/FreeMarker)、Spring、Hibernate、MySQL、Web Service(only dubbo interface);前台:jQuery series;Web服务器...
分类:
Web程序 时间:
2014-08-31 22:38:31
阅读次数:
267
转自:http://www.wiseowl.co.uk/blog/s148/group-pane-advanced-mode.htmRepeating Page Headers in Reporting Services 2008 R2Part two of a two-part series of...
分类:
其他好文 时间:
2014-08-29 19:52:08
阅读次数:
282