Problem Description
There 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. With the help of the painter, you can chan...
分类:
其他好文 时间:
2014-07-20 15:41:50
阅读次数:
213
lower_bound(应用于有序区间)
--------------------------------------------------------------------------------------------------------------------------
描述:二分查找,返回一个迭代器指向每一个"不小于 value "的元素,
或 value 应该存在的位置
思路:
1.循环直到区间长度为 0
2.如果 *middle < value,在后半段继续查找
3.如果 *mid...
分类:
其他好文 时间:
2014-07-19 23:30:41
阅读次数:
382
Given a stringsconsists of upper/lower-case alphabets and empty space characters' ', return the length of last word in the string.If the last word doe...
分类:
其他好文 时间:
2014-07-19 22:36:30
阅读次数:
149
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
题意:
两组数字a和b 如果a[i]等于b[j] 则可将a[i]和b[j]前所有数字删掉 这种操作花费e体力 得到1元钱 或者一次删掉所有数字 这种操作花费等于曾经删除的所有数字个数 做完后得到所有钱 问 一共s体力 可以得到多少钱
思路:
dp+二分
由数据可知最多拿到300元钱 因此可以定义 dp[i][j]表示有i元钱时 b串删除到了j处时 a串删到的位置
状态转移为 dp[i][j] = lower_bound ( a[j] , dp[i-1][j-1] + 1 ) 意思...
分类:
其他好文 时间:
2014-07-18 13:27:50
阅读次数:
212
[client]
port=3358
socket=/export/data/mysql/tmp/mysql.sock
[mysqld]
port=3358
socket=/export/data/mysql/tmp/mysql.sock
datadir=/export/data/mysql/data
#---GLOBAL---#
character-set-server=utf8
lower_case_table_names=1
log-output=FILE
log-error=/export/d..
分类:
其他好文 时间:
2014-07-17 20:07:00
阅读次数:
242
/*
G - 二分
Time Limit:2000MS Memory Limit:32768KB 64bit IO Format:%lld & %llu
Submit
Status
Description
Given n points (1 dimensional) and q segments, you have to find the number of points th...
分类:
其他好文 时间:
2014-07-16 16:42:15
阅读次数:
245
windows下mysql默认是不支表名大小写的,也就是表名大小写不敏感。用phpmyadmin创建的驼峰式表名,全部被强制成小写。mysql表名大小写敏感的参数:lower_case_table_names。在[mysqld]下加上lower_case_table_names=0即可。###[my...
分类:
数据库 时间:
2014-07-16 15:11:22
阅读次数:
250
一、字符函数字符函数是oracle中最常用的函数,我们来看看有哪些字符函数:lower(char):将字符串转化为小写的格式。select lower('AAAA') from dualinstr(C1,C2,I,J) -->判断某字符或字符串是否存在,存在返回出现的位置的索引,否则返回小于1;在一...
分类:
数据库 时间:
2014-07-16 14:59:19
阅读次数:
262
Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return the length of last word in the string.If the last word ...
分类:
其他好文 时间:
2014-07-16 14:23:00
阅读次数:
278