博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 1016 Prime Ring Problem(素数环问题)
阅读量:4614 次
发布时间:2019-06-09

本文共 1479 字,大约阅读时间需要 4 分钟。

传送门:

Prime Ring Problem

Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)

Total Submission(s): 63806    Accepted Submission(s): 27457

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 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.
 

 

Sample Input
6 8
 

 

Sample Output
Case 1:
1 4 3 2 5 6
1 6 5 2 3 4
 
Case 2:
1 2 3 8 5 6 7 4
1 2 5 8 3 4 7 6
1 4 7 6 5 8 3 2
1 6 7 4 3 8 5 2
 
Source
 

 

Recommend
JGShining   |   We have carefully selected several similar problems for you:            
 
分析:
经典的素数环问题
dfs
就是全排列的基础上加上素数环要求的检测
code:
#include
using namespace std;typedef long long LL;#define max_v 105int a[max_v];int vis[max_v];int n;int isp(int x)//素数检测{ for(int i=2;i<=sqrt(x);i++) { if(x%i==0) return 0; } return 1;}void dfs(int cur)//素数环问题 全排列思想加素数的检测{ if(cur==n&&isp(a[0]+a[n-1]))//判断到最后一个数了 { printf("%d",a[0]);//打印 for(int i=1;i

 

 

转载于:https://www.cnblogs.com/yinbiao/p/9313350.html

你可能感兴趣的文章
如何建立合适的索引?
查看>>
acwing 651. 逛画展
查看>>
Vijos P1243 生产产品 (单调队列优化DP)
查看>>
iOS常用第三方库 -转
查看>>
Android布局学习
查看>>
jQuery中事件绑定与解绑
查看>>
js原生Ajax的封装与使用
查看>>
周总结6
查看>>
PostgreSQL 务实应用(二/5)插入冲突
查看>>
一种公众号回复关键词机制
查看>>
java多线程入门学习(一)
查看>>
基于 Web 的 Go 语言 IDE - Wide 1.1.0 公布!
查看>>
nyist oj 138 找球号(二)(hash 表+位运算)
查看>>
Movidius软件手册阅读 2017-09-04
查看>>
ytu 1910:字符统计(水题)
查看>>
201671030110 姜佳宇 实验三作业互评与改进
查看>>
mysql-5.6.15 开启二进制文件
查看>>
python的沙盒环境--virtualenv
查看>>
软件自动化测试——入门、进阶与实战
查看>>
BZOJ1878 [SDOI2009]HH的项链 树状数组 或 莫队
查看>>