uva 524(素数环)

Description

A ring is composed of n (even number) circles as shown in diagram. Put natural numbers 1,2,3,...,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 <= 16)

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.


You are to write a program that completes above process.

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



Miguel A. Revilla
1999-01-11
题意:
输入正整数n,把整数1,2,3,...,n组成一个环,使得相邻两个帧数之和均为素数。
思路:
利用DFS,进行回溯。
代码:
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;

int is_prime(int x) {
  for(int i = 2; i*i <= x; i++)
    if(x % i == 0) return 0;
  return 1;
}

int n, A[50], isp[50], vis[50];
void dfs(int cur) {
  if(cur == n && isp[A[0]+A[n-1]]) {
    for(int i = 0; i < n; i++) {
      if(i != 0) printf(" ");
      printf("%d", A[i]);
    }
    printf("\n");
  }
  else for(int i = 2; i <= n; i++)
    if(!vis[i] && isp[i+A[cur-1]]) {
      A[cur] = i;
      vis[i] = 1;
      dfs(cur+1);
      vis[i] = 0;
    }
}

int main() {
  int kase = 0;
  while(scanf("%d", &n) == 1 && n > 0) {
    if(kase > 0) printf("\n");
    printf("Case %d:\n", ++kase);
    for(int i = 2; i <= n*2; i++) isp[i] = is_prime(i);
    memset(vis, 0, sizeof(vis));
    A[0] = 1;
    dfs(1);
  }
  return 0;
}

### UVa818 切断圆环链问题解决方案 对于UVa818切断圆环链的问题,目标是在最少切割次数的情况下将给定长度的闭合链条分割成指定数量的小段。该问题可以通过贪心算法来有效求解。 #### 贪婪策略分析 为了最小化切割次数,在每次操作时应尽可能多地利用已有的切口位置。具体来说,当需要制作n个链接时,只需要做(n-1)次切割即可完成任务[^1]。 #### 实现方法概述 程序接收一系列整数作为输入数据,表示所需制造的不同尺寸片段数目;接着计算并输出达到这些要求所需的最低切割次数。这里给出Python版本的具体实现: ```python def min_cuts_needed(links): """Calculate minimum cuts needed to produce given link counts.""" # Remove duplicates and sort descendingly unique_links = sorted(set(links), reverse=True) total_cuts, current_length = 0, 0 while unique_links: next_cut = unique_links.pop(0) if not unique_links or (unique_links[0]*2 >= next_cut): total_cuts += 1 current_length = next_cut elif sum(unique_links)*2 < next_cut: break else: temp_sum = 0 index_to_remove = None for i, val in enumerate(unique_links): temp_sum += val if temp_sum*2 >= next_cut: index_to_remove = i break del unique_links[:index_to_remove+1] total_cuts += 1 current_length = next_cut return max(total_cuts - 1, 0) if __name__ == "__main__": import sys input_data = list(map(int, sys.stdin.readline().strip().split())) result = min_cuts_needed(input_data[:-1]) print(result) ``` 此代码实现了上述贪婪策略,并通过标准输入读取测试案例中的链接需求列表。注意最后会减去一次因为初始状态下的虚拟“零”切片[^1]。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值