Anti-prime sequence (P2034)

题意: 给定一串连续的整数从n到 n+m,

            让我们给其数排序,满足以下要求:在这m+1个数中的任意的连续的2~d个数

            之和不为素数(其中不考虑循环的情况)


思路:直接DFS判断即可,


感想:感觉好久没有做过题一样的,一开始还对题意把握得不准。好久才做出来,幸好一次过。


#include<iostream>
#include<algorithm>
#include<cstring>
#include<cstdio>

using namespace std;

bool p[10000];
int ans[1001];
int n,m,d;
int num;
bool b[1001];
bool isok;

void dfs(int j)
{
//	cout<<j<<endl;
	int i,k;
	if (j>num)
	{
		isok=true;
		for (i=1;i<num;++i)
			printf("%d,",ans[i]);
		printf("%d\n",ans[num]);
		return;
	}
	
	if (j==1)
	{
		for (i=n;i<=m;++i) if (!b[i])
		{
			b[i]=true;
			ans[j]=i;	
			dfs(j+1);
			b[i]=false;
			if (isok)
				return;
		}
		return;
	}
	
	int sum=0;
	if (j<d)
	{
		for (i=n;i<=m;++i) if (!b[i])
		{
			sum=i;
			for (k=j-1;k;--k)
			{
				sum+=ans[k];
				if (!p[sum])
					break;
			}	
			if (k)
				continue;
			b[i]=true;
			ans[j]=i;	
			dfs(j+1);
			b[i]=false;
			if (isok)
				return;
		}
		return;
	}
	
	for (i=n;i<=m;++i) if (!b[i])
	{
		sum=i;
		for (k=j-1;k>j-d;--k)
		{
			sum+=ans[k];
			if (!p[sum])
				break;
		}
		if (k>j-d)
			continue;
		b[i]=true;
		ans[j]=i;
		dfs(j+1);	
		b[i]=false;
		if (isok)
			return;
	}
}

int main(  )
{ 
	int i,j,k;
	memset(p,false,sizeof(p));	
	for (i=2;i<10000;i++) if (!p[i])
		for (j=i*i;j<10000;j+=i)
			p[j]=true;
	memset(b,false,sizeof(b));
	while (cin>>n>>m>>d,n||m||d)
	{	 
		num=m-n+1;
		isok=false;
		dfs(1);
		if (!isok)
			puts("No anti-prime sequence exists.");
	}
	
    return 0;
}

Anti-prime Sequences
Time Limit: 3000MS Memory Limit: 30000K
Total Submissions: 2714 Accepted: 1257

Description

Given a sequence of consecutive integers n,n+1,n+2,...,m, an anti-prime sequence is a rearrangement of these integers so that each adjacent pair of integers sums to a composite (non-prime) number. For example, if n = 1 and m = 10, one such anti-prime sequence is 1,3,5,4,2,6,9,7,8,10. This is also the lexicographically first such sequence. 

We can extend the definition by defining a degree danti-prime sequence as one where all consecutive subsequences of length 2,3,...,d sum to a composite number. The sequence above is a degree 2 anti-prime sequence, but not a degree 3, since the subsequence 5, 4, 2 sums to 11. The lexicographically .rst degree 3 anti-prime sequence for these numbers is 1,3,5,4,6,2,10,8,7,9. 

Input

Input will consist of multiple input sets. Each set will consist of three integers, n, m, and d on a single line. The values of n, m and d will satisfy 1 <= n < m <= 1000, and 2 <= d <= 10. The line 0 0 0 will indicate end of input and should not be processed.

Output

For each input set, output a single line consisting of a comma-separated list of integers forming a degree danti-prime sequence (do not insert any spaces and do not split the output over multiple lines). In the case where more than one anti-prime sequence exists, print the lexicographically first one (i.e., output the one with the lowest first value; in case of a tie, the lowest second value, etc.). In the case where no anti-prime sequence exists, output 

No anti-prime sequence exists. 

Sample Input

1 10 2
1 10 3
1 10 5
40 60 7
0 0 0

Sample Output

1,3,5,4,2,6,9,7,8,10
1,3,5,4,6,2,10,8,7,9
No anti-prime sequence exists.
40,41,43,42,44,46,45,47,48,50,55,53,52,60,56,49,51,59,58,57,54

Source


  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值