题目链接: NanoApe Loves Sequence Ⅱ Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 262144/131072 K (Java/Others) Problem Description NanoApe, the Ret ...
分类:
其他好文 时间:
2016-08-07 00:40:49
阅读次数:
165
js提供了parseInt()和parseFloat()两个转换函数。前者把值转换成整数,后者把值转换成浮点数。只有对String类型调用这些方法,这两个函数才能正确运行;对其他类型返回的都是NaN(Not a Number)。 一些示例如下: parseInt("1234blue"); //ret ...
分类:
Web程序 时间:
2016-08-06 17:33:14
阅读次数:
142
【题目大意】 求两个字符串的最长公共子串。 【思路】 对第一个字符串建立后缀自动机,第二个字符串去匹配。cnt记录当前最长公共子串的长度,而ret记录答案。 p代表位置指针,初始在rt位置。 对于第二个字符串的某一位s[i],如果当前有s[i]孩子,则cnt+1,继续往后移动;否则沿着pre指针返回 ...
分类:
其他好文 时间:
2016-08-06 12:51:43
阅读次数:
156
1 ll PowMod(ll a,ll b,ll MOD){ 2 ll ret=1; 3 while(b){ 4 if(b&1) ret=(ret*a)%MOD; 5 a=(a*a)%MOD; 6 b>>=1; 7 } 8 return ret; 9 } 10 ll fac[110219]; 11 ...
分类:
其他好文 时间:
2016-08-04 21:39:51
阅读次数:
164
函数的return 语句只能返回一个值,可以是任何类型。 因此,我们可以“返回一个 tuple类型,来间接达到返回多个值 ”。 例: x 除以 y 的余数与商的函数 def F1 ( x, y ): a = x % y b = (x-a) / y return ( a,b ) # 也可以写作 ret ...
分类:
编程语言 时间:
2016-08-02 18:49:38
阅读次数:
247
#include<stdio.h>int main(){int num,count=0,i=0,ret=0;scanf("%d",&num);count=num;while(num>1){ num/=2; ret++;}printf("log2 of %d = %d\n",count,ret); r ...
分类:
编程语言 时间:
2016-08-02 17:05:35
阅读次数:
1251
fszt = http.Sendsms_Http_Form_Load(phone, nr);//发送 //fszt = "{'RET-CODE':'SC:0000','adasdas':'sdfd-sds-sd-sd‘}"; string mobile = fszt.Substring(13, 7) ...
分类:
其他好文 时间:
2016-08-01 17:30:09
阅读次数:
127
<?php$conn=mysqli_init();if(!conn){ echo "mysqli_init error"; exit(0);}$ret=mysqli_real_connect($conn,"localhost","root","123456","test2",3306,MYSQL_C ...
分类:
Web程序 时间:
2016-08-01 15:52:51
阅读次数:
129
题目描述: Given an integer (signed 32 bits), write a function to check whether it is a power of 4. Example:Given num = 16, return true. Given num = 5, ret ...
分类:
编程语言 时间:
2016-07-30 22:22:37
阅读次数:
162
343. Integer Break Given a positive integer n, break it into the sum of at least two positive integers and maximize the product of those integers. Ret ...
分类:
其他好文 时间:
2016-07-24 07:02:26
阅读次数:
151