摘要: 题目链接:http://acm.zzuli.edu.cn/problem.php?id=2624 模拟加法进位就行了,写起来和高精度加法类似。 #include<set> #include<map> #include<stack> #include<queue> #include<cmath> #i 阅读全文
posted @ 2019-12-21 23:55 shuitiangong 阅读(379) 评论(3) 推荐(0) 编辑
摘要: 题目链接:http://acm.zzuli.edu.cn/problem.php?id=2623 看到这题第一眼想到的打表,首先筛选出来1e6之内的素数,然后我们再对1e6之内的数求其每个素因子的最高幂次有没有是偶数的情况,当然这样直接做的话肯定会超时的,所以我们要优化一下,在这个数除以某个素因子之 阅读全文
posted @ 2019-12-21 23:49 shuitiangong 阅读(309) 评论(0) 推荐(0) 编辑
摘要: 题目链接:http://acm.zzuli.edu.cn/problem.php?id=2600 模拟,既然1900 01 01是周一,那就从这一天开始加,直到加到满足题目条件的区间里再去做判断 #include<set> #include<map> #include<stack> #include 阅读全文
posted @ 2019-12-21 09:33 shuitiangong 阅读(299) 评论(0) 推荐(0) 编辑