ASCIIアートのエンドポイントを数える


14

ASCIIアートを表す文字列を入力として受け取り、入力のエンドポイントの数を出力または返すプログラムまたは関数を作成する必要があります。

入力は、文字space - | +(それぞれ0、2、2、および4つのエンドポイントを持つ)と改行で構成されます。例えば:

-|++-
  +

隣接する2つのキャラクターは接続されているため、次の場合にはそれぞれ1つのエンドポイントが失われます。

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

最初の例は

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

エンドポイント。

入力

  • 入力文字のスペースからなる文字列になります-|+および改行。
  • 入力の長さは0の長さにすることができ、上記の説明に一致する入力はすべて有効です(正規表現入力では[ -+|\n]*)。
  • 末尾の改行はオプションです。

出力

  • 単一の非負整数、エンドポイントの数。

出力は、入力の最後の行の後です。

+
4 

-|++-
  +
12 

+--+
|  |
+--+
8 

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

--++
 |||--
10 

<empty input>
0 


|
|     
2 

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

 ----
30 

これはコードゴルフなので、最短のエントリーが勝ちます。

回答:


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をまったく分割しません。["",...s.split("\n"),""]@ETHproductions
edc65

ああ、そう、ごめんなさい。
ETHproductions

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

ワンパス方式。入力として改行を含む文字列を取ります。

水平線については、それぞれが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. 最後の1に2を掛けて、結果を追加します。
  3. 行内の--s、-+s、+-sおよび++s の数をカウントします。
  4. の数を数え||ます。列の|+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.
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.