Finish 2003-11-13 10:00:00 UTC

12th try!

by Mohsen Nosratinia

Status: Passed
Results: pass
CPU Time: 6.92
Score: 191.0
Submitted at: 2003-11-06 12:38:43 UTC
Scored at: 2003-11-06 15:08:14 UTC

Current Rank: 59th
Based on: probably not the shortest - tweak (diff)
Basis for: 13th try! (diff)

Comments
Please login or create a profile.
Code
w=(b(:,1)+1)/0;
p={1};
q=1;
while q
    r={};
    s=[];
    for i=find(q)
        y=p{i};
        z=y(end);
        g=q(i);
        if g<w(z)
            w(z)=g;
            f{z}=y;
        end
        for j=find(a(z,:))
            if all(j~=y)
                r=[r {[y j]}];
                s=[s g+norm(b(z,:)-b(j,:))];
            end
        end
    end
    p=r;
    q=s;
end
[i j]=max(w);
c=f{j};