• PoJ 1595 PrimeCuts


    Prime Cuts
    Time Limit: 1000MS   Memory Limit: 10000K
    Total Submissions: 9339   Accepted: 3562

    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

    #include <iostream> #include<stdio.h> #include<stdlib.h> using namespace std; #define maxn 1200 bool hash[maxn]; void inithash() { int i,j; for(j=4; j<maxn; j+=2) hash[j]=1; for(i=3; i<40; i+=2) if(!hash[i]) for(j=i*i; j<maxn; j+=i) hash[j]=1; } int primenum(int N) { int num=0; for(int i=1; i<=N; i++) if(!hash[i]) num++; return num; } int main() { inithash(); int N,len,num,tmp; while(scanf("%d%d",&N,&len)!=EOF) { printf("%d %d:",N,len); num=primenum(N); if(num%2==0) { if(num-(2*len)<=0) { for(int i=1; i<=N; i++) if(!hash[i]) { printf(" %d",i); } printf(" "); } else { tmp=0; for(int i=1; i<=N; i++) if(!hash[i]) { if(tmp>=(num-(2*len))/2&&tmp<2*len+(num-(2*len))/2) printf(" %d",i); tmp++; } printf(" "); } } else { if(num-(2*len-1)<=0) { for(int i=1; i<=N; i++) if(!hash[i]) { printf(" %d",i); } printf(" "); } else { tmp=0; for(int i=1; i<=N; i++) if(!hash[i]) { if(tmp>=(num-(2*len-1))/2&&tmp<2*len-1+(num-(2*len-1))/2) printf(" %d",i); tmp++; } printf(" "); } } } return 0; }
  • 相关阅读:
    解决xcode5升级后,Undefined symbols for architecture arm64:问题
    第8章 Foundation Kit介绍
    app 之间发送文件 ios
    iphone怎么检测屏幕是否被点亮 (用UIApplication的Delegate)
    CRM下载对象一直处于Wait状态的原因
    错误消息Customer classification does not exist when downloading
    How to resolve error message Distribution channel is not allowed for sales
    ABAP CCDEF, CCIMP, CCMAC, CCAU, CMXXX这些东东是什么鬼
    有了Debug权限就能干坏事?小心了,你的一举一动尽在系统监控中
    SAP GUI和Windows注册表
  • 原文地址:https://www.cnblogs.com/heqinghui/p/3180338.html
Copyright © 2020-2023  润新知