栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > C/C++/C#

UVA10277 POJ2646 ZOJ1856 Boastin‘ Red Socks【数学】

C/C++/C# 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

UVA10277 POJ2646 ZOJ1856 Boastin‘ Red Socks【数学】

Boastin’ Red Socks
Time Limit: 1000MS Memory Limit: 65536K
Total Submissions: 2197 Accepted: 556

Description

You have a drawer that is full of two kinds of socks: red and black. You know that there are at least 2 socks, and not more than 50000. However, you do not know how many there actually are, nor do you know how many are red, or how many are black. (Your mother does the laundry!)
You have noticed, though, that when you reach into the drawer each morning and choose two socks to wear (in pitch darkness, so you cannot distinguish red from black), the probability that you pick two red socks is exactly p/q, where 0 < q and 0 <= p <= q.

From this, can you determine how many socks of each colour are in your drawer? There may be multiple solutions - if so, pick the solution with the fewest total number of socks.

Input

Input consists of multiple problems, each on a separate line. Each problem consists of the integers p and q separated by a single space. Note that p and q will both fit into an unsigned long integer.
Input is terminated by a line consisting of two zeroes.

Output

For each problem, output a single line consisting of the number of red socks and the number of black socks in your drawer, separated by one space. If there is no solution to the problem, print “impossible”.

Sample Input

1 2
6 8
12 2499550020
56 789
0 0

Sample Output

3 1
7 1
4 49992
impossible

Source

Waterloo local 1999.06.19

问题链接:UVA848 Fmt
问题简述:(略)
问题分析:数学计算题,枚举解决问题,不解释。解题代码来自仙客传奇团队。
程序说明:(略)
参考链接:(略)
题记:(略)

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


#include 
#include 
#include 
#include 

using namespace std;

typedef  long long LL;
const int N = 50000;

int main()
{
    LL p, q, n, m;
    while(~scanf("%lld%lld", &p, &q) && (q || q)) {
        if (p == 0) printf("0 2n");
        else if (p == q) printf("2 0n");
        else {
            LL tmp = __gcd(p , q);
            p /= tmp, q /= tmp;
            for (n = 2; n <= N; n++)
                if (n * (n - 1) % q == 0) {
                    tmp = (n * (n - 1) / q) * p;
                    m = sqrt(tmp);
                    if (m * (m + 1) == tmp && m + 1 >= 2)
                        break;
                }
            if ( n <= N)
                printf("%lld %lldn", m + 1, n - (m + 1));
            else
                printf("impossiblen");
        }
    }

    return 0;
}
转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/867448.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号