找到针尖的干草堆


18

要想在大海捞针中寻找针头,您需要找到最大的连续干草堆,其中 包含一根 针头。请注意,您不能连接对角线上的单元格,只能连接左/右/上/下。

输入值

'N'(针)和'#'(干草)字符的数组(或您选择的许多用户输入行)。输入仅包含这两个字符,并且每个字符必须至少包含一个。例如:

N#N#N
#NN##
###N#
N##N#

输出量

有效的最大干草堆的大小。对于我们的示例,我们将输出11(有11根干草和一根针)。

   # 
#  ##
###N#
 ## #

这是,因此最短的代码获胜。适用标准漏洞限制。

测试用例

左侧输入,右侧可能有最大干草堆

情况1:4

N##    ##
NN#     #
#NN     N
#N#     #

情况2:7

###   ###
N#N    # 
NNN    N 
###   ###

情况3:10

N###N    ### 
#N#N#   #N#  
#N#N#   # #  
N###N    ###

情况4:10

N#N#N        
#N#N#   # # #
##N##   ##N##
#N#N#   # # #
N#N#N        

情况5:1

NN#NN        
NNNNN         
#NNN#   #N    
NN#NN        

Answers:


4

JavaScript(ES6),152个字节

s=>[...s].map((n,i)=>n>'M'&&(a=[...s],a[i]=r=1,a.map(_=>a.map((c,j)=>c=='#'&&a[j+1]|a[j-1]|a[j+l]|a[j-l]?a[j]=++r:0)),o=r>o?r:o),o=0,l=~s.search`
`)|o-1

说明

对于输入中的每根针,将针设置为干草堆的一部分(通过将其设置为非零数字表示),并连续检查干草堆。如果干草包含干草堆的相邻部分,则也将其设置为干草堆的一部分,并增加干草堆的大小。输出最高结果。

var solution =

s=>
  [...s].map((n,i)=>n>'M'&&(          // for each needle in s at index i
      a=[...s],                       // a = array of each character in s
      a[i]=1,                         // set the starting needle to 1 (haystack)
      r=0,                            // r = haystack size starting from this needle
      a.map(_=>                       // loop to ensure the complete haystack is found
        a.map((c,j)=>                 // for each cell c at index j
          c=='#'&&                    // if the current cell is hay
          a[j+1]|a[j-1]|a[j+l]|a[j-l] // and any adjacent cells are part of the haystack
          ?a[j]=++r:0                 // add the current cell to the haystack, increment r
        )
      ),
      o=r>o?r:o                       // o = max of o and r
    ),
    o=0,                              // o = final output, initialise to 0
    l=~s.search`
`                                     // l = line length of s
  )
  |o                                  // return o
<textarea id="input" rows="6" cols="40">N#N#N
#N#N#
##N##
#N#N#
N#N#N</textarea><br />
<button onclick="result.textContent=solution(input.value)">Go</button>
<pre id="result"></pre>


4

红宝石207

->a{d=->b{0...b.size}
f=c=s=->y,x{(d[a]===y&&d[a[0]]===x&&!f[y][x]&&a[y][x]==c)?(c,f[y][x]=?#,1
1+s[y,x-1]+s[y,x+1]+s[y-1,x]+s[y+1,x]):0}
d[a].map{|y|d[y].map{|x|f,c=a.map{|b|b.map{p}},?N
s[y,x]}.max}.max-1}

这是一个匿名函数,将输入作为数组数组接收。用法:

f=->a{......}

f["
N##
NN#
#NN
#N#
".strip.split.map(&:chars)] # => 4

命名为proc的proc s递归地查找具有特定坐标处的针的干草堆的大小,并在干草堆中的每个针上调用。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.