Primes on Interval

AC代码:

#include <cstdio>

#include <cstring>

#include <iostream>

#include <algorithm>

using namespace std;

const int maxn = 1001000;

#define  inf (1<<29)

//上面的位运算还真心没有看懂

// p[i] is i-th prime‘s position

bool pp[maxn]; //里面保存的是一个素数的信息

int p[maxn] , cnt = 0; //将素数保留在数组中间

int ss[maxn] , tt[maxn];//在这里申请了这么多的数组我就是没有看懂了是到底为啥

void init() {

cnt = 0;

pp[0] = pp[1] = 1;//前两个数字都是不予考虑的

tt[0] = tt[1] = -1;

for(int i=2;i<maxn;i++) {

if(!pp[i]) {

p[cnt++] = i; //这个是将素数保留在表格中间吗?

for(int j=i+i;j<maxn;j+=i) {

pp[j] = true; //这个是素数达标

}

}

tt[i] = cnt - 1;

}

for(int i=0;i<maxn;i++) {

if(!pp[i]) ss[i] = tt[i];

else ss[i] = tt[i] + 1;

}

}

int main() {

init();

int a , b , k;

while(~scanf("%d%d%d" , &a,&b,&k)) {

int s = ss[a] , t = tt[b];

int num = t - s + 1;

if(num < k) {//先判断在这个区间之中里面的素数量是否达到了题目的要求,否则直//接退出

printf("-1\n");

continue;

}

int ans = 0;

int tmp;

tmp = b - p[t-k+1] + 1;

if(tmp > ans) ans = tmp;

tmp = p[s+k-1] - a + 1;

if(tmp > ans) ans = tmp;

for(int i=s;i+k<=t;i++) {

tmp = p[i+k] - p[i];

if(tmp > ans) ans = tmp;

}

printf("%d\n" , ans);

}

return 0;

}

//本题的主要思路是通过打表,成功后就可以比较简单的得到结果

Primes on Interval,布布扣,bubuko.com

时间: 2024-10-05 02:09:31

Primes on Interval的相关文章

Primes on Interval(二分 + 素数打表)

Primes on Interval Time Limit:1000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u Submit Status Practice CodeForces 237C Appoint description:  System Crawler  (2016-04-26) Description You've decided to carry out a survey in the theory

CodeForces 237C Primes on Interval

Description You've decided to carry out a survey in the theory of prime numbers. Let us remind you that a prime number is a positive integer that has exactly two distinct positive integer divisors. Consider positive integers a, a + 1, ..., b (a ≤ b).

CQUOJ 9711 Primes on Interval

You've decided to carry out a survey in the theory of prime numbers. Let us remind you that a prime number is a positive integer that has exactly two distinct positive integer divisors. Consider positive integers a, a + 1, ..., b (a ≤ b). You want to

CodeForces - 237C Primes on Interval(二分+尺取)

You've decided to carry out a survey in the theory of prime numbers. Let us remind you that a prime number is a positive integer that has exactly two distinct positive integer divisors. Consider positive integers a, a?+?1, ..., b (a?≤?b). You want to

2016 ACM/ICPC Asia Regional Shenyang Online &amp;&amp; hdoj5901 Count primes Lehmer

Count primes Time Limit: 12000/6000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others) Problem Description Easy question! Calculate how many primes between [1...n]! Input Each line contain one integer n(1 <= n <= 1e11).Process to end of f

[LeetCode]Count Primes

题目:Count Primes 统计1-n的素数的个数. 思路1: 通常的思想就是遍历(0,n)范围内的所有数,对每个数i再遍历(0,sqrt(i)),每个除一遍来判断是否为素数,这样时间复杂度为O(n*sqrt(n)). 具体实现不在贴代码,过程很简单,两重循环就可以解决.但是效率很差,n较大时甚至会花几分钟才能跑完. 思路2: 用埃拉特斯特尼筛法的方法来求素数,时间复杂度可以达到O(nloglogn). 首先开一个大小为n的数组prime[],从2开始循环,找到一个质数后开始筛选出所有非素数

JsSIP.UA.JsSIP 总是返回错误:422 Session Interval Too Small

在JsSIP 中 JsSIP.UA.call 总是 返回错误:422 Session Interval Too Small 关于错详情在这篇文章中解释的比较详尽:http://www.cnblogs.com/yoyotl/p/4980817.html 但是没有JsSIP的解决方法 具体的解决方法如下: JsSIP.js中的搜索 SESSION_EXPIRES: 把这个参数改大,  大于120就行了, (要是还不行,就继续加大吧^.^) SESSION_EXPIRES: 90 加大: SESSIO

projecteuler Summation of primes

The sum of the primes below 10 is 2 + 3 + 5 + 7 = 17. Find the sum of all the primes below two million. 译文: 10以下的素数之和为17,求出2000000以下的素数之和. ======================= 第一次code: 1 import java.util.Scanner; 2 3 public class Main { 4 public static void main(

LeetCode Insert Interval

原题链接在这里:https://leetcode.com/problems/insert-interval/ AC Java: 1 /** 2 * Definition for an interval. 3 * public class Interval { 4 * int start; 5 * int end; 6 * Interval() { start = 0; end = 0; } 7 * Interval(int s, int e) { start = s; end = e; } 8