किताबी कीड़ा शब्दकोश प्रारूप


42

मैंने हाल ही में खुद को किताबी कीड़ा के रूप में कुछ उदासीनता में लिप्त किया है:

यदि आपने इसे पहले नहीं देखा है, तो यह एक शब्द का खेल है जहां लक्ष्य शब्दों को बनाने के लिए आसन्न टाइलों को जोड़ना है। यह निर्धारित करने के लिए कि क्या एक स्ट्रिंग एक वैध शब्द है, यह इसे अपने आंतरिक शब्दकोश के खिलाफ जांचता है, जो एक संपीड़ित प्रारूप में संग्रहीत होता है जो इस तरह दिखता है:

aa
2h
3ed
ing
s
2l
3iis
s
2rdvark
8s
4wolf
7ves

शब्दकोश को अनपैक करने के नियम सरल हैं:

  1. पंक्ति की शुरुआत में संख्या पढ़ें, और पिछले शब्द की शुरुआत से कई वर्णों को कॉपी करें। (यदि कोई संख्या नहीं है, तो पिछली बार के रूप में कई पात्रों की प्रतिलिपि बनाएँ।)

  2. निम्नलिखित अक्षरों को शब्द में जोड़ें।

तो, हमारा पहला शब्द है aa, उसके बाद 2h, जिसका अर्थ है "गठन के पहले दो अक्षरों को कॉपी करें aaऔर जोड़ें h" aah। फिर 3edबन जाता है aahed, और चूंकि अगली पंक्ति में कोई संख्या नहीं होती है, इसलिए हम 3 वर्णों को फिर से बनाने के लिए कॉपी करते हैं aahing। यह प्रक्रिया बाकी के सभी शब्दकोश में जारी है। छोटे नमूना इनपुट से परिणामी शब्द हैं:

aa
aah
aahed
aahing
aahs
aal
aaliis
aals
aardvark
aardvarks
aardwolf
aardwolves

आपकी चुनौती यह है कि संभव के रूप में कुछ बाइट्स में इस unpacking प्रदर्शन करने के लिए।

इनपुट की प्रत्येक पंक्ति में 0-9 एक या अधिक लोअरकेस अक्षरों के बाद शून्य या अधिक अंक होंगे a-z। आप इनपुट ले सकते हैं और या तो स्ट्रिंग्स की एक सूची के रूप में आउटपुट दे सकते हैं, या किसी भी वर्ण के अलावा अलग किए गए शब्दों के साथ एकल स्ट्रिंग के रूप में 0-9/ a-z

यहां एक और छोटा परीक्षण मामला है, जिसमें कुछ किनारे मामले उदाहरण में शामिल नहीं हैं:

abc cba 1de fg hi 0jkl mno abcdefghijk 10l
=> abc cba cde cfg chi jkl mno abcdefghijk abcdefghijl

आप अपने कोड का पूर्ण शब्दकोश में भी परीक्षण कर सकते हैं: इनपुट , आउटपुट


क्या दूसरी पंक्ति में कोई संख्या नहीं होगी? इसके अलावा, क्या हम यह मान सकते हैं कि सिवाय किसी संख्या के 0अग्रणी 0s नहीं होगा ?
1943

@EriktheOutgolfer हाँ, यह संभव है; मैंने उसे परीक्षण मामले में जोड़ दिया है। और हाँ, आप यह मान सकते हैं कि (साथ ही साथ यह संख्या पिछले शब्द की लंबाई से अधिक नहीं होगी)।
दरवाज़े

11
यह एक प्यारा संपीड़न प्रारूप है:]
प्रहार

1
locateकार्यक्रम pathnames पर एन्कोडिंग के इस प्रकार का उपयोग करता है।
दान डी।

मैंने यह कार्यक्रम अपने वास्तविक उपयोग के लिए, लगभग 15 साल पहले लिखा था। दुर्भाग्य से मुझे नहीं लगता कि मेरे पास अब कोई स्रोत है ...
hobbs

जवाबों:


13

विम, 57 बाइट्स

:%s/\a/ &
:%norm +hkyiwjP
:g/\d/norm diw-@"yl+P
:%s/ //g

इसे ऑनलाइन आज़माएं!


क्या <H<Gअंतिम प्रतिस्थापन कार्य के बजाय होगा ?
क्रिक्टी लिथोस

@cowsquack दुर्भाग्य से, नहीं। हर इनपुट जो एक नंबर से शुरू नहीं होता है वह प्रमुख रिक्त स्थान की संख्या को बढ़ाता है इसलिए किसी <समाधान की गारंटी देने का कोई तरीका पर्याप्त नहीं होगा।
DJMcMayhem

मुझे लगता है कि आप :%s/ *दो बाइट्स को बचाने के लिए अंतिम प्रतिस्थापन के बजाय कर सकते हैं ।
डेक्सटर सीडी

10

जावास्क्रिप्ट (ईएस 6),  66 62  61 बाइट्स

a=>a.map(p=s=>a=a.slice([,x,y]=/(\d*)(.*)/.exec(s),p=x||p)+y)

इसे ऑनलाइन आज़माएं!

टिप्पणी की गई

a =>                  // a[] = input, re-used to store the previous word
  a.map(p =           // initialize p to a non-numeric value
  s =>                // for each string s in a[]:
    a =               //   update a:
      a.slice(        //     extract the correct prefix from the previous word:
        [, x, y] =    //       load into x and y:
          /(\d*)(.*)/ //         the result of a regular expression which splits the new
          .exec(s),   //         entry into x = leading digits and y = trailing letters
                      //       this array is interpreted as 0 by slice()
        p = x || p    //       update p to x if x is not an empty string; otherwise leave
                      //       it unchanged; use this as the 2nd parameter of slice()
      )               //     end of slice()
      + y             //     append the new suffix
  )                   // end of map()

5

पर्ल 6 , 50 48 बाइट्स

-2 बाइट्स nwellnhof के लिए धन्यवाद

{my$l;.map:{$!=S[\d*]=substr $!,0,$l [R||]=~$/}}

इसे ऑनलाइन आज़माएं!

अरनुलद के हल का एक बंदरगाह । यार, वह R||चाल 'मुझे लगता है कि यह संभव हो सकता है' से एक रोलरकोस्टर था, 'नाहन, यह असंभव है' से 'थोथा संभव' और अंत में 'अहा!'

स्पष्टीकरण:

{my$l;.map:{$!=S[\d*]=substr $!,0,$l [R||]=~$/}}
{                                              }  # Anonymous code block
 my$l;    # Declare the variable $l, which is used for the previous number
      .map:{                                  }  # Map the input list to
            $!=              # $! is used to save the previous word
               S[\d*]=       # Substitute the number for
                      substr $!,0    # A substring of the previous word
                                 ,              # With the length of 
                                           ~$0     # The num if it exists
                                  $l [R||]=        # Otherwise the previous num

यह $l [R||]=~$/हिस्सा मोटे तौर पर अनुवाद करता है, $l= ~$/||+$lलेकिन इसमें बाइट्स की मात्रा समान होती है :(। मूल रूप से, यह एक अनाम चर का उपयोग करके बाइट्स को सहेजता है, इसलिए my$lचला गया था लेकिन यह काम नहीं करता क्योंकि गुंजाइश अब प्रतिस्थापन है, mapकोडब्लॉक नहीं । ओह अच्छा। वैसे भी, Rरिवर्स मेटाऑपरेटर है, इसलिए यह के तर्कों को उलट देता है ||, इसलिए $lचर समाप्त होने पर नया नंबर सौंपा जा रहा है ( ~$/) अगर यह मौजूद है, तो फिर से ही।

यह 47 बाइट्स हो सकता है अगर पर्ल 6 के लिए एक थोड़े अनावश्यक कंपाइलर त्रुटि को न फेंके =~



5

सी, 65 57 बाइट्स

n;f(){char c[99];while(scanf("%d",&n),gets(c+n))puts(c);}

इसे ऑनलाइन आज़माएं!

स्पष्टीकरण:

n;                     /* n is implicitly int, and initialized to zero. */

f() {                  /* the unpacking function. */

    char c[99];        /* we need a buffer to read into, for the longest line in
                          the full dictionary we need 12 + 1 bytes. */

    while(             /* loop while there is input left. */

        scanf("%d",&n) /* Read into n, if the read fails because this line
                          doesn't have a number n's value does not change.
                          scanf's return value is ignored. */

        ,              /* chain expressions with the comma operator. The loop
                          condition is on the right side of the comma. */

        gets(c+n))     /* we read into c starting from cₙ. c₀, c₁.. up to cₙ is
                          the shared prefix of the word we are reading and the
                          previous word. When gets is successful it returns c+n
                          else it will return NULL. When the loop condition is
                          NULL the loop exits. */

        puts(c);}      /* print the unpacked word. */

5

ब्रेनफक , 201 बाइट्स

,[[[-<+>>>+<<]>-[---<+>]<[[-<]>>]<[-]>>[<<,>>>[-[-<++++++++++>]]++++<[->+<]-[----->-<]<]<]>>>[[>>]+[-<<]>>[[>>]+[<<]>>-]]+[>>]<[-]<[<<]>[->[>>]<+<[<<]>]>[>.>]+[>[-]<,.[->+>+<<]>>----------]<[<<]>-<<<,]

इसे ऑनलाइन आज़माएं!

इनपुट के अंत में एक अनुगामी न्यूलाइन की आवश्यकता है। इस आवश्यकता के बिना एक संस्करण 6 बाइट्स लंबा है:

ब्रेनफक , 207 बाइट्स

,[[[-<+>>>+<<]>-[---<+>]<[[-<]>>]<[-]>>[<<,>>>[-[-<++++++++++>]]++++<[->+<]-[----->-<]<]<]>>>[[>>]+[-<<]>>[[>>]+[<<]>>-]]+[>>]<[-]<[<<]>[->[>>]<+<[<<]>]>[>.>]+[>[-]<,[->+>+<<]>>[----------<.<]>>]<[<<]>-<<<,]

इसे ऑनलाइन आज़माएं!

दोनों संस्करण मानते हैं कि सभी संख्याएँ 255 से कम हैं।

व्याख्या

टेप को इस प्रकार रखा गया है:

tempinputcopy 85 0 inputcopy number 1 a 1 a 1 r 1 d 0 w 0 o 0 l 0 f 0 ...

"संख्या" सेल 0 के बराबर है यदि कोई अंक इनपुट नहीं है, और n + 1 यदि संख्या n इनपुट है। इनपुट "85" चिह्नित सेल पर लिया जाता है।

,[                     take input and start main loop
 [                     start number input loop
  [-<+>>>+<<]          copy input to tempinputcopy and inputcopy
  >-[---<+>]           put the number 85 in the cell where input was taken
  <[[-<]>>]            test whether input is less than 85; ending position depends on result of comparison
                       (note that digits are 48 through 57 while letters are 97 through 122)
  <[-]>                clean up by zeroing out the cell that didn't already become zero
  >[                   if input was a digit:
   <<,>>               get next input character
   >[-[-<++++++++++>]] multiply current value by 10 and add to current input
   ++++                set number cell to 4 (as part of subtracting 47)
   <[->+<]             add input plus 10*number back to number cell
   -[----->-<]         subtract 51
  <]                   move to cell we would be at if input were a letter
 <]                    move to input cell; this is occupied iff input was a digit

                       part 2: update/output word

 >>>                   move to number cell
 [                     if occupied (number was input):
  [>>]+[-<<]>>         remove existing marker 1s and decrement number cell to true value
  [[>>]+[<<]>>-]       create the correct amount of marker 1s
 ]
 +[>>]<[-]             zero out cell containing next letter from previous word
 <[<<]>                return to inputcopy
 [->[>>]<+<[<<]>]      move input copy to next letter cell
 >[>.>]                output word so far
 +[                    do until newline is read:
  >[-]<                zero out letter cell
  ,.                   input and output next letter or newline
  [->+>+<<]            copy to letter cell and following cell
  >>----------         subtract 10 to compare to newline
 ]
 <[<<]>-               zero out number cell (which was 1 to make copy loop shorter)
 <<<,                  return to input cell and take input
]                      repeat until end of input

4

अजगर 3.6+, 172 195 156 123 122 121 104 बाइट्स

import re
def f(l,n=0,w=""):
 for s in l:t=re.match("\d*",s)[0];n=int(t or n);w=w[:n]+s[len(t):];yield w

इसे ऑनलाइन आज़माएं!

व्याख्या

मैंने नियमित एक्सप्रेशंस का उपयोग किया और उसका उपयोग किया। इससे कम से कम 17 बाइट बच गईं। :

t=re.match("\d*",s)[0]

जब स्ट्रिंग एक अंक से शुरू नहीं होती है, तो इस स्ट्रिंग की लंबाई होगी 0। इस का मतलब है कि:

n=int(t or n)

हो जाएगा nअगर tखाली है, और int(t)नहीं तो।

w=w[:n]+s[len(t):]

उस संख्या को निकालता है जिसे नियमित अभिव्यक्ति मिली है s(यदि कोई संख्या नहीं मिली है, तो यह 0वर्णों को हटा देगा , sअसत्य को छोड़ देगा) और nवर्तमान शब्द के टुकड़े के साथ पिछले शब्द के पहले सभी वर्णों को बदल देता है ; तथा:

yield w

वर्तमान शब्द का उत्पादन करता है।


4

हास्केल, 82 81 बाइट्स

tail.map concat.scanl p["",""]
p[n,l]a|[(i,r)]<-reads a=[take i$n++l,r]|1<2=[n,a]

लेता है और तार की सूची देता है।

इसे ऑनलाइन आज़माएं!

        scanl p["",""]        -- fold function 'p' into the input list starting with
                              -- a list of two empty strings and collect the
                              -- intermediate results in a list
  p [n,l] a                   -- 1st string of the list 'n' is the part taken form the last word
                              -- 2nd string of the list 'l' is the part from the current line
                              -- 'a' is the code from the next line
     |[(i,r)]<-reads a        -- if 'a' can be parsed as an integer 'i' and a string 'r'
       =[take i$n++l,r]       -- go on with the first 'i' chars from the last line (-> 'n' and 'l' concatenated) and the new ending 'r'
     |1<2                     -- if parsing is not possible
       =[n,a]                 -- go on with the previous beginning of the word 'n' and the new end 'a'
                              -- e.g. [         "aa",     "2h",      "3ed",       "ing"       ] 
                              -- ->   [["",""],["","aa"],["aa","h"],["aah","ed"],["aah","ing"]]
  map concat                  -- concatenate each sublist
tail                          -- drop first element. 'scanl' saves the initial value in the list of intermediate results. 

संपादित करें: -1 बाइट @ धन्यवाद के लिए धन्यवाद।


1
सामान्य हास्केल गोल्फ ज्ञान के विपरीत, आप वास्तव में हेलिक्स फंक्शन को इन्फिक्स ऑपरेटर के रूप में परिभाषित नहीं करके यहां एक बाइट बचा सकते हैं ।
नाइट्रोडन

@ निट्रोडन: अच्छी तरह से देखा! धन्यवाद!
नीमी

3

जाप, 19 18 17 बाइट्स

शुरू में अरनौलड के जेएस समाधान से प्रेरित ।

;£=¯V=XkB ªV +XoB

कोशिश करो

                      :Implicit input of string array U
 £                    :Map each X
   ¯                  :  Slice U to index
      Xk              :    Remove from X
;       B             :     The lowercase alphabet (leaving only the digits or an empty string, which is falsey)
          ªV          :    Logical OR with V (initially 0)
    V=                :    Assign the result to V for the next iteration
             +        :  Append
              Xo      :  Remove everything from X, except
;               B     :   The lowercase alphabet
  =                   :  Reassign the resulting string to U for the next iteration

2

जेली , 16 बाइट्स

⁹fØDVo©®⁸ḣ;ḟØDµ\

इसे ऑनलाइन आज़माएं!

यह काम किस प्रकार करता है

⁹fØDVo©®⁸ḣ;ḟØDµ\  Main link. Argument: A (array of strings)

              µ\  Cumulatively reduce A by the link to the left.
⁹                     Yield the right argument.
  ØD                  Yield "0123456789".
 f                    Filter; keep only digits.
    V                 Eval the result. An empty string yields 0.
     o©               Perform logical OR and copy the result to the register.
       ®              Yield the value in the register (initially 0).
        ⁸ḣ            Head; keep that many character of the left argument.
          ;           Concatenate the result and the right argument.
            ØD        Yield "0123456789".
           ḟ          Filterfalse; keep only non-digits.


1

रेटिना 0.8.2 , 69 बाइट्स

+`((\d+).*¶)(\D)
$1$2$3
\d+
$*
+m`^((.)*(.).*¶(?<-2>.)*)(?(2)$)1
$1$3

इसे ऑनलाइन आज़माएं! लिंक में कठिन परीक्षण मामले शामिल हैं। स्पष्टीकरण:

+`((\d+).*¶)(\D)
$1$2$3

अक्षरों के साथ शुरू होने वाली सभी पंक्तियों के लिए, पिछली पंक्ति से संख्या की प्रतिलिपि बनाएँ, जब तक कि सभी पंक्तियाँ एक संख्या से शुरू न हों।

\d+
$*

संख्या को unary में बदलें।

+m`^((.)*(.).*¶(?<-2>.)*)(?(2)$)1
$1$3

1पिछली पंक्ति से संबंधित पत्र के साथ सभी को बदलने के लिए संतुलन समूहों का उपयोग करें । (यह 1एस के सभी रनों को बदलने की तुलना में थोड़ा गोल्फर निकला ।)




1

ग्रूवी , 74 बाइट्स

{w="";d=0;it.replaceAll(/(\d*)(.+)/){d=(it[1]?:d)as int;w=w[0..<d]+it[2]}}

इसे ऑनलाइन आज़माएं!

स्पष्टीकरण:

{                                                                        }  Closure, sole argument = it
 w="";d=0;                                                                  Initialize variables
          it.replaceAll(/(\d*)(.+)/){                                   }   Replace every line (since this matches every line) and implicitly return. Loop variable is again it
                                     d=(it[1]?:d)as int;                    If a number is matched, set d to the number as an integer, else keep the value
                                                        w=w[0..<d]+it[2]    Set w to the first d characters of w, plus the matched string


0

पर्ल 5 -p , 45 41 बाइट्स

s:\d*:substr($p,0,$l=$&+$l*/^\D/):e;$p=$_

इसे ऑनलाइन आज़माएं!

स्पष्टीकरण:

s:\d*:substr($p,0,$l=$&+$l*/^\D/):e;$p=$_ Full program, implicit input
s:   :                           :e;      Replace
  \d*                                       Any number of digits
      substr($p,0,              )           By a prefix of $p (previous result or "")
                  $l=  +                      With a length (assigned to $l) of the sum
                     $&                         of the matched digits
                          *                     and the product
                        $l                        of $l (previous length or 0)
                           /^\D/                  and whether there is no number in the beginning (1 or 0)
                                                (product is $l if no number)
                                    $p=$_ Assign output to $p
                                          Implicit output


0

05AB1E , 20 19 17 बाइट्स

õUvyþDõÊi£U}Xyá«=

इसे ऑनलाइन आज़माएं या सभी परीक्षण मामलों को सत्यापित करें

स्पष्टीकरण:

õ                  # Push an empty string ""
 U                 # Pop and store it in variable `X`
v                  # Loop `y` over the (implicit) input-list
 yþ                #  Push `y`, and leave only the digits (let's call it `n`)
   DõÊi  }         #  If it's NOT equal to an empty string "":
       £           #   Pop and push the first `n` characters of the string
        U          #   Pop and store it in variable `X`
          X        #  Push variable `X`
           yá      #  Push `y`, and leave only the letters
             «     #  Merge them together
              =    #  Print it (without popping)

0

आम लिस्प, 181 बाइट्स

(do(w(p 0))((not(setf g(read-line t()))))(multiple-value-bind(a b)(parse-integer g :junk-allowed t)(setf p(or a p)w(concatenate'string(subseq w 0 p)(subseq g b)))(format t"~a~%"w)))

इसे ऑनलाइन आज़माएं!

Ungolfed:

(do (w (p 0))   ; w previous word, p previous integer prefix (initialized to 0)
    ((not (setf g (read-line t ()))))   ; read a line into new variable g
                                        ; and if null terminate: 
  (multiple-value-bind (a b)            ; let a, b the current integer prefix
      (parse-integer g :junk-allowed t) ; and the position after the prefix
    (setf p (or a p)                    ; set p to a (if nil (no numeric prefix) to 0)
          w (concatenate 'string        ; set w to the concatenation of prefix
             (subseq w 0 p)             ; characters from the previous word 
             (subseq g b)))             ; and the rest of the current line
    (format t"~a~%"w)))                 ; print the current word

हमेशा की तरह, कॉमन लिस्प के लंबे पहचानकर्ता इसे गैर-विशेष रूप से पीपीसीजी के लिए उपयुक्त बनाते हैं।



0

सी # (विजुअल सी # इंटरएक्टिव कंपाइलर) , 134 बाइट्स

a=>{int l=0,m,n;var p="";return a.Select(s=>{for(m=n=0;s[m]<58;n=n*10+s[m++]-48);return p=p.Substring(0,l=m>0?n:l)+s.Substring(m);});}

इसे ऑनलाइन आज़माएं!

-9 बाइट्स @ASCIIOnly को धन्यवाद!

कम गोल्फ वाले ...

// a is an input list of strings
a=>{
  // l: last prefix length
  // m: current number of digits
  // n: current prefix length
  int l=0,m,n;
  // previous word
  var p="";
  // run a LINQ select against the input
  // s is the current word
  return a.Select(s=>{
    // nibble digits from start of the
    // current word to build up the
    // current prefix length
    for(m=n=0;
      s[m]<58;
      n=n*10+s[m++]-48);
    // append the prefix from the
    // previous word to the current
    // word and capture values
    // for the next iteration
    return
      p=p.Substring(0,l=m>0?n:l)+
      s.Substring(m);
  });
}


यह बहुत अच्छा है :) मैं बदल l=n>0?n:lगया l=m>0?n:lक्योंकि यह मामला नहीं उठा रहा था जब एक रेखा शून्य ( 0jkl) के साथ शुरू हुई थी । पारितोषिक के लिए धन्यवाद!
दाना

0

स्काला , 226 129 102 बाइट्स

धन्यवाद @ ASCII- केवल उनके काम के लिए यहां (और ग्रूवी जवाब के लिए)।

s=>{var(w,d,r)=("",0,"(\\d*)(.+)".r)
s map(_ match{case r(a,b)=>{if(a>"")d=a.toInt
w=w.take(d)+b}
w})}

इसे ऑनलाइन आज़माएं!


: | दोनों लिंक समान हैं
केवल

हाँ, संपादन। मुझे नहीं पता था कि इसे कैसे चालू किया जाए और मैं जल्दी में था इसलिए मैंने जो किया उसे संशोधित नहीं किया।
वी। कोर्टोइस



हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.