码迷,mamicode.com
首页 > 其他好文 > 详细

ZOJ2006 (最小表示法)

时间:2015-04-28 11:14:35      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:

var s:ansistring;
    cas:longint;
function minp(st,len:longint):longint;
var p1,p2,k,tmp:longint;
begin
    p1:=0; p2:=1; k:=0;
    while ((p1<len)and(p2<len)and(k<=len)) do
    begin
        tmp:=ord(s[st+(p1+k) mod len])-ord(s[st+(p2+k) mod len]);
        if (tmp=0) then inc(k)    else
        begin
            if (tmp<0) then p2:=p2+k+1 else p1:=p1+k+1;
            if (p1=p2) then inc(p2); k:=0;
        end;
    end;
    if (p1>p2) then exit(p2+st) else exit(p1+st);
end;
begin
    readln(cas);
    while cas>0 do begin dec(cas);
    readln(s);
    writeln(minp(1,length(s)));
    end;
end.

 

ZOJ2006 (最小表示法)

标签:

原文地址:http://www.cnblogs.com/rpSebastian/p/4462270.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!