Glyphoプログラムを翻訳する


17

有効なGlyphoプログラムの入力があれば、その「人間が読み取れる」対応物を出力します。

グリフォは興味深いエソランのアイデアです:

命令のリファレンスはここにあります。各命令の文字abcdは、各命令を構成するシンボルを表します。aは最初の一意のシンボル、bは2番目の一意のシンボルなどを指します。

aaaa ..... n NOP - no operation; do nothing
aaab ..... i Input - push input onto top of stack
aaba ..... > Rot - pops top stack element and pushes to bottom of stack
aabb ..... \ Swap - swaps top two stack elements
aabc ..... 1 Push - pushes a 1 onto the top of stack (creates new element)
abaa ..... < RRot - pops bottom element and pushes to top of stack
abab ..... d Dup - Duplicates top stack element
abac ..... + Add - pops top two elements and pushes their sum
abba ..... [ L-brace - skip to matching ] if top stack element is 0
abbb ..... o Output - pops and outputs top stack element
abbc ..... * Multiply - pops top two elements and pushes their product
abca ..... e Execute - Pops four elements and interprets them as an instruction
abcb ..... - Negate - pops value from stack, pushes -(value)
abcc ..... ! Pop - pops and discards top stack element
abcd ..... ] R-brace - skip back to matching [

(クレジット:Brian Thompson別名Wildhalcyon)

だから、例えば、PPCG表すことになるプッシュインストラクション- PPCGパターンと一致するaabca表すPbを表しC、そしてc 表しをG

入力は、印刷可能なASCII文字のみで構成される単一の文字列になります。長さは常に4(duh)で割り切れます。

出力は、入力文字列内の4文字の各グループが、指定した命令で置き換えられます。単一文字の命令名(上記で引用した表の5つのドットの直後の名前)を使用します。

これはであるため、バイト単位の最短コードが優先されます。

テストケース:

In                                Out
------------------------------------------------
Programming Puzzles & Code Golof  ]!]!]]]+
nananananananana batman!          dddd]]
;;;;;;;:;;:;;;::                  ni>\
llamas sleep                      1-*
8488133190003453                  <[oe
<empty string>                    <empty string>

4
ああ、Code Golof。私のお気に入りのスポロット。
KoreanwGlasses 16

回答:


5

Pyth、37 35 34バイト

コードには印刷できない文字が含まれているため、xxdhexdumpを次に示します。

0000000: 5663 7a34 7040 2e22 216f d78c 40bf d4f0  Vcz4p@."!o..@...
0000010: 38d6 7dfe 7312 3ff8 ea22 6958 4e7b 4e55  8.}.s.?.."iXN{NU
0000020: 5433                                     T3

36バイトの印刷可能なバージョンを次に示します。

Vcz4p@"ni >\\1   <d+[o*e-!]"iXN{NUT3

オンラインでお試しください。 テストスイート。

説明

Vcz4p@."…"iXN{NUT3       implicit: z = input
  z                      input
 c 4                     split to 4-character blocks
V                        loop over that in N
           X               replace...
            N                in current part
             {N              unique chars in current part, in order
               UT            with numbers 0-9
          i      3         interpret as base 3
     @                     take that item of
      ."…"                   string "ni >\\1   <d+[o*e-!]"
    p                      and print without newline


3

JavaScript(ES6)、97

4文字のブロックごとに、各シンボルをブロック内の位置に置き換えて、ベース4の番号を取得します。たとえば'aabc' -> '0023'。可能な数は0..0123の範囲、つまり10進数で0..27です。数値をインデックスとして使用して、28文字の文字列から正しい命令文字を見つけます。

s=>s.replace(/.{4}/g,s=>'n..i....>.\\1....<d.+[o.*e-!]'[[...s].map(c=>n=n*4+s.indexOf(c),n=0),n])

テスト

F=s=>s.replace(/.{4}/g,s=>'n..i....>.\\1....<d.+[o.*e-!]'[[...s].map(c=>n=n*4+s.indexOf(c),n=0),n])

function test() { O.textContent=F(I.value) }

test();
#I { width:90% }
<input id=I value="nananananananana batman!" oninput="test()">
<br><span id=O></span>


3

MATLAB、291バイト

私は答えをコミットする必要がある場合、私はかなり長い間heしました。私はMATLABをいじっていました。高密度のコード(命令/バイト数が少なく、約100倍のソリューション)を生成することは実際には不可能であり、MATLABはコードゴルフに適していない可能性があることを認識しています。 。しかし、私は単に試してみたかっただけで、コードは機能します(改行文字は保持されます)。ヒントを歓迎します。:P

i=input('','s');
l=reshape(i,4,length(i)/4)';
m=']!- e';m(9)='*';m(12:22)='o[   + d  <';m(33:34)='1\';m(39)='>';m(57)='i';m(64)='n';
s='';
for k = 1:size(l,1)
n=l(k,:);
c=combvec(n,n);
t=triu(reshape(c(1,:)==c(2,:),4,4),1);
t=sum(t([5,9:10,13:15]).*2.^[5:-1:0]);
s=[s,m(t+1)];
end
display(s)

1
プログラミングパズルとコードゴルフへようこそ!ばかげた量でゴルフをしていても、すべての答えは大歓迎です(間違いなく以前に私に起こりました)。;)素敵な最初の答え!
ドアノブ

2

JavaScriptの(ES6)、115の 101バイト

s=>s.replace(/..../g,g=>"ni >\\1   <d+[o*e-!]"[[...g].map(c=>r=r*3+(m[c]=m[c]||++i)-1,i=r=0,m={})|r])

@ edc65のおかげで14バイト節約

説明

命令のリストを、各文字がベース3インデックスの文字列に格納します。たとえば、に+対応しabac、base-3で0102、または1110進数で表すことができます。base-3で表現できない唯一の命令はですが]、base-3数の計算に使用されるアルゴリズムでは、都合の良いことに、文字列の末尾の位置18にある必要があります。

s=>
  s.replace(/..../g,g=>    // replace each four-character group with it's instruction
    "ni >\\1   <d+[o*e-!]" // list of instructions at their base-3 index
    [
      [...g].map(c=>       // for each character c
        r=r*3+(m[c]=m[c]   // shift r left and add the number associated with c to r
          ||++i)-1,        // if nothing is associated, associate the next number to c
                           // save i + 1 to m[c] so that it is truthy for 0
        i=                 // i = current number to assign to the next unique character
        r=0,               // r = 4-character group as a base-3 number
        m={}               // m = map of numbers assigned to each character
      )
      |r                   // return r
    ]
  )

テスト


parseInt繰り返しの和と乗算を使用して、数値を使用および計算せずに多くのバイトを節約できます。これにより、基数3で無効な「0123」の問題を回避できますが、1 * 9 + 2 * 6 + 3 == 18が適切な位置になります。結果:F=s=>s.replace(/..../g,g=>"ni]>\\1 <d+[o*e-!]"[[...g].map(c=>r=r*3+(m[c]=m[c]||++i)-1,r=i=0,m={})|r])
edc65

@ edc65すばらしい提案。ありがとう!
user81655

0

Python 2、158バイト

のような入力を受け取ります"test"。出力は文字のリストです。

def b(s,i=0):
    for c in s:i=i*4+s.index(c)
    return"n..i....>.\\1....<d.+[o.*e-!]"[i]
print map(b,(lambda l,n:[l[i:i+n]for i in range(0,len(l),n)])(input(),4))

オンラインで試す

ゴルフをしていない:

def chunks(l, n):
    return (l[i:i+n] for i in range(0, len(l), n))

def convert(inst):
    i = 0
    for c in inst:
        i = i*4 + inst.index(c)

    return "n..i....>.\\1....<d.+[o.*e-!]"[i]

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