码迷,mamicode.com
首页 > 其他好文 > 详细

HDU 1319 Prime Cuts(打表)

时间:2016-02-02 01:16:55      阅读:252      评论:0      收藏:0      [点我收藏+]

标签:

Prime Cuts

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

Total Submission(s): 2171    Accepted Submission(s): 929

 

 

Problem 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

 

 

 1 #include <iostream>
 2 #include <cstdio>
 3 #include <cstring>
 4 using namespace std;
 5 bool a[1010];
 6 void p()
 7 { 
 8     int tmp;  
 9     for(int i=3;i<1010;i++){  
10         tmp=(i+1)/2;  
11         for(int j=2;j<=tmp;j++){  
12             if(i%j==0){  
13                 a[i]=false;  
14                 break;  
15             }  
16         }  
17     }  
18 }
19 int main()
20 {
21     int n,c;
22     int j=0;
23     memset(a,true,sizeof(a));
24     p();
25     while(cin>>n>>c){
26         cout<<n<<" "<<c<<":";
27         int cnt=0;
28         for(int i=1;i<=n;i++){
29             if(a[i]) cnt++;
30         }
31         c*=2;
32         if(cnt%2) c--;
33         if(c>=cnt){
34             for(int i=1;i<=n;i++){
35                 if(a[i]) cout<<" "<<i;
36             }
37         }
38         else{
39             int ret=0;
40             int tmp=(cnt-c)/2;
41             for(int i=1;i<=n;i++){
42                 if(a[i]){
43                     ret++;
44                     if(ret==tmp){
45                         ret=i;
46                         break;
47                     }
48                 }
49             }
50             tmp=0;
51             for(int i=ret+1;i<=n;i++){
52                 if(a[i]){
53                     tmp++;
54                     if(tmp<=c) cout<<" "<<i;
55                     else break;
56                 }
57             }
58         }
59         cout<<endl;
60         cout<<endl;
61     }
62     return 0;
63 }

 

HDU 1319 Prime Cuts(打表)

标签:

原文地址:http://www.cnblogs.com/shenyw/p/5176596.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!