FIT2004Exam python 辅导、辅导python游戏程序

- 首页 >> Python编程

FIT2004: Assessment qMARKING:You will be interviewed during your lab or at another time as arrangedby your demonstrator who will ask you a series of questions to assess your under-standing of this exercise, and gauge how you implemented it. It is required that youimplement this exercise strictly using Python programming language. Practicalwork is marked on the complexity of your program and also on your understand-ing of the program. A perfect program with zero understanding implies you will getzero marks! \Forgetting" is not an acceptable explanation for lack of understanding.Demonstrators are not obliged to mark programs that do not run or that crash.You will lose all marks for a given task if your algorithm does not produce correctresults for the task. Also, heavy penalties are applied if your complexity is worsethan the required complexity and you may lose all marks if the complexity is similarto that of the naive algorithm. This is because our focus is on developing ecientalgorithms and data structures. Also, do not assume that each task carries equalmarks.SUBMISSION REQUIREMENT: You will need to submit a zipped le contain-ing your Python program (named cameradetector.py) as well as a PDF le brieydescribing your solution and its space and time complexity. The PDF le must givean outline of your solution (e.g., a high level idea of how did you solve it) and theworst-case space and time complexity of your solution. Penalties will be applied ifyou fail to submit the PDF le. The zipped le is to be submitted on Moodle beforethe deadline.Important: The assignments will be checked for plagiarism using an advanced pla-giarism detector and the students will be interviewed by tutors to demonstrate theunderstanding of their code. Last year, many students were detected by the plagia-rism detector and almost all got zero mark for the assignment and, as a result, manyfailed the unit. \Helping" others is NOT okay. Please do not share your solutionswith others. If someone asks you for help, ask them to visit us during consultationhours for help.1 Assessed Task: Red-light Camera DetectorAlice bursts into your room and is visibly upset. She waves a paper and screams, \I cannotbelieve this. They sent me a ticket for violating the trac lights. I am sure the light was amberwhen I crossed the intersection. This is unfair."She then takes a long deep breath and rmly says, \Okay, I have decided that I will neverdrive through an intersection with red-light cameras again. Never! Can you please help me towrite an app to detect the red-light cameras?".By now, you know that you cannot say NO to Alice. So you respond: \Of course, Alice!But give me some more information."\Aaaww! You have always been such a good friend!" Alice happily says. \I also have asmall gift for you which I will give you later1. But let me give you details of what I need formy camera detector app."\Basically, I will provide you two text les named vertices.txt and edges.txt. The levertices.txt contains the IDs of the vertices/intersections that have red-light cameras. The le edges.txt contains the information of edges corresponding to the road segments connectingthe intersections. Some of the edges (road segments) are toll roads. I want the application totake as input a source vertex v and a value k; it must return me the k closest cameras fromthe vertex v and the shortest paths to each of these cameras. I do not want to travel on a tollroad or drive through an intersection that has a red-light camera. Therefore, none of the pathsmust contain a toll road or pass through a red-light camera. "\hmmmm, okay I think I get it. But could you give me a more formal de nition", you ask.Alice: \Sure! A path from a vertex s to a vertex t is NOT safe if the source vertex scontains a camera. Otherwise, the path is called a safe path if 1) none of the edges on thepath is a toll road; and 2) none of the vertices on the path (except the target vertex t) containsa camera (the target vertex t may or may not have a camera). Safe distance from vertex s tovertex t is the total length of the shortest safe path from s to t. Given an input vertex v, thegoal is to nd k-closest cameras considering only the safe paths.".1.1 InputThe input les vertices.txt and edges.txt can be downloaded from Moodle2. The totalnumber of vertices are 6105 and you can assume that their IDs are in the range 0 to 6104.Below are the rst 5 lines from vertices.txt denoting that the vertices 1; 5; 12; 16 and 20have red-light cameras.Below are some lines from edges.txt. The rst two values in each row correspond to thevertices that the edge connects and the third value corresponds to the distance between thevertices (i.e., the length of the edge). Some rows in edges.txt have four values where thefourth value is TOLL denoting that this edge is a toll road. For example, the third line below1Alice's reward is on page 5!2This is a real data set corresponding to the road network in a German city Oldenburg.2shows that there is an edge between vertices with IDs 124 and 138. The length of this roadsegment is 544:010193 and this is a toll road.122 127 526.950012123 125 228.396591124 138 544.010193 TOLL125 126 259.4372861.2 OutputThe program must ask the user to enter their location (vertex ID) and the value of k. It mustthen display k-closest cameras considering only the safe paths. It must also display the safepath to each of these cameras. Below is a sample output.Enter your location: 1609Enter k: 3Camera 1 : 1595 Distance from your location: 89.02904600000001Shortest path: 1609 --> 1600 --> 1593 --> 1595Camera 2 : 1624 Distance from your location: 143.87629700000002Shortest path: 1609 --> 1600 --> 1607 --> 1624Camera 3 : 1648 Distance from your location: 170.821331Shortest path: 1609 --> 1622 --> 1616 --> 1625 --> 1627 --> 1636 --> 1648Note that there is a camera at vertex 1580 with distance 166:19017100000002 but it is notreturned in the above output because the shortest path to this camera passes through anothercamera (at intersection 1595), i.e., the path is not a safe path. Below are the details of thecamera (and the shortest path to it) that must be ignored by your algorithm.Camera : 1580 Distance from your location: 166.19017100000002Shortest path: 1609 --> 1600 --> 1593 --> 1595 --> 1578 --> 1580Below is another sample output.Enter your location: 2011Enter k: 2Camera 1 : 1999 Distance from your location: 21.692297Shortest path: 2011 --> 1999Camera 2 : 1991 Distance from your location: 302.152092Shortest path: 2011 --> 2016 --> 4563 --> 2003 --> 1985 --> 1976 --> 1991There is a path to camera at intersection 4529 with distance 238:061092 but it is ignoredbecause the path contains a toll road. Below is a path to this camera which is invalid (i.e., notsafe) because it contains a toll road.3Camera : 4529 Distance from your location: 238.061092Shortest path: 2011 --> 2016 --> 4563 --> 4556 --> 4549 --> 4543 --> 4541--> 4529For the above camera, the road segment 4543 --> 4541 is a toll road so this path must NOTbe considered by your algorithm. The shortest path to 4529 that does not pass through anytoll road or any other camera is shown below.Camera : 4529 Distance from your location: 474.407198Shortest path: 2011 --> 2016 --> 4563 --> 4556 --> 3433 --> 3446 --> 4557--> 4545 --> 4542 --> 4529This camera is not among the 2-closest cameras because its safe distance is 474:407198 whichis greater than the safe distances of the top-2 cameras (1999 and 1991).If the user is already on an intersection with red-light camera (i.e., the entered location isa vertex with camera), then the algorithm prints a message stating that it is not possible toavoid the red-light cameras. Below is a sample output.Enter your location: 2010Enter k: 5Oops! Cannot help, Alice!!! Smile for the camera!In some cases, it is possible that the k-closest cameras cannot be found (e.g., there may beless than k cameras that can be reached without passing through any toll road or any othercamera). In this case, your algorithm must return only the cameras that can be reached. Forexample, assume that you are on a vertex v that has only two adjacent vertices u and x andboth u and x have red-light cameras. If k > 2, the algorithm will return only u and x becauseno other cameras can be reached without passing through an intersection with a camera.In a case, where no camera can be reached (e.g., Alice is on a vertex for which all adjacentedges are toll roads), your program must print Oops! You're stuck here Alice!Important: Your program must read data from the input les named vertices.txt andedges.txt (provided in the zipped folder on Moodle). You will lose marks if the program doesnot correctly read from the provided les or reads from di erent les. Also, your program mustdisplay the output in the format as shown in above sample outputs. Your program will betested on various test cases using an automated script. Therefore, it is critical that you followthe output format shown above. You can assume that your program will be tested on the sameset of vertices and edges but with di erent toll roads and di erent locations of cameras.1.3 Implementation RequirementsLet V and E denote the number of vertices and edges, respectively. Your solution must haveO(V log V +E log V ) time complexity (in the worst-case) to determine the k closest cameras.The total time complexity required to print the shortest paths to these k cameras must beO(V log V + E log V + P) where P is the total number of edges printed in the output, i.e., thetotal number of edges on the shortest paths to these k cameras. To achieve this time complexity,you may need to modify min-heap as described in the lecture slides.4The task listed below is NOT assessed and will NOT be marked. Completion of this task isOPTIONAL. DO NOT SUBMIT THE SOLUTION OF THIS PART WITH YOURASSIGNMENT 4. Tutors are not going to mark it.Alice's rewardIt is a beautiful afternoon and you are taking a nap when you hear a knock on the door. It isAlice. With a wide smile, she hands over a USB.\What's this Alice?", you curiously ask.Alice smiles and says, \Well, I met your lecturer the other day and told him how hardyou have been working in the past few months and that you have helped me in solving manychallenging problems. I asked him if you could be rewarded. He was proofreading the nalexam for FIT2004 that he had just nished writing. He nodded his head and spread out allthe papers upside down and asked me to choose one. I picked one paper and gave it to him.He copied the text from that page into a le, added a special message for you (containing someadvice for you related to the nal exam) and compressed the le. To cut the long story short,this USB has a le3 named FIT2004Exam.bz2 which contains one randomly chosen page fromyour upcoming FIT2004 exam as well as a special message from your lecturer. Decompress the le to earn your reward ;)".You: \Thanks Alice!!! You are a true friend".Alice: \No problem. Oh, and before I forget, your lecturer asked me to tell you not to sharethe decompressed content of the le with the other students. Let them earn the reward. If theyinsist, just tell them something random that seems believable, e.g., tell them it was a prank,or that it was the instruction page of the exam, or even worse, invent a dicult exam stylequestion and give it to them.4"\Sure thing! I will start working on it right away...", you reply and turn towards yourcomputer.InputText from a page of your upcoming FIT2004 nal exam has been compressed using Burrows-Wheeler Transform and stored in a le named FIT2004Exam.bz2 (see les in bwt.zip on Moodleunder \Assignment 4"). bwtGenerator.py has been used to compress the text. You will needto decompress this le to retrieve the text.Since FIT2004Exam.bz2 is big, the compression approach used by bwtGenerator.py isexplained below using a small text le small_example.txt which is also provided on Moodle.Below is the text in this le.A: (ten marks)B: (ten marks)C: (ten marks)D: (ten marks)3Do not be mislead by the le name. It is NOT compressed using bzip2 format. The name is just a tributeto BWT (as it is used in bzip2). To see the content of this le, open it in a text editor such as notepad++.4If you come up with other innovative ideas, feel free to share on the Moodle forum.5bwtGenerator.py compresses this text and stores in a le name small_example.bz2. Tomake things easier for you, rstly, bwtGenerator.py replaces the newline character nn with -and whitespace with *.A:*(ten*marks)--B:*(ten*marks)--C:*(ten*marks)--D:*(ten*marks)Then, the Burrows-Wheeler Transform of this text is computed using get_bwt function.Below is the BWT for the above text.)****ssss::::nnnn)))---DABC$---mmmmttttrrrr****eeeeaaaakkkk((((The sorting of the characters is based on their unicode values, i.e., a character that hasa smaller unicode is considered smaller. For example, the unicode value of $ is 36 and theunicode value of ( is 40. So, $ appears before ( in the sorted order. You can safely assume that$ will be the smallest character if unicode based sorting is used (which is required for correctlydecompressing the text). The sort() function in Python sorts the characters based on theirunicode values.The BWT of the text is then compressed. Speci cally, the function compress(bwt) takesthe BWT of the text as input and compresses it using run-length encoding. In run lengthencoding, a text aaabbbbaa is converted to 3a4b2a (because the text has 3 occurrences ofa followed by 4 occurrences of b followed by 2 occurrences of a). So, the above text isconverted to 1-4*4s4:4n4)3-1D1A1B1C1$3-4m4t4r4*4e4a4k4( (see the output produced byprint(encoded) in bwtGenerator.py). To give you an easy to handle compressed format, therun-length encoding is split into lines as below.The text above is stored in small_example.bz2. If you want to see the content of this le,you need to open this in a text editor such as notepad++. The text from the nal exam iscompressed in the same way using bwtGenerator.py and is stored in FIT2004Exam.bz2.6OutputYou will rst need to decompress the run-length encoding, i.e., the text 3a4b2a needs to beconverted to aaabbbbaa. For the above example, after you decompress, you will get the follow-ing.)****ssss::::nnnn)))---DABC$---mmmmttttrrrr****eeeeaaaakkkk((((The above is the BWT of the text. You will then apply the inversion algorithm on this textto invert the Burrows-Wheeler Transform. If your inversion algorithm is correct, you will getthe following.A:*(ten*marks)--B:*(ten*marks)--C:*(ten*marks)--D:*(ten*marks)Assume you have inverted the text and it is stored in the variable inverted_text. You willneed to copy abra_cadabra function provided in bwtGenerator.py to your code and call itby passing inverted_text. This function will print the original text by replacing each - backto \n and replacing each * back to a whitespace. E.g., for the above example, the functionabra_cadabra(inverted_text) will print the following.A: (ten marks)B: (ten marks)C: (ten marks)D: (ten marks)Once you correctly reproduce the original text shown in the small example above, applyyour algorithm to FIT2004Exam.bz2 le to decompress it.Important: Before compressing the text using bwtGenerator, I added a lot of occurrencesof FIT2004ExamPage in the original text. This is to ensure that the text size is big enough suchthat if you use naive algorithm for inversion, your program takes too long and possibly crashesbefore completely inverting it. Therefore, do NOT try to invert the text using the naivealgorithm. It will most possibly crash. Furthermore, implementing the naive algorithm takesalmost similar amount of e orts. So, it is better to implement the ecient inversion algorithm.

站长地图