ストリング距離


28

チャレンジ

すべて小文字の文字列[a-z]を入力すると、文字間の合計距離が出力されます。

Input: golf

Distance from g to o : 8
Distance from o to l : 3
Distance from l to f : 6

Output: 17

ルール

  • 禁止されている標準的な抜け穴
  • これは -バイト単位の最短回答が勝ちです。
  • アルファベットは、どちらの方向からでも横断できます。常に最短パスを使用する必要があります。(すなわち、距離xとはc5です)。

1

テストケース

Input: aa
Output: 0

Input: stack
Output: 18

Input: zaza
Output: 3

Input: valleys
Output: 35

回答:


11

ゼリー11 8バイト

OIæ%13AS

@ Martin Enderのおかげで3バイト節約できました。

オンラインでお試しください!またはすべてのテストケースを検証します。

説明

OIæ%13AS  Input: string Z
O         Ordinal. Convert each char in Z to its ASCII value
 I        Increments. Find the difference between each pair of values
  æ%13    Symmetric mod. Maps each to the interval (-13, 13]
      A   Absolute value of each
       S  Sum
          Return implicitly

6
æ%先日ビルトインを読んでいたときに出くわしましたが、これはこの(タイプの)問題のために作られました:OIæ%13AS
Martin Ender

これは9バイト(æ2 バイト)だと思います。
アレクセイザブロツキー

1
@elmigranto Jellyには、各文字を1バイトでエンコードするコードページがあります:github.com/DennisMitchell/jelly/wiki/Code-page
ruds

10

Haskell、57 56バイト

q=map$(-)13.abs
sum.q.q.(zipWith(-)=<<tail).map fromEnum

使用例:sum.q.q.(zipWith(-)=<<tail).map fromEnum $ "valleys"-> 35

使い方:

q=map$(-)13.abs                -- helper function.
                               -- Non-pointfree: q l = map (\e -> 13 - abs e) l
                               -- foreach element e in list l: subtract the
                               -- absolute value of e from 13

               map fromEnum    -- convert to ascii values
      zipWith(-)=<<tail        -- build differences of neighbor elements
  q.q                          -- apply q twice on every element
sum                            -- sum it up

編集:@Damienは1バイトを保存しました。ありがとう!


回転距離のトリックに感謝(q.q
レイフウィラーツ

すごいいいね!1バイト少ないmap定義を追加できqます
ダミアン

@ダミアン:よく見分けられます。ありがとう!
nimi

8

MATL14、10のバイト

dt_v26\X<s

オンラインでお試しください!

4バイトを節約してくれてありがとう@Suever

説明:

d           % Take the difference between consecutive characters
 t_         % Make a copy of this array, and take the negative of each element
   v        % Join these two arrays together into a matrix with height 2
    26\     % Mod 26 of each element
       X<   % Grab the minimum of each column
         s  % Sum these. Implicitly print

前のバージョン:

d26\t13>26*-|s

6

Python 3、69 68バイト

lambda s:sum([13-abs(13-abs(ord(a)-ord(b)))for a,b in zip(s,s[1:])])

壊す:

lambda s:
         sum(                                                      )
             [                             for a,b in zip(s,s[1:])]
              13-abs(13-abs(ord(a)-ord(b)))

1
前にスペースを削除すると、1バイトが失われる可能性がありますfor
ダニエル

@Dopappそうそう、ありがとう!
busukxuan

2
:あなたは、3つのバイトを保存するために、文字や使用再帰のリストとして入力を取ることができるf=lambda a,b,*s:13-abs(13-abs(ord(a)-ord(b)))+(s and f(b,*s)or 0)
ジョナサン・アラン

5

Java(登録商標)、126の 120 117バイト

int f(String s){byte[]z=s.getBytes();int r=0,i=0,e;for(;++i<z.length;r+=(e=(26+z[i]-z[i-1])%26)<14?e:26-e);return r;}

元のバージョンのバグを指摘し、forループを空にすることを提案してくれた@KevinCruijssenに感謝します。

の使用は(26 + z[i] - z[i - 1]) % 26)、別の回答に対する@Neilのコメントから着想を得ています。(26 + ...)%26同じ目的を果たすMath.abs(...)のため...? e : 26 - e

アンゴルフド

int f(String s) {
    byte[]z = s.getBytes();
    int r = 0, i = 0, e;
    for (; ++i < z.length; r += (e = (26 + z[i] - z[i - 1]) % 26) < 14 ? e : 26 - e);
    return r;
}

サイトへようこそ!これは何語ですか?何文字/バイトですか?次のことを行う必要があり[edit] those details into the top of your post, with this markdown: #Language、nはbytes`
DJMcMayhem

OK。ありがとう。編集しました。改善はありますか?:)
todeale

1
あなたの-前のeバージョンがありません。
ニール

2
PPCGへようこそ!うーん、「型の不一致:intからbyteに変換できません」というエラーが表示されるe=z[i]-z[i-1];ので、キャストする(byte)か、etoを変更する必要がありますint。:また、あなたはこのように、forループ内のすべてのものを置くことにより、forループブラケットを削除することができますint f(String s){byte[]z=s.getBytes();int r=0,i=0,e;for(;++i<z.length;r+=(e=z[i]-z[i-1])>0?e<14?e:26-e:-e<14?-e:e+26);return r;}:(PS:残念ながら同じ長さであるため、ループ逆転int f(String s){byte[]z=s.getBytes();int r=0,i=z.length-1,e;for(;i>0;r+=(e=z[i]-z[--i])>0?e<14?e:26-e:-e<14?-e:e+26);return r;}
ケビンCruijssen

1
ありがとう@KevinCruijssen:D。あなたの提案は大いに役立っています。
todeale

3

JavaScript(ES6)、84 82 79バイト

Cyoceのおかげで3バイト節約されました。

f=([d,...s],p=parseInt,v=(26+p(s[0],36)-p(d,36))%26)=>s[0]?f(s)+(v>13?26-v:v):0

説明:

f=(
  [d,...s],                    //Destructured input, separates first char from the rest
  p=parseInt,                  //p used as parseInt
  v=(26+p(s[0],36)-p(d,36))%26 //v is the absolute value of the difference using base 36 to get number from char
  )
)=>
  s[0]?                        //If there is at least two char in the input
    f(s)                       //sum recursive call
    +                          //added to
    (v>13?26-v:v)              //the current shortest path
  :                            //else
    0                          //ends the recursion, returns 0

例:
呼び出し:f('golf')
出力:17


以前のソリューション:

Neilのおかげで82バイト:

f=([d,...s],v=(26+parseInt(s[0],36)-parseInt(d,36))%26)=>s[0]?f(s)+(v>13?26-v:v):0

84バイト:

f=([d,...s],v=Math.abs(parseInt(s[0],36)-parseInt(d,36)))=>s[0]?f(s)+(v>13?26-v:v):0

1
代わりにMath.abs(...)使用できます(26+...)%26。とにかく13を超える値を反転しているため、これは機能します。(これがMATLの回答の仕組みだと思います。)
ニール

1
コードをp=parseInt;p()parseInt()
先頭に追加

3

ルビー、73バイト

->x{eval x.chars.each_cons(2).map{|a,b|13-(13-(a.ord-b.ord).abs).abs}*?+}


2

05AB1E、12バイト

SÇ¥YFÄ5Ø-}(O

説明

SÇ                   # convert to list of ascii values
  ¥                  # take delta's
   YF    }           # 2 times do
     Ä5Ø-            # for x in list: abs(x) - 13
          (O         # negate and sum

オンラインでお試しください!


バイトではなく、12個のシンボルです。UTF-8の場合、バイト長は16になります。
アレクセイザブロツキー

@elmigranto:確かに。UTF-8ではこれに該当しますが、05AB1Eは12バイトのCP-1252を使用します。
エミグナ

2

Perl、46バイト

+3を含む-p(コードにはが含まれます'

最終改行なしでSTDINに入力を与えます:

echo -n zaza | stringd.pl

stringd.pl

#!/usr/bin/perl -p
s%.%$\+=13-abs 13-abs ord($&)-ord$'.$&%eg}{

2

ラケット119バイト

(λ(s)(for/sum((i(sub1(string-length s))))(abs(-(char->integer
(string-ref s i))(char->integer(string-ref s(+ 1 i)))))))

テスト:

(f "golf")

出力:

17

詳細バージョン:

(define(f s)
  (for/sum((i(sub1(string-length s))))
    (abs(-(char->integer(string-ref s i))
          (char->integer(string-ref s(+ 1 i)))))))

あなたは置き換えることができ(define(f s)(lambda(s)(匿名関数は罰金です)2が短くバイト、。
フェデ。

1
ラケットは取るべきで、待って(λ(s)UTF8である場合6は、私が思うどのバイト、あまりにも
FEDE秒。

やった ありがとう。
rnso

2

C#、87 85バイト

改善されたソリューション-Math.Abs​​()をadd&moduloトリックに置き換えて2バイトを節約します。

s=>{int l=0,d,i=0;for(;i<s.Length-1;)l+=(d=(s[i]-s[++i]+26)%26)>13?26-d:d;return l;};

初期ソリューション:

s=>{int l=0,d,i=0;for(;i<s.Length-1;)l+=(d=Math.Abs(s[i]-s[++i]))>13?26-d:d;return l;};

オンラインでお試しください!

テストケースを含む完全なソース:

using System;

namespace StringDistance
{
    class Program
    {
        static void Main(string[] args)
        {
            Func<string,int>f= s=>{int l=0,d,i=0;for(;i<s.Length-1;)l+=(d=Math.Abs(s[i]-s[++i]))>13?26-d:d;return l;};

            Console.WriteLine(f("golf"));   //17
            Console.WriteLine(f("aa"));     //0
            Console.WriteLine(f("stack"));  //18
            Console.WriteLine(f("zaza"));   //3
            Console.WriteLine(f("valleys"));//35
        }
    }
}

2

実際には、21バイト

cia_ranaのRubyの回答に部分的に基づいています

最初にマップをリストに変換せずに(下の要素をデキュー)および(最初の要素をポップ)でO動作しないバグ(この場合、文字列に対するord()のマッピング)にバグがありました。このバグは修正されましたが、この修正はこのチャレンジよりも新しいため、私はこれを続けました。dp##

編集:そして、バイトカウントは9月以来間違っていました。おっと。

ゴルフの提案を歓迎します。オンラインでお試しください!

O#;dX@pX♀-`A;úl-km`MΣ

アンゴルフ

         Implicit input string.
          The string should already be enclosed in quotation marks.
O#       Map ord() over the string and convert the map to a list. Call it ords.
;        Duplicate ords.
dX       Dequeue the last element and discard it.
@        Swap the with the duplicate ords.
pX       Pop the last element and discard it. Stack: ords[:-1], ords[1:]
♀-       Subtract each element of the second list from each element of the first list.
          This subtraction is equivalent to getting the first differences of ords.
`...`M   Map the following function over the first differences. Variable i.
  A;       abs(i) and duplicate.
  úl       Push the lowercase alphabet and get its length. A golfy way to push 26.
  -        26-i
  k        Pop all elements from stack and convert to list. Stack: [i, 26-i]
  m        min([i, 26-i])
Σ        Sum the result of the map.
         Implicit return.

1

Java 7,128バイト

 int f(String s){char[]c=s.toCharArray();int t=0;for(int i=1,a;i<c.length;a=Math.abs(c[i]-c[i++-1]),t+=26-a<a?26-a:a);return t;}

非ゴルフ

 int f(String s){
 char[]c=s.toCharArray();
 int t=0;
 for(int i=1,a;
     i<c.length;
   a=Math.abs(c[i]-c[i++-1]),t+=26-a<a?26-a:a);
return t;
 }

1

Pyth、20バイト

Lm-13.adbsyy-M.:CMQ2

STDINで引用符付き文字列の入力を受け取り、結果を出力するプログラム。

オンラインで試す

使い方

Lm-13.adbsyy-M.:CMQ2  Program. Input: Q
L                     def y(b) ->
 m      b              Map over b with variable d:
  -13                   13-
     .ad                abs(d)
                CMQ   Map code-point over Q
              .:   2  All length 2 sublists of that
            -M        Map subtraction over that
          yy          y(y(that))
         s            Sum of that
                      Implicitly print

1

dc + od、65バイト

od -tuC|dc -e'?dsN0sT[lNrdsNr-d*vdD[26-]sS<Sd*vlT+sTd0<R]dsRxlTp'

説明:

dcでは文字列の文字にアクセスできないため、odを使用してASCII値を取得しました。これらは、スタック(LIFOコンテナ)から次のように逆の順序で処理されます。

dsN0sT             # initialize N (neighbor) = top ASCII value, and T (total) = 0
[lNrdsNr-          # loop 'R': calculate difference between current value and N,
                   #updating N (on the first iteration the difference is 0)
   d*vdD[26-]sS<S  # get absolute value (d*v), push 13 (D) and call 'S' to subtract
                   #26 if the difference is greater than 13
   d*vlT+sT        # get absolute value again and add it to T
d0<R]dsR           # repeat loop for the rest of the ASCII values
xlTp               # the main: call 'R' and print T at the end

実行:

echo -n "golf" | ./string_distance.sh

出力:

17

1

C、82 86 83 76バイト

t,u;f(char*s){for(t=0;*++s;u=*s-s[-1],t+=(u=u<0?-u:u)>13?26-u:u);return t;}

入力文字列が少なくとも1文字の長さであると仮定します。これは必要ありません#include<stdlib.h>

編集:アー、シーケンスポイント!

Ideoneでお試しください


ideoneコンパイラに文字列「nwlrbb」とすべてのランド列私は6 LEN復帰を試みるすべて0が、それは....結果ではないようです0
RosLuP

はい、今は大丈夫そうです
...-RosLuP


1

Scala、68バイト

def f(s:String)=(for(i<-0 to s.length-2)yield (s(i)-s(i+1)).abs).sum

批判は大歓迎です。


1

C#、217バイト

ゴルフ:

IEnumerable<int>g(string k){Func<Char,int>x=(c)=>int.Parse(""+Convert.ToByte(c))-97;for(int i=0;i<k.Length-1;i++){var f=x(k[i]);var s=x(k[i+1]);var d=Math.Abs(f-s);yield return d>13?26-Math.Max(f,s)+Math.Min(f,s):d;}}

ゴルフをしていない:

IEnumerable<int> g(string k)
{
  Func<Char, int> x = (c) => int.Parse("" + Convert.ToByte(c)) - 97;
  for (int i = 0; i < k.Length - 1; i++)
  {
    var f = x(k[i]);
    var s = x(k[i + 1]);
    var d = Math.Abs(f - s);
    yield return d > 13 ? 26 - Math.Max(f, s) + Math.Min(f, s) : d;
  }
}

出力:

aa: 0
stack: 18
zaza: 3
valleys: 35

'a'はバイトに変換されると97になるため、それぞれから97が減算されます。差が13(つまり、アルファベットの半分)より大きい場合は、26から各文字(バイト値)の差を引きます。最後の "yield return"を追加すると、数バイト節約できました。


1
2つの無駄な空白:両方とも 's'の前。
Yytsi

0

Python 3、126バイト

理解のリスト

d=input()
print(sum([min(abs(x-y),x+26-y)for x,y in[map(lambda x:(ord(x)-97),sorted(d[i:i+2]))for i in range(len(d))][:-1]]))

いい答えだ。あなたは置き換えることができますabs(x-y)によってy-x通話がするので、sorted作りますx < y
-todeale

0

PHP、79バイト

for($w=$argv[1];$w[++$i];)$s+=13-abs(13-abs(ord($w[$i-1])-ord($w[$i])));echo$s;

0

Java、109バイト

int f(String s){int x=0,t,a=0;for(byte b:s.getBytes()){t=a>0?(a-b+26)%26:0;t=t>13?26-t:t;x+=t;a=b;}return x;
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.