1 #include<cstdio> 2 #include<iostream> 3 #include<cstring> 4 #include<cmath> 5 #include<ctime> 6 #include<cstdlib> 7 8 #include<string> 9 #include<st ...
分类:
其他好文 时间:
2017-12-03 13:56:26
阅读次数:
210
# -*- coding:UTF-8 -*- import os,time from PIL import Image,ImageDraw,ImageFont fontFile="ygyxsziti2.0.ttf" #字体文件 width,height=612,816 # os.chdir('src ...
分类:
其他好文 时间:
2017-12-01 11:28:23
阅读次数:
141
以下内容转载自http://unixboy.iteye.com/blog/174173/ 堆大小设置 JVM 中最大堆大小有三方面限制:相关操作系统的数据模型(32-bt还是64-bit)限制;系统的可用虚拟内存限制;系统的可用物理内存限制。32位系统下,一般限制在1.5G~2G;64为操作系统对内 ...
分类:
其他好文 时间:
2017-11-30 18:06:19
阅读次数:
202
#pragma once#include <iostream>using namespace std;#include <ctime>#include <assert.h> namespace sorttesthelper{ int* generaterandomarray(int n, int r ...
分类:
编程语言 时间:
2017-11-29 00:14:39
阅读次数:
189
Treap,也叫做树堆,是指有一个随机附加域满足堆的性质的二叉搜索树。 如果一棵二叉搜索树插入节点的顺序是随机的,那我们得到的二叉搜索树在大多数情况下是平衡的,期望高度是log(n). 但有些情况下我们并不能得知所有待插入节点,打乱以后再插入,这时我们需要给二叉搜索树加上一个随机附加域,并使这个随机 ...
分类:
其他好文 时间:
2017-11-27 21:30:10
阅读次数:
149
T1 SB题 1 #include<cstdio> 2 #include<cstring> 3 #include<cmath> 4 #include<ctime> 5 #include<iostream> 6 #include<algorithm> 7 #include<queue> 8 #incl ...
分类:
其他好文 时间:
2017-11-27 20:09:12
阅读次数:
174
1.模块介绍 模块,用一坨代码实现了某个功能的代码集合 类似于函数式编程和面向过程编程,函数式编程则完成一个功能,其他代码用来调用即可,提供了代码的重用性和代码间的耦合。而对于一个复杂的功能来说,可能需要多个函数才能完成(函数又可以再不同的.py文件中),n个.py文件组成的戴安集合就称为模块 模块 ...
分类:
编程语言 时间:
2017-11-27 18:53:35
阅读次数:
185
Description 有 n 棵树,初始时每棵树的高度为 H_i,第 i 棵树每月都会长高 A_i。现在有个木料长度总量为 S 的订单,客户要求每块木料的长度不能小于 L,而且木料必须是整棵树(即不能为树的一部分)。现在问你最少需要等多少个月才能满足订单。 Input 第一行 3 个用空格隔开的非 ...
分类:
其他好文 时间:
2017-11-27 14:12:59
阅读次数:
134
$syday = 0; $month = (date("m-d",$value['ctime'])); $year = (date("Y",time())); $end_date = (date("Y",time()))."-".$month; if(time()>$value['ctime']) ...
分类:
Web程序 时间:
2017-11-25 18:20:17
阅读次数:
241
快速幂代码: 关于取余的一些补充: 有这样一个公式: ab % c = (a % c)b % c 引理: (ab)b % c = [(a % c) * (b % c)] % c 证明 a % c = d => a = tc + d b % c = e => b = kc + e (ab) % c = ...
分类:
其他好文 时间:
2017-11-25 14:17:52
阅读次数:
131