欢迎来到ydclyq的博客

我是一只摆烂小狗,欢迎来到摆烂小狗的世界,我们一起摆烂吧
摘要: 代码: 1 #include <bits/stdc++.h> 2 3 int ri() { 4 char c = getchar(); int x = 0, f = 1; for(;c < '0' || c > '9'; c = getchar()) if(c == '-') f = -1; 5 f 阅读全文
posted @ 2019-10-15 15:08 ydclyq 阅读(375) 评论(0) 推荐(0) 编辑
摘要: 思路: 对于 % 30 的数据,可以想到一个 Dp 方程: 其中dp[i]表示分割[1,i]的最大答案 代码: 1 #include<cstdio> 2 #include<cstring> 3 #include<algorithm> 4 const int Nt = 524287; const lo 阅读全文
posted @ 2019-10-15 14:05 ydclyq 阅读(191) 评论(0) 推荐(0) 编辑