পাঠ্যপুস্তক বাছাই করুন


31

পাঠ্যপুস্তক বাছাই করুন

স্কুল শীঘ্রই শুরু হচ্ছে (যদি এটি ইতিমধ্যে না থাকে) এবং তাই আমাদের পাঠ্যপুস্তকগুলি যথাযথভাবে পাওয়ার সময় এসেছে। আপনার বইগুলিকে বর্ণমালা অনুসারে বাছাই করতে হবে তবে এটির জন্য খুব বেশি সময় লাগে সুতরাং এটি করার জন্য আপনি কোনও প্রোগ্রাম লেখার সিদ্ধান্ত নেন।

উদাহরণ

ইনপুট:

 _
| |  _
|F| | |
|o|_|P|
|o|B|P|
| |a|C|
| |r|G|
|_|_|_|

আউটপুট:

   _
  | |_
  |F| | 
 _|o|P|
|B|o|P|
|a| |C|
|r| |G|
|_|_|_|

ইনপুট

ইনপুট হ'ল বইয়ের সেট যা বর্ণানুক্রমিকভাবে পুনর্বিন্যাস করা প্রয়োজন। এটা তোলে উপস্থিত থাকবে শুধুমাত্র: |, _, , এবং A-Za-z। বইগুলির শিরোনামগুলি শীর্ষ-নীচে উল্লম্বভাবে পড়া হয়।

একটি আয়তক্ষেত্র ফিট করার জন্য আপনি ইনপুটটি সাদা স্পেসের সাথে প্যাডযুক্ত ধরে নিতে বেছে নিতে পারেন। যদি আপনি নিজের ইনপুটটি সাদা স্পেস দিয়ে প্যাড করে থাকেন তবে দয়া করে আপনার উত্তরে এটি উল্লেখ করুন।

আপনার প্রোগ্রামটি পরিচালনা করতে যে সর্বোচ্চ সর্বাধিক বইয়ের উচ্চতা হবে তা ব্যর্থতা ছাড়াই 5,120 লাইন লম্বা।

বইগুলি সর্বদা 1-পুরু হবে এবং সেগুলি সর্বদা ইনপুটটিতে অন্তত একটি বই থাকবে

আউটপুট

আউটপুটটির বর্ণমালার ক্রমে সংগঠিত বইগুলির একই সেট হওয়া দরকার। বইগুলির উচ্চতা অবশ্যই একই থাকবে এবং পুনরায় সাজানোর সময় শিরোনামের শীর্ষ থেকে একই ফাঁক থাকতে হবে।

বইগুলি বর্ণমালা অনুসারে বাছাই করা উচিত। যদি আপনার ভাষা কোনও ধরণের ক্রিয়াকলাপ খেলা করে তবে আপনি এটি ব্যবহার করতে পারেন। অন্যথায় আপনি বর্ণিত বর্ণমালা অনুসারে এখানে বর্ণিত ব্যবহার করতে পারেন ।

বইয়ের শিরোনাম উদাহরণ

 _
| |
| |
|F|
|o|
|o|
| |
| |
|B|
|a|
|r|
| |
| |
|_|

এই বইয়ের শিরোনামটি হ'ল:

"Foo  Bar"

বইয়ের শিরোনামগুলিতে কেবল অক্ষর এবং স্পেস থাকবে।

ট্রেলিং হোয়াইটস্পেস অনুমোদিত


জয়লাভ

এটি তাই বাইট জিতে সংক্ষিপ্ততম কোড।


বইগুলির "উচ্চতা" সীমাবদ্ধতা আছে?
The_Basset_Hound

@ বাসসাহাউন্ড নং, বর্তমানে নেই তবে 2 ^ 64-1 লম্বা বইগুলি সমর্থন করার বিষয়ে চিন্তা করার দরকার নেই। আপনার প্রোগ্রামটি ব্যর্থ না হয়ে হ্যান্ডেল করার জন্য আমি সর্বোচ্চ 5,120 "লম্বা"
রাখব

ঠিক আছে, দুর্দান্ত।
The_Basset_Hound

@ ইথ প্রডাকশনগুলি হ্যাঁ, বইয়ের শিরোনামগুলিতে কেবল অক্ষর এবং স্পেস থাকবে
ডাউনগোট

1
বইয়ের বেধ সম্পর্কে কী? সর্বদা 1 কলাম?
coredump

উত্তর:


5

সিজেম, 60 বাইট

qN/:Kz1>2%{_{" _"-}#>}$_{_'_#>,}%2,\*2ew{:e>('|*K,Se[}%.\zN*

আমি আমার পাইথন উত্তরটি পোর্ট করার চেষ্টা করেছি, এটি @ রেটোকোরাদির পদ্ধতির অনুরূপ ।

এটি অনলাইনে চেষ্টা করুন । একটি আয়তক্ষেত্র গঠনের জন্য ইনপুটটি ফাঁকা জায়গায় প্যাড করা উচিত।


7

পাইথন 3, 231 বাইট

def f(s):
 *M,L=sorted(["".join(c).strip()for c in zip(*s.split("\n"))][1::2],key=lambda x:x[1:-1].strip()),;l=m=0
 for r in L+[""]:n=len(r);M+="|"*~-max(n,l),r;m=max(n,m);l=n
 for r in zip(*[x.rjust(m)for x in M]):print(*r,sep="")

শুধু একটি দ্রুত হ্যাক। বইগুলি জিপ করুন, বাছাই করুন, পুনরায় রিপ করুন, কলামগুলি |যখন রয়েছে তখন তার যত্ন নিয়ে ।

একটি মাল্টলাইন স্ট্রিং ইনপুট করুন, আয়তক্ষেত্রের পিছনে স্থানগুলির সাথে প্যাড করুন। প্রয়োজনের তুলনায় আউটপুটে প্রতিটি লাইনে আরও একটি ট্রেলিং স্পেস রয়েছে।

Ungolfed

def f(s):
  new_cols = []

  # Zip columns, removing the spaces above each book
  # [1::2] is to skip columns of |s, keeping only the books
  books = ["".join(c).strip() for c in zip(*s.split("\n"))][1::2]

  # Sort based on title, [1:-1] to remove the top and bottom _s
  books.sort(key=lambda x:x[1:-1].strip())

  last = 0
  max_height = 0

  for book in (books + [""]):
    height = len(book)

    # Append |s as necessary for the left edge of the current book
    # The +[""] above is for the right edge of the last book
    new_cols.extend(["|"*(max(height, last) - 1), book])

    max_height = max(height, max_height)
    last = height

  # Rezip columns, add back spaces as necessary and print
  for col in zip(*[x.rjust(max_height) for x in new_cols]):
      print("".join(col))

দয়া করে একটি অবারিত সংস্করণ দেখতে পছন্দ করবেন, যদি এটি সম্ভব হয় তবে দয়া করে।
পিওরফেরেট

1
@ পিফেরেফেরেট কয়েকটি মন্তব্য সহ একটি অবারিত সংস্করণ যুক্ত করেছেন
Sp3000

6

রুবি (209 204 200 198 বাইট)

a=n.tr(?|,' ').split$/
i=!p;t=a.map(&:chars).transpose.map(&:join).select{i^=a}.sort_by{|s|s[/[A-Z]/][0]}
x=0;t.map{|t|y=0;u=p;t.chars{|c|u&&a[y][x,3]=?|*3;a[y][x+1]=c;y+=1;u|=c=='_'};x+=2}
a.join$/

transposeএই সমাধান ফাংশন প্রয়োজন যে সব লাইন, একই দৈর্ঘ্যের অত: পর ইনপুট হোয়াইটস্পেস সঙ্গে padded করা প্রয়োজন।

ব্যাখ্যা

def sort_books(n)
  a = n.tr(?|,' ')  # pre-emptively remove all the '|'.
    .split $/         # and split into an array of lines
                      # ($/ is the INPUT_RECORD_SEPARATOR, typically "\n")
                      # we're going to write our answer into `a` later

  i = !p # i = true; we'll use this as a flip-flop variable
         # Kernel#p returns nil with no args

  # we're now going to get a sorted array of book titles (t)
  t = a.map(&:chars)  # break array into nested array of every character
       .transpose     # and transpose the entire array
       .map(&:join)   # this gives us an array of "horizontal" book titles with dividers

       .select { i ^= a } # select every second line
                          # (i.e. just titles without dividers)
                          # `i` starts off true
                          # `a` is truish (it's our original array)
                          # `^=` is the bitwise xor assignment,
                          #      it will alternate true/false on each execution

       .sort_by { |s| s[/[A-Z]/][0] } # sort by the first alphabetical char

  # use counters for less chars than `each_with_index`
  # x and y are cartesian coordinates in the final array

  x = 0 # start in the left-hand column

  # go through each title
  t.map { |t|
    y = 0 # each book title starts on the top row

    u = p # `u` is "have we reached the book's spine yet?" (or are we above it?)
          # `u` starts off false and we'll set it true when we see the first '_'
          # after which we'll start writing the book's edges

    # go through each character of each title, including leading spaces and '_'s
    # this will "descend" down the array writing each letter of the title
    # along with the "edges"
    t.chars { |c|

      u &&                  # if we're on the spine
        a[y][x,3] = ?|*3;   # write ||| in the next 3 columns
                            # the middle | will be overwriten by the title char

      a[y][x+1] = c; # write the current title char into the second (x+1) column

      y+=1; # descend to the next row

      u |= c == '_' # Since '_' is the top and bottom of the book,
                    # this toggles whether we're on the spine
    }
    x += 2 # jump to the right 2 columns and start on the next title
  }
  a.join $/ # hopefully this is obvious
end

কোন rubyসংস্করণ প্রয়োজন? প্রশ্ন থেকে নমুনা ইনপুটটির জন্য ২.১.২ সহ আমি পেয়েছি "` ট্রান্সপোজ ": উপাদানটির আকার পৃথক হয় (should হওয়া উচিত ২) (সূচিপত্র)।
manatwork

@ মানাটওয়ার্ক দুঃখিত, আমার উল্লেখ করা উচিত ছিল যে ফাংশনটির সাদা অংশের দ্বারা প্যাড করা একটি আয়তক্ষেত্র প্রয়োজন। আমি উত্তর আপডেট করব।
ড্যানিয়েল ফোনে

1
উহু. প্রকৃতপক্ষে. দুঃখিত, এটি বিশদভাবে বিশ্লেষণ করা হয়নি। আজই নয়, তাই আমি কেবল উল্লেখ করছি gsub(?|,' ')tr(?|,' ')
manatwork

5

পাইথন 2 - 399 বাইট

প্রত্যাশা করে ইনপুটটির পেছনের নতুন লাইন নেই।

import sys;a=str.strip;L=list(sys.stdin);b=len(L[-1])/2;s=['']*b
for l in L:
    i=0
    for c in l[1:-1:2]:s[i]+=c;i+=1
s=sorted([a(a(x),'_')for x in s],key=a);y=map(len,s);m=[y[0]]+[max(y[i],y[i+1])for i in range(b-1)]
for i in range(max(y)+1):
    h=max(y)-i;l='';j=0
    for x in s:l+='|'if h<m[j]else' ';l+='_' if h==len(x)else' 'if h>len(x)else x[-h-1];j+=1
    print l+('|'if h<y[-1]else' ')
print'|_'*b+'|'

5

সিজেম, 75 66 65 বাইট

qN/z(;2%{_{" _"#W=}#>}$es:P;_W>+{_'_#_Pe<)S*2$,'|*.e<@@:P;}%);zN*

এটি স্পেস সহ প্যাডযুক্ত ইনপুটটি একটি আয়তক্ষেত্র গঠনের প্রত্যাশা করে।

এটি অনলাইনে চেষ্টা করুন

আড্ডায় ট্রিমিংয়ের স্ট্রিং সম্পর্কিত পরামর্শের পাশাপাশি @ স্পেন 3000 এবং @ ডেনিসকে ধন্যবাদ জানাতে $ অপারেটর একটি যুক্তি হিসাবে একটি ব্লক নিতে পারে ।

আমি এখনও দ্বিতীয় লুপটি নিয়ে পুরোপুরি খুশি নই। তবে আরও ভাল সাফল্য ছাড়াই কয়েকটি বিকল্পের চেষ্টা করার পরে, আমি ক্লান্ত হয়ে পড়ছি।

ব্যাখ্যা:

qN/     Read input and split at newlines.
z       Transpose to turn columns into lines.
(;      Drop first line...
2%      ... and every second line after that, to keep only lines with titles.
{       Start block that maps lines for sort.
  _       Copy.
  {       Start block for matching first title letter.
    " _"#   Search for character in " _".
    W=      True if not found.
  }#      End match block. This gets position of first character not in " _".
  >       Trim leading spaces and '_.
}$      End of sort block. Lines are now sorted alphabetically by title.
es:P;   Store large number in P. P holds previous position of '_ in following loop.
_W>+    Repeat last title line, so that final separator line is generated.
{       Loop over title lines.
  _'_#    Find position of '_.
  _       Copy position. Will store it in P after the minimum has been determined.
  P       Get position of '_ in previous line.
  e<)     Take the smaller of the two '_ positions, and decrement.
  S*      Generate leading spaces from the count.
  2$,     Get length of title line.
  '|*     Generate full line length sequence of '|.
  .e<     Overlap spaces with '| to give the final separator.
  @@      Get '_ position to top, and stack in order for next loop iteration.
  :P;     Store '_ position in P.
}%      End of loop over lines.
);      Remove last line, which was a repeat.
z       Transpose to turn lines into columns again.
N*      Join with newline characters.

1

স্কেলা 359 341 বাইট

সমস্ত লাইন একই দৈর্ঘ্যের হবে বলে আশা করে (অর্থাত্ স্পেস দিয়ে প্যাডযুক্ত)

(s:String)=>{def f(s:String)=(" "/:s)((r,c)=>if(r.last=='|'||c=='_')r+"|"else r+" ").init;val h=s.lines.toSeq.transpose.collect{case s if s.exists(_.isLetter)=>s.mkString}.sortBy(_.filter(!_.isWhitespace));((Seq(f(h(0)))/:h.sliding(2))((s,l)=>s:+l(0):+f(l.minBy(_.indexOf('_')))):+h.last:+f(h.last)).transpose.map(_.mkString).mkString("\n")}

নিরবচ্ছিন্ন এবং মন্তব্য করেছে:

//anonymous method that takes the books ascii-art string
(s: String) => {

  //method to convert the middle to a border
  def f(s: String) =
    //fold (starting from non empty string since we use `.last`)
    (" "/:s)((r,c) =>
      if(r.last=='|'||c=='_')r+"|"
      else r+" "
    ).init.tail

  //h is a sequence of strings of the middle of the books
  val h =
    //transpose lines of input string, and take only the lines the contains letters (middle of the books)
    s.lines.toSeq.transpose.collect{
      case s if s.exists(_.isLetter) =>
        s.mkString
    }.sortBy(_.filter(!_.isWhitespace)) //sort the books by title (actually by "_$title" since we filter out just whitspaces)

  //fold over pairs of books and add the last manually
  (
    (Seq(f(h(0)))/:h.sliding(2))((s,l) =>
      s :+ l(0) :+ f(l.minBy(_.indexOf('_'))) //convert higher book to border and append to folded accumulator
    ) :+ h.last :+ f(h.last) //add last book manually
  ).transpose.map(_.mkString).mkString("\n") //transpose back and construct the output string
}
আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.