poj2100 -- Graveyard Design(区尺法)

来源:互联网 发布:草东没有派对知乎 编辑:程序博客网 时间:2024/05/17 22:55
Total Submission(s) : 17   Accepted Submission(s) : 4
Problem 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 s2 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<sup>14</sup> ). 
 

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
 题意:连续的自然数的平方 的子序列,组成n
坑:long long ,不能打表(内存不够   
#include <iostream>#include <algorithm>#include <string.h>#include <stdio.h>#include <cmath>#include <vector>#include <queue>#include <utility>using namespace std;int main() {        //freopen("in.txt", "r", stdin);    long long n;    while (cin >> n) {        vector<pair<long long, long long> > ans;        long long left = 1;        long long right = 0;        long long sum = 0;        while (right * right <= n) {            if (sum == n) {                ans.push_back(make_pair(left, right));                sum -= left * left;                left++;            } else if (sum < n) {                right++;                sum += right * right;            } else if (sum > n) {                sum -= left * left;                left++;            }        }        cout << ans.size() << endl;        for (int i = 0; i < ans.size(); ++i) {            cout << ans[i].second - ans[i].first + 1;            for (long long j = ans[i].first; j <= ans[i].second; ++j) {                cout << " " << j;            }            cout << endl;        }    }}


原创粉丝点击