poj1595-Prime Cuts

poj1595-Prime Cuts(篩法求素數)

Prime Cuts
Time Limit: 1000MS
Memory Limit: 10000K
Total Submissions: 11684
Accepted: 4449
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.

簡單素數篩

1:O(nlogn)
bool valid[MAXN];
int ans[MAXN];

int main()
{
    int n = 100, tot = 0;
    memset(valid, 1, sizeof(valid));
    for (int i = 2; i <= n; i++) {
      if (valid[i])
        ans[++tot] = i;
      for (int j = 1; (j<=tot) && (i*ans[j]<=n); j++) {
        cout<<"i="<<i<<" ans[j] = "<<ans[j]<<endl;
        valid[i*ans[j]] = false;
        if (i % ans[j] == 0) break;
      }
    }
    for (int i = 1; i <= tot; i++)
      cout<<ans[i]<<" ";
    return 0;
} 
法2:O(n)
int main()
{
    int n = 100, tot = 0;
    memset(valid, 1, sizeof(valid));
    for (int i = 2; i <= n; i++){
      if (!valid[i]) continue;
      if (n / i < i) break;
      for (int j = i*i; j <= n; j = j+i) valid[j] = false;
    }
    for (int i = 2; i <= n; i++)
      if (valid[i]) 
        cout<<i<<" ";
    return 0;
}

這道題:

#include <iostream>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <algorithm>
using namespace std;
const int MAXN = 2000;

int ans[MAXN], tot;
bool valid[MAXN];

void getPrim(int n){
    memset(valid, 1, sizeof(valid));
    ans[++tot] = 1;
    for (int i = 2; i <= n; i++){
      if (valid[i])
        ans[++tot] = i;
      for (int j = 2; (j<=tot&&i*ans[j]<=n); j++){
        valid[i*ans[j]] = 0;
        if (i % ans[j] == 0) break;
      }
    }
}

int main()
{
    freopen("in.txt", "r", stdin);
    int n, c;
    while (~scanf("%d%d", &n, &c)) {
      printf("%d %d: ", n, c); 
      tot = 0;
      getPrim(n);
      if (tot & 1) {
        int mid = tot / 2 + 1;
        for (int i = max(mid - c + 1, 1); i <= min(mid + c - 1, tot); i++)
          printf("%d ", ans[i]);
      }
      else {
        int mid = tot / 2;
        for (int i = max(mid - c + 1, 1); i <= min(mid + c, tot); i++)
          printf("%d ", ans[i]);
      }
      printf("\n\n");
    }
    return 0;
}
發佈了32 篇原創文章 · 獲贊 1 · 訪問量 3984
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章