POJ1595_Prime Cuts【素数】【水题】

Prime Cuts
Time Limit: 1000MSMemory Limit: 10000K
Total Submissions: 10464Accepted: 3994
Description


A prime number is a counting number (1, 2, 3, ...) that is evenly divisible only by 1 and itself. In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between (and including) 1 and N. Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
Input


Each input set will be on a line by itself and will consist of 2 numbers. The first number (1 <= N <= 1000) is the maximum number in the complete list of prime numbers between 1 and N. The second number (1 <= C <= N) defines the C*2 prime numbers to be printed from the center of the list if the length of the list is even; or the (C*2)-1 numbers to be printed from the center of the list if the length of the list is odd.
Output


For each input set, you should print the number N beginning in column 1 followed by a space, then by the number C, then by a colon (:), and then by the center numbers from the list of prime numbers as defined above. If the size of the center list exceeds the limits of the list of prime numbers between 1 and N, the list of prime numbers between 1 and N (inclusive) should be printed. Each number from the center of the list should be preceded by exactly one blank. Each line of output should be followed by a blank line. Hence, your output should follow the exact format shown in the sample output.
Sample Input


21 2
18 2
18 18
100 7
Sample Output


21 2: 5 7 11


18 2: 3 5 7 11


18 18: 1 2 3 5 7 11 13 17


100 7: 13 17 19 23 29 31 37 41 43 47 53 59 61 67
Source


South Central USA 1996

题目大意:给你两个数N和C,算出1~N(包括N)之间的素数序列,

若素数个数为奇数,则输出素数序列中心的2*C-1个素数。

若素数个数为偶数,则输出素数序列中心的2*C个素数。

输出个数中说若C>素数个数,则输出整个素数序列。

思路:筛法求素数打表,之后求出素数序列的中心位置,判断奇偶并输出

注意:此题中,1被当做了质数(只限本题),数据规模开成1000是不够

的,需要开成1100,应该是测试数据超范围了。


  1. #include<stdio.h> 
  2.  
  3. int Prime[1100],PrimeNum[1100]; 
  4.  
  5. int IsPrime() 
  6.     for(int i = 1; i <= 1100; i++) 
  7.         Prime[i] = 1; 
  8.     for(int i = 2; i <= 1100; i++) 
  9.     { 
  10.         for(int j = i+i; j <= 1100; j+=i) 
  11.             Prime[j] = 0; 
  12.     } 
  13.     int num = 1; 
  14.     for(int i = 0; i <= 1100; i++) 
  15.         if(Prime[i]) 
  16.             PrimeNum[num++] = i; 
  17.     return num; 
  18. int main() 
  19.     int num = IsPrime(); 
  20.     int N,C,pos; 
  21.     while(~scanf("%d%d",&N,&C)) 
  22.     { 
  23.         pos = 0; 
  24.         for(int i = 1; i < num; i++) 
  25.         { 
  26.             if(N >= PrimeNum[i] && N < PrimeNum[i+1]) 
  27.             { 
  28.                 pos = i; 
  29.                 break
  30.             } 
  31.         } 
  32.         printf("%d %d:",N,C); 
  33.         if(C > pos && pos%2==0) 
  34.             C = pos/2; 
  35.         else if(C > pos) 
  36.             C = (pos+1)/2; 
  37.         if(pos%2 == 1) 
  38.         { 
  39.             for(int i = (pos-(C*2-1))/2+1; i <= (pos-(C*2-1))/2+C*2-1; i++) 
  40.                 printf(" %d",PrimeNum[i]); 
  41.             printf("\n\n"); 
  42.         } 
  43.         else 
  44.         { 
  45.             for(int i = (pos-C*2)/2+1; i <= (pos-C*2)/2+C*2; i++) 
  46.                 printf(" %d",PrimeNum[i]); 
  47.             printf("\n\n"); 
  48.         } 
  49.  
  50.  
  51.     } 
  52.         return 0; 
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值