久久久久久精品无码人妻_青春草无码精品视频在线观_无码精品国产VA在线观看_国产色无码专区在线观看

代寫COMP528、代做c/c++,Python程序語(yǔ)言

時(shí)間:2024-07-27  來(lái)源:  作者: 我要糾錯(cuò)



University of Liverpool Assignment 1 Resit COMP528
In this assignment, you are asked to implement 2 algorithms for the Travelling Salesman
Problem. This document explains the operations in detail, so you do not need previous
knowledge. You are encouraged to begin work on this as soon as possible to avoid the queue
times on Barkla closer to the deadline. We would be happy to clarify anything you do not
understand in this report.
1 The Travelling Salesman Problem (TSP)
The travelling salesman problem is a problem that seeks to answer the following question:
‘Given a list of vertices and the distances between each pair of vertices, what is the shortest
possible route that visits each vertex exactly once and returns to the origin vertex?’.
(a) A fully connected graph
(b) The shortest route around all vertices
Figure 1: An example of the travelling salesman problem
The travelling salesman problem is an NP-hard problem, that meaning an exact solution
cannot be solved in polynomial time. However, there are polynomial solutions that can
be used which give an approximation of the shortest route between all vertices. In this
assignment you are asked to implement 2 of these.
1.1 Terminology
We will call each point on the graph the vertex. There are 6 vertices in Figure 1.
We will call each connection between vertices the edge. There are 15 edges in Figure 1.
We will call two vertices connected if they have an edge between them.
The sequence of vertices that are visited is called the tour. The tour for Figure 1(b) is
(0, 2, 4, 5, 3, 1, 0). Note the tour always starts and ends at the origin vertex.
A partial tour is a tour that has not yet visited all the vertices.
2023-2024 1University of Liverpool Assignment 1 Resit COMP528
2 The solutions
2.1 Preparation of Solution
You are given a number of coordinate ffles with this format:
x, y
4.81263062736921, 8.34719930253777
2.90156816804616, 0.39593575612759
1.13649642931556, 2.27359458630845
4.49079099682118, 2.97491204443206
9.84251616851393, 9.10783427307047
Figure 2: Format of a coord ffle
Each line is a coordinate for a vertex, with the x and y coordinate being separated by a
comma. You will need to convert this into a distance matrix.
0.000000 8.177698 7.099481 5.381919 5.087073
8.177698 0.000000 2.577029 3.029315 11.138848
7.099481 2.577029 0.000000 3.426826 11.068045
5.381919 3.029315 3.426826 0.000000 8.139637
5.087073 11.138848 11.068045 8.139637 0.000000
Figure 3: A distance matrix for Figure 2
To convert the coordinates to a distance matrix, you will need make use of the euclidean
distance formula.
d =
p
(xi − xj )
2 + (yi − yj )
2
Figure 4: The euclidean distance formula
Where: d is the distance between 2 vertices vi and vj
, xi and yi are the coordinates of the
vertex vi
, and xj and yj are the coordinates of the vertex vj
.
2023-2024 2University of Liverpool Assignment 1 Resit COMP528
2.2 Smallest Sum Insertion
The smallest sum insertion algorithm starts the tour with the vertex with the lowest index.
In this case that is vertex 0. Each step, it selects a currently unvisited vertex where the
total edge cost to all the vertices in the partial tour is minimal. It then inserts it between
two connected vertices in the partial tour where the cost of inserting it between those two
connected vertices is minimal.
These steps can be followed to implement the smallest sum insertion algorithm. Assume
that the indices i, j, k etc; are vertex labels unless stated otherwise. In a tiebreak situation,
always pick the lowest index(indices).
1. Start off with a vertex vi.
4
Figure 5: Step 1 of Smallest Sum Insertion
2. Find a vertex vj such that
Pt=Length(partialtour)
t=0
dist(vt
, vj ) is minimal.
Figure 6: Step 2 of Smallest Sum Insertion
3. Insert vj between two connected vertices in the partial tour vn and vn+1, where n is a
position in the partial tour, such that dist(vn, vj ) + dist(vn+1, vj ) - dist(vn, vn+1) is
minimal.
4. Repeat steps 2 and 3 until all of the vertices have been visited.
2023-2024 3University of Liverpool Assignment 1 Resit COMP528
Figure 7: Step 3 of Smallest Sum Insertion
4
(a) Select the vertex
(b) Insert the vertex
Figure 8: Step 4 of Smallest Sum Insertion
(b) Insert the vertex
Figure 9: Step 5 of Smallest Sum Insertion
2023-2024 4University of Liverpool Assignment 1 Resit COMP528
4
(b) Insert the vertex
Figure 10: Step 6 of Smallest Sum Insertion
(a) Select the vertex
(b) Insert the vertex
Figure 11: Step 7 of Smallest Sum Insertion
2023-2024 5University of Liverpool Assignment 1 Resit COMP528
2.3 MinMax Insertion
The minmax insertion algorithm starts the tour with the vertex with the lowest index. In this
case that is vertex 0. Each step, it selects a currently unvisited vertex where the largest edge
to a vertex in the partial tour is minimal. It then inserts it between two connected vertices
in the partial tour where the cost of inserting it between those two connected vertices is
minimal.
These steps can be followed to implement the minmax insertion algorithm. Assume that the
indices i, j, k etc; are vertex labels unless stated otherwise. In a tiebreak situation, always
pick the lowest index(indices).
1. Start off with a vertex vi.
Figure 12: Step 1 of Minmax Insertion
2. Find a vertex vj such that M ax(dist(vt
, vj )) is minimal, where t is the list of elements
in the tour.
Figure 13: Step 2 of Minmax Insertion
3. Insert vj between two connected vertices in the partial tour vn and vn+1, where n is a
position in the partial tour, such that dist(vn, vj ) + dist(vn+1, vj ) - dist(vn, vn+1) is
minimal.
4. Repeat steps 2 and 3 until all of the vertices have been visited.
2023-2024 6University of Liverpool Assignment 1 Resit COMP528
Figure 14: Step 3 of Minmax Insertion
(a) Select the vertex
4
(b) Insert the vertex
Figure 15: Step 4 of Minmax Insertion
(a) Select the vertex
(b) Insert the vertex
Figure 16: Step 5 of Minmax Insertion
2023-2024 7University of Liverpool Assignment 1 Resit COMP528
(a) Select the vertex
4
(b) Insert the vertex
Figure 17: Step 6 of Minmax Insertion
(b) Insert the vertex
Figure 18: Step 7 of Minmax Insertion
2023-2024 8University of Liverpool Assignment 1 Resit COMP528
3 Running your programs
Your program should be able to be ran like so:
$ ./<program name >. exe <c o o r d i n a t e f i l e n a m e > <o u t p u t fil e n am e >
Therefore, your program should accept a coordinate file, and an output file as arguments.
Note that C considers the first argument as the program executable. Both implementations
should read a coordinate file, run either smallest sum insertion or MinMax insertion, and
write the tour to the output file.
3.1 Provided Code
You are provided with the file coordReader.c, which you will need to include this file when
compiling your programs.
1. readNumOfCoords(): This function takes a filename as a parameter and returns the
number of coordinates in the given file as an integer.
2. readCoords(): This function takes the filename and the number of coordinates as
parameters, and returns the coordinates from a file and stores it in a two-dimensional
array of doubles, where coords[i][0] is the x coordinate for the ith coordinate, and
coords[i][1] is the y coordinate for the ith coordinate.
3. writeTourToFile(): This function takes the tour, the tour length, and the output
filename as parameters, and writes the tour to the given file.
4 Instructions
• Implement a serial solution for the smallest sum insertion and the MinMax insertion.
Name these: ssInsertion.c, mmInsertion.c.
• Implement a parallel solution, using OpenMP,for the smallest sum insertion and the
MinMax insertion algorithms. Name these: ompssInsertion.c, ompmmInsertion.c.
• Create a Makefile and call it ”Makefile” which performs as the list states below. Without
the Makefile, your code will not grade on CodeGrade.
– make ssi compiles ssInsertion.c and coordReader.c into ssi.exe with the GNU
compiler
– make mmi compiles mmInsertion.c and coordReader.c into mmi.exe with the
GNU compiler
2023-2024 9University of Liverpool Assignment 1 Resit COMP528
– make ssomp compiles ompssInsertion.c and coordReader.c into ssomp.exe with
the GNU compiler
– make mmomp compiles ompmmInsertion.c and coordReader.c into mmomp.exe
with the GNU compiler
– make issomp compiles ompssInsertion.c and coordReader.c into issomp.exe with
the Intel compiler
– make immomp compiles ompmmInsertion.c and coordReader.c into immomp.exe
the Intel compiler
• Test each of your parallel solutions using 1, 2, 4, 8, 16, and 32 threads, recording
the time it takes to solve each one. Record the start time after you read from the
coordinates file, and the end time before you write to the output file. Do all testing
with the large data file.
• Plot a speedup plot with the speedup on the y-axis and the number of threads on the
x-axis for each parallel solution.
• Plot a parallel efficiency plot with parallel efficiency on the y-axis and the number of
threads on the x-axis for each parallel solution.
• Write a report that, for each solution, using no more than 1 page per solution,
describes: your serial version, and your parallelisation strategy.
• In your report, include: the speedup and parallel efficiency plots, how you conducted
each measurement and calculation to plot these, and screenshots of you compiling and
running your program. These do not contribute to the page limit.
• Your final submission should be uploaded onto CodeGrade. The files you
upload should be:
1. Makefile
2. ssInsertion.c
3. mmInsertion.c
4. ompssInsertion.c
5. ompmmInsertion.c
6. report.pdf
7. The slurm script you used to run your code on Barkla.
2023-2024 10University of Liverpool Assignment 1 Resit COMP528
5 Hints
You can also parallelise the conversion of the coordinates to the distance matrix. When
declaring arrays, it’s better to use dynamic memory allocation. You can do this by:
int ∗ o n e d a r ra y = ( int ∗) malloc ( numOfElements ∗ s i z e o f ( int ) ) ;
For a 2-D array:
int ∗∗ twod a r ra y = ( int ∗∗) malloc ( numOfElements ∗ s i z e o f ( int ∗ ) ) ;
for ( int i = 0 ; i < numOfElements ; i ++){
twod a r ra y [ i ] = ( int ∗) malloc ( numOfElements ∗ s i z e o f ( int ) ) ;
}
5.1 MakeFile
You are instructed to use a MakeFile to compile the code in any way you like. An example
of how to use a MakeFile can be used here:
{make command } : { t a r g e t f i l e s }
{compile command}
s s i : s s I n s e r t i o n . c coordReader . c
gcc s s I n s e r t i o n . c coordReader . c −o s s i . exe −lm
Now, on the command line, if you type ‘make ssi‘, the compile command is automatically
executed. It is worth noting, the compile command must be indented. The target files are
the files that must be present for the make command to execute.
This command may work for you and it may not. The point is to allow you to compile
however you like. If you want to declare the iterator in a for loop, you would have to add the
compiler flag −std=c99. −fopenmp is for the GNU compiler and −qopenmp is for the
Intel Compiler. If you find that the MakeFile is not working, please get in contact as soon
as possible.
Contact: h.j.forbes@liverpool.ac.uk
2023-2024 11University of Liverpool Assignment 1 Resit COMP528
6 Marking scheme
1 Code that compiles without errors or warnings 15%
2 Same numerical results for test cases (tested on CodeGrade) 20%
3 Speedup plot 10%
4 Parallel Efficiency Plot 10%
5 Parallel efficiency up to 32 threads (tests on Barkla yields good efficiency
for 1 Rank with 1, 2, 4, 8, 16, 32 OMP threads)
15%
6 Speed of program (tests on Barkla yields good runtime for 1, 2, 4, 8, 16,
32 ranks with 1 OMP thread)
10%
7 Clean code and comments 10%
8 Report 10%
Table 1: Marking scheme
The purpose of this assessment is to develop your skills in analysing numerical programs and
developing parallel programs using OpenMP. This assessment accounts for 40% of your final
mark, however as it is a resit you will be capped at 50% unless otherwise stated by the Student
Experience Team. Your work will be submitted to automatic plagiarism/collusion detection
systems, and those exceeding a threshold will be reported to the Academic Integrity Officer for
investigation regarding adhesion to the university’s policy https://www.liverpool.ac.uk/
media/livacuk/tqsd/code-of-practice-on-assessment/appendix_L_cop_assess.pdf.
7 Deadline
The deadline is 23:59 GMT Friday the 2nd of August 2024. https://www.liverp
ool.ac.uk/aqsd/academic-codes-of-practice/code-of-practice-on-assessment/
2023-2024 12

請(qǐng)加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp




 

標(biāo)簽:

掃一掃在手機(jī)打開(kāi)當(dāng)前頁(yè)
  • 上一篇:CIT 593代做、代寫Java/c++語(yǔ)言編程
  • 下一篇:代寫COMP4337、代做Python編程設(shè)計(jì)
  • 代做IERG 4080、代寫Python程序語(yǔ)言
  • CS202代做、代寫Java/Python程序語(yǔ)言
  • 代做SEHH2239、Python程序語(yǔ)言代寫
  • COMP3334代做、代寫Python程序語(yǔ)言
  • 代寫COMP9021、代做Python程序語(yǔ)言
  • 昆明生活資訊

    昆明圖文信息
    蝴蝶泉(4A)-大理旅游
    蝴蝶泉(4A)-大理旅游
    油炸竹蟲(chóng)
    油炸竹蟲(chóng)
    酸筍煮魚(yú)(雞)
    酸筍煮魚(yú)(雞)
    竹筒飯
    竹筒飯
    香茅草烤魚(yú)
    香茅草烤魚(yú)
    檸檬烤魚(yú)
    檸檬烤魚(yú)
    昆明西山國(guó)家級(jí)風(fēng)景名勝區(qū)
    昆明西山國(guó)家級(jí)風(fēng)景名勝區(qū)
    昆明旅游索道攻略
    昆明旅游索道攻略
  • NBA直播 短信驗(yàn)證碼平臺(tái) 幣安官網(wǎng)下載 歐冠直播 WPS下載

    關(guān)于我們 | 打賞支持 | 廣告服務(wù) | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責(zé)聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 kmw.cc Inc. All Rights Reserved. 昆明網(wǎng) 版權(quán)所有
    ICP備06013414號(hào)-3 公安備 42010502001045

    久久久久久精品无码人妻_青春草无码精品视频在线观_无码精品国产VA在线观看_国产色无码专区在线观看

    黄色永久免费网站| 国产午夜福利在线播放| 男女h黄动漫啪啪无遮挡软件| 丁香六月激情婷婷| 中文字幕第三区| 啊啊啊国产视频| 精品久久一二三| 日本国产中文字幕| 亚洲黄色av片| 亚洲人视频在线| 丝袜制服一区二区三区| 欧美日韩在线视频一区二区三区| 日韩a级黄色片| 国产一级黄色录像片| 亚洲欧洲日本精品| 国产男女无遮挡| 欧美亚洲一二三区| 激情五月婷婷六月| 青青青在线观看视频| 一二三在线视频| 国产高潮呻吟久久久| 北条麻妃亚洲一区| 国产91av视频在线观看| 国产精品igao网网址不卡| 中文字幕久久av| 91国内在线播放| 亚洲午夜激情影院| 想看黄色一级片| 亚洲AV无码成人精品一区| 国产又爽又黄ai换脸| 搡的我好爽在线观看免费视频| 国产永久免费网站| 中文字幕第22页| 免费看啪啪网站| 最新av网址在线观看| 日韩a级黄色片| 人人干视频在线| 国产主播在线看| 亚洲成人av免费看| 一区二区在线免费看| 一区二区三区日韩视频| 国产女人18毛片| 给我免费播放片在线观看| 又粗又黑又大的吊av| 91淫黄看大片| 色啦啦av综合| 黄网站色视频免费观看| 日韩伦理在线免费观看| 日批视频在线免费看| 中文字幕有码av| 色偷偷中文字幕| 欧美日韩不卡在线视频| 黄色a级片免费| jizzzz日本| 亚洲国产一二三精品无码| 成人免费观看cn| 午夜视频你懂的| 黄色小视频大全| 欧美视频第一区| 免费在线观看污网站| 国产片侵犯亲女视频播放| 无码精品国产一区二区三区免费| 日韩大片一区二区| japanese在线播放| 日本免费黄视频| 色多多视频在线播放| 污免费在线观看| 免费 成 人 黄 色| 激情黄色小视频| 国产欧美日韩网站| 国内国产精品天干天干| 免费人成在线观看视频播放| 一区二区三区韩国| 久久精品无码中文字幕| 奇米影音第四色| 国产一二三在线视频| 中文字幕 91| 国产欧美日韩网站| 国产三级生活片| 国产极品在线视频| 国产性生活一级片| 99色精品视频| 国产又粗又长又爽视频| 亚欧在线免费观看| 日韩黄色片在线| 在线一区二区不卡| 日韩视频第二页| 久久久久福利视频| 在线黄色免费看| 自拍日韩亚洲一区在线| 日本在线观看视频一区| 日韩a在线播放| 久久久久久久久久久综合| 蜜臀一区二区三区精品免费视频 | 狠狠精品干练久久久无码中文字幕 | 国产精品久久久久久久av福利| 每日在线更新av| 毛片av在线播放| 久久久久久久久久毛片| av无码精品一区二区三区| 给我免费播放片在线观看| dy888午夜| 国产精品久久久毛片| 欧美精品99久久| 丁香婷婷综合激情| 青青草原播放器| 中文字幕第36页| 人妻少妇被粗大爽9797pw| 亚洲国产精品成人天堂| 国产对白在线播放| 涩涩网站在线看| 男人添女人下面免费视频| 黑鬼大战白妞高潮喷白浆| 免费一级特黄特色毛片久久看| 日本中文字幕一级片| 99精品视频网站| a在线观看免费视频| www.com毛片| 欧美 日韩 亚洲 一区| 久久人人爽人人爽人人av| 路边理发店露脸熟妇泻火| www.日本久久| 五月天国产视频| 毛片毛片毛片毛片毛| 亚洲视频在线不卡| 91手机视频在线| 黄色一级视频播放| 日本精品一区在线| 在线观看日本www| 久久出品必属精品| www.偷拍.com| 9999在线观看| 久久精品在线免费视频| 三级在线免费观看| 国产片侵犯亲女视频播放| 久艹在线免费观看| av高清在线免费观看| 欧美亚洲精品一区二区| 欧美日韩中文在线视频| 国产成人久久婷婷精品流白浆| 毛片一区二区三区四区| 欧美精品aaaa| 色播五月综合网| 中文字幕在线视频一区二区三区| 欧美一级免费在线观看| 欧美美女黄色网| 青青草成人免费在线视频| 91精品91久久久中77777老牛| 成年人黄色片视频| 艹b视频在线观看| 超碰成人在线免费观看| 国产玉足脚交久久欧美| 精品中文字幕av| 中文字幕有码av| 天天成人综合网| 人妻无码久久一区二区三区免费 | 国产精品12p| 日韩小视频网站| 少妇高潮喷水久久久久久久久久| av网站在线观看不卡| 日韩欧美国产片| 色哟哟免费网站| 国产精品333| 蜜臀av免费观看| 99热这里只有精品7| 成年人网站免费视频| www.超碰com| 婷婷视频在线播放| 久久99中文字幕| 182午夜在线观看| 隔壁人妻偷人bd中字| 免费午夜视频在线观看| 红桃视频一区二区三区免费| 99久久久精品视频| 四季av一区二区| 国产在线观看欧美| wwwwww.色| 亚洲一级片免费观看| 久久亚洲中文字幕无码| 欧美精品性生活| 一本色道久久88亚洲精品综合| 国产淫片免费看| 欧美日韩一级在线| 青青草精品视频在线| 在线免费观看av的网站| 国产女人18毛片| 无码内射中文字幕岛国片| 久久久国产精华液999999| 女人色极品影院| 国产日韩欧美久久| 成人免费观看在线| 欧美大尺度做爰床戏| 国产www免费| 天堂在线精品视频| 国产一级片黄色| 韩国一区二区av| 在线视频一二区| 成人亚洲视频在线观看| 特级毛片在线免费观看| 免费男同深夜夜行网站|