HDU 3880 luck number

#include <stdio.h>
#include <stdlib.h>
#include <string.h>


int main(){
	__int64 i, j, k;
	__int64 a, b, M;
	while(scanf("%I64d%I64d%I64d", &a, &b, &M) != EOF){
		if (a > b){
			k = a;
			a = b;
			b = k;
		}
		if (b == 1){
			k = M;
		}else{
			k = 0;
			j = 1;
			for (i = b; M / i > 0; i = i * b){
				k += j * M / i;
				j = -j;
			}
		}
		printf("%I64d\n", k);
	}
    system("pause");
    return 0;
}


/***************
结论是猜的,开始题目还看错了。。。
暴力的又连番写错。。。好久俩程序才对上。。。
其实这结论,稍分析,再猜一猜,还是容易猜到的,连我这个没啥找规律细胞的

,都能找到。。。表示自己很惊奇。。。
M/b是上界,当m1*a=m2*b时,又可以省M/ab个,但其中有些是不能省的,再加上

M/ab - M/bb,表达不清楚。。反正类似这样的情况,加加减减的。。。我也没搞

清楚。。。
***************/

Problem Description
Lucy and Lily are twin sisters. Mr. Smith, their father, a mathematician, gave each of them a lucky number (positive integer) when they were born, and the two lucky numbers have only one common divisor, of course, it is 1.

Mr. Smith is extremely excited to see that his two little children are so interested in math and both of them show amazing talent. Mr. Smith now will teach the two little girls to do multiplication. He wants to start with the two lucky numbers a and b.

Mr. Smith will write a set of positive integers (we call it SetA) such that for any positive integer m, we can find m*a or m*b in SetA. Because Lucy and Lily can only count from 1 to M, so if m*a or m*b is larger than M, Mr. Smith will ignore m.

Mr. Smith wants to write least numbers.
So help him to figure out the minimum number of elements in SetA.
For example the lucky numbers are 3 and 2, and M is 7.
Mr. Smith could write 3,6,2,4. He could also write only 3,6,4 or 3,6 or 2,4. But in no way could he write only one number contain both (1*3 or 1*2) and (2*3 or 2*2).


Input
The input has multiple cases, process to EOF. There are about 10000 cases.
Each case contains a line with 3 positive integers: a b M as described above.
We ensure the greatest common divisor of a and b is 1.
M, a, b are all fit 32bit integers.


Output
For each test case, output a line with only one integer, the minimum number of elements in SetA.


Sample Input
3 2 7
4 3 8


Sample Output
2
2


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值