Project Euler: Problem 41 Pandigital prime, eulerpandigital

Source: Internet
Author: User

Project Euler: Problem 41 Pandigital prime, eulerpandigital

We shall say thatN-Digit number is pandigital if it makes use of all the digits 1NExactly once. For example, 2143 is a 4-digit pandigital and is also prime.

What is the largestN-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;}elsefor (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;}


Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.