计算ASCII Art的端点


14

您应该编写一个程序或函数,该程序或函数接收表示ASCII艺术作品的字符串作为输入,然后输出或返回输入中端点的数量。

输入将包含字符space - | +(分别具有0、2、2和4个端点)和换行符。例如:

-|++-
  +

在以下情况下,两个相邻的字符相连,因此每个端点丢失1个端点:

--  -+  +- |  |  +  +  ++
           |  +  |  +

第一个例子有

2+2+2+2+1+
    3        = 12

端点。

输入值

  • 输入将包括空格字符,串-|+和换行符。
  • 输入长度可以为0长度,并且与上述描述匹配的任何输入均有效(在regex输入中为[ -+|\n]*)。
  • 尾随换行符是可选的。

输出量

  • 单个非负整数,端点数。

例子

输出在其输入的最后一行之后。

+
4 

-|++-
  +
12 

+--+
|  |
+--+
8 

  |  |
  +--+-- |||
12 

--++
 |||--
10 

<empty input>
0 


|
|     
2 

--
++--
 ++
   --+
  +++ || 

 ----
30 

这是代码高尔夫球,因此最短的入场券获胜。

Answers:


11

蜗牛 29

A
\+|\-)lr!\-|(\+|\|)n!\|}!\+

我添加了行注释,,,以创建注释版本。

A                    ,, Count all accepting paths
        \+ | \- )    ,, Literal '+' or '-'        
        lr           ,, Set direction to left or right
        !\-          ,, Assert next char is not '-'
    |                ,, Or...
        ( \+ | \| )  ,, Literal '+' or '|'
        n            ,, Turn 90 degrees right or left (from initial direction right)
        !\|          ,, Assert next char is not '|'
}                    ,, Group everything previous
!\+                  ,, Assert next char is not '+'

5

JavaScript(ES6),168

使用模板字符串,所有换行符都是有效的并已计数。

在Firefox中测试运行以下代码段。(Chrome仍然不支持...

f=s=>`
${s}
`.split`
`.map((r,y,s,v=c=>c>' '&c!='-',h=c=>c>' '&c<'|')=>[...r].map((c,x)=>t+=(v(c)?2-v(s[y-1][x])-v(s[y+1][x]):0)+(h(c)?2-h(r[x-1])-h(r[x+1]):0)),t=0)&&t

// Less golfed
u=s=>{
  s = ('\n' + s + '\n').split('\n'); // split in rows, adding a blank line at top and one at bottom
  t = 0; // init counter
  v = c => c>' ' & c!='-'; // function to check if a character has vertical end points
  h = c => c>' ' & c<'|'; // function to check if a character has horizontal end points
  s.forEach( (r,y) =>
    [...r].forEach( (c,x) => {
     if (v(c)) // if current character has vertical endpoints, check chars in previous and following row
        t += 2 - v(s[y-1][x]) - v(s[y+1][x]); 
     if (h(c))  // if current character has horizontal endpoints, check previous and following chars in row
        t += 2 - h(r[x-1]) - h(r[x+1]);
    })
  )  
  return t
}

//TEST
out=x=>O.innerHTML+=x+'\n'

;[
 [`+`,4]
,[`-|++-
  +`,12]
,[`+--+
|  |
+--+`,8]
,[`  |  |
  +--+-- |||`,12]
,[`--++
 |||--`,10]
,[``,0]
,[`
|
|`,2]
,[`
--
++--
 ++
   --+
  +++ || 

 ----`,30]
].forEach(t=>{ r=f(t[0]),k=t[1],out('Test '+(r==k?'OK':'Fail')+'\n'+t[0]+'\nResult:'+r+'\nCheck:'+k+'\n') })
<pre id=O></pre>


我需要做的是将s分成几行,然后在顶部添加一个空行,在底部添加一个空行。您的代码根本不会拆分。您可以使用["",...s.split("\n"),""]更长的@ETHproductions
edc65

啊,对,对此感到抱歉。
ETHproductions 2015年

3

Python 2,123

l=[]
i=p=t=0
for c in input():
 l+=0,;h=c in'-+';t+=h>p;p=h;v=c in'|+';t+=v>l[i];l[i]=v;i+=1
 if' '>c:l=l[:i];i=0
print t*2

单通方法。将带有换行符的字符串作为输入。

对于水平线,其想法是计算水平线段的数量,每个水平线段都有两个端点。每当一个字符是+-(boolean h)之一但不是(boolean p)时,段就开始。

对于垂直行业,我们希望对转置的输入执行相同的操作,查看的运行+|。不幸的是,Python的转置确实很笨拙。它需要使用map(None,*s.split('\n'))来填充空白None,这本身也需要处理。

相反,我们在水平迭代时进行垂直计数。我们保留了l哪些列索引仍在“运行” 的列表,即该列中的上一个字符向下连接的位置。然后,我们对水平线执行相同的操作,计算新开始的垂直线段。当我们点击换行符时,由于右边的所有段均已断开,因此我们将切断当前位置的列表,并将当前索引重置为0


3

CJam,66 62 61字节

q_N/_z,S*f.e|zN*"-|++"2$fe=1b"|-"{'++:R:a@+2ew{aR2m*&},,-}/2*

CJam解释器中在线尝试。

理念

我们可以如下计算端点:

  1. 计算输入中-s,|s和+s 的数量。
  2. 将最后一个乘以2,然后相加结果。
  3. 计算行中--s,-+s,+-s和++s 的数量。
  4. 计算||s 的数量。|+列中的s,+|s和++s。
  5. 从2的结果中减去3和4的结果。
  6. 将5的结果乘以2。

q        e# Read all input from STDIN.
_N/      e# Push a copy and split it at linefeeds.
_z,      e# Count the number of rows of the transposed array.
         e# This pushes the length of the longest row.
S*       e# Push a string of that many spaces.
f.e|     e# Perform vectorized logical OR with the rows.
         e# This pads all rows to the same length.
zN*      e# Transpose and join, separating by linefeeds.
"-|++"   e# Push that string.
2$       e# Copy the original input.
fe=      e# Count the occurrences of '-', '|', '+' and '+' in the input.
1b       e# Add the results.
"|-"{    e# For '|' and '-':
  '++    e#   Concatenate the char with '+'.
  :R     e#   Save the resulting string in R.
  :a     e#   Convert it into an array of singleton strings.
  @      e#   Rotate one of the two bottom-most strings on top of the stack.
         e#   This gets the transposed input for '|' and the original input for '-'.
  +      e#   Concatenate both arrays.
         e#   This pads the input with nonsense to a length of at least 2.
  2ew    e#   Push a overlapping slices of length 2.
  {      e#   Filter the slices; for each:
    a    e#     Wrap it in an array.
    R2m* e#     Push the second Cartesian power of R.
         e#     For '|', this pushes ["||" "|+" "+|" "++"].
    &    e#     Intersect.
  },     e#   If the intersection was non-empty, keep the slice.
  ,      e#   Count the kept slices.
  -      e#   Subtract the amount from the integer on the stack.
}/       e#
2*       e# Multiply the result by 2.
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.