首页 > 其他 > 详细

Project Euler:Problem 41 Pandigital prime

时间:2017-07-28 12:41:48      阅读:247      评论:0      收藏:0      [点我收藏+]

We shall say that an n-digit number is pandigital if it makes use of all the digits 1 to n exactly once. For example, 2143 is a 4-digit pandigital and is also prime.

What is the largest n-digit pandigital prime that exists?



#include <iostream>
#include <string>
using namespace std;

int res = 0;

bool prim(int a)
{
	for (int i = 2; i*i <= a; i++)
	{
		if (a%i == 0)
			return false;
	}
	return true;
}

void perm(int list[], int n, int k)
{
	int temp1, temp2;
	if (n == 1)
	{
		int sum = 0;
		for (int i = k; i > 0; i--)
			sum = sum * 10 + list[i];
		if (prim(sum)&&sum > res)
			res = sum;
	}
	else
	for (int i = 1; i <= n; i++)
	{

		temp1 = list[i];
		list[i] = list[n];
		list[n] = temp1;

		perm(list, n - 1, k);

		temp2 = list[i];
		list[i] = list[n];
		list[n] = temp2;
	}

}

int main()
{
	for (int j = 9; j >= 1; j--)
	{
		int list[200];
		for (int i = 1; i <= j; i++)
			list[i] = i;
		perm(list, j, j);
	}
	cout << res << endl;
	system("pause");

	return 0;
}


Project Euler:Problem 41 Pandigital prime

原文:http://www.cnblogs.com/blfbuaa/p/7249581.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!