Bubu's bookshelf is in a mess! Help him!There arenbooks on his bookshelf. We define the mess value to be the number of segments ofconsecutive equal-he...
分类:
其他好文 时间:
2014-07-19 20:36:17
阅读次数:
248
二进制的语法 C/C++默认数字使用十进制,八进制使用前缀 0, 十六进制使用前缀 0x 或 0X,二进制常数的提议被否决(引用C 语言程序原理国际标准的 6.4.4.1 章节字段 "A proposal to add binary constants was rejected due to la....
分类:
编程语言 时间:
2014-07-19 20:07:01
阅读次数:
240
扩展欧几里得#include#include#include#include#define maxn 3000009#define ll long longusing namespace std;void gcd(ll a,ll b,ll& d,ll& x,ll &y){ if(!b){d=a...
分类:
其他好文 时间:
2014-07-18 19:39:25
阅读次数:
312
DescriptionThere are two strings A and B with equal length. Both strings are made up of lower case letters. Now you have a powerful string painter. Wi...
分类:
其他好文 时间:
2014-07-18 17:12:31
阅读次数:
252
题意就是将第一个字符串转化为第二个字符串,支持两个操作,一个是删除,一个是更换字符位置。
简单的字符串操作!!
AC代码如下:
#include
#include
#include
#include
#define M 50010
#define inf 100000000
using namespace std;
char a[1005],b[1005];
int la,lb;
bo...
分类:
其他好文 时间:
2014-07-18 11:03:48
阅读次数:
273
原理目的: 减少请求数或者是延迟请求数,优化性能实现方式:1、滚动条检测,仅加载可视区的图片 2、条件加载, 符合条件或者是触发事件时加载 3、延迟加载, setTimeout或者是setInteval方式一实现图片懒加载原理: 1.将图片的真实地址暂存在一个自定义属性中,例如la...
分类:
其他好文 时间:
2014-07-18 09:36:38
阅读次数:
337
Oulipo
Time Limit: 1000MS
Memory Limit: 65536K
Total Submissions: 22295
Accepted: 8905
Description
The French author Georges Perec (1936–1982) once wrote a book, La...
分类:
其他好文 时间:
2014-07-17 19:23:57
阅读次数:
278
Run Length Encoding(RLE) is a simple form of compression. RLE consists of the process for searching for a repeated runs of a single character in a str...
分类:
其他好文 时间:
2014-07-17 14:02:18
阅读次数:
252
约瑟夫题目变形,思路和前面白书那个例题差不多~~#include#include#include#include#define maxn 500009using namespace std;int dp1[maxn];int dp2[maxn];int dp3[maxn];int main(){ ....
分类:
其他好文 时间:
2014-07-16 16:00:16
阅读次数:
185
题意:给出一列数(n个),m次查询区间[l,r]的最大连续区间[x,y](l
思路:动态查询区间最大连续区间;
如果是求最大连续区间和:
用线段树维护最大连续和sum_sub、最大前缀和sum_prefix、最大后缀和sum_suffix。
root.sum_sub = max{l.sum_sub, r.sum_sub, (l.sum_suffix + r.sum_prefix)...
分类:
其他好文 时间:
2014-07-16 11:42:15
阅读次数:
222