首页 > 代码库 > HDU 1010 Prime Ring Problem
HDU 1010 Prime Ring Problem
A ring is compose of n circles as shown in diagram. Put natural number 1, 2, ..., n into each circle separately, and the sum of numbers in two adjacent circles should be a prime.
Note: the number of first circle should always be 1.
Note: the number of first circle should always be 1.
Input
n (0 < n < 20).
Output
The output format is shown as sample below. Each row represents a series of circle numbers in the ring beginning from 1 clockwisely and anticlockwisely. The order of numbers must satisfy the above requirements. Print solutions in lexicographical order.
You are to write a program that completes above process.
Print a blank line after each case.
You are to write a program that completes above process.
Print a blank line after each case.
思路就是简单的一个一个试,回溯即可。
不过这题输出判定很恶心,注意末尾不能有多余的空格,否则会PE
#include <iostream> #include <cmath> #include <algorithm> using namespace std; int prime[] = {3,5,7,11,13,17,19,23,29,31,33,37}; bool isprime(int x){ for (int i=0;i<12;i++){ if (prime[i] == x){ return true; } } return false; } int visited[100] = {0},res[100] = {0}; int n; void tryit(int now){ // for (int i=1;i<=n;i++){ // cout << res[i] << " "; // } cout << now << endl; if (now == n){ if (!isprime(res[1] + res[now])) return; cout << 1; for (int i=2;i<=n;i++){ cout << " " << res[i]; } cout << endl; return ; } if (now == 0){ res[1] = 1; visited[1] = 1; tryit(1); return; } int index = upper_bound(prime,prime+12,res[now]) - prime; for (int i=index;i<12 && prime[i] <= 2*n;i++){ if (prime[i] <= res[now]) continue; int nownum = prime[i] - res[now]; if (!visited[nownum] && nownum <= n){ visited[nownum] = 1; res[now+1] = nownum; tryit(now+1); visited[nownum] = 0; } } return; } int main(){ // freopen("test.in","r",stdin); // freopen("test.out","w",stdout); int total = 0; while (cin >> n){ total ++; cout << "Case " << total << ":" << endl; tryit(0); cout << endl; } return 0; }
HDU 1010 Prime Ring Problem
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。