POJ 1320-Street Numbers(解佩尔方程)

Street Numbers
Time Limit: 1000MS Memory Limit: 10000K
Total Submissions: 2908 Accepted: 1621

Description

A computer programmer lives in a street with houses numbered consecutively (from 1) down one side of the street. Every evening she walks her dog by leaving her house and randomly turning left or right and walking to the end of the street and back. One night she adds up the street numbers of the houses she passes (excluding her own). The next time she walks the other way she repeats this and finds, to her astonishment, that the two sums are the same. Although this is determined in part by her house number and in part by the number of houses in the street, she nevertheless feels that this is a desirable property for her house to have and decides that all her subsequent houses should exhibit it. 
Write a program to find pairs of numbers that satisfy this condition. To start your list the first two pairs are: (house number, last number): 
         6         8

        35        49

Input

There is no input for this program.

Output

Output will consist of 10 lines each containing a pair of numbers, in increasing order with the last number, each printed right justified in a field of width 10 (as shown above).

Sample Input

 

Sample Output

         6         8
        35        49

Source

题目意思:

形如 X^2-d*Y^2=1 的不定方程被称为佩尔方程。
求解两个不相等的正整数n,m,使得:
1+2+3+…+n=(n+1)+(n+2)+…+m。

解题思路:

用高斯速算公式分别计算两边式子,合并化简后可以得到:(2*m +1)^2 - 8*n^2 =1,即佩尔方程形式。
有迭代公式:
Xn=Xn-1*X1+d*Yn-1*Y1
Yn=Xn-1*Y1+Yn-1*X1.
……
Xn+1=3Xn+8Yn.
Yn+1=Xn+3Yn
其中X1=3,Y1=1,n和n-1为下标。
#include <iostream>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <vector>
#include <queue>
#include <map>
#include <algorithm>
#define MAXN 1000010
typedef long long ll;
using namespace std;

void Search()
{
    int x,y,x1=3,y1=1,d=8,px=3,py=1;
    for(int i=0; i<10; i++)
    {
        x=x1*px+d*y1*py;
        y=y1*px+x1*py;
        printf("%10d%10d\n",y,(x-1)/2);//输出格式要求右对齐且每个数占10格
        px=x;
        py=y;
    }
}

int main()
{
    //ios::sync_with_stdio(false);
    //cin.tie(0);
    Search();
    return 0;
}

/**
6         8
35        49
**/


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值