首页 > 代码库 > Uva10673 - Play with Floor and Ceil ( 扩展欧几里定理 )
Uva10673 - Play with Floor and Ceil ( 扩展欧几里定理 )
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 ( 扩展欧几里定理 )
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。