क्या घेर रहा है?


18

मैं हमेशा से कुछ पाठ को घेरना चाहता #हूं, लेकिन मुझे यह पता लगाने में परेशानी होती है कि मैंने इस चुनौती में क्या घेर लिया है, आप इसे करने के लिए एक कार्यक्रम लिख रहे हैं

उदाहरण

इनपुट / आउटपुट एक नई रेखा द्वारा अलग किए जाते हैं।

###
#a#
###

a
 #
#a#
 #

a
  ###  
 # a #
# b c #
#######

  a 
 b c 
ABCDHIJ
E####GK
F# M #L
#   N#O
P####

  M 
   N
###A###
#C#B#o#
#d###e#
 # go#
  ###

C   o
d   e
  go

कल्पना

  • #s पाठ के एक ब्लॉक को "घेर" रहे हैं
  • # हमेशा एक दूसरे से सटे रहेंगे (तिरछे सहित)
  • # हमेशा एक बंद आकार बनेगा
  • केवल एक #आकृति होगी
  • अवतल आकृति की स्थिति में, छेद रिक्त स्थान से भरे होने चाहिए।
  • व्हॉट्सएप को आउटपुट में संरक्षित किया जाना चाहिए

पहले तो मैं पसंद था .. बस #एस को बाहर निकालो और तुम वहाँ जाओ ... और फिर यह मुश्किल हो गया।
बाल्ड बंता

मुझे जावास्क्रिप्ट में इनपुट प्राप्त करने में समस्या हो रही है और न्यूलाइन द्वारा विभाजित करना ... मुझे इनपुट कैसे प्राप्त करना है? क्या इसे \nइनपुट की प्रत्येक पंक्ति के बाद स्वरूपित किया जा सकता है और मेरे कार्यक्रम में एक फ़ंक्शन परम के रूप में पारित किया गया है या क्या?
बाल्ड बंथा

1
Whats वैध इनपुट वर्णों का समूह है?
टन हास्पेल

क्या एमएन उदाहरण के आउटपुट पर कोई त्रुटि है ? इसके आउटपुट में केवल पाठ घिरा हुआ होता है, _M_\n___N(स्वरूपण समस्याओं के कारण रिक्त स्थान के बजाय अंडरस्कोर का उपयोग करना), जबकि एबीसी और कोडगो उदाहरणों में आउटपुट में व्हॉट्सएप भी शामिल है जहां # इनपुट में थे। केवल # से से घिरा हुआ पाठ मुद्रित करने के लिए है, तो के उत्पादन में एबीसी उदाहरण होना चाहिए _a_\n_b_c_(के बजाय __a_\n_b_c) और के उत्पादन में Codego उदाहरण होना चाहिए Co\nde\n_go(के बजाय C___o\nd___e\n__go)।
महामारी

@epidemian आह, अच्छा कैच। मैंने MNउदाहरण तय किया है । जैसा कि एम के बाद एक अतिरिक्त स्थान नहीं होना चाहिए था
डाउनगोट

जवाबों:


6

पर्ल, 144 138 132 129 128 128 126 126 बाइट्स

के लिए +2 शामिल है -p0

कोड मानता \0एक मान्य इनपुट चरित्र नहीं है (कम से कम अंदर #)।

STDIN पर इनपुट के साथ चलाएँ:

surround.pl < surround.txt

surround.pl:

#!/usr/bin/perl -p0
/^#[^#\0]/m&&s/^|[^#\n\0]\0/\0\0/mg,s%.%s/.(.*)/$+\0/g;/#/&&reverse"\n",/^./mg%seg until$?++<$$_++;y/\0/#/;s/^#*\n|#+$|^#//mg;y;#; 

कोड के रूप में काम करता है, लेकिन दावा किए गए स्कोर के लिए \0और \nउनके शाब्दिक संस्करणों द्वारा प्रतिस्थापित करता है । ध्यान दें कि पंक्ति के अंत में एक जगह है । कोड कई बार बहुत कम होता है, इसलिए आपको आउटपुट के लिए 30 सेकंड तक इंतजार करना पड़ सकता है।

व्याख्या

मैं ऑर्थोगोनल दिशाओं में बाहर से \0बंद के साथ एक फ्लडफ़िल करने जा रहा हूं #। उसके बाद मैं #पक्षों से अलग हो जाऊंगा और उन सभी को बदल दूंगा जो रिक्त स्थान द्वारा छोड़े गए हैं। फ्लडफिल में सभी दिशाओं को संभालने से बचने के लिए मैं बार-बार टारगेट एरिया को घुमाऊंगा और केवल फ्लडफिल को दाएं से बाएं

/^#[^#\0]/m                   The rotation is written such that it slices
                              off the first column. That is ok unless the
                              first column contains a # that is followed by
                              something that could be the inside. There is
                              no newline inside the [] because short lines
                              will get extended during the rotation and 
                              the character following the # will end
                              up as a \0 and match in a later round
    &&s/^|[^#\n\0]\0/\0\0/mg  In case the # could be an interior border I
                              will add two columns of \0's in front. One 
                              will be a sacrifice for the rotation, the
                              other column will end up at the end of the area
                              after two rotations and function as seed for the
                              floodfill. This regex also does one step of
                              the floodfill from the back to the front.
                              After a certain number of loops we are certain
                              to get to a first column that must not be 
                              dropped so at some point the last column is 
                              guaranteed to consist of only \0. And we only need
                              to fill backward since the rotations will make
                              any direction backward at some point

s%.%  process column  %seg    I will replace each character (including \n)
                              in the string by the next column in reversed
                              order or an empty string if there are no more
                              interesting columns. This is therefore a right
                              rotation. There are less columns than
                              characters so this loop is long enough

    s%.%s/.(.*)/$+\0/g        Remove the next (now first) character from each
                              row (so remove the column). Because the
                              original area is not necessarily a rectangle
                              add a \0 at the end of the row so we won't run
                              out out of columns (this would cause shorter
                              rows to have no entry in the new rotated row)
                              This will not do anything for empty lines so
                              they DO get squeezed out. But that is not a 
                              problem since the problem statement says there
                              will be only one # shape so any empty lines
                              are can be safely dropped (this would not be
                              so if there could be multiple # shapes because
                              that could create a new surrounded area

    /#/                       Check if any of the remaining columns still 
                              has a #. If not all remaining columns are on 
                              the outside and can be dropped
       &&reverse"\n",/^./mg   Collect the column and add a \n to its reverse

 until$?++<$$_++              Keep doing this until we get to a multiple of
                              65536 rotations when $? waraps back around to 0
                              (this is a multiple of 4 so the area is left
                              unrotated) and an area we have seen before
                              ($$_ >= 1)
                              (so all slicing and flood filling is finished)
                              $_ having been seen in a previous rotations is
                              not a problem (though rather tricky to prove)

इस बिंदु पर जैसे

AB##J
E####GK
F# M #L
#   N#O
P####

द्वारा प्रतिस्थापित किया जाएगा:

0000000
0####00
0# M #0
#   N#0
0####00

मूल रूप से सभी स्तंभ और पंक्तियाँ जो सीधे अंदर की ओर नहीं होती हैं, उन्हें बंद कर दिया गया है। बाहर के किसी भी वर्ण को बदल कर 0 कर दिया गया है। सबसे ऊपर और दाईं ओर \ 0 की अतिरिक्त परत है। तो जो कुछ बचा है वह सफाई है:

y/\0/#/                       Replace any outside that is left by #
s/^#*\n|#+$|^#//mg            Removes the first two and last line (the only 
                              lines that can consist of purely #)
                              Removes any trailing #
                              Removes the first column of #
y;#; \n;                      Replace any remaining # by space since they 
                              are needed to fill the concave parts
                              The final \n; is not written since it is implicit
                              in the -p loop

क्या आपके फ्लडफ़िल्स आंतरिक कोनों के आसपास काम करते हैं, अगर कोई था?
mbomb007

@ mbomb007: हां, चूंकि क्षेत्र को बार-बार घुमाया जाता है, इसलिए यह किसी भी मोड़दार गलियारों का पालन करने में सक्षम है। बहुत मोटी दीवारों को कम करने से पहले बहुत जल्दी रुकने वाला लूप केवल दोष है जहां तक ​​मुझे पता है
टन हास्पेल

@ mbomb007: Aaaand मोटी दीवार का दोष अब हल हो गया है
टन हास्पेल

अपने समाधान को कॉपी-पेस्ट करना जैसे कि (एस्कैप्ड चार्ज को बदलना नहीं है), आउटपुट केवल #छीन लिए गए इनपुट के साथ है । कृपया मेरे बैश सत्र को सत्यापित करें: codepad.org/YbCzB4O4
ardnew

@ardnew: ओह, सॉरी। अंतिम अद्यतन के लिए पूर्ण समाधान को निरस्त नहीं किया था, और मुझे थोड़ी देर तक प्रतिस्थापित करना चाहिए था। अब ठीक है, कृपया फिर से प्रयास करें
टन हास्पेल

4

जावास्क्रिप्ट, 485 464 427 417 396 390 बाइट्स

s='indexOf';k='lastIndexOf';h="#";t=b=>b[0].map((x,i)=>b.map(x=>x[i]));i=>{m=i.split`
`;for(h of m){m[m[s](h)]=h.split``;}for(y=0;y<m.length;y++){for(z=x=0;x<m[y].length;x++){if(m[y][x]==h)break;if(m[y][s](h)<x&&m[y][k](h)>x)z++;q=t(m);if(q[y][s]h)<x&&m[y][k](h)>x)z++;if(z>2)m[y][x]=h}}for(p of m){v=p.join``.match(/\S/);e=v?p.join``:'';m[m[s](p)]=e;}m=m.join`
`;return m.replace(#/g," ")}

हाँ। मैंने कोशिश की। और, हालांकि मैं 485 बाइट्स में हूं, मैं जीत रहा हूं क्योंकि किसी और को इस सवाल का जवाब देने जैसा महसूस नहीं हुआ। तो, हा!
और यह भी, मैं अच्छी तरह से जानता हूं कि मैं इस भार को पूरा कर सकता हूं, मैं इस समय थक गया हूं ... हूं अब मैं 396 पर हूं सबसे ज्यादा गोल्फ के लिए कॉनर के लिए धन्यवाद ...: डी


1
के साथ बाहर छोरों के अंदर चर की घोषणाy=z=0
Bálint
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.