代做COMP9021, Trimester 3, 2024 Assignment 2代写Python语言

Assignment 2

COMP9021, Trimester 3, 2024

1   General matters

1.1   Aim

The purpose of the assignment is to:

• develop your problem solving skills;

• design and implement the solutions to problems in the form. of medium sized Python programs;

• practice the design and implementation of search techniques, with recursion as a good approach;

• design and implement an interface based on the desired behaviour of an application program;

• possibly practice using the re and numpy modules.

1.2   Submission

Your program will be stored in a file named crossword.py.  After you have developed and tested your program, upload it using Ed (unless you worked directly in Ed).  Assignments can be submitted more than once; the last version is marked. Your assignment is due by November 18, 10:00am.

1.3   Assessment

The assignment is worth 13 marks. It is going to be tested against a number of inputs.  For each test, the automarking script. will let your program run for 30 seconds.

Assignments can be submitted up to 5 days after the deadline.  The maximum mark obtainable reduces by 5% per full late day, for up to 5 days.  Thus if students A and B hand in assignments worth 12 and 11, both two days late (that is, more than 24 hours late and no more than 48 hours late), then the maximum mark obtainable is 11.7, so A gets min(11.7; 12) = 11.7 and B gets min(11.7; 11) = 11.

The outputs of your programs should be exactly as indicated.

1.4   Reminder on plagiarism policy

You are permitted, indeed encouraged, to discuss ways to solve the assignment with other people.  Such discussions must be in terms of algorithms, not code.  But you must implement the solution on your own. Submissions are routinely scanned for similarities that occur when students copy and modify other people’s work, or work very closely together on a single implementation. Severe penalties apply.


2    Solving crosswords

2.1   General description

The aim is to fill in a crossword grid, in which some letters might have been placed already, in one of two ways:

• being given the collection of all missing entries in an underlying solution to the crossword, find a way to place those entries in the grid (in one of possibly more than one way);

• being given a collection of words, find a way to select and place some of those words in the grid so that it solves the puzzle (in one of possibly more than one way).

We will consider grids with at least 2 rows and at least 2 columns, and such that any cell is next to another cell, though maybe not next to both horizontal and vertical cells; so any cell is part of a word of at least 2 letters, and by word we mean a word with at least 2 letters.

A presentation of a grid provided as input will be captured in a  .tex file, and a presentation of a solved puzzle will also be captured in a  .tex file; those  .tex files can be given as arguments to pdflatex to generate .pdf files that display grids in a pleasing graphical form, but play no role in the assignment.

The code will be all about the design and implementation of a Crossword class.  An object of class Crossword will provide an interface to work with a particular grid and collections of words of the kind just described; it will have methods for both problems previously described, and also benefit from the implementation of the __str__ () special method to display some information about the grid and the words it possibly contains already.

partial_grid_3 .tex is an example of a  .tex file for a grid in which letters have been placed already, that can be considered as an input file, and here is the  .pdf file created by pdflatex from this  .tex file.

solved_partial_grid_3 .tex is an example of a  .tex file for a solution to that grid, that can be considered as an output file, and here is the .pdf file created by pdflatex from this  .tex file.

The contents of all input  .tex files will be of the following form.

\documentclass{standalone}

\usepackage{pas-crosswords}

\usepackage{tikz}

\begin{document}

\begin{tikzpicture}

...

\end{tikzpicture}

\end{document}

For input files, what lies between \begin{tikzpicture} and \end{tikzpicture} is of the following form.

\begin{crossgrid}[h=_ ,  v=_]

\blackcases{  /  ,  . . . ,   /  }

\words[v]{  /  /  ,  . . . ,   /  /  }

\words[h]{  /  /  ,  . . . ,   /  /  }

\end{crossgrid}

Each of

  \blackcases{_/_ ,  . . . ,  _/_},

  \words[v]{_/_/_ ,  . . . ,  _/_/_} and

  \words[h]{_/_/_ ,  . . . ,  _/_/_}


is optional and can appear in any order.

• In \begin{crossgrid}[h=_,  v=_], the first and second occurrences of _ denote integers at least equal to 2, that represent the horizontal dimension and the vertical dimension of the grid, respec- tively; let h-dim and v-dim denote those dimensions, respectively.

• In \blackcases{_/_ ,  . . . ,  _/_}, each occurrence of _/_ denotes a slash-separated pair of integers (i; j) with  1  ≤  i  ≤  h-dim  and  1  ≤  j  ≤  v-dim,  to  denote  that  there  is  a black square at the intersection of the ith  column and the jth  row.  If \blackcases{_/_ ,  . . . ,  _/_} is present then there is at least one such pair, consecutive pairs being separated by a comma.

• In  \words[v]{_/_/_ ,  . . . ,  _/_/_},  each occurrence of _/_/_  denotes  a  slash-separated triple (i; j; w) where i and j are integers with 1  ≤ i  ≤ h-dim  and  1  ≤ j  ≤  v-dim,  and where w is a word of at least 2 letters that is vertically placed in the grid and whose first letter is at the intersec- tion of the ith  column and the jth  row. If \words[v]{_/_/_ ,  . . . ,  _/_/_} is present then there is at least one such triple, consecutive triples being separated by a comma.

• In  \words[h]{_/_/_ ,  . . . ,  _/_/_},  each occurrence of _/_/_  denotes  a  slash-separated triple (i; j; w) where i and j are integers with 1  ≤ i  ≤ h-dim  and  1  ≤ j  ≤  v-dim,  and where w is a word of at least 2 letters that is horizontally placed in the grid and whose first letter is at the intersection of the ith  column and the jth  row. If \words[h]{_/_/_ ,  . . . ,  _/_/_} is present then there is at least one such triple, consecutive triples being separated by a comma.

You can assume that the input is valid: no word or black square will start or extend beyond the dimensions of the grid.

For output files, what lies between \begin{tikzpicture} and \end{tikzpicture} is of the form. \gridcross{_ ,  . . .  _} where _ ,  . . .  _ is a comma-separated sequence of v-dim  strings, each of length h-dim, to denote from top to bottom each of the rows of the filled grid, using *s to represent black squares, and using uppercase letters for the grid’s entries.

In  .tex files, there can be spaces between tokens almost everywhere  (the pas-crosswords package actually prevents spaces to be used around some of the / characters).  Also, in  .tex files, the leftmost occurrence of a % marks the beginning of a comment that runs from this symbol included all the way to the end of the physical line, including the \n character.  This allows one to have many physical lines to represent a unique logical line, and can be used to, for instance, have \blackcases{  /  ,  . . . ,    /  }, \words[v]{  /  /  ,  . . . ,   /  /  },  \words[h]{  /  /  ,  . . . ,   /  /  } and  \gridcross{_ ,  . . .  _} split over more than one physical line and improve readability. It is therefore advisable to process a  .tex file in such a way that its content is captured as a single string with all space removed, before searching for patterns of interest in this string.

2.2   Analysing a grid (3 marks)

Your program will allow Crossword objects to be created from  .tex files that you can assume are stored in the working directory, and whose contents satisfy all conditions spelled out in Section 2.1.  Making use of the .tex files empty_grid_1 .tex, empty_grid_2 .tex, empty_grid_3 .tex, partial_grid_1 .tex, partial_grid_2 .tex  and partial_grid_3.tex,  having  for  associated  .pdf  files empty_grid_1.pdf, empty_grid_2.pdf, empty_grid_3.pdf, partial_grid_1.pdf, partial_grid_2.pdf and partial_grid_3.pdf, here is a possible interaction.

Passing as argument to print() a denotation of a Crossword object results in an output of the kind

A  grid  of  width  _  and  height  _ ,  with  _  black  case [s] ,  filled  with  _  letter [s] , with  _  complete  vertical  word[s]  and  _  complete  horizontal  word[s] .

where

• the first occurrence of _ is a number that represents the horizontal dimension of the grid,

• the second occurrence of _ is a number that represents the vertical dimension of the grid,

• the third occurrence of _ is no, 1 or a number at least equal to 2 that represents the number n of black cases in the grid (of course it is case if n = 1 and cases otherwise),

• the fourth occurrence of _ is no, 1 or a number at least equal to 2 that represents the number n of letters alredy placed in the grid (of course it is letter if n = 1 and letters otherwise),

• the fifth occurrence of _ is no, 1 or a number at least equal to 2 that represents the number n of vertical words in the grid (of course it is word if n = 1 and words otherwise), and

• the sixth occurrence of _ is no, 1 or a number at least equal to 2 that represents the number n of horizontal words in the grid (of course it is word if n = 1 and words otherwise).

2.3   Filling in a grid with given words (5 marks)

Crossword objects can call the fill_with_given_words() method, that takes two arguments.

• First, the name of a  .txt file, meant to exist in the working directory and store a number of words, one word per line (without empty line, without space on any line).  You can assume that the file indeed exists and has the expected contents.  The file could be empty, and there could be more than one occurrence of a given word.

•  Second, the name of a  .tex file,  meant to store a representation of a solution in case a solution exists.

The aim is to complete all missing entries precisely with the words stored in the file provided as first argument; so there should be as many words in the file as there are incomplete words in the grid; words do not have to be distinct in the file, because a given word can appear more than once in a grid.

If the task is impossible, then the method prints out:

Hey,  it  can't  be  filled  with  these  words!

Otherwise, the method prints out:

I  filled  it!

Result  captured  in  _ .

where _ is the name of the  .tex file that has been provided as argument to the method.  The solution that has been discovered is stored in that file. If the file does not exist then it is created, in the working directory; if it does exist then it is overwritten.  There could be more than one solution; only one solution is sought after, and any correct solution is acceptable. In any case, the method returns None.

Here is a possible interaction.

•  The .tex files that have been created or overwritten during this interaction are

  filled_empty_grid_2 .tex,

  filled_empty_grid_3 .tex and

  filled_partial_grid_2 .tex.

•  The associated .pdf files are

 filled_empty_grid_2.pdf,

 filled_empty_grid_3.pdf and

 filled_partial_grid_2.pdf.

It is advisable to make sure that the spaces in the  .tex  files produced during the interaction are exactly as shown.   Still,  whitespace  will  be ignored for assessment purposes,  but of course,  all other nonspace characters have to be exactly the same, character for character.

2.4   Solving a crossword (5 marks)

Crossword objects can call the solve() method, that takes as argument the name of a  .tex file, meant to store a representation of a solution in case a solution exists.

The aim is to complete all missing entries with words from the file dictionary .txt.  That file is provided, meant to be stored in the working directory, and you can assume that this is the case indeed.  A word in dictionary .txt could be used more than once, because a given word can appear more than once in a grid. The grid could already contain complete words that are not in dictionary .txt. This is fine. It should not be checked that any complete word in the input grid is in dictionary.txt; this might not be the case, and that is fine. But any incomplete or missing word has to be one from dictionary .txt.

If the task is impossible, then the method prints out:

Hey,  it  can't  be  solved!

Otherwise, the method prints out:

I  solved  it!

Result  captured  in  _ .

where _ is the name of the  .tex file that has been provided as argument to the method.  The solution that has been discovered is stored in that file. If the file does not exist then it is created, in the working directory; if it does exist then it is overwritten.  There could be more than one solution; only one solution is sought after, and any correct solution is acceptable. In any case, the method returns None.

Here is a possible interaction.

•  The .tex files that have been created or overwritten during this interaction are

  solved_empty_grid_1 .tex,

  solved_empty_grid_2 .tex,

  solved_partial_grid_1 .tex and

  solved_partial_grid_3 .tex.

•  The associated .pdf files are

 solved_empty_grid_1.pdf,

 solved_empty_grid_2.pdf,

 solved_partial_grid_1.pdf and

 solved_partial_grid_3.pdf.

It is advisable to make sure that the spaces in the  .tex  files produced during the interaction are exactly as shown.   Still,  whitespace  will  be ignored for assessment purposes,  but of course,  all other nonspace characters have to be exactly the same, character for character.





热门主题

课程名

mktg2509 csci 2600 38170 lng302 csse3010 phas3226 77938 arch1162 engn4536/engn6536 acx5903 comp151101 phl245 cse12 comp9312 stat3016/6016 phas0038 comp2140 6qqmb312 xjco3011 rest0005 ematm0051 5qqmn219 lubs5062m eee8155 cege0100 eap033 artd1109 mat246 etc3430 ecmm462 mis102 inft6800 ddes9903 comp6521 comp9517 comp3331/9331 comp4337 comp6008 comp9414 bu.231.790.81 man00150m csb352h math1041 eengm4100 isys1002 08 6057cem mktg3504 mthm036 mtrx1701 mth3241 eeee3086 cmp-7038b cmp-7000a ints4010 econ2151 infs5710 fins5516 fin3309 fins5510 gsoe9340 math2007 math2036 soee5010 mark3088 infs3605 elec9714 comp2271 ma214 comp2211 infs3604 600426 sit254 acct3091 bbt405 msin0116 com107/com113 mark5826 sit120 comp9021 eco2101 eeen40700 cs253 ece3114 ecmm447 chns3000 math377 itd102 comp9444 comp(2041|9044) econ0060 econ7230 mgt001371 ecs-323 cs6250 mgdi60012 mdia2012 comm221001 comm5000 ma1008 engl642 econ241 com333 math367 mis201 nbs-7041x meek16104 econ2003 comm1190 mbas902 comp-1027 dpst1091 comp7315 eppd1033 m06 ee3025 msci231 bb113/bbs1063 fc709 comp3425 comp9417 econ42915 cb9101 math1102e chme0017 fc307 mkt60104 5522usst litr1-uc6201.200 ee1102 cosc2803 math39512 omp9727 int2067/int5051 bsb151 mgt253 fc021 babs2202 mis2002s phya21 18-213 cege0012 mdia1002 math38032 mech5125 07 cisc102 mgx3110 cs240 11175 fin3020s eco3420 ictten622 comp9727 cpt111 de114102d mgm320h5s bafi1019 math21112 efim20036 mn-3503 fins5568 110.807 bcpm000028 info6030 bma0092 bcpm0054 math20212 ce335 cs365 cenv6141 ftec5580 math2010 ec3450 comm1170 ecmt1010 csci-ua.0480-003 econ12-200 ib3960 ectb60h3f cs247—assignment tk3163 ics3u ib3j80 comp20008 comp9334 eppd1063 acct2343 cct109 isys1055/3412 math350-real math2014 eec180 stat141b econ2101 msinm014/msing014/msing014b fit2004 comp643 bu1002 cm2030
联系我们
EMail: 99515681@qq.com
QQ: 99515681
留学生作业帮-留学生的知心伴侣!
工作时间:08:00-21:00
python代写
微信客服:codinghelp
站长地图