上一页 1 ··· 6 7 8 9 10 11 下一页
摘要: 在python下练习生成验证码总是出现如下错误:The _imagingft C module is not installed最后解决:下载pillow:https://pypi.python.org/pypi/Pillow/2.9.0#downloadspip install安装安装指南:htt... 阅读全文
posted @ 2015-07-19 19:13 fukan 阅读(913) 评论(0) 推荐(0) 编辑
摘要: 1 public byte[] write(Serializable object) throws IOException { 2 ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream(); ... 阅读全文
posted @ 2015-04-18 11:33 fukan 阅读(1203) 评论(0) 推荐(0) 编辑
摘要: 最大最小堆动态求中位数题意:输入M个数,当已输入的个数为奇数个时输出此时的中位数。一共有M/2+1个中位数要输出,每一行10个。分析:用两个优先队列来模拟最大最小堆。中位数是x,就是有一半数比x小,一半数比x大。刚好符合堆的特点。用一个从大到小排序的优先队列q1来模拟小于x的数。从小到大排序的优先队... 阅读全文
posted @ 2015-04-12 22:59 fukan 阅读(889) 评论(0) 推荐(0) 编辑
摘要: 题意:n头牛和m个barn,每头牛有自己喜欢的p个barn(1 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 #include 9 #include10 #include11 12 using namespac... 阅读全文
posted @ 2015-04-06 12:57 fukan 阅读(177) 评论(0) 推荐(0) 编辑
摘要: 题目1081:递推数列时间限制:1 秒内存限制:32 兆特殊判题:否提交:5885解决:800题目描述:给定a0,a1,以及an=p*a(n-1) + q*a(n-2)中的p,q。这里n >= 2。 求第k个数对10000的模。输入:输入包括5个整数:a0、a1、p、q、k。输出:第k个数a(k)对... 阅读全文
posted @ 2015-04-05 17:54 fukan 阅读(533) 评论(0) 推荐(0) 编辑
摘要: 题意:问一个数拆分成2的幂的和的方法数有多少种。我是先通过找列举前面的找规律n 种数1 12 23 24 45 46 67 68 109 1010 14…… 1 #include 2 #include 3 #include 4 #include 5 #include 6 #in... 阅读全文
posted @ 2015-04-05 10:54 fukan 阅读(336) 评论(0) 推荐(0) 编辑
摘要: 题意:有n个不同高度的树排成一列,树上各有1只鸟。然后m个询问,每次询问可以打掉h[i](1 不要用#include后者有效率问题,会 tle (⊙o⊙)哦~二分的时候标记不用再开数组看数用过没,因为数很大啊。。这样会超内存!直接标记上下界判断这个查找的高度是否访问过。 1 //#include 2... 阅读全文
posted @ 2015-04-05 09:47 fukan 阅读(371) 评论(3) 推荐(0) 编辑
摘要: 题目1086:最小花费时间限制:1 秒内存限制:32 兆特殊判题:否提交:3544解决:730题目描述:在某条线路上有N个火车站,有三种距离的路程,L1,L2,L3,对应的价格为C1,C2,C3.其对应关系如下:距离s 票价0L1 && L2 && 2 #include 3 #inclu... 阅读全文
posted @ 2015-04-04 22:44 fukan 阅读(1004) 评论(0) 推荐(0) 编辑
摘要: 题意RT就是要注意加了注释的那里- -! 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 9 using namespace std;10 11 typedef long long ll;... 阅读全文
posted @ 2015-04-03 19:21 fukan 阅读(267) 评论(0) 推荐(0) 编辑
摘要: 题目1482:玛雅人的密码时间限制:1 秒内存限制:128 兆特殊判题:否提交:2076解决:513题目描述:玛雅人有一种密码,如果字符串中出现连续的2012四个数字就能解开密码。给一个长度为N的字符串,(2= 2 #include 3 #include 4 #include 5 #incl... 阅读全文
posted @ 2015-04-03 14:00 fukan 阅读(962) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 下一页