रूबी, 217
->a{r=''
z=a.index ?@
a.tr!('<^>v',b='awds').scan(/\w/){c=0
e,n=[a[z,c+=1][?\n]?p: c,d=c*a[/.*
/].size,a[z-c,c][?\n]?p: -c,-d].zip(b.chars).reject{|i,k|!i||a[v=i+z]!=k||0>v}.max_by{|q|q&[a[z]]}until n
z+=e
r=n*c+r}
r}
यह शुरू होता है @और पीछे की ओर चलता है, पड़ोसियों की तलाश में जो वर्तमान स्थिति ( z) की ओर इशारा करते हैं । 4-वे चौराहों पर सही तरीके से चुनने के लिए, यह एक ही दिशा ( max_by{...}) में इंगित पड़ोसियों का पक्षधर है । यदि कोई तत्काल पड़ोसी नहीं पाया जाता है, तो यह मानता है कि एक क्रॉस-ओवर रहा होगा और एक समय में एक स्तर तक पहुंच जाता है जब तक कि वह एक ( until nऔर c+=1) नहीं पाता । यह प्रक्रिया शरीर के खंडों की संख्या के लिए दोहराती है (सिर सहित नहीं) ( .scan(/\w/){...})।
परीक्षण के मामले में, मैंने पहेली को जोड़कर मुझे ट्रिपिंग करते हुए रखा, इसलिए मैं 182 चार से 218 तक चला गया। उन अतिरिक्त पात्रों को सभी सुनिश्चित कर रहे थे कि मेरे क्षैतिज कदम अगली / प्रचलित लाइनों में नहीं गए। मुझे आश्चर्य है कि अगर मैं इससे बेहतर तरीके से निपट सकता हूं।
Ungolfed:
f=->a{
result=''
position=a.index ?@ # start at the @
a.tr!('<^>v',b='awds') # translate arrows to letters
a.scan(/\w/){ # for each letter found...
search_distance=0
until distance
search_distance+=1
neighbors = [
a[position,search_distance][?\n]?p: search_distance, # look right by search_distance unless there's a newline
width=search_distance*a[/.*\n/].size, # look down (+width)
a[position-search_distance,search_distance][?\n]?p: -search_distance, # look left unless there's a newline
-width # look up (-width)
]
distance,letter = neighbors.zip(b.chars).reject{ |distance, letter_to_find|
!distance || # eliminate nulls
a[new_position=distance+position]!=letter_to_find || # only look for the letter that "points" at me
0>new_position # and make sure we're not going into negative indices
}.max_by{ |q|
# if there are two valid neighbors, we're at a 4-way intersection
# this will make sure we prefer the neighbor who points in the same
# direction we're pointing in. E.g., when position is in the middle of
# the below, the non-rejected array includes both the top and left.
# v
# >>>
# v
# We want to prefer left.
q & [a[position]]
# ['>',x] & ['>'] == ['>']
# ['v',x] & ['>'] == []
# ['>'] > [], so we select '>'.
}
end
position+=distance
result=(letter*search_distance)+result # prepend result
}
result # if anyone has a better way of returning result, I'm all ears
}