差分数组
Sher杨
这个作者很懒,什么都没留下…
展开
-
Boxes(思维+差分数组)
问题 K: Boxes时间限制: 2 Sec 内存限制: 256 MB提交: 254 解决: 52[提交][状态][讨论版][命题人:admin]题目描述There are N boxes arranged in a circle. The i-th box contains Ai stones.Determine whether it is possible to remove all th...原创 2018-04-20 17:32:21 · 544 阅读 · 0 评论 -
Codeforces Global Round 1 E. Magic Stones(思维+构造+差分)
Codeforces Global Round 1 题意:给出长度为n的数组c和长度为n的数组t,已知对于数组c的每一项都可以使得c[i]=c[i+1]+c[i-1]−c[i],判断是否可以使得c数组变为t数组。 题解:c[i]-c[i-1]=c[i+1]-c[i] c[i+1]-c[i]=c[i]-c[i-1] 这个变换的意思其实是交换差分数组相邻的两项,所以写出c和t的差分数组排序后判断是...原创 2019-02-19 17:43:22 · 198 阅读 · 0 评论