摘要: 1 #include 2 using namespace std; 3 const int N = 1e4; 4 void factorial(int n){ 5 int a[N]; 6 a[0] = 1; 7 int res = 0; 8 for(int i = 1; i 0){ 16 a[++res] = flag;... 阅读全文
posted @ 2017-05-03 22:23 starry_sky 阅读(141) 评论(0) 推荐(0) 编辑
摘要: L1-1 这是一道简单题 Problem Description 大豪哥觉得自己特别的菜,就是个弱鸡,但是大家不承认,所以大豪哥想了一个办法,在学校大屏幕上输出三行“DaHaoGeJiuShiYiGeRuoJi”,这样就可以说明自己是个弱鸡了。可是大豪哥太渣了不会写,你能帮他输出一下吗? Input 阅读全文
posted @ 2017-05-03 22:14 starry_sky 阅读(475) 评论(4) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 using namespace std; 4 #define MAX 10005 5 6 struct bigint 7 { 8 char num[MAX]; 9 int flag; // 1:positive -1:negative 10 int dgts; 11 b... 阅读全文
posted @ 2017-05-01 12:12 starry_sky 阅读(584) 评论(0) 推荐(0) 编辑
摘要: http://codeforces.com/problemset/problem/755/D 从X到X+k点,其实只要求从X到X+k之间的点有多少条线超过X——X+K这条线就行,一开始直接暴力,就时间超时了,而用线段树维护就快多了。 阅读全文
posted @ 2017-04-30 11:45 starry_sky 阅读(166) 评论(0) 推荐(0) 编辑
摘要: prim模板: kruscal模板 使用优先队列的kruscal模板 阅读全文
posted @ 2017-04-29 21:09 starry_sky 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 照着老师的代码敲了一遍,但出了一些错误,直接复制也是同样的错误,找了一会儿才知道在第9,10行的1应该改为1.这样算出来的值才是浮点数,而不是0了。 阅读全文
posted @ 2017-04-25 17:38 starry_sky 阅读(590) 评论(0) 推荐(0) 编辑
摘要: pyplot饼图的绘制 pyplot直方图的绘制 pyplot极坐标图的绘制 pyplot散点图的绘制 阅读全文
posted @ 2017-04-25 17:34 starry_sky 阅读(323) 评论(0) 推荐(0) 编辑
摘要: 一般使用 import matplotlib.pyplot as plt,默认别名为plt plt.plot()只有一个输入列表或数组时,参数被当作Y轴,X轴以索引自动生成 plt.savefig()将输出图形存储为文件,默认为PNG格式,可以通过dpi修改输出质量 plt.plot(x, y)当有 阅读全文
posted @ 2017-04-25 17:26 starry_sky 阅读(312) 评论(0) 推荐(0) 编辑
摘要: A Bug's Life Background Professor Hopper is researching the sexual behavior of a rare species of bugs. He assumes that they feature two different gend 阅读全文
posted @ 2017-04-23 22:05 starry_sky 阅读(238) 评论(0) 推荐(0) 编辑
摘要: 动物王国中有三类动物A,B,C,这三类动物的食物链构成了有趣的环形。A吃B, B吃C,C吃A。 现有N个动物,以1-N编号。每个动物都是A,B,C中的一种,但是我们并不知道它到底是哪一种。 有人用两种说法对这N个动物所构成的食物链关系进行描述: 第一种说法是"1 X Y",表示X和Y是同类。 第二种 阅读全文
posted @ 2017-04-23 21:53 starry_sky 阅读(294) 评论(0) 推荐(0) 编辑