上一页 1 2 3 4 5 6 7 ··· 13 下一页
摘要: 牛客 Forsaken的三维数点 题目描述 Forsaken现在在一个三维空间中,空间中每个点都可以用(x,y,z)(x,y,z)表示。突然,三维空间的主人出现了,如果Forsaken想要继续在三维空间中呆下去,他就必须回答三维空间主人的问题。 主人会在空间中坐标为(x,y,z)(x,y,z)处加一 阅读全文
posted @ 2019-10-27 21:09 Daybreaking 阅读(290) 评论(0) 推荐(0) 编辑
摘要: 在写递归函数的时候,只在最后一层写return,中间的过程没有return,导致结果的丢失。 举个例子 1 LL query(LL i, LL k) 2 { 3 if (sum[i] < k) 4 { 5 return -1; 6 } 7 8 if (con[i].l == con[i].r) 9 阅读全文
posted @ 2019-10-27 21:06 Daybreaking 阅读(497) 评论(0) 推荐(0) 编辑
摘要: 求出任意两点之间的六条边后,从小到大排序。 如果前四条边相等,后两条边相等,且后两条边的长度大于前四条边边,则可以组成正方形。 例题: 牛客 Forsaken喜欢正方形 题目描述 Forsaken特别喜欢正方形,现在他有二维平面的四个整点。如果四个整点可以直接形成一个正方形,输出"wen"。如果可以 阅读全文
posted @ 2019-10-27 20:57 Daybreaking 阅读(2331) 评论(0) 推荐(0) 编辑
摘要: 落谷3384 1 #include<cstdio> 2 #include<cstdlib> 3 #include<cstring> 4 #include<cmath> 5 #include<algorithm> 6 #include<queue> 7 #include<stack> 8 #inclu 阅读全文
posted @ 2019-10-25 08:16 Daybreaking 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 1 #include <cstdio> 2 #include <cstdlib> 3 #include <cstring> 4 #include <cmath> 5 #include <algorithm> 6 #include <queue> 7 #include <stack> 8 #inclu 阅读全文
posted @ 2019-10-24 15:58 Daybreaking 阅读(130) 评论(0) 推荐(0) 编辑
摘要: #include <cstdio> #include <cstdlib> #include <cstring> #include <cmath> #include <algorithm> #include <queue> #include <stack> #include <deque> #incl 阅读全文
posted @ 2019-10-20 16:13 Daybreaking 阅读(171) 评论(0) 推荐(0) 编辑
摘要: HDU 1251 AC代码 #include<cstdio> #include<cstdlib> #include<cstring> #include<string.h> #include<cmath> #include<algorithm> #include<queue> #include<sta 阅读全文
posted @ 2019-10-19 15:48 Daybreaking 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-10-12 15:49 Daybreaking 阅读(83) 评论(0) 推荐(0) 编辑
摘要: 1 #include<cstdio> 2 #include<cstdlib> 3 #include<cstring> 4 #include<cmath> 5 #include<algorithm> 6 #include<queue> 7 #include<stack> 8 #include<dequ 阅读全文
posted @ 2019-08-05 12:53 Daybreaking 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 一、初始化truffle项目 truffle init //初始化truffle项目文件夹 将写好的合约文件放到contract文件夹中 truffle compile //编译合约 (注意!! 此时往往会编译失败,可以分为两种情况,编译器版本问题 合约代码有编译错误。 编译器版本问题: 1、修改t 阅读全文
posted @ 2019-07-14 22:00 Daybreaking 阅读(714) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 13 下一页