HDU1016 Prime Ring Problem (回溯 + 剪枝)

题意:

  给你一个数字N(N <= 20),要求你把这N个数组成一个环,环内的数字不能重复,左右相邻的两个的和是素数。给出最后的答案。

思路:

  利用回溯剪枝算法,N个数,每个数有N种状态,枚举这N个状态,枚举过程中剪枝优化。

代码:

#include <cstdio>
#include <iostream>
#include <cstring>
#include <cstring>
#include <cmath>
#include <cstdlib>
#include <algorithm>
using namespace std;

const int MAXN = 43;
int n;
//素数表
int isprime[MAXN] = {0, 0, 1, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0};
//判断是否重复
int used[MAXN];

//素数环
int circle[MAXN];

//判断 第 key 个位置的数字是否合法
int check(int key)
{
    if( used[ circle[key] ] ) //之前被用过
        return 0;
    if(!isprime[ circle[key] + circle[key - 1] ])//和前面一个组成了非素数
        return 0;
    if(key == n && !isprime[ circle[key] + 1 ])//最后一个数和第一个数的和也不能是素数
        return 0;
    return 1;
}

void backtrack(int key)
{
    if(key > n)//回溯完毕 打印结果
    {
        for(int i = 1; i <= n; i++)
            cout <<(i == 1? "" : " ") << circle[i];
        cout <<endl;
    }
    else
    {
        for(int i = 2; i <= n; i++) //这个位置一共有 n - 1 个状态,分别枚举
        {
            circle[key] = i;
            if( check( key ) )      //剪枝处理
            {
                used[i] = 1;        //标记这个点已被用
                backtrack(key + 1);
                used[i] = 0;        //恢复现场
            }
        }
    }
}

int main()
{
    int kas = 1;
    while(cin >> n)
    {
        printf("Case %d:\n", kas++);
        memset(used, 0, sizeof(used));
        memset(circle, 0, sizeof(circle));
        circle[1] = 1;    //第一个数字从 1 开始
        backtrack(2); //从第二个数字开始求解
        cout << endl;
    }
    return 0;
}
时间: 2024-11-10 11:10:37

HDU1016 Prime Ring Problem (回溯 + 剪枝)的相关文章

HDU1016 Prime Ring Problem(DFS回溯)

Prime Ring Problem Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 34609    Accepted Submission(s): 15327 Problem Description A ring is compose of n circles as shown in diagram. Put natural numb

[HDU 1016]--Prime Ring Problem(回溯)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1016 Prime Ring Problem Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Problem Description A ring is compose of n circles as shown in diagram. Put natural number 1, 2

hdu1016 Prime Ring Problem dfs 素数打表

意思是给你一个数n,要构成一个素数环,这个素数由1-n组成,它的特征是选中环上的任意一个数字i,i与它相连的两个数加起来都分别为素数,满足就输出. 这个题的做法和hdu1015做法差不多都是使用dfs 回溯.不同之处在于这个要全部搜索,而hdu1015只需要搜索第一组就可以. 其次在这个题目中使用素数打表的方式简化素数判定,在一定情况下也是对效率有所提高的. Prime Ring Problem Time Limit: 4000/2000 MS (Java/Others) Memory Limi

HDU-1016 Prime Ring Problem(DFS深搜+打表)

题目回顾(HDU-1016): Prime Ring Problem Problem Description 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

HDU1016 Prime Ring Problem

Prime Ring Problem Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 35961    Accepted Submission(s): 15867 Problem Description A ring is compose of n circles as shown in diagram. Put natural numb

HDU1016 Prime Ring Problem(深度优先搜索)

Prime Ring Problem Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 27488 Accepted Submission(s): 12248 Problem Description A ring is compose of n circles as shown in diagram. Put natural number 1,

UVa524 Prime Ring Problem (回溯法)

链接:http://acm.hust.edu.cn/vjudge/problem/19667分析:先打个素数表,题目要求从1开始打印,直接把1固定到A[0]位置,打印的时候就可以直接从A[0]开始打印了,然后枚举2~n,vis判断之前是否用过,和是否为素数,都满足则继续递归枚举,然后回溯将vis还原. 1 #include <iostream> 2 #include <cstring> 3 using namespace std; 4 5 int n, isp[35], A[20]

HDU1016 Prime Ring Problem DFS 简单题

题意:输入n,代表有一个n个节点的环,然后在节点分别填入1到n这n个数,规定,第一个填入的必须是1. 0<n<40 要求填入后满足,任意相邻的2个节点的数之和为素数. 将满足条件的填法按照字典序的顺序小到大依次输出. 其实刚开始做的时候我觉得这道题会做很久的,想好后就开始打了,打着打着发现这道题打好了,有点意外,原来这么简单. 注意回溯,在每次DFS后要记得把状态恢复原样,比如这道题是每次DFS后都要把当前DFS的数字i恢复为vis[i]=false; 先考虑好初始化,结束条件,回溯. 先来一

HDU1016——Prime Ring Problem

http://acm.hdu.edu.cn/showproblem.php?pid=1016 这道题是经典的素数环问题,相邻的两个数之和是素数. 解题方法:用的是深搜,以1为起点,搜索,下一个数为出去前面的数字的集合.(用vis数组记录访问过的节点) 剪枝:当前搜索值与数组前一个值之和不为素数的时候返回. #include <iostream> #include <cstdio> #include <cstring> #include<math.h> usi