这个是前几天作的比赛,因为今晚上还有CF所以就把前几天写的东西总结一下。
460A 直接模拟题意,不过我在作的过程中一直担心余数会对结果产生影响。
#include
#include
using namespace std;
int main()
{
int n,m;
cin>>n>>m;
for(int i=n;;i++)
{...
分类:
其他好文 时间:
2014-08-26 13:41:28
阅读次数:
228
postfix无法启动,查看日志,发现日志提示master.cf文件109行有问题,打开文件一看109行是注释啊,怎么回事?日志如下:tail-f/var/log/maillog
Aug1815:56:11localhostpostfix/postfix-script[11639]:startingthePostfixmailsystem
Aug1815:56:11localhostpostfix/master[1164..
分类:
其他好文 时间:
2014-08-26 03:02:16
阅读次数:
169
In one well-known algorithm of finding the k-th order statistics we should divide all elements into groups of five consecutive elements and find the median
of each five. A median is called the middl...
分类:
其他好文 时间:
2014-08-25 22:50:55
阅读次数:
297
给出一串由FT构成的串,F代表前进,T代表转向,初始方向是1,转向后F由1变为-1(或者-1变成1)
例如FTFFFTFFFFF值为3
给出n,必须做n次操作(让F变为T或者让T变成F),求最远能离原来的地方前进多远(绝对值)
可以搜索来解决这个问题
对每次行程,我们可以选择
继续按当前方向走
或者改变方向
那么,粗略估算一下,字符串最长为100,那么就是2^100,...
分类:
其他好文 时间:
2014-08-25 19:22:54
阅读次数:
266
题意,给出一个n行m列的矩阵
里面元素是0或者1
给出q个询问
a,b,c,d
求(a,b)到(c,d)有多少个由0组成的矩形
我们定义
即为求(a,b)到(c,d)有多少个由0组成的矩形
对一个矩形来说
dp[a][b][c][d]=dp[a][b][c][d-1]+dp[a][b][c-1][d]-dp[a][b][c-1][d-1]+包含右下角(当前点)的矩形;
重...
分类:
其他好文 时间:
2014-08-24 15:29:52
阅读次数:
203