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

hrbust1632 最大的最小公倍数(欧几里得)

时间:2014-05-21 14:36:27      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:c++   算法   

本文出自:http://blog.csdn.net/svitter

原题:http://acm.hrbust.edu.cn/index.php?m=ProblemSet&a=showProblem&problem_id=1632


题意:给你一个数字N,让你在1~n中选三个数字,使其最小公倍数最大。


题解:水题一发。。半天没A。。呵呵呵呵。

1。相邻自然数肯定互质。

2。依据辗转相除法。。shit- -。。n和n-3如果有最大公约数肯定是3。


AC:

//============================================================================
// Name        : num.cpp
// Author      : vit
// Version     :
// Copyright   : Your copyright notice
// Description : Hello World in C++, Ansi-style
//============================================================================

#include <iostream>
#include <stdio.h>
#include <string.h>
using namespace std;
#define lln long long int

int main() {
	lln n;
	lln ta, tb;
	while(~scanf("%lld", &n))
	{
		if(n <= 2)
			printf("%lld\n", n);
		else
		{
			if(n & 1)
				printf("%lld\n", n*(n-1)*(n-2));
			else
			{
				if(n % 3 != 0) ta =n*(n-1)*(n-3);
				else ta = 0;
				tb = (n-1)*(n-2)*(n-3);
				printf("%lld\n", ta > tb ? ta : tb);
			}
		}
	}
	return 0;
}


hrbust1632 最大的最小公倍数(欧几里得),布布扣,bubuko.com

hrbust1632 最大的最小公倍数(欧几里得)

标签:c++   算法   

原文地址:http://blog.csdn.net/svitter/article/details/26285431

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