上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 41 下一页
摘要: 稀疏矩阵压缩了储存空间。但在进行运算的时候却没有原矩阵这样方便。 其中,data[0].row data[0].col 储存该矩阵的行和列。 另外,其实在三元数组储存的时候,该程序是默认输入的时候行优先的格式。否则就会出现这种不识别的情况,如果想兼容性强一点,就预先排个序。 在用三元组储存稀疏矩阵的 阅读全文
posted @ 2021-10-27 15:20 浪矢-CL 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 这次的论文由于考试周的原因看的不是很细,但大概还是浏览过一遍了。然后这次我的拓展又神奇的匹配到了教授想让我们接下来想看的论文。 perfect! 但不足的是,没有进行相关论文的检索,自己的拓展没有理论支撑。接下来可以对感兴趣的点进行检索。 以后进行研讨的时候ppt格式可以是,我读到了什么,我哪里有疑 阅读全文
posted @ 2021-01-10 22:49 浪矢-CL 阅读(71) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<cstring> #include<algorithm> #include<queue> #include<math.h> #include<cstdio> using namespace std; int gcd(int a,int b,in 阅读全文
posted @ 2017-11-04 18:51 浪矢-CL 阅读(154) 评论(0) 推荐(0) 编辑
摘要: T1 我直接就用的LCA ,可能慢点。反正数据试过了。 T2 期望dp不会啊。 T3 好麻烦。 阅读全文
posted @ 2017-11-04 13:51 浪矢-CL 阅读(84) 评论(0) 推荐(0) 编辑
摘要: T1 部分分 枚举某个数 100 离散化。或 map 相对了不知道呢过不能过。 T2 逆序对,不知对不对 归并排序, 阅读全文
posted @ 2017-11-03 11:38 浪矢-CL 阅读(83) 评论(0) 推荐(0) 编辑
摘要: T1 模拟,80? #include<iostream> #include<cstring> #include<queue> #include<algorithm> #include<cstdio> #include<cmath> #include<ctime> using namespace st 阅读全文
posted @ 2017-11-02 17:38 浪矢-CL 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 滑稽的题 T1 #include<iostream> #include<cstring> #include<queue> #include<algorithm> #include<cstdio> #include<cmath> #include<ctime> using namespace std; 阅读全文
posted @ 2017-11-02 10:52 浪矢-CL 阅读(196) 评论(0) 推荐(0) 编辑
摘要: T1 #include<iostream> #include<cstring> #include<cstdio> #include<algorithm> #include<queue> #include<cmath> using namespace std; const int N=1010; in 阅读全文
posted @ 2017-11-01 19:01 浪矢-CL 阅读(171) 评论(0) 推荐(0) 编辑
摘要: 好慌啊 0分?? T1 感觉是组合数,不知道对不对。 #include<iostream> #include<cstring> #include<cstdio> #include<algorithm> #include<queue> #include<cmath> #include<ctime> u 阅读全文
posted @ 2017-11-01 09:36 浪矢-CL 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 不会啊。 T1 找规律: 辗转相减,加速。 #include<iostream> #include<cstring> #include<cstdio> #include<algorithm> #include<queue> #include<cmath> using namespace std; l 阅读全文
posted @ 2017-10-31 17:27 浪矢-CL 阅读(170) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 41 下一页