摘要: A - Biorhythms 题目链接 #include <iostream> #include <cstring> #include <algorithm> #include <cstdio> using namespace std; int main() { int cnt = 1; while 阅读全文
posted @ 2021-01-14 15:00 Hoppz 阅读(61) 评论(0) 推荐(0) 编辑
摘要: A - Perfect Cubes 题目链接 还是想的hash去重出问题了2333开始用(i+k+j) * 13去重,但是忘了有多个(i+j+k)的可能,最后发现 -i * 13 + j *3 + k * 1-可以用这种去重,后面队友说可以直接线性做, --也坑了一次,最后代码如下 #include 阅读全文
posted @ 2021-01-14 13:56 Hoppz 阅读(95) 评论(0) 推荐(0) 编辑