波状の文字列を1行ずつ印刷する


23

チャレンジ

文字列sと整数nをパラメーターとして受け取るプログラムまたは関数を作成します。次のように変換すると、プログラムは文字列を出力(または返す)します。

左上から始めて右下に移動し、s高さの波として書き込みnます。次に、上から下へ、各行を文字列として(スペースなしで)結合します。

文字列「WATERMELON」と高さ3を指定します。

波は次のようになります。

W   R   O
 A E M L N
  T   E

次に、行を上から下に結合します。

WRO
AEMLN
TE

したがって、プログラムは文字列「WROAEMLNTE」を返す必要があります

同様に、高さ4の「WATERMELON」は次の波を生成するはずです。

W     E
 A   M L
  T R   O
   E     N

その後、プログラムは文字列「WEAMLTROEN」を返す必要があります

ルール

入力

入力は、合理的な形式で取得できます。文字列は、どのような場合でも好きなものにすることができます。あなたはそれを仮定するかもしれません0 < n <= s.length

出力

出力は、変換された文字列(STDOUTに返されるか出力されるか)と、後続の改行のみで構成される必要があります。

得点

これはなので、バイト単位の最短回答が勝ちです!標準の抜け穴は許可されていません。

テストケース

Input                        Output

programmingpuzzles, 5 ->     piermnlsomgzgapzru
codegolf, 3           ->     cgoeofdl
elephant, 4           ->     enlatehp
1234567, 3            ->     1524637
qwertyuiop, 1         ->     qwertyuiop

n1以上と仮定できますか?テストケースを明確にし、追加しない場合
ルイスメンドー

1
あなたは想定することができるn > 0が、n=1有効なケースです。ここで質問を更新します。
Cowabunghole

2
@Cowabunghole私は知っています。:)関連するということは、それがいくぶん似ていることを意味し、既存の答えがこの課題に役立つかもしれません。右側のリンクされた質問に表示されるように言及するだけです。関連!=重複。;)
ケビンクルーイッセン

5
1つのレールだけでエンコードされたレールフェンス暗号は見たことがありません。Just sayin '
-wooshinyobject

1
@Veskahああ、古いダブルrot13トリック。
wooshinyobject

回答:


5

、6バイト

δÖK…¢ḣ

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

以下のために働くn = 1だけでなく、。

説明

δÖK…¢ḣ  Implicit inputs, say n=4 and s="WATERMELON"
     ḣ  Range: [1,2,3,4]
    ¢   Cycle: [1,2,3,4,1,2,3,4,1,2,3,4..
   …    Rangify: [1,2,3,4,3,2,1,2,3,4,3,2..
δÖK     Sort s by this list: "WEAMLTROEN"
        Print implicitly.

高次関数δは、このように内部で機能します。単項関数とリストを取り、新しいリストを返す高次関数があるとします。たとえばÖ、関数を受け取り、それをキーとして使用してリストをソートします。次にδÖ、バイナリ関数と2つのリストを取得し、リストを一緒に圧縮Öし、バイナリ関数をキーとして使用してペアのソートに適用し、最後にペアを2番目の座標に投影します。Kキー関数として使用します。この関数は、単に最初の引数を返し、2番目の引数を無視します。


6

MATL、16バイト

Zv3L)t?yn:)2$S}i

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

説明

入力を考えてみましょう5'programmingpuzzles'

Zv     % Input, implicit: number n. Symmetric range
       % STACK: [1 2 3 4 5 4 3 2 1]
3L     % Push [1 -1+1j]. When used as an index, this means 1:end-1
       % STACK: [1 2 3 4 5 4 3 2 1], [1 -1+1j]
)      % Index. Removes last element
       % STACK: [1 2 3 4 5 4 3 2]
t      % Duplicate
       % STACK: [1 2 3 4 5 4 3 2], [1 2 3 4 5 4 3 2]
?      %   If non-empty and non-zero
       %   STACK: [1 2 3 4 5 4 3 2]
  y    %   Implict input: string s. Duplicate from below
       %   STACK: 'programmingpuzzles', [1 2 3 4 5 4 3 2], 'programmingpuzzles'
  n    %   Number of elements
       %   STACK: 'programmingpuzzles', [1 2 3 4 5 4 3 2], 18
  :    %   Range
       %   STACK: 'programmingpuzzles', [1 2 3 4 5 4 3 2], [1 2 3 ··· 17 18]
  )    %   Index modularly
       %   STACK: 'programmingpuzzles', [1 2 3 4 5 4 3 2 1 2 3 4 5 4 3 2 1 2]
  2$S  %   Two-input sort: stably sorts first input as given by the second
       %   STACK: 'piermnlsomgzgapzru'
}      % Else. This branch is entered when n=1. The stack contains an empty array
       %   STACK: []
  i    %   Take input
       %   STACK: [], [], 'programmingpuzzles'
       % End, implicit
       % Display stack, implicit. Empty arrays are not displayed


5

J54、29、27 26バイト

hoosierEEのおかげで-1バイト

([\:#@[$[:}:|@i:@<:@]) ::[

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


@LuisMendoうーん、もう一度重要なものを見逃しました。ありがとう!一定。
ガレンイワノフ

1
私も最初はそれを逃していましたが、それを実現し、OPに尋ねました。n=1最初からテストケースがあるはず
ルイスメンドー

1
|@i:[:|i:バイトを保存する代わりに
-hoosierEE

@hoosierEEはい、ありがとう!
ガレンイワノフ

5

R、68バイト

function(s,n)intToUtf8(unlist(split(utf8ToInt(s),-(n:(2.9-n)-1)^2)))

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

  • @Giuseppeのおかげで-10バイト
  • -17バイト
  • n=1@ J.Doeのおかげで、-9バイトと大文字と小文字が修正されました
  • @JayCeのおかげで-3バイト


3

05AB1E(レガシー)11 8 バイト

Σ²Lû¨¾è¼

@LuisMendoのMATL回答に触発されました@Adnanの
おかげで、私はバカだから-3バイト。..>。>

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

説明:

Σ           # Sort the (implicit) input-string by:
 ²L         #  Create a list in the range [1, second input-integer]
            #   i.e. 5 → [1,2,3,4,5]
   û        #  Palindromize it
            #   i.e. [1,2,3,4,5] → [1,2,3,4,5,4,3,2,1]
    ¨       #  Remove the last item
            #   i.e. [1,2,3,4,5,4,3,2,1] → [1,2,3,4,5,4,3,2]
     ¾è     #  Index into it (with wraparound) using the counter_variable (default 0)
            #   i.e. counter_variable = 0 → 1
            #   i.e. counter_variable = 13 → 4
       ¼    #  And after every iteration, increase the counter_variable by 1

注:counter_variable05AB1EのPython LegacyバージョンでΣは、組み込みのindex- がなかったため、が使用されます。これは、05AB1E Nの新しいElixir書き換えバージョンで使用されます。では、なぜレガシーバージョンをまだ使用するのですか?Elixirの書き換えでは、暗黙的に文字列を文字のリスト}Jに変換し、出力するために文字列に戻す変換を追加する必要があります(また、現在è、拡張リストにインデックスを作成する機能がまったくないバグも含まれています) ..:S)


¹g∍05AB1Eはに巡回インデックスを使用するため、この部分は必要ありませんè
アドナン

@Adnanああ、私はバカです..>。>ありがとう!
ケビンクルーッセン

2

Japt、16バイト

¬üÏu´VÑ aV°ÃÔc q

オンラインでテストしてください!

説明

 ¬ üÏ   u´ VÑ  aV° Ã Ô c q
Uq üXY{Yu--V*2 aV++} w c q    Ungolfed
                               Implicit: U = input string, V = size of wave
Uq                             Split U into chars.
   üXY{            }           Group the items in U by the following key function:
       Y                         Take the index of the item.
        u--V*2                   Find its value modulo (V-1) * 2.
               aV++              Take the absolute difference between this and (V-1).
                                 This maps e.g. indices [0,1,2,3,4,5,6,7,...] with V=3 to
                                                        [2,1,0,1,2,1,0,1,...]
                                 The items are then grouped by these values, leading to
                                 [[2,6,...],[1,3,5,7,...],[0,4,...]].
                     w         Reverse the result, giving [[0,4,...],[1,3,5,7,...],[2,6,...]].
                       c       Flatten.
                         q     Join back into a single string.

oOそのü方法は新しいですか?
ルイスフェリペデジェススムニョス

はい

入力を文字配列として取得してバイトを保存し、1を出力するか、-Pフラグを使用して別の2を保存できます
Shaggy

2

ゼリー、8 バイト

高さ1の場合、6バイトは失敗します。それに対処するために使用される2バイト...おそらく7が見つかりますか?

ŒḄṖȯ1ṁỤị

正の整数と文字のリストを生成する文字のリストを受け入れるダイアディックリンク。

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

どうやって?

ŒḄṖȯ1ṁỤị - Link: positive integer N; list of characters, T
ŒḄ       - bounce (implicit range of) N -> [1,2,3,...,N-1,N,N-1,...,3,2,1]
  Ṗ      - pop off the final entry         [1,2,3,...,N-1,N,N-1,...,3,2]
   ȯ1    - OR one                          if this is [] get 1 instead
     ṁ   - mould like T (trim or repeat to make this list the same length as T)
      Ụ  - grade-up (get indices ordered by value - e.g. [1,2,3,2,1,2] -> [1,5,2,4,6,3])
       ị - index into T

2

JavaScript(ES6)、75バイト

@MattHが推奨する短い式(-3バイト)

入力をとして受け取ります(string)(n)

s=>n=>--n?[...s].map((c,x)=>o[x=x/n&1?n-x%n:x%n]=[o[x]]+c,o=[])&&o.join``:s

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


JavaScript(ES7)、78バイト

@ETHproductionsのおかげで4バイト節約

入力をとして受け取ります(string)(n)

s=>n=>--n?[...s].map((c,x)=>o[x=n*n-(x%(n*2)-n)**2]=[o[x]]+c,o=[])&&o.join``:s

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


私の解決策は、最終的にあなたのものに非常に似たものになりました。の代わりにowith の挿入インデックスを計算して、-3バイト節約できます。x/n&1?n-x%n:x%nn*n-(x%(n*2)-n)**2
MattH

@MattHよくできました。ありがとう!
アーナルド


1

MBASIC146の 159 155バイト

1 INPUT S$,N:DIM C$(N):P=1:D=1:FOR I=1 TO LEN(S$):C$(P)=C$(P)+MID$(S$,I,1)
2 IF N>1 THEN P=P+D
3 IF P=N OR P=1 THEN D=-D
4 NEXT:FOR I=1 TO N:PRINT C$(I);:NEXT

n = 1を処理するように更新

出力:

? programmingpuzzles, 5
piermnlsomgzgapzru

? codegolf, 3
cgoeofdl

? elephant, 4
enlatehp

? 1234567, 3
1524637

? WATERMELON, 4
WEAMLTROEN

? qwertyuiop, 1
qwertyuiop

現在、ケースn = 1をサポートしていません。
wooshinyobject

ケースn = 1を処理するために更新
wooshinyobject

比較をクリーンアップして4バイトを節約しました。
wooshinyobject

1

Perl 6、49バイト

->\n{*.comb.sort({-abs n-1-$++%(2*n-2||1)}).join}

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

入力をカリー化された関数として受け取ります。

説明:

->\n{*.comb.sort({-abs n-1-$++%(2*n-2||1)}).join}
->\n{                                           }  # Take an number
     *.comb        # Turn the string into a list of chars
           .sort({                       })   # And sort them by
                           $++    # The index of the char
                              %(2*n-2||1)  # Moduloed by 2*(n-1) or 1 if n is 0
                       n-1-       # Subtract that from n-1
                   abs            # get the absolute value
                  -               # And negate to reverse the list
                                          .join  # and join the characters

ソートされる順序は次のようになります(for n=5):

(-4 -3 -2 -1 0 -1 -2 -3 -4 -3 -2 -1 0 -1 -2 -3 -4 -3 -2 -1)

1

J、24バイト

4 :'x\:(#x)$}:|i:<:y'::[

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

明示的な二項動詞。のように実行します'codegolf' f 3

使い方

4 :'x\:(#x)$}:|i:<:y'::[    x: string, y: height
4 :                         Define a dyadic verb:
               i:<:y        Generate a range of -(y-1) .. y-1
            }:|             Take absolute value and remove last
       (#x)$             1) Repeat to match the string's length
    x\:                     Sort x by the decreasing order of above
                     ::[    If 1) causes `Length Error`, return the input string instead

通常、明示的な関数はの形式で追加の5バイトを取りますn :'...'。ただし、エラー処理を追加すると、の括弧とスペースのために、差は2バイトになります(tacit)<space>::


なぜ私はいつも使用する傾向がありますsort upか?!明示的な動詞はまだ3バイト短くなっています。英断!
ガレンイワノフ


1

Powershell、99 95バイト

param($s,$n)$r=,''*$n
$s|% t*y|%{$r[((1..$n+$n..1)*$s.Length|gu)[$i++*($n-gt1)]-1]+=$_}
-join$r

テストスクリプト:

$f = {

param($s,$n)$r=,''*$n
$s|% t*y|%{$r[((1..$n+$n..1)*$s.Length|gu)[$i++*($n-gt1)]-1]+=$_}
-join$r

}

@(
    ,("1234567", 3            ,     "1524637")
    ,("qwertyuiop", 1         ,     "qwertyuiop")
    ,("codegolf", 3           ,     "cgoeofdl")
    ,("elephant", 4           ,     "enlatehp")
    ,("programmingpuzzles", 5 ,     "piermnlsomgzgapzru")
) | % {
    $s,$n,$e = $_
    $r = &$f $s $n
    "$($r-eq$e): $r"
}

出力:

True: 1524637
True: qwertyuiop
True: cgoeofdl
True: enlatehp
True: piermnlsomgzgapzru

説明

スクリプト:

  • 行の配列を作成し、
  • 行に適切な値を入力し、
  • 結合された行を返します。

((1..$n+$n..1)*$s.Length|gu は、次のようなシーケンスを生成し、1,2,3,3,2,1,1,2,3,3,2,1... 隣接する重複を削除します。Get-Uniqueのguエイリアスです。

  • 以下のために$n=3重複除外された配列です。1,2,3,2,1,2,3,2,1...
  • 以下のために$n=1重複除外された配列です。1

$i++*($n-gt1) は、重複排除されたシーケンスのインデックスを返します。=$i++もし$n>1そうでなければ=0


1

ルビー75 65バイト

->s,h{a=['']*h;x=-k=1;s.map{|c|a[x+=k=h-x<2?-1:x<1?1:k]+=c};a*''}

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

入力を文字の配列として受け取り、文字列を返します

どうやって:

  • h文字列を作成する
  • 入力文字列内の各文字について、そのインデックスに基づいてどの文字列を挿入するかを決定します(変更される文字列のインデックスは、上に上がりh、下に下がる0など)
  • 結合されたすべての文字列を返します


@GB最後のケースでは機能しません
Asone Tuhid

1

C、142 134バイト

Jonathan Frechのおかげで8バイト節約

コード:

t;i;j;d;f(s,n)char*s;{for(t=strlen(s),i=0;i<n;i++)for(j=0;j+i<t;j=d+i+(n<2))d=j-i+2*~-n,putchar(s[i+j]),i>0&i<n-1&d<t&&putchar(s[d]);}

説明:

// C variable and function declaration magic
t;i;j;d;f(s,n)char*s;{
    // Iterate through each "row" of the string
    for(t=strlen(s),i=0;i<n;i++)
        // Iterate through each element on the row
        // Original index iterator here was j+=2*(n-1), which is a full "zig-zag" forward
        // The (n<2) is for the edge case of n==1, which will break the existing logic.
        for(j=0; j+i<t; j=d+i+(n<2))
            // If j+i is the "zig", d is the "zag": Original index was d=j+i+2*(n-i-1)
            // Two's complement swag here courtesy of Jonathan Frech
            d=j-i+2*~-n,
            putchar(s[i+j]),
            // Short circuit logic to write the "zag" character for the middle rows
            i>0 & i<n-1 & d<t && putchar(s[d]);
}

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


1
こんにちは、PPCGへようこそ。素敵な最初のゴルフ。134バイト(GCCを想定)。
ジョナサンフレッチ

0

木炭、21バイト

⭆NΦη¬⌊E²﹪⁺μ⎇νι±ι∨⊗⊖θ¹

mim±i=0(mod2n2)

 N                      First input as a number
⭆                       Map over implicit range and join
   η                    Second input
  Φ                     Filter over characters
       ²                Literal 2
      E                 Map over implicit range
          μ             Character index
             ι ι        Outer index
              ±         Negate
            ν           Inner index
           ⎇            Ternary
         ⁺              Plus
                   θ    First input
                  ⊖     Decremented
                 ⊗      Doubled
                    ¹   Literal 1
                ∨       Logical Or
        ﹪               Modulo
     ⌊                  Minimum
    ¬                   Logical Not
                        Implicitly print

0

SNOBOL4(CSNOBOL4)、191バイト

	S =INPUT
	N =INPUT
	A =ARRAY(N)
	A<1> =EQ(N,1) S	:S(O)
I	I =I + -1 ^ D
	S LEN(1) . X REM . S	:F(O)
	A<I> =A<I> X
	D =EQ(I,N) 1
	D =EQ(I * D,1)	:(I)
O	Y =Y + 1
	O =O A<Y>	:S(O)
	OUTPUT =O
END

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

Sその後N、別の行で取ります。

説明:

	S =INPUT			;* read S
	N =INPUT			;* read N
	A =ARRAY(N)			;* create array of size N
	A<1> =EQ(N,1) S	:S(O)		;* if N = 1, set A<1> to S and jump to O
I	I =I + -1 ^ D			;* index into I by I + (-1)^D (D starts as '' == 0)
	S LEN(1) . X REM . S	:F(O)	;* extract the first character as X and set S to the
					;* remaining characters, jumping to O when S is empty
	A<I> =A<I> X			;* set A<I> to A<I> concatenated with X
	D =EQ(I,N) 1			;* if I == N, D=1
	D =EQ(I * D,1)	:(I)		;* if I == D == 1, D = 0. Goto I
O	Y =Y + 1			;* increment the counter
	O =O A<Y>	:S(O)		;* concatenate the array contents until last cell
	OUTPUT =O			;* and print
END



0

Pyth22 21バイト

|seMhD,V*lz+PUQP_UQzz

別の行にn続いて入力を受け取りますsここでオンライン試すか、ここですべてのテストケースを一度に確認してください

|seMhD,V*lz+PUQP_UQzz   Implicit: Q=eval(input()), z=remaining input

             UQ         Range [0-Q)
            P           All but last from the above
                         e.g. for Q=3, yields [0,1]
               P_UQ     All but last of reversed range
                         e.g. for Q=3, yields [2,1]
           +            Concatenate the previous two results
                          e.g. for Q=3, yields [0,1,2,1]
        *lz              Repeat len(z) times
      ,V           z    Vectorised pair the above with z, truncating longer to length of shorter
                          e.g. for Q=3, z=WATERMELON, yields:
                          [[0,'W'],[1,'A'],[2,'T'],[1,'E'],[0,'R'],[1,'M'],[2,'E'],[1,'L'],[0,'O'],[1,'N']]
    hD                  Sort the above by the first element
                          Note this is a stable sort, so relative ordering between equal keys is preserved
  eM                    Take the last element of each
 s                      Concatenate into string
                          Note that if n=1, the result of the above will be 0 (sum of empty array)
|                   z   If result of above is falsey, yield z instead

編集:空のチェックを処理の最後に移動して、バイトを保存しました。前のバージョン: seMhD,V*lz|+PUQP_UQ]0z


0

、153バイト

func[s n][i: v: m: 1 b: collect[foreach c s[keep/only reduce[v i c]v: v + m
if all[n > 1(i: i + 1)%(n - 1)= 1][m: -1 * m]]]foreach k sort b[prin last k]]

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

説明:

f: func [ s n ] [                      ; s is the string, n is the height
    i: 1                               ; index of the current character in the string
    v: 1                               ; value of the "ladder"
    m: 1                               ; step (1 or -1)
    b: collect [                       ; collect the values in a block b
        foreach c s [                  ; foreach character in the string 
            keep/only reduce [ v i c ] ; keep a block of the evaluated [value index char] 
            i: i + 1                   ; increase the index
            v: v + m                   ; calculate the value 
            if all [ n > 1             ; if height is greater than 1 and
                    i % (n - 1) = 1    ; we are at a pick/bottom of the ladder
                   ]
                [ m: -1 * m ]          ; reverse the step
        ]
    ]
    foreach k sort b [ prin last k ]   ; print the characters in the sorted block of blocks
]

0

この問題には2つの解決策があります。私が最初にした最初の解決策は、バイトを節約すると思った別の方法を考えましたが、そうではありませんでした。


解決策1

PHP152 144 116バイト

<?php
for($i=0;$i<$n=$argv[2];$i++)
    for($j=$i;$s=$argv[1][$j];$j+=$n<2|(($f=!$f|!$i)?$i<$n-1?$n+~$i:$i:$i)*2)
        echo $s;
  • @JoKingのおかげで8バイト
  • @Shaggyのおかげで28バイト

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


解決策2

PHP、162バイト

<?php
$s=$argv[0];
$n=$argv[1];
$l=strlen($s);
for($i=0;$i<$l;){
    for($j=0;$j<$n&&$i<$l;)
        $a[$j++].=$s[$i++];
    for($j=$n-2;$j>0&&$i<$l;)
        $a[$j--].=$s[$i++];
}
echo join($a);

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


あなたは初期化する必要はありません$fし、$n-1-$iすることができ$n-~$i144バイト
ジョーキング

-JoKingの改善で-28バイト
シャギー

おっと。それが壊れるときn=1これは同じバイト数で機能します。
シャギー

短いタグを使用し、スペースを削除してechoからさらに5バイト
Shaggy

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.