上一页 1 2 3 4 5 6 ··· 19 下一页
摘要: 热浪 #include<iostream> #include<cstring> #include<cmath> #define inf 0x3f3f3f3f using namespace std; const int N=2505; int mapp[N][N],dis[N]; bool vis[ 阅读全文
posted @ 2021-10-25 23:59 Rekord 阅读(444) 评论(0) 推荐(0) 编辑
摘要: 最短路径 #include<iostream> #include<cstring> #include<cmath> #define inf 0x3f3f3f3f using namespace std; const int N=105; int mapp[N][N]; int main(){ int 阅读全文
posted @ 2021-10-25 23:44 Rekord 阅读(204) 评论(0) 推荐(0) 编辑
摘要: 香甜的黄油 #include<iostream> #include<cstring> #include<cmath> #define M 0x3f3f3f3f using namespace std; const int N=805; int mapp[N][N],P[N]; int main(){ 阅读全文
posted @ 2021-10-24 16:09 Rekord 阅读(304) 评论(0) 推荐(0) 编辑
摘要: 最小花费 注意事项: Floyd算法复杂度过不去。 #include<iostream> #include<cstring> #include<cmath> using namespace std; const int N=2005; double mapp[N][N],c[N]; bool f[N 阅读全文
posted @ 2021-10-24 15:34 Rekord 阅读(231) 评论(0) 推荐(0) 编辑
摘要: 牛的旅行 注意事项: - 枚举所有连接两个牧场的路径并找出其中的最短路径,最后别忘了跟单个牧场的直径相比较 - 用scanf("%c",&c)替换cin>>c只能拿20分,别问我为什么,我不知道(灬ꈍ ꈍ灬) #include<iostream> #include<cstring> #include 阅读全文
posted @ 2021-10-24 13:30 Rekord 阅读(303) 评论(0) 推荐(0) 编辑
摘要: 最短路径问题 Floyd算法 #include<iostream> #include<cstdio> #include<cmath> #include<cstring> using namespace std; const int N=105; int a[N][2]; double d[N][N] 阅读全文
posted @ 2021-10-21 20:08 Rekord 阅读(192) 评论(0) 推荐(0) 编辑
摘要: 骑马修栅栏 题解参考至shake_jake 本来想优化优化的,然后就... 提交了18次┭┮﹏┭┮(至死也没明白为什么wrong了?)。 #include<iostream> #include<algorithm> #include<cstdio> using namespace std; cons 阅读全文
posted @ 2021-10-21 19:40 Rekord 阅读(245) 评论(0) 推荐(0) 编辑
摘要: 铲雪车 解题思路: 由于所有的道路都是双车道,所以整个街道所抽象出来的图必定是欧拉回路。 因为是欧拉回路,所以从任一点出发都存在_经过且只经过一次所有路径_的路径(好像有点拗口wuwu)。 另外要注意分钟的格式打印。 #include<iostream> #include<cmath> #inclu 阅读全文
posted @ 2021-10-20 00:03 Rekord 阅读(866) 评论(0) 推荐(0) 编辑
摘要: 一笔画问题 解题前置知识: 定理1:存在欧拉路的条件:图是连通的,有且只有2个奇点。 定理2:存在欧拉回路的条件:图是连通的,有0个奇点。 #include<iostream> #include<algorithm> using namespace std; const int N=1005; // 阅读全文
posted @ 2021-10-19 23:17 Rekord 阅读(438) 评论(0) 推荐(0) 编辑
摘要: ES标准的缺陷 没有模块系统 标准库较少 没有标准接口 缺乏管理系统 CommonJS对模块的定义 模块引用 在node中,通过require()函数来引入外部的模块 require()可以传递一个文件的路径作为参数,node将会自动根据该路径来引入外部模块,若使用相对路径,必须以.或..开头 使用 阅读全文
posted @ 2021-10-14 22:52 Rekord 阅读(41) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 19 下一页