Codeforces Round #281 (Div. 2)E(数学)_html/css_WEB-ITnose

php中文网
发布: 2016-06-24 11:52:32
原创
1338人浏览过

E. Vasya and Polynomial

time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

vasya is studying in the last class of school and soon he will take exams. he decided to study polynomials. polynomial is a function p(x)?=?a0?+?a1x1?+?...?+?anxn. numbers ai are called coefficients of a polynomial, non-negative integer n is called a degree of a polynomial.

Vasya has made a bet with his friends that he can solve any problem with polynomials. They suggested him the problem: "Determine how many polynomials P(x) exist with integer non-negative coefficients so that , and , where  and b are given positive integers"?

Vasya does not like losing bets, but he has no idea how to solve this task, so please help him to solve the problem.

Input

The input contains three integer positive numbers  no greater than 1018.

VALL-E
VALL-E

VALL-E是一种用于文本到语音生成 (TTS) 的语言建模方法

VALL-E68
查看详情 VALL-E

Output

If there is an infinite number of such polynomials, then print "inf" without quotes, otherwise print the reminder of an answer modulo109?+?7.

立即学习前端免费学习笔记(深入)”;

Sample test(s)

input

2 2 2
登录后复制

output

input

2 3 3
登录后复制

output


题意:RT


思路:给出了t,a,b,那么有


            f(t)=a0+a1*t+a2*t^2+...+an*t^n=a


           f(a)=a0+a1*a+a2*a^2+...+an*a^n=b


           a1+a2*t+...+an*t^(n-1)=(a-a0)/t


           a1+a2*a+...+an*a^(n-1)=(b-a0)/a


           那么(a-a0)%t=0 && (b-a0)%a=0


           a%t=a0%t && b%a=a0%a


           因为b>a


           所以b=k*a+a0;


          又因为a0


          所以a0=b%a 或者 a0=b%a+a


          这样递归求解各个常数就可以了


HTML速学教程(入门课程)
HTML速学教程(入门课程)

HTML怎么学习?HTML怎么入门?HTML在哪学?HTML怎么学才快?不用担心,这里为大家提供了HTML速学教程(入门课程),有需要的小伙伴保存下载就能学习啦!

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号