程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> UVA 756 - Biorhythms(數論)

UVA 756 - Biorhythms(數論)

編輯:C++入門知識

756 - Biorhythms

題目鏈接

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

代碼:

#include 
#include 

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;
}


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved