码迷,mamicode.com
首页 > 其他好文 > 详细

Uva10673 - Play with Floor and Ceil ( 扩展欧几里定理 )

时间:2014-10-04 20:33:17      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   ar   strong   sp   

 

Uva10673 - Play with Floor and Ceil ( 扩展欧几里定理 ) 

 

实际上是一道很裸的扩展欧几里德定理的题目,结果把Floor和Ceil搞反了WA一次悲剧啊

#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cmath>
using namespace std;
typedef long long LL;
void ex_gcd(LL a, LL b, LL &d, LL &x, LL &y)
{
    if(!b)
    {
        d = a;
        x = 1, y = 0;
        return;
    }
    else
    {
        ex_gcd(b, a%b, d, y, x);
        y -= x * (a / b);
        return;
    }
}

void Orz()
{
    int cas = 0;
    LL a, b, x, y, d, c, X, K ;
    scanf("%d",&cas);
    while(cas--)
    {
        scanf("%lld %lld",&X,&K);
        //a = (LL)ceil(1.0*X/K);  搞反了,,擦 
        //b = (LL)floor(1.0*X/K);
        a = (LL)floor(1.0*X/K);
        b = (LL)ceil(1.0*X/K);
        ex_gcd(a, b, d, x, y);
        x = x * X / d;
        y = y * X / d;
        printf("%lld %lld\n",x,y);
    }
}

int main()
{
    Orz();
    return 0;
}

 

Uva10673 - Play with Floor and Ceil ( 扩展欧几里定理 )

标签:style   blog   http   color   io   os   ar   strong   sp   

原文地址:http://www.cnblogs.com/BigBallon/p/4006180.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!