日韩精品一区二区三区高清_久久国产热这里只有精品8_天天做爽夜夜做爽_一本岛在免费一二三区

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

代寫DTS203TC、C++,Java程序語言代做

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



XJTLU Entrepreneur College (Taicang) Cover Sheet
Module code and Title DTS203TC Design and Analysis of Algorithms
School Title School of AI and Advanced Computing
Assignment Title Coursework
Submission Deadline Sunday, March 24th 23:59 (UTC+8 Beijing), 2024
Final Word Count
If you agree to let the university use your work anonymously for teaching
and learning purposes, please type “yes” here.
I certify that I have read and understood the University’s Policy for dealing with Plagiarism,
Collusion and the Fabrication of Data (available on Learning Mall Online). With reference to this
policy I certify that:
• My work does not contain any instances of plagiarism and/or collusion.
My work does not contain any fabricated data.
By uploading my assignment onto Learning Mall Online, I formally declare
that all of the above information is true to the best of my knowledge and
belief.
Scoring – For Tutor Use
Student ID
Stage of
Marking
Marker
Code
Learning Outcomes Achieved (F/P/M/D)
(please modify as appropriate)
Final
Score
A B C
1
st Marker – red
pen
Moderation
– green pen
IM
Initials
The original mark has been accepted by the moderator
(please circle as appropriate):
Y / N
Data entry and score calculation have been checked by
another tutor (please circle):
Y
2
nd Marker if
needed – green
pen
For Academic Office Use Possible Academic Infringement (please tick as appropriate)
Date
Received
Days
late
Late
Penalty
☐ Category A
Total Academic Infringement Penalty
(A,B, C, D, E, Please modify where
necessary) _____________________
☐ Category B
☐ Category C
☐ Category D
☐ Category E
DTS203TC Design and Analysis of Algorithms
Coursework
Deadline: Sunday, March 24th 23:59 (UTC+8 Beijing), 2024
Percentage in final mark: 40%
Learning outcomes assessed:
A. Describe the different classes of algorithms and design principles associated with them;
Illustrate these classes by examples from classical algorithmic areas, current research and
applications.
B. Identify the design principles used in a given algorithm, and apply design principles to produce
efficient algorithmic solutions to a given problem.
C. Have fluency in using basic data structures in conjunction with classical algorithmic problems.
Late policy: 5% of the total marks available for the assessment shall be deducted from the
assessment mark for each working day after the submission date, up to a maximum of five working
days
Risks:
• Please read the coursework instructions and requirements carefully. Not following these
instructions and requirements may result in loss of marks.
• The assignment must be submitted via Learning Mall to the correct drop box. Only electronic
submission is accepted and no hard copy submission.
• All students must download their file and check that it is viewable after submission.
Documents may become corrupted during the uploading process (e.g. due to slow internet
connections). However, students themselves are responsible for submitting a functional and
correct file for assessments.
• Academic Integrity Policy is strictly followed.
• The use of Generative AI for content generation is not permitted on this assessed coursework.
Submissions will be checked through Turnitin.
Overview
In this coursework, you are expected to design and implement algorithms to produce solutions to
four given problems (Tasks **4) in Python. For Tasks **4, you should have function(s) to receive
task input as parameters, implement your algorithm design and return results. You also need to
write a short report answering a list of questions in Task 5 that are related to the given four
problems.
Task 1 (15 marks)
You have n coins and a balance. Among the coins, there is one fake coin which has different weight
than the other coins. All the coins, except the fake coin, have exactly the same weight. Utilizing
the balance, you can compare the weight of any number of coins on each pan. The balance will
indicate whether the set of coins on one pan weighs the same as the set on the other pan. Assume
the number of coins is a power of 3 (n = 3k
). Implement an efficient algorithm to find the fake coin.
Input: coins = [10, 10, 10, 9, 10, 10, 10, 10, 10]
Output: 4
Explanation: In the given example, there are 9 coins, with the genuine coins weighing 10 units
each and the fake coin weighing 9 units. The fourth (output) coin is identified as the fake coin.
You should have a function named findFakeCoin to receive a list of integers and return the index
of fake coin (int). Please consider the time complexity when you design your algorithm. A naïve
approach will result in loss of marks.
Task 2 (15 marks)
Consider a d-ary heap as a generalization of the binary heap, where each node has d children
instead of 2. Implement a d-ary max heap and performs heap sort on a given array.
Example:
Input: nums = [7, 6, 5, 9, 8], d = 3
Output: [5, 6, 7, 8, 9]
You should create a function named dHeapSort that takes a list of integers to be sorted and an
integer d indicates d-ary as parameters. The function should return a list containing the sorted
integers based on the d-ary heap sort algorithm.
Task 3 (15 marks)
You’re driving an electric car from Shanghai to Beijing, where there are charging stations along
the way at distances x1, x2, …, xn from Shanghai. Due to varying wait times c and charge speeds g,
charging k kilometers worth of electric at station xi takes ci +kgi minutes. Your car has a capacity
sufficient to travel 400 kilometers on a single charge. Assume car battery begin with 0 at the first
station x1 in Shanghai and xn is your destination in Beijing. Design an efficient algorithm that finds
where you should stop to spend the minimum amount of time at charging stations during your trip.
Example:
Input: x = [0, 100, 300, 600, 800, 1000], c = [0, 10, 0, 20, 10, 0], g = [0.05, 0.2, 0.1, 0.2, 0.1, 0]
Output: [20,0,30,40,30,0]
Explanation: In the provided example, there are a total of 6 stations. The objective is to drive
from the first station to the final one, optimizing the time spent at each station. The output details
the time spent at each station, aiming to minimize the overall time during the trip. For instance,
the time spent at the first station is calculated as 0 + 400 * 0.05 = 20 minutes.
You should have a function named timeSpent to receive the information of distance x (List[int]),
wait time c (List[int]), charge speed g (List[int]) and return the time spend at each station t
(List[int]). Please consider the time complexity when you design your algorithm. A naïve
approach will result in loss of marks.
Task 4 (15 marks)
Consider an undirected graph G = (V, E) with distinct weights assigned to each edge. Your task is
to find the minimum spanning tree (MST), denoted as T, on G. Anticipating the potential removal
of one edge in the future, implement an efficient algorithm to compute the MST T along with a
backup edge, denoted as r(e), for each edge e in T. This ensures that if any edge e is removed,
adding its corresponding backup edge r(e) to the tree will quickly create a new minimum spanning
tree in the modified graph.
Example:
Input: graph = {'A': {'B': 4, 'C': 8},
 'B': {'A': 4, 'C': 2, 'D': 3, 'E': 5},
 'C': {'A': 8, 'B': 2, 'D': 1, 'E': 6},
 'D': {'B': 3, 'C': 1, 'E': 7},
 'E': {'B': 5, 'C': 6, 'D': 7}}
Output: {('A', 'B'): ('A', 'C'), ('B', 'C'): ('B', 'D'), ('C', 'D'): ('B', 'D'), ('B', 'E'): ('C', 'E')}
Explanation: The input graph (as shown in figure) can be represented as a dictionary where the
keys are vertices, and the values are dictionaries representing the edges going out of that vertex
and the weights of those edges. The output can also be represented as a dictionary where the keys
are the edges of the minimum spanning tree T, and the values are the corresponding backup edge
of each edge in T. For example, if edge ('A', 'B') is removed from the graph G, adding backup edge
('A', 'C') will form a new minimum spanning tree.
You should have a function named modifiedMST to receive the graph represented as a dictionary
and return the minimum spanning tree T with backup edges represented as a dictionary. Please
consider the time complexity when you design your algorithm. A naïve approach will result in
loss of marks.
Task 5 (40 marks)
Answer the following questions in your report. Maximum 800 words for Task 5. (Clarity and
brevity are valued over length).
T5-1: For Task 1, give a recurrence of the running time of your algorithm and solve the recurrence
with two different methods.
T5-2: For Task 2, what is the running time of d-ary heap’s insert and heapify operations? Will dary heap sort faster than binary heap sort? Justify your answer.
T5-3: For Task 3, explain the design, show the correctness, and analyse the time and space
complexity of your algorithm.
T5-4: Given the same graph G from Task 4, is it possible to have more than one minimum spanning
tree T? Justify your answer.
Submission
Electronic submission on Learning Mall is mandatory. You need to submit a zip file (named
DTS203TC-CW-YOUR_NAME.zip) containing the following documents.
1. Cover letter with your student ID.
2. Your source code for Tasks **4: Solutions.ipynb
3. A pdf file contains all the source code (should be the same as the submitted ipynb file)
and your report (task 5). You can also write the report in jupyter notebook and export as a
pdf file.
Generic Marking Criteria
Grade Point
Scale
Criteria to be satisfied
A 81+ First ➢ Outstanding work that is at the upper limit of
performance.
➢ Work would be worthy of dissemination under
appropriate conditions.
➢ Mastery of advanced methods and techniques at a
level beyond that explicitly taught.
➢ Ability to synthesise and employ in an original way
ideas from across the subject.
➢ In group work, there is evidence of an outstanding
individual contribution.
➢ Excellent presentation.
➢ Outstanding command of critical analysis and
judgment.
B 70 - 80 First ➢ Excellent range and depth of attainment of intended
learning outcomes.
➢ Mastery of a wide range of methods and techniques.
➢ Evidence of study and originality clearly beyond the
bounds of what has been taught.
➢ In group work, there is evidence of an excellent
individual contribution.
➢ Excellent presentation.
➢ Able to display a command of critical thinking,
analysis and judgment.
C 60 - 69 Upper
Second
➢ Attained all the intended learning outcomes for a
module or assessment.
➢ Able to use well a range of methods and techniques
to come to conclusions.
➢ Evidence of study, comprehension, and synthesis
beyond the bounds of what has been explicitly
taught.
➢ Very good presentation of material.
➢ Able to employ critical analysis and judgement.
➢ Where group work is involved there is evidence of a
productive individual contribution
D 50- 59 Lower
Second
➢ Some limitations in attainment of learning
objectives but has managed to grasp most of them.
➢ Able to use most of the methods and techniques
taught.
➢ Evidence of study and comprehension of what has
been taught
➢ Adequate presentation of material.
➢ Some grasp of issues and concepts underlying the
techniques and material taught.
➢ Where group work is involved there is evidence of a
positive individual contribution.
E 40 - 49 Third ➢ Limited attainment of intended learning outcomes.
➢ Able to use a proportion of the basic methods and
techniques taught.
➢ Evidence of study and comprehension of what has
been taught, but grasp insecure.
➢ Poorly presented.
➢ Some grasp of the issues and concepts underlying
the techniques and material taught, but weak and
incomplete.
F 0 - 39 Fail ➢ Attainment of only a minority of the learning
outcomes.
➢ Able to demonstrate a clear but limited use of some
of the basic methods and techniques taught.
➢ Weak and incomplete grasp of what has been
taught.
➢ Deficient understanding of the issues and concepts
underlying the techniques and material taught.
➢ Attainment of nearly all the intended learning
outcomes deficient.
➢ Lack of ability to use at all or the right methods and
techniques taught.
➢ Inadequately and incoherently presented.
➢ Wholly deficient grasp of what has been taught.
➢ Lack of understanding of the issues and concepts
underlying the techniques and material taught.
➢ Incoherence in presentation of information that
hinders understanding.
G 0 Fail ➢ No significant assessable material, absent, or
assessment missing a "must pass" component.
Marking Criteria
Tasks 100 Components Description Maximum
Credit Mark
Task 1 15
Implementation
6 marks
Correct function definition [0/1 mark] 1
Correct algorithm design [0/2 marks] 2
Algorithm implementation [0-3 marks] 3
Evaluation
8 marks
Time complexity [0/3 marks] 3
5 test cases will be used to evaluate the
correctness of the function. 1 mark for each
test case.
5
Code quality
1 mark Readability, Formatting, Comments 1
Task 2 15
Implementation
9 marks
Correct function definition [0/1 mark] 1
Data structure implementation [0/2/4
marks] 4
Algorithm implementation [0/2/4 marks] 4
Evaluation
5 marks
5 test cases will be used to evaluate the
correctness of the function. 1 mark for each
test case.
5
Code quality
1 mark Readability, Formatting, Comments 1
Task 3 15 Implementation Correct function definition [0/1 mark] 1
6 marks Correct algorithm design [0/2 marks] 2
Algorithm implementation [0-3 marks] 3
Evaluation
8 marks
Time complexity [0/3 marks] 3
5 test cases will be used to evaluate the
correctness of the function. 1 mark for each
test case.
5
Code quality
1 mark Readability, Formatting, Comments 1
Task 4 15
Implementation
6 marks
Correct function definition [0/1 mark] 1
Correct algorithm design [0/2 marks] 2
Algorithm implementation [0-3 marks] 3
Evaluation
8 marks
Time complexity [0/3 marks] 3
5 test cases will be used to evaluate the
correctness of the function. 1 mark for each
test case.
5
Code quality
1 mark Readability, Formatting, Comments 1
Task 5 40
Task 5-1
9 marks
Recurrence of the algorithm is correct [0/3
marks] 3
Solve recurrence with method 1 [0/3 marks] 3
Solve recurrence with method 2 [0/3 marks] 3
Task 5-2
9 marks
Running time of insert operation [0-3
marks] 3
Running time of heapify operation [0-3
marks] 3
Analysis of d-ary heap sort [0-3 marks] 3
Task 5-3
9 marks
Algorithm design [0/2 marks] 2
Correctness [0/3 marks] 3
Time and space complexity [0/2/4 marks] 4
Task 5-4
9 marks
‘Yes/No’ answer correct 3
Number of minimum spanning tree on G is
well justified [0-6 marks] 6
Report quality
4 marks
Fluency and readability [0/2 mark]
Formatting and conciseness [0/2 mark] 4
請加QQ:99515681  郵箱:99515681@qq.com   WX:codehelp 

掃一掃在手機打開當前頁
  • 上一篇:代寫CSE 231、代做Python設計程序
  • 下一篇:代寫CMPSC 221 UML and Class Creation
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    2025年10月份更新拼多多改銷助手小象助手多多出評軟件
    2025年10月份更新拼多多改銷助手小象助手多
    有限元分析 CAE仿真分析服務-企業/產品研發/客戶要求/設計優化
    有限元分析 CAE仿真分析服務-企業/產品研發
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發動機性能
    挖掘機濾芯提升發動機性能
    海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
    海信羅馬假日洗衣機亮相AWE 復古美學與現代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
  • 短信驗證碼 trae 豆包網頁版入口 目錄網 排行網

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

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

    日韩精品一区二区三区高清_久久国产热这里只有精品8_天天做爽夜夜做爽_一本岛在免费一二三区

      <em id="rw4ev"></em>

        <tr id="rw4ev"></tr>

        <nav id="rw4ev"></nav>
        <strike id="rw4ev"><pre id="rw4ev"></pre></strike>
        欧美视频一区二区三区四区| 午夜精品999| 欧美亚洲在线播放| 久久久免费精品| 久久精品综合| 国产精品日本一区二区| 国产精品视频xxxx| 亚洲欧美在线观看| 亚洲国产精品久久久久秋霞影院| 久久噜噜噜精品国产亚洲综合| 香蕉av福利精品导航| 国产精品成人观看视频国产奇米| 亚洲激情电影中文字幕| 在线观看亚洲精品| 国产精品二区三区四区| 欧美va天堂| 欧美成人嫩草网站| 亚洲日韩第九十九页| 欧美日韩精选| 欧美区在线观看| 在线视频欧美精品| 美女视频一区免费观看| 国产女人aaa级久久久级| 欧美丝袜一区二区| 亚洲视频在线观看| 欧美丰满少妇xxxbbb| 国产精品久久久久久久午夜片| 夜夜嗨av色一区二区不卡| 欧美高清免费| 国产主播一区二区三区四区| 亚洲人线精品午夜| 国产日韩欧美二区| 免费在线观看成人av| 黄色亚洲在线| 国产精品视频午夜| 国产日韩欧美一区二区三区在线观看| 欧美大香线蕉线伊人久久国产精品| 欧美三级免费| 亚洲天堂av在线免费| 久久综合久久综合久久| 久热精品在线视频| 在线观看国产精品网站| 亚洲国产aⅴ天堂久久| 中日韩美女免费视频网址在线观看| 国产精品久久久久一区二区| 国产欧美视频一区二区三区| 亚洲精品视频在线| 亚洲老司机av| 中文久久乱码一区二区| 亚洲人成在线播放网站岛国| 国产亚洲女人久久久久毛片| 羞羞漫画18久久大片| 亚洲综合色丁香婷婷六月图片| 欧美巨乳波霸| 性色av香蕉一区二区| 免费成人高清| 午夜视频精品| 在线观看日韩| 欧美91视频| 亚洲欧美精品中文字幕在线| 国产日本欧美视频| 黄色av一区| 亚洲二区精品| 久久免费视频一区| 亚洲男人天堂2024| 久久精品亚洲国产奇米99| 狂野欧美性猛交xxxx巴西| 国产一区视频观看| 亚洲综合视频一区| 国产一区激情| 在线精品视频在线观看高清| 国产在线欧美| 亚洲综合色激情五月| 国产精品高清一区二区三区| 亚洲高清不卡在线| 99国产成+人+综合+亚洲欧美| 999在线观看精品免费不卡网站| 国产精品资源| 日韩午夜剧场| 亚洲国产成人精品久久| 精品999网站| 免费不卡在线观看av| 一区二区三区日韩在线观看| 久久综合99re88久久爱| 国产欧美一区二区精品秋霞影院| 在线精品亚洲| 老司机一区二区三区| 久久精品国产亚洲精品| 久久成人精品视频| 国产一区二区中文| 欧美日韩成人在线| 一区二区三区在线高清| 国产精品亚洲综合一区在线观看| 亚洲国产精彩中文乱码av在线播放| 亚洲老板91色精品久久| 欧美日韩精品在线观看| 国产日韩欧美二区| 久久婷婷综合激情| 欧美一区二区日韩| 国产欧美日韩不卡| 亚洲另类一区二区| 欧美激情一区二区三区在线| 亚洲综合国产| 久久gogo国模裸体人体| 欧美日韩国产成人在线观看| 久久亚洲综合色一区二区三区| 1204国产成人精品视频| 亚洲欧美激情诱惑| 久久精品一区二区三区中文字幕| 欧美日韩一区二区三区| 狠狠色狠狠色综合日日tαg| 激情亚洲成人| 午夜亚洲影视| 亚洲国产精品黑人久久久| 在线观看欧美激情| 亚洲人成亚洲人成在线观看图片| 欧美国产在线观看| 欧美啪啪一区| 欧美精品1区2区| 亚洲日韩中文字幕在线播放| 亚洲欧洲av一区二区三区久久| 一区二区国产在线观看| 一区二区免费看| 欧美成人亚洲成人| 国产美女精品免费电影| 欧美日产在线观看| 最新成人av在线| 在线亚洲+欧美+日本专区| 欧美韩日一区二区三区| 国产精品一级久久久| 欧美伊人久久久久久午夜久久久久| 国产亚洲精品久久久久久| 欧美日韩成人免费| 国产精品多人| 亚洲欧美中文在线视频| 亚洲淫片在线视频| 久久狠狠一本精品综合网| 国产视频观看一区| 国产热re99久久6国产精品| 欧美中文字幕在线视频| 久久精品国产亚洲高清剧情介绍| 久久久久久999| 国产精品视频久久久| 国产一区视频在线观看免费| 黄色国产精品| 国产欧美精品国产国产专区| 国产一区深夜福利| 国语精品中文字幕| 午夜激情久久久| 亚洲精品中文字幕在线观看| 欧美一区深夜视频| 久久综合色播五月| 亚洲日本久久| 一本一本久久a久久精品综合妖精| 亚洲视频在线播放| 亚洲嫩草精品久久| 亚洲欧洲一二三| 伊人成人网在线看| 国产真实乱偷精品视频免| 欧美日韩和欧美的一区二区| 欧美激情一区在线观看| 夜夜嗨av一区二区三区网页| 欧美日韩日本视频| 女生裸体视频一区二区三区|