E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
conjecture
POJ2909 Goldbach's
Conjecture
Goldbach'sConjectureTimeLimit: 1000MS MemoryLimit: 65536KTotalSubmissions: 10708 Accepted: 6301DescriptionForanyevennumberngreaterthanorequalto4,thereexistsatleastonepairofprimenumbers p1 and p2 sucht
lk951208
·
2016-03-16 19:00
DFS
LightOJ 1259 - Goldbach`s
Conjecture
(分解偶数为两个素数之和)
1259-Goldbach`sConjecture PDF(English)StatisticsForumTimeLimit:2second(s)MemoryLimit:32MBGoldbach'sconjectureisoneoftheoldestunsolvedproblemsinnumbertheoryandinallofmathematics.Itstates:Everyeveninteg
helloiamclh
·
2016-03-08 17:00
HDU——1397Goldbach's
Conjecture
(二分查找+素数打表)
Goldbach'sConjectureTimeLimit:2000/1000MS(Java/Others) MemoryLimit:65536/32768K(Java/Others)TotalSubmission(s):5567 AcceptedSubmission(s):2151ProblemDescriptionGoldbach'sConjecture:Foranyevennum
a88770202
·
2016-02-15 21:00
UVA 543 Goldbach's
Conjecture
Goldbach'sConjectureTimeLimit:2000/1000ms(Java/Other) MemoryLimit:131072/65536K(Java/Other)TotalSubmission(s):47 AcceptedSubmission(s):15ProblemDescriptionIn1742,ChristianGoldbach,aGermanamateurma
qq_24653023
·
2016-01-18 13:00
ACM
uva
ZOJ 3881 From the ABC
conjecture
题目:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=3881题意:问题和ABC猜想无关,定义rad(n)表示n的因子中最大的无平方因子数,φ(n)表示不大于n且与n互质的正整数个数,令f(n)=rad(n)⋅φ(nrad(n)),g(n)=∑d|nf(d),h(n)=∑ni=1g(i),给定正整数N,求h(N)mod(10
skywalkert
·
2016-01-12 17:00
数论
线性筛
积性函数
【POJ2262】:Goldbach's
Conjecture
题意把一个数表示为两个质数的和,然后输出格式按题目中给的就好了思路先写一个判断是否是质数的函数,然后作循环,判断构成n的两个数i和n-i是否都是质数,如果都是质数,就按格式输出代码#include #include usingnamespacestd; intisprime(intnum){ for(inti=2;i>n&&n){ for(inti=3;i<1000000;i+=2){ if(is
qq_23100787
·
2016-01-08 16:00
namespace
函数
poj
POJ2262
POJ 2262 Goldbach's
Conjecture
(素数相关)
POJ 2262 Goldbach's
Conjecture
(素数相关) http://poj.org/problem?
·
2015-11-13 14:42
dba
POJ2262-Goldbach's
Conjecture
转载请注明出处:優YoU http://user.qzone.qq.com/289065406/blog/1299063931 提示:100W真是大的BT。。。。我用了优化还是勉强AC掉,认识的一位达人,16ms AC这题,Orz.... 解题思路: 如果还是按常规方法求一百万内的所有素数(就是除法求模),时间复杂度是大到难以置信的。因此必须转换思路进行优化,用加法代
·
2015-11-13 09:25
dba
HDU1397:Goldbach's
Conjecture
Problem Description Goldbach's
Conjecture
: For any even number n greater than or equal to 4, there
·
2015-11-13 04:19
dba
hdu1397(素数组和成偶数的个数 用 标记法)
Problem Description Goldbach's
Conjecture
: For any even number n greater than or equal to 4, there
·
2015-11-13 03:00
HDU
HDU 3792 Twin Prime
Conjecture
http://acm.hdu.edu.cn/showproblem.php?pid=3792 n为负数,静态查询,用树状数组写,蛋疼可见一斑。打素数表的时候内层循环对i再加一个判断,是为了防止i*j因为溢出而恒真(引用自sx老祖) View Code #include <iostream> using namespace std ; const int MAX=100
·
2015-11-13 00:33
Prim
杭电 1397 Goldbach's
Conjecture
#include<stdio.h> #include<string.h> #include<stdlib.h> int prim[65540]; void fun() { for(int i=1;i<=65540;i++) { prim[i]=0; } for(int i=2;i<=
·
2015-11-12 19:52
dba
HDU 1397 Goldbach's
Conjecture
http://acm.hdu.edu.cn/showproblem.php?pid=1397 和2136有共通之处,学习了构造素数表的方法,在这里初次使用。 按因子从小到大的顺序筛选,去掉2的倍数,去掉3的倍数......最后剩下的就是素数了。 View Code #include <stdio.h>#include <string.h>#include &
·
2015-11-12 18:33
dba
POJ2262-Goldbach's
Conjecture
Goldbach, a German amateur mathematician, sent a letter to Leonhard Euler in which he made the following
conjecture
·
2015-11-11 15:53
dba
POJ 2262 Goldbach's
Conjecture
(素数判断)
Goldbach's
Conjecture
Time Limit: 1000MS Memory Limit: 65536K Total Submissions
·
2015-11-11 13:44
dba
Goldbach's
Conjecture
(哥德巴赫猜想)
Goldbach's
Conjecture
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536
·
2015-11-11 07:58
dba
POJ 2262 Goldbach's
Conjecture
在 1000000 以内验证哥德巴赫猜想: 筛法求素数; 为了减少空间,可能要用素数定理,但这道题空间足够了; 1WA,太着急了没注意到输入为 0 时结束。 # include <stdio.h> # define MAXN 1000000 int m; int ptable[MAXN+1], p[MAXN/4]; void build_ptable(vo
·
2015-11-11 07:22
dba
Poj 2262 / OpenJudge 2262 Goldbach's
Conjecture
id=2262 http://bailian.openjudge.cn/practice/2262 2.Content: Goldbach's
Conjecture
Time Limit
·
2015-11-08 13:23
open
POJ2262Goldbach's
Conjecture
简单的素数判定
id=2262 Goldbach's
Conjecture
Time Limit: 1000MS Memory Limit: 65536K Total Submissions
·
2015-11-07 15:02
dba
HDU 1397 Goldbach's
Conjecture
【素数打表】
题意:给出n,问满足a+b=n且a,b都为素数的有多少对 将素数打表,再枚举 1 #include<iostream> 2 #include<cstdio> 3 #include<cstring> 4 #include <cmath> 5 #include<stack> 6 #include&
·
2015-11-07 14:08
dba
(Problem 46)Goldbach's other
conjecture
It was proposed by Christian Goldbach that every odd composite number can be written as the sum of a prime and twice a square. 9 = 7 + 21215 = 7 + 22221 = 3 + 23225 = 7 + 23227 = 19 + 22233 = 31 + 21
·
2015-11-07 10:43
dba
poj 2909 Goldbach's
Conjecture
素数水题: View Code #include<iostream> #include<cstdio> #include<cstdlib> #include<algorithm> #include<cmath> #include<queue> #include<set> #include&
·
2015-11-05 08:46
dba
poj 2262 Goldbach's
Conjecture
一道简单的素数题: View Code #include<iostream> #include<cstdio> #include<cstdlib> #include<algorithm> #include<cmath> #include<queue> #include<set> #incl
·
2015-11-05 08:44
dba
湘潭邀请赛 Collatz
Conjecture
题目链接:http://202.197.224.59/OnlineJudge2/index.php/Problem/read/id/1142 Collatz
Conjecture
·
2015-11-02 18:50
ol
Goldbach's
Conjecture
--POJ 2262
1、题目类型:数论。 2、解题思路:水题。 3、实现方法: #include < iostream > #include < map > using namespace std; bool prime[ 1000000 ]; void
·
2015-11-02 16:33
dba
poj 2262【素数表的应用---判断素数】【哈希】
Goldbach's
Conjecture
Time Limit: 1000MS Memory Limit: 65536K Total Submissions
·
2015-11-02 13:38
poj
(Problem 46)Goldbach's other
conjecture
It was proposed by Christian Goldbach that every odd composite number can be written as the sum of a prime and twice a square. 9 = 7 + 212 15 = 7 + 222 21 = 3 + 232 25 = 7 + 232 27 = 19 + 222 33 = 3
·
2015-11-02 12:56
dba
Twin Prime
Conjecture
(浙大计算机研究生保研复试上机考试-2011年)
&
·
2015-11-01 09:42
Prim
【原】 POJ 2262 Goldbach's
Conjecture
筛素数 解题报告
http://poj.org/problem?id=2262 方法: 首先筛得1000000以下的素数表,复杂度N*lglgN 再用测试值减去素数表中从小到大的值,判断如果该值是素数,则不需要再接着找了,直接输出。复杂度N 注意点: 1、由于N很大,所以筛素数在计算i*i时可能会超过int的范围,所以需要采用__int64 2、需要符合要求的a,b使得a+b=c
·
2015-10-31 11:39
dba
POJ 2262:Goldbach's
Conjecture
Description 在1742年,Christian Goldbach,一个德国数学家发了一封邮件给欧拉,说明了他的猜想: 每个超过4的偶数都能写成两个素数相加。 比如: 8 = 3 + 5. 20 = 3 + 17 = 7 + 13. 42 = 5 + 37 = 11 + 31 = 13 + 29 = 19 + 23. 现在这个猜想是否正确仍没有被证明(当然
·
2015-10-31 08:18
dba
哥德巴赫猜想
哥德巴赫猜想( Goldbach
Conjecture
)大致可以分为两个猜想(前者称“强”或“二重哥德巴赫猜想”后者称“弱”或“三重 哥德巴赫猜想”):1
·
2015-10-30 20:27
POJ 2262 Goldbach's
Conjecture
数学常识 难度:0
题目链接:http://poj.org/problem?id=2262 哥德巴赫猜想肯定是正确的 思路: 筛出n范围内的所有奇质数,对每组数据试过一遍即可, 为满足b-a取最大,a取最小 时空复杂度分析: 在1e6内约有8e4个奇质数,因为a <= b,时间复杂度在T*4e4+1e6等级.一般T为1e3,足以承受 空间复杂度为1e6,足以承受 1 #
·
2015-10-30 17:12
dba
模拟题组
hdu 3792 Twin Prime
Conjecture
英文是硬伤,借助百度翻译才看懂这是求孪生素数数目的题目。没有n的范围,假设1000000用筛法打表之后求和。
·
2015-10-28 08:40
模拟
POJ 2262 Goldbach's
Conjecture
ProblemDescriptionIn1742,ChristianGoldbach,aGermanamateurmathematician,sentalettertoLeonhardEulerinwhichhemadethefollowingconjecture:Everyevennumbergreaterthan4canbewrittenasthesumoftwooddprimenumbers
qq_26525215
·
2015-10-23 15:00
poj
POJ 2262 Goldbach's
Conjecture
(素数表分解质数)
Goldbach'sConjectureTimeLimit:1000MS MemoryLimit:65536KTotalSubmissions:41314 Accepted:15827DescriptionIn1742,ChristianGoldbach,aGermanamateurmathematician,sentalettertoLeonhardEulerinwhichhemadethefo
helloiamclh
·
2015-10-18 17:00
【哥德巴赫猜想】POJ Goldbach's
Conjecture
2262
Goldbach'sConjectureTimeLimit: 1000MS MemoryLimit: 65536KTotalSubmissions: 41142 Accepted: 15754DescriptionIn1742,ChristianGoldbach,aGermanamateurmathematician,sentalettertoLeonhardEulerinwhichhemadet
ydd97
·
2015-09-07 09:00
【哥德巴赫猜想】LightOJ Goldbach`s
Conjecture
1259
1259-Goldbach`sConjecturePDF(English)StatisticsForumTimeLimit: 2second(s)MemoryLimit: 32MBGoldbach'sconjectureisoneoftheoldestunsolvedproblemsinnumbertheoryandinallofmathematics.Itstates:Everyeveninte
ydd97
·
2015-09-07 09:00
POJ 2909 && HDU 1397 Goldbach's
Conjecture
(数论)
Description给出一个偶数,要求在这个偶数的范围内,有几对素数和是等于这个偶数的,注意素数对的不重复性Input多组输入,每组用例一个偶数n表示查询数,以n=0结束输入Output对于每组用例,输出组成该偶数的素数对对数SampleInput610120SampleOutput121Solution简单数论题,打出素数表后暴力枚举即可Code#include #include #inclu
V5ZSQ
·
2015-08-29 08:00
POJ 2262 Goldbach's
Conjecture
(数论)
Description输入一个不小于6的合数,把它表示成两个质数的和,如果有多个,输出相差最大的一组Input多组输入,每组用例一个合数,以0结束输入Output对于每组用例,用两个相差最大的质数和来表示此合数,如果不存在,则输出Goldbach’sconjectureiswrong.SampleInput820420SampleOutput8=3+520=3+1742=5+37Solution简
V5ZSQ
·
2015-08-27 09:00
POJ 2262 Goldbach's
Conjecture
(求解素数的一般筛和线性筛)
Goldbach'sConjectureTimeLimit:1000MS MemoryLimit:65536KTotalSubmissions:40944 Accepted:15664DescriptionIn1742,ChristianGoldbach,aGermanamateurmathematician,sentalettertoLeonhardEulerinwhichhemadethefo
Tc_To_Top
·
2015-08-03 23:00
数论
poj
素数筛
素数 hdu 3792 Twin Prime
Conjecture
#include #include #include #include usingnamespacestd; #definemaxsize1000000 intani=1; boola[maxsize]; voidinit()\\素数筛选 { for(inti=2;i=0) { while(c[x]==0&&x!=0) x--; printf("%d\n",c[x]); } }
Advanced_hwr
·
2015-07-30 14:00
素数水题 POJ 2262 Goldbach's
Conjecture
#include #include #include #include usingnamespacestd; #definemaxsize1000000 intani=1; boola[maxsize]; voidinit()//素数筛选 { for(inti=2;i<1000000;i++) { for(intj=2;i*j<1000000;j++) { a[i*j]=true; } } } i
Advanced_hwr
·
2015-07-30 14:00
【ZOJ】3881 From the ABC
conjecture
【暴力容斥】
传送门:【ZOJ】3881FromtheABCconjecture复杂度大概O(N0.67),我也不会算www,首先转换一下(我们是根据积性函数打表找规律得到的,也可以推出来)使得:g(N)=∏pi ϵ N(pia+1)暴力展开发现贡献为:h(N)=∑x=1N∑y=1N(x⋅y≤N and gcd(x,y)=1)⋅x然后是一个暴力dfs容斥的过程:ans=∑x=1N∑y=1N(x⋅y≤N)⋅x−∑
u013368721
·
2015-07-29 17:00
LightOJ - 1259 Goldbach`s
Conjecture
DescriptionGoldbach'sconjectureisoneoftheoldestunsolvedproblemsinnumbertheoryandinallofmathematics.Itstates:Everyeveninteger,greaterthan2,canbeexpressedasthesumoftwoprimes[1].Nowyourtaskistocheckwheth
Forever_wjs
·
2015-07-09 20:00
欧拉工程第46题:Goldbach's other
conjecture
题名链接:https://projecteuler.net/problem=46奇合数=质数+2*平方数求第一个不满足这个条件的奇合数合数:除1和本身外,可以被其他数整除的数质数:除1和本身外,不能够被其他数整除奇合数:奇数的合数知道上面概念了就好求了。Java代码:packageprojecteuler41to50; importjava.util.Date; classlevel46{ v
qunxingvip
·
2015-05-30 21:00
java
欧拉工程
合数-质数
Goldbach`s
Conjecture
【素数线性筛法】
Goldbach`sConjectureTimeLimit:2000MS MemoryLimit:32768KB 64bitIOFormat:%lld&%lluSubmit StatusDescriptionGoldbach'sconjectureisoneoftheoldestunsolvedproblemsinnumbertheoryandinallofmathematics.
u014427196
·
2015-03-09 23:00
hdu 1397 Goldbach's
Conjecture
题目地址:http://acm.hdu.edu.cn/showproblem.php?pid=1397题目描述:Goldbach'sConjectureTimeLimit:2000/1000MS(Java/Others) MemoryLimit:65536/32768K(Java/Others)TotalSubmission(s):4797 AcceptedSubmission(s):
hackerwin7
·
2014-12-05 13:00
素数
Prime
POJ 2262 Goldbach's
Conjecture
(素数相关)
POJ2262Goldbach'sConjecture(素数相关)http://poj.org/problem?id=2262题意: 给你一个[6,1000000]范围内的偶数,要你将它表示成两个素数相加和的形式。如果存在多组解,请输出两个素数差值最大的解。分析: 首先我们用素数筛选法求出100W以内的所有素数。 筛选法求素数可见: http://blog.
u013480600
·
2014-11-15 11:00
Algorithm
算法
ACM
POJ Goldbach's
Conjecture
Language:DefaultGoldbach'sConjectureTimeLimit: 1000MS MemoryLimit: 65536KTotalSubmissions: 38074 Accepted: 14647DescriptionIn1742,ChristianGoldbach,aGermanamateurmathematician,sentalettertoLeonhardEul
DoJintian
·
2014-10-04 19:00
ACM
POJ2909_Goldbach's
Conjecture
【素数判断】【水题】
Goldbach'sConjectureTimeLimit:1000MSMemoryLimit:65536KTotalSubmissions:10116Accepted:5973DescriptionForanyevennumberngreaterthanorequalto4,thereexistsatleastonepairofprimenumbersp1andp2suchthatn=p1+p2
u011676797
·
2014-09-24 09:00
上一页
1
2
3
4
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他