摘要: P1996 P1563 模拟 P1996 约瑟夫问题 P1563 玩具谜题 阅读全文
posted @ 2019-12-05 22:12 刘子闻 阅读(143) 评论(0) 推荐(0)
摘要: 1 高精度加法 2 高精度减法 有符号判断 3 高精度除以低精度 A 本人写法 B 洛谷题解其一 4 高精度乘法 5 高精度$2^N$ 阅读全文
posted @ 2019-12-05 22:12 刘子闻 阅读(163) 评论(0) 推荐(0)
摘要: OPJ1.10 01 04排序与结构体 OPJ1.10 01 谁考了第k名 使用的是选择排序 $O(n^2)$复杂度 用$x=max$来进行比较 include include include include include using namespace std; int m,n; int num 阅读全文
posted @ 2019-12-05 22:11 刘子闻 阅读(475) 评论(0) 推荐(0)
摘要: int read() { int a = 0,x = 1;char ch = getchar(); while(ch > '9' || ch < '0') {if(ch == '-') x = -1;ch = getchar();} while(ch >= '0' && ch <= '9') {a 阅读全文
posted @ 2019-12-05 22:10 刘子闻 阅读(190) 评论(0) 推荐(0)
摘要: POJ2945 数据结构 映射 阅读全文
posted @ 2019-12-05 22:09 刘子闻 阅读(90) 评论(0) 推荐(0)
摘要: P1090 P1323 数据结构 优先队列 P1090 合并果子 一道模板题 include include include include using namespace std; priority_queue ,greater q; int main( ){ int n; scanf("%d", 阅读全文
posted @ 2019-12-05 22:08 刘子闻 阅读(124) 评论(0) 推荐(0)
摘要: P1044 P1449 P1739 数据结构 栈 P1044 火车进站【模板 栈】 会TLE 所以$n \leq 18$中 $14 \leq n \leq 18$的数据本地跑完自动输出(~~骗分~~) P1449 后缀表达式 也叫逆波兰表达式 对于输入的序列,每两个数字和一个符号进行计算,返回一个数 阅读全文
posted @ 2019-12-05 22:07 刘子闻 阅读(130) 评论(0) 推荐(0)
摘要: 2019D1T1 格雷码 DTQT D1T1 题解 咕咕咕的Day1过去了 我的做法 通过手动计算,我画出了$n=4$时候的这张表格: (请注意:本表格倒序存放) |第4位 |第3位 |第2位 |第1位 | | : | : | : | : | | 0 |0 |0 |0 | |1 | 0 |0 |0 阅读全文
posted @ 2019-12-05 22:06 刘子闻 阅读(325) 评论(0) 推荐(0)
摘要: $P1605$ 做题历程: 搜索从$map[1][1]$开始,起点$map[sx][sy]$没标记,洛谷$80$分(数据真水) 实际上搜索不加$map[sx][sy]$的标记,回溯到起点的时候判断条件还是成立,会继续回溯到起点之前的点,结果会大很多 至于审题的问题还是要注意,虽然骗了$80$分 阅读全文
posted @ 2019-12-05 22:04 刘子闻 阅读(106) 评论(0) 推荐(0)
摘要: $P1101$ 重点强调! $scanf("\%c",a)$会读入换行符!!!!!!!!!!! 千万要注意啦!!!!!!!! 阅读全文
posted @ 2019-12-05 22:03 刘子闻 阅读(115) 评论(0) 推荐(0)