合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

        代做320SC編程、代寫Python設計程序
        代做320SC編程、代寫Python設計程序

        時間:2024-10-11  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



        Computer Science **0SC – (2024)
        Programming Assignment 5
        Due: Oct 13 2024 (11:59pm)
        Academic Integrity
        Before attempting to solve the assignment, please read the message below very carefully.
        As described on https://academicintegrity.cs.auckland.ac.nz/, you must NOT
        ˆ Use all or part of another student’s solution to the assignment. Changing variable names or
        substituting words in a sentence does not make it your solution.
        ˆ Allow someone else to complete all or part of the assignment for you.
        ˆ Solicit answers for the assignment on contract-cheating websites such as Chegg.com and
        Bartleby.com.
        ˆ Use code from Internet sources such as StackOverffow or generative-AI tools such as ChatGPT.
         You are encouraged to learn from Internet sources and tools, but you need to come up
        with your own implementation of the code to show your learning.
        ˆ Allow another student to copy all or part of your solution to the assignment.
        ˆ Do all or part of an assignment for someone else.
        ˆ Share code that can lead to the solution of an assignment.
        ˆ Post the assignment anywhere online or share it with anyone else. The assignment material
        is copyrighted and sharing or posting them online violates our copyright.
        ˆ Post your solution online on public websites. Your online solutions will encourage other
        students to copy your solution. Private GitHub repositories and other private online storage
         drives are acceptable, and you can also share your solution privately with prospective
        employers.
        ˆ Reuse your own work unless discussed otherwise with the lecturer.
        ˆ Leave your computers, devices, and belongings unattended — you must secure these at all
        times to prevent anyone having access to your assessments or solutions.
        Last year, out of 218 students, there were 11 misconducted cases found on A5 - Task 1. We kept the
        submissions from the last few years to run MOSS at https://theory.stanford.edu/~aiken/moss/.
        I hope that there will be no cases this year!
        1Requirements
        This 5th assignment lets you get familiar with dynamic programming design and development. It is
        worth 5% of your total course marks. We would like you to implement efffcient dynamic programming
        algorithms for two tasks: Task 1: Finding partner and Task 2: Killing enemies.
        An excessive number of submissions (over 10) for a particular problem will accrue a 20% penalty per that
        problem if you eventually solve it. Therefore, please write a bruteforce algorithm and test your
        dynamic programming version with your own generated inputs at scale before submitting
        to the automated marker.
        We only accept Python programs that use built-in packages (i.e. packages that do not require pip
        install).
        1 Task 1: Meet your partner at skyscraper
        1.1 Problem description
        You are standing at the ground ffoor and your partner is waiting at the top ffoor of a skyscraper. You
        will have to use an algorithmically designed lift L to reach your partner. The lift L is designed in the
        manner that if you use the lift at the ffoor i, you are able to reach any ffoor from i + 1 to i + L[i] where
        L[i] is a positive integer that presents the capacity of the lift at the i-th ffoor. Each time you use the
        lift costs $1.
        Assume that the skyscraper has n ffoors and you are at the ffoor 0. Your partner is at the ffoor n − 1
        and waiting for you to see the sky view. The lift information L[i] for 0 ≤ i < n is available at the
        ground ffoor. Write a function to return the minimum cost, i.e. the number of time using the lift, to
        reach your partner.
        O(n) solutions are preferred since we have set the running time limit on the automarker.
        1.2 Test case description
        Your input will be a sequence of n integers, each value per line corresponding to the lift information
        L[i] (e.g. the capacity of the lift) on the i-th ffoor. The ffrst line is for the 0-th ffoor. The last line is
        for the (n − 1)-th ffoor, which is a redundant information :-). Your output will be an integer.
        There are 4 test cases.
        1. A trial test case of n = 10 has no mark.
        2. A test case of n = 100, 000 and has 1 mark.
        3. A test case of n = 1000, 000 and has 2 marks.
        2Sample Input 1:
        Sample Output 1:
        1
        You only need to use the lift once since L[0] = 8 is sufffcient to get you to the 4th ffoor.
        Sample Input 2:
        Sample Output 2:
        2
        You only need to use the lift twice. The ffrst one with L[0] = 2 to the 1st ffoor, and L[1] = 5 is sufffcient
        to get you to the 4th ffoor.
        ** Task 2: Arrange tanks to eliminate enemies
        2.1 Problem description
        You have a queue of n tanks hidden in a forest. Due to the UAV of enemies, only 1 tank is used per
        day, and the used tank can only be taken from the front or rear of the queue for some security reasons.
        Each tank has a number indicating the number of potential units the tank can eliminate. Since tanks
        are hurrily queued up during the night, you cannot organize the tank in the good order to use. Instead,
        you have a queue of n values, each reffects the number of potential eliminated units for each tank in
        the queue.
        Since the war is more and more severe, the number of potential eliminated units dramatically increases
        day-by-day. Let the labels of the number of eliminated units from n tanks in the queue be t1,t2, . . . ,tn.
        In the i-th day, the used tank k will eliminate i ∗ tk units.
        As a commander, for each day, your task is to give an order 1 or 0 corresponding to whether the front
        or the rear tank in the queue is used. Write a program to compute the best order of using n tanks for
        n days to eliminate maximum number of enemies’ units.
        Since there might be several orderings that output the same number of eliminated units, you would
        need to output the maximum number of eliminated units only.
        You might see that the best solution runs in O(n
        2
        ) time asymptotically. However, a program with low
        memory usage (e.g. O(n)) is preferred since the automarker has limited resources, and we have set the
        running time limit on the automarker.
        2.2 Test case description
        Your input will be a sequence of n integers, each value per line i corresponding to the amount of eliminated
         units of the tank ti
        . The ffrst and last lines correspond to the front and rear tanks, respectively.
        Your output is an integer in range [0..2
        31
        ] corresponding to the maximum number of eliminated units.
        There are 2 test cases.
        1. A trial test case of n = 10 has no mark.
        2. A test case of n = 10, 000 has 2 marks.
        4Sample Input 1:
        Sample Output 1:
        128
        The order is {1, 0, 0, 1, 1}, and the maximum number of detroyed units is 4 * 1 + 10 * 2 + 4 * 3 + 8 *
        4 + 12 * 5 = 128. Note that for the last tank (#3), any order of 1 or 0 does not matter.
        Sample Input 2:
        Sample Output 2:
        261
        The maximum number of detroyed units is 261 and the order is {1, 1, 1, 0, 0, 0, 0, 1}. Note that for the
        last tank (#4), any order of 1 or 0 does not matter.
        Submission Procedure
        Submit your program solutions to https://www.automarker.cs.auckland.ac.nz.


        請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp











         

        掃一掃在手機打開當前頁
      1. 上一篇:代寫INFS3208、代做Python語言編程
      2. 下一篇:代寫ECE4016、Python設計編程代做
      3. 無相關信息
        合肥生活資訊

        合肥圖文信息
        急尋熱仿真分析?代做熱仿真服務+熱設計優化
        急尋熱仿真分析?代做熱仿真服務+熱設計優化
        出評 開團工具
        出評 開團工具
        挖掘機濾芯提升發動機性能
        挖掘機濾芯提升發動機性能
        海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
        海信羅馬假日洗衣機亮相AWE 復古美學與現代
        合肥機場巴士4號線
        合肥機場巴士4號線
        合肥機場巴士3號線
        合肥機場巴士3號線
        合肥機場巴士2號線
        合肥機場巴士2號線
        合肥機場巴士1號線
        合肥機場巴士1號線
      4. 短信驗證碼 酒店vi設計 NBA直播 幣安下載

        關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

        Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
        ICP備06013414號-3 公安備 42010502001045

        99精品视频在线免费观看| 综合在线视频精品专区| 日韩精品视频在线播放| 91精品国产高清久久久久久91| 国产精品日韩AV在线播放| 91久久婷婷国产综合精品青草| 国产成人精品高清不卡在线 | 一本一本久久a久久精品综合麻豆| 国产偷窥熟女精品视频| 日韩精品久久一区二区三区| 亚洲av无码成人精品区一本二本 | 日韩精品一区二区三区大桥未久| 国产精品白嫩在线观看| 国内精品福利视频| 久久亚洲精品无码gv| 91情侣在线精品国产免费| 国产成人精品亚洲2020| 精品国产第一国产综合精品| 亚洲精品国产肉丝袜久久| 911精品国产亚洲日本美国韩国| 99热成人精品国产免国语的| 99久久综合精品免费| 人妻少妇精品中文字幕av蜜桃| 午夜精品久久久久久久久| 四虎影视永久在线观看精品| 无码国内精品久久人妻| 人妻精品久久久久中文字幕69| 亚洲AV永久无码精品| 熟妇无码乱子成人精品| 99久久亚洲精品无码毛片| 久久精品a亚洲国产v高清不卡| 538精品视频在线观看mp4| 亚洲精品福利网站| 国产精品亚洲四区在线观看| 亚洲精品mv在线观看| 91全国探花精品正在播放 | 久热国产精品视频一区二区三区| 中文人妻熟妇乱又伦精品| 亚洲AV无码精品国产成人| 国内精品自在自线视频 | 国色精品va在线观看免费视频|