博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ2100 Graveyard Design【尺取法】
阅读量:6998 次
发布时间:2019-06-27

本文共 2478 字,大约阅读时间需要 8 分钟。

Time Limit: 10000MS   Memory Limit: 64000K
Total Submissions: 7094   Accepted: 1733
Case Time Limit: 2000MS

Description

King George has recently decided that he would like to have a new design for the royal graveyard. The graveyard must consist of several sections, each of which must be a square of graves. All sections must have different number of graves.  
After a consultation with his astrologer, King George decided that the lengths of section sides must be a sequence of successive positive integer numbers. A section with side length s contains s
2  graves. George has estimated the total number of graves that will be located on the graveyard and now wants to know all possible graveyard designs satisfying the condition. You were asked to find them.

Input

Input file contains n --- the number of graves to be located in the graveyard (1 <= n <= 10
14  ).

Output

On the first line of the output file print k --- the number of possible graveyard designs. Next k lines must contain the descriptions of the graveyards. Each line must start with l --- the number of sections in the corresponding graveyard, followed by l integers --- the lengths of section sides (successive positive integer numbers). Output line's in descending order of l.

Sample Input

2030

Sample Output

24 21 22 23 243 25 26 27

Source

, Northern Subregion

问题链接:。

题意简述:对于输入的n,求一段连续的正整数,使得其平方和等于n。

问题分析

采用尺取法解决。

step1.从1开始,先求出最前面的子序列,使之平方和大于或等于n;

step2.重复step3和step4,直到整数的平方小于n为止;

step3.若子序列平方和等于n,则先把解放入向量变量中;去掉子序列的第1个元素,子序列的后面再加上后续整数的平方和;

step4.将向量中的解取出,输出结果。

程序说明:需要注意数据类型,需要注意起始整数。

AC的C++语言程序如下:

/* POJ2100 Graveyard Design */#include 
#include
#include
using namespace std;vector
> ans;void solve(long long n){ ans.clear(); long long start = 1, end = 1, sum = 0; while (start * start <= n) { while (end * end <= n && sum < n) { sum += end * end; end++; } if (sum == n) ans.push_back(make_pair(start, end)); sum -= start * start; start++; } int len = ans.size(); printf("%d\n", len); for (int i = 0; i < len; i++) { printf("%lld", ans[i].second - ans[i].first); for (int j = ans[i].first; j < ans[i].second; j++) printf(" %d", j); printf("\n"); }}int main(){ long long n; while(scanf("%lld", &n) != EOF) solve(n); return 0;}

转载于:https://www.cnblogs.com/tigerisland/p/7563660.html

你可能感兴趣的文章
Exchange Server 2010下,检测用户密码到期通知提醒脚本
查看>>
java基础--java静态代码块和静态方法的区别、static用法
查看>>
zabbix邮箱告警的详细配置
查看>>
使用基本ACL规则限制用户登录
查看>>
linux 文件查看命令 文件和目录属性
查看>>
由我主讲的软件测试系列视频之性能测试系列视频讲座目录出炉了
查看>>
dropdownlist用法
查看>>
二分查找、二分查找小于等于key的最后一个元素、二分查找大于等于key的第一个元素...
查看>>
PGA的调整建议
查看>>
C#进行Visio二次开发相关事件汇总
查看>>
安装fontconfig2.4.2时make报错解决
查看>>
试析软件测试的错觉及发展方向
查看>>
QTP自动化测试自学手册V2.0版本
查看>>
80后收入是怎样一个水平?看完网友工资单,对不起 拖大家内裤了
查看>>
有关软件测试的五大谣言
查看>>
find(2)
查看>>
jquery-1.4.4.min.js无法解析json中result.data问题
查看>>
php字符串大小写转换
查看>>
linux怎么不输入路径直接运行程序脚本
查看>>
日志信息log
查看>>