zoukankan      html  css  js  c++  java
  • hdu 3292 No more tricks, Mr Nanguo

    No more tricks, Mr Nanguo

    Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 65535/32768 K (Java/Others)
    Total Submission(s): 494    Accepted Submission(s): 334


    Problem Description
    Now Sailormoon girls want to tell you a ancient idiom story named “be there just to make up the number”. The story can be described by the following words.
    In the period of the Warring States (475-221 BC), there was a state called Qi. The king of Qi was so fond of the yu, a wind instrument, that he had a band of many musicians play for him every afternoon. The number of musicians is just a square number.Beacuse a square formation is very good-looking.Each row and each column have X musicians.
    The king was most satisfied with the band and the harmonies they performed. Little did the king know that a member of the band, Nan Guo, was not even a musician. In fact, Nan Guo knew nothing about the yu. But he somehow managed to pass himself off as a yu player by sitting right at the back, pretending to play the instrument. The king was none the wiser. But Nan Guo's charade came to an end when the king's son succeeded him. The new king, unlike his father, he decided to divide the musicians of band into some equal small parts. He also wants the number of each part is square number. Of course, Nan Guo soon realized his foolish would expose, and he found himself without a band to hide in anymore.So he run away soon.
    After he leave,the number of band is Satisfactory. Because the number of band now would be divided into some equal parts,and the number of each part is also a square number.Each row and each column all have Y musicians.
     
    Input
    There are multiple test cases. Each case contains a positive integer N ( 2 <= N < 29). It means the band was divided into N equal parts. The folloing number is also a positive integer K ( K < 10^9).
     
    Output
    There may have many positive integers X,Y can meet such conditions.But you should calculate the Kth smaller answer of X. The Kth smaller answer means there are K – 1 answers are smaller than them. Beacuse the answer may be very large.So print the value of X % 8191.If there is no answers can meet such conditions,print “No answers can meet such conditions”.
     
    Sample Input
    2 999888
    3 1000001
    4 8373
     
    Sample Output
    7181
    600
    No answers can meet such conditions
    依题可得x^2-ny^2=1,所以此题解法为佩尔方程+矩阵快速幂
    #include <iostream>
    #include <algorithm>
    #include <cstring>
    #include <cstdio>
    #include <vector>
    #include <queue>
    #include <stack>
    #include <cstdlib>
    #include <iomanip>
    #include <cmath>
    #include <cassert>
    #include <ctime>
    #include <map>
    #include <set>
    using namespace std;
    #pragma comment(linker, "/stck:1024000000,1024000000")
    #define lowbit(x) (x&(-x))
    #define max(x,y) (x>=y?x:y)
    #define min(x,y) (x<=y?x:y)
    #define MAX 100000000000000000
    #define MOD 1000000007
    #define pi acos(-1.0)
    #define ei exp(1)
    #define PI 3.1415926535897932384626433832
    #define ios() ios::sync_with_stdio(true)
    #define INF 0x3f3f3f3f
    #define mem(a) (memset(a,0,sizeof(a)))
    typedef long long ll;
    ll n,k,x,y;
    const ll maxn=8191;
    struct matrix
    {
        ll a[2][2];
    };
    void serach(ll n,ll &x,ll &y)
    {
        y=1;
        while(1)
        {
            x=(1ll)*sqrt(n*y*y+1);
            if(x*x-n*y*y==1) break;
            y++;
        }
    }
    matrix mulitply(matrix ans,matrix pos)
    {
        matrix res;
        memset(res.a,0,sizeof(res.a));
        for(int i=0;i<2;i++)
        {
            for(int j=0;j<2;j++)
            {
                for(int k=0;k<2;k++)
                {
                    res.a[i][j]+=(ans.a[i][k]*pos.a[k][j])%maxn;
                    res.a[i][j]%=maxn;
                }
            }
        }
        return res;
    }
    matrix quick_pow(ll m)
    {
        matrix ans,pos;
        for(int i=0;i<2;i++)
            for(int j=0;j<2;j++)
                ans.a[i][j]=(i==j);
        pos.a[0][0]=x%maxn;
        pos.a[0][1]=n*y%maxn;
        pos.a[1][0]=y%maxn;
        pos.a[1][1]=x%maxn;
        while(m)
        {
            if(m&1) ans=mulitply(ans,pos);
            pos=mulitply(pos,pos);
            m>>=1;
        }
        return ans;
    }
    int main()
    {
        while(scanf("%lld%lld",&n,&k)!=EOF)
        {
            ll m=sqrt(n);
            if(m*m==n) {printf("No answers can meet such conditions
    ");continue;}
            serach(n,x,y);
            matrix ans=quick_pow(k);
            printf("%lld
    ",ans.a[0][0]);
        }
        return 0;
    }
  • 相关阅读:
    20120110 自己写的基于jquery的翻页效果
    搜来的 可爱的if ie
    哎~~~纠结死了的终于解决的i6的fixed属性
    2011815发现可好的js繁简转换代码 写这些的人。。好厉害呀 收藏了~~~
    网站制作CSS图片转换滤镜代码(貌似只对ie有用。。。)
    2011811 右下角弹出渐隐的广告代码 可以关闭 可以缩小 还各种兼容(ff opera ie6、7、8都试过了)值得保留哎~~~
    20120604 自己写的基于jquery的类似百度贴吧头像提示效果
    UFT textUtil object 解决奇怪问题
    UFT send request & get response
    UFT connect sql (1)
  • 原文地址:https://www.cnblogs.com/shinianhuanniyijuhaojiubujian/p/9102987.html
Copyright © 2011-2022 走看看