码迷,mamicode.com
首页 >  
搜索关键字:sz    ( 840个结果
【分块】【LCT】bzoj2002 [Hnoi2010]Bounce 弹飞绵羊
分块,每个点统计还有几步弹出该块,以及它弹出块后的下一个节点是哪个点。注意:update某个点的时候,会可能对当前块内 该点及以前的点 产生影响,所以对这部分点进行更新。 1 #include 2 #include 3 using namespace std; 4 int n,m,op,x,y,sz...
分类:其他好文   时间:2014-09-10 19:29:00    阅读次数:214
【DFS】bzoj2435 [Noi2011]道路修建
两遍DFS。第一遍统计以每个点为根的子树大小,第二遍更新答案。 1 #include 2 #include 3 using namespace std; 4 int v[2000001],w[2000001],first[2000001],next[2000001],en,sz[1000001]; ...
分类:其他好文   时间:2014-09-09 18:07:09    阅读次数:188
splay树模版
#include #include using namespace std; typedef long long LL; const int maxn = 100010; int pre[maxn], ch[maxn][2], sz[maxn]; int root, top1; int s[maxn], top2;//内存池 LL sum[maxn]; int val[maxn], add...
分类:其他好文   时间:2014-09-03 14:58:56    阅读次数:264
Linux性能诊断工具 - vmstat/iostat/mpstat/ifstat/dstat
vmstat:虚拟内存状况 –swpd   free  buff  cache   si  so   in   cs 参考:http://www.cnblogs.com/ggjucheng/archive/2012/01/05/2312625.html iostat:io状况 avgqu-sz   await svctm 参考:http://blog.csdn.net/dba...
分类:移动开发   时间:2014-08-31 21:28:21    阅读次数:294
【字典树】POJ 2418 Hardwood Species
嘀嘀嘀 有人知道 重载的时候 加了 sz=1;就一直CE怎么破???如果有人看到能教教我吗??我还不会c++弱菊不胜感谢!Orz #include #include #include #include #include #include #include #include using namespace std; #include #include #include #include #inc...
分类:其他好文   时间:2014-08-28 16:12:39    阅读次数:175
Openerp约束句型
内容摘自:http://blog.csdn.net/sz_bdqn/article/details/8785483 _constraints _constraints可以灵活定义OpenERP对象的约束条件,当创建或更新记录时,会触发该条件,如果条件不符合,则弹出错误信息,拒绝修改。 _constr...
分类:其他好文   时间:2014-08-27 14:41:17    阅读次数:189
ssh
如何快速上传windows上的文件sudo apt-get install lrzsz.执行rz命令即可上传。执行sz命令即可下载客户端建立生成公钥和私钥。ssh-keygen-trsacat~/.ssh/id_rsa.pub>>~/.ssh/authorized_keys服务器上:cd /etc/...
分类:其他好文   时间:2014-08-25 20:42:54    阅读次数:190
140824●语句应用举例
//降序排序 Console.Write("请输入数据的个数:"); int n = Convert.ToInt32(Console.ReadLine()); int []sz=new int[n]; ...
分类:其他好文   时间:2014-08-25 01:02:03    阅读次数:267
poj 2524 Ubiquitous Religions
http://poj.org/problem?id=2524 跟hdu-1213 一样,首先有n个人,然后有m个关系,问属于不同关系的人有多少个。 #include int id[50001],sz[50001],n,m; int find(int p) { while(p!=id[p]) { // 路径压缩,会破坏掉当前节点的父节点的尺寸信息,因为压缩后,当前节点的父节...
分类:其他好文   时间:2014-08-24 14:15:42    阅读次数:232
SecureCRT的上传和下载
securtCRT对于后台开发者并不陌生,在windows下是得力的助手。而文件从服务器上上传和下载是很基本、很日常的操作。下面就谈谈关于它的命令及操作:借助securtCRT,使用linux命令sz可以很方便的将服务器上的文件下载到本地,使用rz命令则是把本地文件上传到服务器。安装 lrzsz.....
分类:其他好文   时间:2014-08-21 13:12:54    阅读次数:209
840条   上一页 1 ... 78 79 80 81 82 ... 84 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!