摘要: 题目:Click here题意:给定数列满足求f(n)mod(1e9+7)。分析:规律题,找规律,特别注意负数取mod。 1 #include 2 #include 3 #include 4 #include 5 #include 6 using namespace std; 7 con... 阅读全文
posted @ 2015-08-09 15:31 TaoTaoCome 阅读(240) 评论(0) 推荐(0) 编辑
摘要: 题目:Click here题意:bestcoder 上面有中文题目分析:令f[i]为最后一个木人桩摆放在i位置的方案,令s[i]为f[i]的前缀和。很容易就能想到f[i]=s[i-3]+1,s[i]=s[i-1]+f[i],而s[n]即是所求答案。本题唯一一个值得注意的点就是当n接近60时会爆int... 阅读全文
posted @ 2015-08-09 11:11 TaoTaoCome 阅读(119) 评论(0) 推荐(0) 编辑
摘要: 题目:Click here题意:bestcoder上面有中文题目 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 #include 9 #include 10 #inc... 阅读全文
posted @ 2015-08-09 11:04 TaoTaoCome 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 题目:Click here题意:给你n个点,有多少个正多边形(3,4,5,6)。分析:整点是不能构成正五边形和正三边形和正六边形的,所以只需暴力枚举四个点判断是否是正四边形即可。 1 #include 2 #include 3 #include 4 #include 5 #include ... 阅读全文
posted @ 2015-08-09 10:52 TaoTaoCome 阅读(165) 评论(0) 推荐(0) 编辑