#include #include using namespace std; int main() { int b, *pb; char *pb2; char *pb3; //&b = 0x001af74 pb = &b + 1; //0x00...
分类:
其他好文 时间:
2015-09-09 21:06:23
阅读次数:
185
题目:维护一个序列,支持将一段数翻转并插到最后的操作,最后输出整个序列。思路:直接套的大白模板,第一次用splay,贴一下。。/**@author: Cwind*http://www.cnblogs.com/Cw-trip/*/#include #define pb push_back#defin....
分类:
其他好文 时间:
2015-09-06 17:49:44
阅读次数:
195
二分法+spfa判负环。如果存在一个环sum(wi)using namespace std;const int maxn = 51;struct Edge{ int v,nxt; double w;};vector edges;int head[maxn];#define PB push...
分类:
其他好文 时间:
2015-09-04 11:11:57
阅读次数:
136
先用manacher找到以所有回文串,再暴力统计以每个字符为结尾的所有回文串,然后dp就容易了。最坏情况下是O(n^2) 1 #include 2 #include 3 #include 4 #include 5 #include 6 #define pb push_back 7 using nam...
分类:
其他好文 时间:
2015-09-03 19:10:27
阅读次数:
170
用布尔变量表示状态,把限制条件转化为XνY的形式以后跑2SAT,根据变量取值输出方案。#includeusing namespace std;const int maxn = 1e5+5;#define PB push_backbool vis[maxn*2];vector G[maxn*2];in...
分类:
其他好文 时间:
2015-09-02 09:20:28
阅读次数:
116
原文地址:http://yanbohappy.sinaapp.com/?p=110 最新版本的Hadoop代码中已经默认了Protocol buffer(以下简称PB,http://code.google.com/p/protobuf/)作为RPC的默认实现,原来的WritableRpcEng...
分类:
其他好文 时间:
2015-08-31 21:30:04
阅读次数:
227
不要想多了直接暴。对于u枚举a和b,判断一个是否连边,更新答案。#includeusing namespace std;int n,m;const int maxn = 4001;#define PB push_backvector G[maxn];bool g[maxn][maxn];int de...
分类:
其他好文 时间:
2015-08-30 09:54:16
阅读次数:
168
很裸的模版题,就是敲起来稍微麻烦一点。#includeusing namespace std;struct Edge{ int v,cap;};const int maxn = 101;vector E;vector G[maxn];#define PB push_backvoid AddEd...
分类:
Web程序 时间:
2015-08-28 23:15:26
阅读次数:
201
上篇讲述了Hadoop分布式集群环境的搭建,其实重要是HDFS分布式文件系统的搭建,MapReduce主要是需要我们程序员来进行编写算法来进行逻辑运算的。这篇就重点来讲述一下HDFS(HadoopDistribute File System,也就是Hadoop分布式文件系统)。 一、HDFS的主要设计理念: 1、存储超大文件,这里的“超大文件”是指几百MB、GB甚至TB,PB级别的...
分类:
其他好文 时间:
2015-08-28 00:50:42
阅读次数:
163
首先是硬件连线:PB----8位数据口 PA0--- 复位信号RESET PA1---片选CS PA2----寄存器选择信号RS PA3---写信号WR PA4---读信号RD文件名:Type.h,主要定义一些数据变量的别名/************************************....
分类:
其他好文 时间:
2015-08-26 15:38:48
阅读次数:
178