码迷,mamicode.com
首页 >  
搜索关键字:primes    ( 339个结果
1015. Reversible Primes (20) ——PAT (Advanced Level) Practise
题目信息: 1015. Reversible Primes (20) 时间限制 400 ms 内存限制 32000 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue A reversible prime in any num...
分类:其他好文   时间:2014-09-25 23:31:28    阅读次数:286
PAT-1015 Reversible Primes (20)
#include#include#include#includeusing namespace std;int main(){ int n,d; stack s; //freopen("1015-in.txt","r",stdin); //freopen("1015-out.t...
分类:其他好文   时间:2014-09-18 22:13:54    阅读次数:173
poj 3292 Semi-prime H-numbers
题意:一个H-number是所有的模四余一的数,如 1,5,9,13,17,21... H-primes数是H-number数(1除外),且它的H-number因子除了1只有它本身,如5,9,13,17,21... 但65是H-number数,却不是H-primes数,因为 65=5*13. H-semi-prime是H-number数,且等于2个H-primes的乘积.如65 给你一个数n,问1到n有多少个H-semi-prime数 分析:用筛选法的思想,将H-primes筛选出来,同时标记在范围内两个H...
分类:其他好文   时间:2014-09-13 17:20:06    阅读次数:247
uva 11762 Race to 1
记忆化搜索的方式计算f(x) #include #include #include #include using namespace std; #define mem(a) memset(a,0,sizeof(a)) const int maxn = 1000005; int n; int primes[maxn],prime_cnt; int vis[maxn]; int v[maxn]; ...
分类:其他好文   时间:2014-09-04 19:02:50    阅读次数:208
1015. Reversible Primes (20) C#实现
1 static void Main(string[] args) 2 { 3 string[] str; 4 bool FLAG; 5 int n = 0, d = 0; 6 List...
分类:其他好文   时间:2014-09-01 19:09:13    阅读次数:222
projecteuler---->problem=35----Circular primes
Problem 35 The number, 197, is called a circular prime because all rotations of the digits: 197, 971, and 719, are themselves prime. There are thirteen such primes below 100: 2, 3, 5, 7, 11, 13,...
分类:其他好文   时间:2014-08-22 17:52:39    阅读次数:185
projecteuler---->problem=27----Quadratic primes
Euler discovered the remarkable quadratic formula: n² + n + 41 It turns out that the formula will produce 40 primes for the consecutive values n = 0 to 39. However, when n = 40, 402 + 40 + 41 = 40...
分类:其他好文   时间:2014-08-20 16:21:12    阅读次数:244
10375 - Choose and divide(唯一分解定理的运用 eratosthenes构造素数表)
我觉得数学类的题目,每一道都有很好的解决方法,都很有保存的意义和价值。 这道题目里面,巧妙地运用了 唯一分解定理,辅以素数的eratosthenes筛法构造,很好地解决了题目。值得思考和深入的学习。 #include #include #include #include #include using namespace std; vector primes; const int ma...
分类:其他好文   时间:2014-08-11 17:57:02    阅读次数:158
POJ 1007 Difference Between Primes(线性筛法求N以内的素数表)
Difference Between Primes Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u Description All you know Goldbach conjecture.That is to say, Every even integer greate...
分类:其他好文   时间:2014-08-09 18:54:18    阅读次数:272
POJ 3132 Sum of Different Primes DP背包
http://poj.org/problem?id=3132题意:给定n和k,问用恰好k个不同的质数来表示n的方案数。分析:n和k都很小。反正就是个背包,选k个物品恰好填满n即可。 1 #include 2 #include 3 using namespace std; 4 5 bool dp[1....
分类:其他好文   时间:2014-08-05 00:00:58    阅读次数:300
339条   上一页 1 ... 30 31 32 33 34 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!