码迷,mamicode.com
首页 >  
搜索关键字:tt    ( 7061个结果
loj116 有源汇有上下界最大流
```cpp include include include include using namespace std; struct Edge{ int too, nxt, val, lim; }edge[60005]; int n, m, ss, tt, sss, ttt, hea[255], c ...
分类:其他好文   时间:2017-12-24 20:10:57    阅读次数:184
[UVa12538]Version Controlled IDE
题意:维护一个字符串,支持插入字符串,删除连续的一段,查询历史版本的子串,强制在线 本来是用rope可以水过的,但是想拿来试水可持久化treap 几乎跟普通treap完全一样,只不过是merge和split时要相应地复制节点,注意是复制不是直接新建 建树得用笛卡尔树了TT,其实挺好理解的,最后记得全 ...
分类:其他好文   时间:2017-12-23 23:09:09    阅读次数:199
ZOJ2314 Reactor Cooling 无源汇有上下界最大流
推荐看 "这里" cpp include include include include using namespace std; int n, m, uu, vv, ww, cc, hea[225], cnt, ss, tt, maxFlow, lev[225], tot, T; const in ...
分类:其他好文   时间:2017-12-22 21:55:21    阅读次数:161
Linux命令
系统信息arch 显示机器的处理器架构(1)uname -m 显示机器的处理器架构(2)uname -r 显示正在使用的内核版本dmidecode -q 显示硬件系统部件 - (SMBIOS / DMI)hdparm -i /dev/hda 罗列一个磁盘的架构特性hdparm -tT /dev/sd ...
分类:系统相关   时间:2017-12-22 15:56:11    阅读次数:162
luogu3381 【模板】最小费用最大流
每次选代价最小的流增广 cpp include include include include using namespace std; struct Edge{ int too, nxt, val, cst; }edge[100005]; int n, m, ss, tt, maxFlow, mi ...
分类:其他好文   时间:2017-12-21 20:05:54    阅读次数:117
时间连带上下午
var timestamp = (Date.parse(new Date())).toString(); var tt = parseInt(timestamp.substring(0, 10)); function t(){now=new Date((tt+i+28800)*1000);i++;d... ...
分类:其他好文   时间:2017-12-19 01:06:09    阅读次数:142
ArrayList
ArrayList是java集合框架中List体系下List接口的一个实现类。 特点: Resizable(大小可调,尺寸可变)-array (Resizable-array implementation of the <tt>List</tt> interface.This class provi ...
分类:其他好文   时间:2017-12-11 00:55:19    阅读次数:196
if not aa 表示如果aa等于空就是true 相当于if not aa 相当于 if aa== 空
aa='tt' print(not aa) #表示 bb是空的 not 表示空 bb='' print(not bb) ...
分类:其他好文   时间:2017-12-10 14:37:31    阅读次数:114
html标记语言 --文本标记
html标记语言 --文本标记 二、文本标记 1、h1-h6 标题标记,h1最大 2、font 字体设置标记 2.1 size字体大小。 取值范围1-7,默认3 2.2 color 颜色 2.3 face 字体 3、b 粗字体 4、i 斜字体 5、sub 下标 6、sup 上标 7、tt 打印机字体... ...
分类:编程语言   时间:2017-12-09 22:42:56    阅读次数:251
C++基于范围的for循环性能测试(针对std::vector)
1、代码如下: void output1(int x){ if (x == 10000000) { std::cout << x << std::endl; } }const std::string getCurrentSystemTime(){ auto tt = std::chrono::sys ...
分类:编程语言   时间:2017-12-04 00:04:15    阅读次数:217
7061条   上一页 1 ... 28 29 30 31 32 ... 707 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!