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

UVA 756 - Biorhythms(数论)

时间:2014-06-26 14:30:56      阅读:287      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   http   tar   

756 - Biorhythms

题目链接

基本就是裸的中国剩余定理。

代码:

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

const int M = 23 * 28 * 33;
const int m[3] = {23, 28, 33};
int p[3], d;

int gcd(int a, int b, int &x, int &y) {
	if (!b) {x = 1; y = 0; return a;}
	int d = gcd(b, a % b, y, x);
	y -= a / b * x;
	return d;
}

int main() {
	int cas = 0;
	while (~scanf("%d%d%d%d", &p[0], &p[1], &p[2], &d)) {
		if (p[0] < 0 && p[1] < 0 && p[2] < 0 && d < 0) break;		
  		int ans = 0;
    	for (int i = 0; i < 3; i++) {
			int x, y, w = M / m[i];
			gcd(m[i], w, x, y);
			ans = (ans + p[i] % m[i] * w * y) % M;
  		}
  		ans -= d;
  		if (ans <= 0) ans += M;
  		printf("Case %d: the next triple peak occurs in %d days.\n", ++cas, ans);
 	}
	return 0;
}


UVA 756 - Biorhythms(数论),布布扣,bubuko.com

UVA 756 - Biorhythms(数论)

标签:style   class   blog   code   http   tar   

原文地址:http://blog.csdn.net/accelerator_/article/details/34489835

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