- 1、本文档共23页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
e度_初赛算法【DOC精选】
NOIP初赛复习——基本算法
一、数论算法
1.求两数的最大公约数
function gcd(a,b:integer):integer;
begin
if b=0 then gcd:=a
else gcd:=gcd (b,a mod b);
end ;
2.求两数的最小公倍数
function lcm(a,b:integer):integer;
begin
if ab then swap(a,b);
lcm:=a;
while lcm mod b0 do inc(lcm,a);
end;
补充:最小公倍数=a*b div 最大公约数
3.素数的求法
A.小范围内判断一个数是否为质数:
function prime (n: integer): Boolean;
var I: integer;
begin
for I:=2 to trunc(sqrt(n)) do
if n mod I=0 then begin
prime:=false; exit;
end;
prime:=true;
end;
B.判断longint范围内的数是否为素数(包含求50000以内的素数表):
procedure getprime;
var
i,j:longint;
p:array[1..50000] of boolean;
begin
fillchar(p,sizeof(p),true);
p[1]:=false;
i:=2;
while i50000 do begin
if p[i] then begin
j:=i*2;
while j50000 do begin
p[j]:=false;
inc(j,i);
end;
end;
inc(i);
end;
l:=0;
for i:=1 to 50000 do
if p[i] then begin
inc(l);pr[l]:=i;
end;
end;{getprime}
function prime(x:longint):integer;
var i:integer;
begin
prime:=false;
for i:=1 to l do
if pr[i]=x then break
else if x mod pr[i]=0 then exit;
prime:=true;
end;{prime}
another method:(开素数表)
(maxn=1000000)
fillchar(a,sizeof(a),true);
for i:=2 to trunc(sqrt(maxn)) do
for j:=i to maxn div i do
a[i*j]:=false;
program life;
begin
repeat
surpass myself;
until 0=1;
end.
二、图论算法
1.最小生成树
A.Prim算法:
procedure prim(v0:integer);
var
lowcost,closest:array[1..maxn] of integer;
i,j,k,min:integer;
begin
for i:=1 to n do begin
lowcost[i]:=cost[v0,i];
closest[i]:=v0;
end;
for i:=1 to n-1 do begin
{寻找离生成树最近的未加入顶点k}
min:=maxlongint;
for j:=1 to n do
if (lowcost[j]min) and (lowcost[j]0) then begin
min:=lowcost[j];
k:=j;
end;
lowcost[k]:=0; {将顶点k加入生成树}
{生成树中增加一条新的边k到closest[k]}
{修正各点的lowcost和closest值}
for j:=1 to n do
if cost[k,j]lwocost[j] then begin
lowcost[j]:=cost[k,j];
closest[j]:=k;
end;
end;
end;{prim}
B.Kruskal算法:(贪心)
按权值递增顺序删去图中的边,若不形成回路则将此边加入最小生成树。
function find(v:integer):i
您可能关注的文档
- Exceptionalism and American Foreign Policy【DOC精选】.doc
- excel统计分析【DOC精选】.doc
- EXC_9_BitTorrent【DOC精选】.doc
- Exercises for American Literature (I) - Chapter 【DOC精选】.doc
- Exceptions relate to the areas of partnerships and managing resources【DOC精选】.doc
- Excel进行测量计算的一点技巧【DOC精选】.doc
- exchange 部署【DOC精选】.doc
- Exercises for Unit 【DOC精选】.doc
- Exchange 边缘传输服务器的安装【DOC精选】.doc
- Existential sentence【DOC精选】.doc
- ext布局【DOC精选】.docx
- extJs+.学习笔记【DOC精选】.doc
- E论与数理统计(B)重修课考试试卷答案【DOC精选】.doc
- F. Balance carry forward of GL Accounts【DOC精选】.doc
- F. Carry Forward Receivables_Payables【DOC精选】.doc
- F Standard virtual server【DOC精选】.doc
- Expanding from large configuration to Dual-Chassis configurationV.【DOC精选】.doc
- Facial Design【DOC精选】.doc
- FACTORY CAP Zhejiang Chengshi Garments Co., Ltd (自动保存的)【DOC精选】.doc
- FAG轴承的分类整理【DOC精选】.doc
文档评论(0)