codevs1052

Posted blfbuaa

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了codevs1052相关的知识,希望对你有一定的参考价值。

题目地址:http://codevs.cn/problem/1053/

分析:

模拟

代码:

var s:string;
a:array[‘a‘..‘z‘] of longint;
i,j,t,n:longint;
k:char;
d:array[1..100000] of longint;
function cf(x:longint):boolean;
var i,y:longint;
begin
y:=0;
for i:=2 to trunc(sqrt(x)) do
if x mod i=0 then y:=1;
if (x=1) or (y=1) then cf:=false
else cf:=true;
end;
begin
readln(s);
for i:=1 to length(s) do
a[s[i]]:=a[s[i]]+1;
for k:=‘a‘ to ‘z‘ do
if a[k]>0 then
begin
n:=n+1;
d[n]:=a[k];
end;
for i:=1 to n-1 do
for j:=i+1 to n do
if d[i]<d[j] then begin t:=d[i]; d[i]:=d[j]; d[j]:=t; end;
i:=d[1]-d[n];
if (cf(i)) and (i>=1) then begin writeln(‘Lucky Word‘);writeln(i); end
else begin writeln(‘No Answer‘); writeln(‘0‘); end;
end.

以上是关于codevs1052的主要内容,如果未能解决你的问题,请参考以下文章

codevs 1052:地鼠游戏

贪心法 codevs 1052 地鼠游戏

codevs1052 地鼠游戏

[BZOJ4326][codevs4632][codevs5440][UOJ#150][NOIP2015]运输计划

codevs 1063 合并果子

codevs 3249 搭积木