博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ 1006 Biorhythms 中国剩余定理 数论
阅读量:6480 次
发布时间:2019-06-23

本文共 1238 字,大约阅读时间需要 4 分钟。

  题目链接: http://poj.org/problem?id=1006

  题目大意: 给你三个数p e i 让你求一个x 使得 x % 23 == p, x % 28 == e, x % 33 == i

  解题思路: 裸的中国剩余定理

  代码: 

#include 
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define lson l, m, rt<<1#define rson m+1, r, rt<<1|1#define mem0(a) memset(a,0,sizeof(a))#define meminf(a) memset(a,0x3f,sizeof(a))typedef long long ll;using namespace std;//const int INF = 0x3fffffff;ll gcd( ll a, ll b ) { return b == 0 ? a : gcd( b, a % b );}ll lcm( ll a, ll b ) { return a / gcd(a, b) * b;}int main() {// cout << lcm( lcm(23, 28), 33 ) << endl; ll p, e, i, d; int cases = 1; while( cin >> p >> e >> i >> d ) { if( p == -1 && e == -1 && i == -1 && d == -1 ) break; ll ans = 5544 * p + 14421 * e + 1288 * i - d; ans %= 21252; if( ans <= 0 ) ans += 21252; cout << "Case " << cases++ << ": the next triple peak occurs in " << ans << " days." << endl; } return 0;}
View Code

  思考: 今天看了看推理过程, 觉得挺有意思的, 好好学数学

  另外感谢楼主对中国剩余定理的详细解释, 让我一个弱鸡看得明白: http://www.cnblogs.com/walker01/archive/2010/01/23/1654880.html

转载于:https://www.cnblogs.com/FriskyPuppy/p/7382860.html

你可能感兴趣的文章
生活杂事--度过十一中秋
查看>>
Pyrex也许是一个好东西
查看>>
WINFORM WPF字体颜色相互转换
查看>>
能力不是仅靠原始积累(三)
查看>>
实战:使用终端服务网关访问终端服务
查看>>
彻底学会使用epoll(一)——ET模式实现分析
查看>>
【Android 基础】Android中全屏或者取消标题栏
查看>>
Xilinx 常用模块汇总(verilog)【03】
查看>>
脱离标准文档流(2)---定位
查看>>
IO流之字符流
查看>>
集合异常之List接口
查看>>
Softmax回归
查看>>
紫书 习题11-11 UVa 1644 (并查集)
查看>>
App工程结构搭建:几种常见Android代码架构分析
查看>>
使用openssl进行证书格式转换
查看>>
ZOJ 3777 Problem Arrangement
查看>>
虚拟机类加载机制
查看>>
Callable和Future
查看>>
installshield12如何改变默认安装目录
查看>>
少用数字来作为参数标识含义
查看>>