人人干人人插_在线观看一二三区_都市激情亚洲_久久精品无码一区二区三区毛片_国产精品女同一区二区三区_亚洲精品乱码久久久久久久久久久久_欧美理伦片在线播放_超碰97在线资源

代寫COMP528、代做c/c++,Python程序語言

時間:2024-07-27  來源:  作者: 我要糾錯



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

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




 

標簽:

掃一掃在手機打開當前頁
  • 上一篇:CIT 593代做、代寫Java/c++語言編程
  • 下一篇:代寫COMP4337、代做Python編程設計
  • 代做IERG 4080、代寫Python程序語言
  • CS202代做、代寫Java/Python程序語言
  • 代做SEHH2239、Python程序語言代寫
  • COMP3334代做、代寫Python程序語言
  • 代寫COMP9021、代做Python程序語言
  • 昆明生活資訊

    昆明圖文信息
    蝴蝶泉(4A)-大理旅游
    蝴蝶泉(4A)-大理旅游
    油炸竹蟲
    油炸竹蟲
    酸筍煮魚(雞)
    酸筍煮魚(雞)
    竹筒飯
    竹筒飯
    香茅草烤魚
    香茅草烤魚
    檸檬烤魚
    檸檬烤魚
    昆明西山國家級風景名勝區
    昆明西山國家級風景名勝區
    昆明旅游索道攻略
    昆明旅游索道攻略
  • 短信驗證碼平臺 理財 WPS下載

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

    Copyright © 2025 kmw.cc Inc. All Rights Reserved. 昆明網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    中文字幕av一区二区| 嫩草影院在线观看未满十八| 免费不卡中文字幕视频| 91蝌蚪在线观看视频| av一卡二卡| 米奇777四色精品人人爽| 一区二区三区电影大全| 中文幕av一区二区三区佐山爱| 久草成人资源| 免费成人你懂的| 国产精品亲子乱子伦xxxx裸| 色婷婷久久久亚洲一区二区三区 | 97超碰色婷婷| 国产精品一区二区三区精品| www.夜夜爱| 涩视频在线观看| 九九热在线视频播放| 中文字幕av高清| 黄色高清在线观看| 欧美暴力调教| 国内在线观看一区二区三区| 国产一区二区三区免费播放 | xxxx69hd| 亚洲国产精华液| 国产精品亚洲一区二区三区在线观看| 欧美黑人欧美精品刺激| 久久久精品91| 亚洲欧美va天堂人熟伦| 日本a在线观看| 性xxxx奶大欧美高清| 黄色直播在线| 99久久这里有精品| 久久亚洲精选| 亚洲国产中文字幕| 这里只有精品在线播放| 成人在线免费网站| 亚洲激情在线看| 北条麻妃亚洲一区| 久久久成人免费视频| 91精彩视频| av免费在线观看网址| 国产一区二区三区电影在线观看| 黑人精品欧美一区二区蜜桃| 福利视频导航一区| 欧美激情乱人伦| 一本—道久久a久久精品蜜桃| 亚洲久久久久久| 91成人在线免费视频| 国产精品一级视频| 日本女优北野望在线电影| 欧美7777| 玖玖国产精品视频| 91福利视频网站| 在线成人av网站| 国产精品成人一区二区三区吃奶| 人妻无码久久一区二区三区免费| 能直接看的av| 成年女人免费毛片视频永久| 日本精品在线| 婷婷综合网站| 久久久噜噜噜久久狠狠50岁| 精品国产鲁一鲁一区二区张丽 | 欧美成人手机在线视频| 一区二区三区免费在线| 日夜干在线视频| 日韩情爱电影在线观看| 一区二区三区中文在线| 欧美一级大片在线免费观看| 热久久精品国产| 国产探花精品一区二区| 国产中文在线| 精品91久久久久| 在线免费观看日韩欧美| 99国产超薄丝袜足j在线观看 | 一级片免费看| 久久不见久久见免费视频7| 国产精品久久免费看| 精品视频9999| 亚洲免费一级视频| 先锋资源一区二区| 成人爽a毛片免费啪啪动漫| 久久久国产亚洲精品| 制服丝袜一区二区三区| 日韩在线观看免费高清| 国产a级片网站| 国产一区二区三区四区视频| 中文字幕在线观看日本| av不卡在线| 欧美mv日韩mv| 浴室偷拍美女洗澡456在线| 少妇又紧又色又爽又刺激视频 | 日韩av一区二区三区四区| 久久久久国产免费免费| 草民午夜欧美限制a级福利片| 91猫先生在线| 久久影院朴妮唛| 日韩欧美激情| 国产精品嫩草影院com| 国产成人精品综合| 国产精品久久久久无码av色戒| 女生裸体免费视频| 国产伦精品一区二区三区视频 | 蜜桃精品久久久久久久免费影院| 午夜精品福利在线视频| 伊人中文在线| 久久精品免费| 久久精品影视伊人网| 国产毛片久久久久久| 摸bbb搡bbb搡bbbb| 成人情趣视频| 精品久久久三级丝袜| 国产va亚洲va在线va| 国产在线免费av| 天堂男人av| 国产精品一国产精品k频道56| 日韩黄色高清视频| 亚洲色图久久久| 91免费看片| 1024精品久久久久久久久| 日韩欧美在线网站| 欧美色图另类小说| 四虎精品视频| 欧美综合一区| 亚洲精品小视频在线观看| gogogo高清免费观看在线视频| 国产剧情在线一区| 麻豆av在线播放| 91麻豆.com| 97se亚洲综合| 国产精品国产精品国产专区| 91p九色成人| 欧美视频免费在线| 青青草综合在线| 欧美成人精品福利在线视频| 成人网18免费网站| 亚洲精品按摩视频| 成人性生交视频免费观看| 涩涩漫画在线观看| 捆绑紧缚一区二区三区视频| 欧美中文字幕在线| 日韩伦人妻无码| 影视一区二区三区| 欧美特级www| 黄色片久久久久| 色视频网站在线| 免费在线看成人av| 欧美孕妇性xx| 99re国产在线| 日韩中文在线| 日韩一区二区高清| 免费观看黄网站| 欧美女子与性| 国产精品传媒视频| 国产日本欧美在线| 欧美成人午夜做爰视频在线观看| 欧美91视频| 97国产精品人人爽人人做| 亚欧视频在线观看| 中文成人激情娱乐网| 精品对白一区国产伦| av直播在线观看| 在线观看三级视频| 欧美日韩国产一区二区三区| 91精品91久久久中77777老牛| 中国免费黄视频| 99精品黄色片免费大全| 天天综合色天天综合色hd| 91九色国产蝌蚪| 免费在线看成人av| 久久国产精品亚洲va麻豆| 欧美xxxxb| 奇米影视7777精品一区二区| 97超碰在线播放| 九九久久久2| 久久久久国内| 国产欧美日韩伦理| 国产网站麻豆精品视频| 美腿丝袜一区二区三区| 2022国产精品| 国产又白又嫩又紧又爽18p| 免费高清不卡av| 久久精品国产一区二区三区不卡| 国产又粗又长| 成人黄色小视频在线观看| 国产a级片免费看| 亚洲精华国产| 一区二区三区.www| 91香蕉国产线在线观看| 最新黄网在线观看| 5858s免费视频成人| 久久久久无码精品国产sm果冻 | 国产无人区一区二区三区| 色老头在线观看| 久久久99免费| av在线一区二区| 狠狠色综合播放一区二区| 青青草成人影院| 91欧美国产| 精品国产三区在线| 台湾亚洲精品一区二区tv|