前段时间,同事遇到一个 Sql语句的问题,一个列表分页功能响应在30 s以上,看一下数据,数据库的数据量也不大,相关的一些索引都有,可就是慢。于是分析的sql 语句出来,分页功能,有select 查询和 count 两条语句。 select 查询字段的时候,速度挺快,执行时间在1 s以内 ,但是执行...
分类:
其他好文 时间:
2014-07-19 21:16:34
阅读次数:
162
集训第一场 B题dfs简单题 做完这题就撤,回来再继续做吧= = 水手加油~ 1 #include 2 #include 3 4 int Count; 5 int to[4][2] = {{-1,0},{1,0},{0,1},{0,-1}}; 6 int row,col; 7 char room[....
分类:
其他好文 时间:
2014-07-19 21:04:34
阅读次数:
172
Count and SayThe count-and-say sequence is the sequence of integers beginning as follows:1, 11, 21, 1211, 111221, ...1is read off as"one 1"or11.11is r...
分类:
其他好文 时间:
2014-07-19 20:35:34
阅读次数:
276
当你在使用Swift时会发现一些常用的函数不!见!了!比如String: s.count() s.contains()Array: a.indexOfObeject(t:)我看网上有人说用extension Array的方法调用NSArray的indexOfObject来实现extension A....
分类:
其他好文 时间:
2014-07-19 19:28:48
阅读次数:
1532
线段树:延伸标记+暴力更新
记得刚学线段树的时候做这题WA了一版。。。。。现在分分钟搞定。。。。
Count the Colors
Time Limit: 2 Seconds Memory Limit: 65536 KB
Painting some colored segments on a line, some previously painted segm...
分类:
其他好文 时间:
2014-07-18 23:07:26
阅读次数:
330
oracle db 中的用户账户被锁--查看oracle用户的尝试次数...
分类:
数据库 时间:
2014-07-18 23:06:21
阅读次数:
276
Counting
The Problem
Gustavo knows how to count, but he is now learning how write numbers. As he is a very good student, he already learned 1, 2, 3 and 4. But he didn't realize yet tha...
分类:
其他好文 时间:
2014-07-18 22:04:36
阅读次数:
322
linux临时增加swap空间:step 1: #dd if=/dev/zero of=/home/swap bs=1024 count=500000 注释:of=/home/swap,放置swap的空间; count的大小就是增加的swap空间的大小,1024就是块大小,这里是1K,所以总共...
分类:
系统相关 时间:
2014-07-16 16:49:57
阅读次数:
255
题意:给N个点,还有另外m个点(其中只能选K个),求最短路。
思路:在SPFA的基础上,用一个数组来统计,在某点入队时(要拓展其他点了),若该点是m个点中的,则count【i】=原来的+1;若不是,则继承原来的。出队时候限制一下,若大于K了,就停止拓展。
原题:目前在一个很大的平面房间里有 n 个无线路由器,每个无线路由器都
固定在某个点上。任何两个无线路由器只要距离不超过 r 就能互相建立...
分类:
其他好文 时间:
2014-07-16 14:16:43
阅读次数:
258
有一个一维数组,想把它变成m*n形式的二位数组,$arr = array(....); // 一维数组$m = ceil(count($arr)/n);$array = array();for ($i = 0, $j = 0; $i < $m; $i++) { for ($k = 0; $k ...
分类:
其他好文 时间:
2014-07-16 12:40:26
阅读次数:
188