2020年1月2日

Educational Codeforces Round 66 (Rated for Div. 2)

摘要: A题:From Hero to Zero 如果能除k,那么就直接除k就可以了,不能的话就减去n%k,这样循环下来,速度很快,log(n)时间内 1 #include <cstdio> 2 #include <cstring> 3 #include <iostream> 4 #include <alg 阅读全文

posted @ 2020-01-02 16:56 pandaking 阅读(184) 评论(0) 推荐(0) 编辑

Codeforces Round #480 (Div. 2)

摘要: A题:Links and Pearls 只要-的数量能整除o的数量就可,注意特判0 没啥好写的 1 #include <cstdio> 2 #include <cstring> 3 #include <algorithm> 4 #include <iostream> 5 #include <cmat 阅读全文

posted @ 2020-01-02 12:59 pandaking 阅读(206) 评论(0) 推荐(0) 编辑

Codeforces Round #517 (Div. 2, based on Technocup 2019 Elimination Round 2)

摘要: 总结: 最近的cf,或者说cf很多时候是个手速场,它需要你能在一定时间内注意力高度集中去看一些问题或者去思考一些事! 其实大部分东西都是没有见过的,你能做到只是静下心来思考发现问题! A题:Golden Plate 简单题,直接看一下模拟而已! 代码: 1 #include <cstdio> 2 # 阅读全文

posted @ 2020-01-02 00:19 pandaking 阅读(190) 评论(0) 推荐(0) 编辑

导航