国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

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

代寫G6017 Program Analysis

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



THE UNIVERSITY OF SUSSEX
BSc and MComp SECOND YEAR EXAMINATION January 2022 (A1)
Program Analysis Assessment Period: January 2022 (A1)
Candidate Number
G6017
 DO NOT TURN OVER UNTIL INSTRUCTED TO BY THE LEAD INVIGILATOR
Candidates should answer TWO questions out of THREE.
If all three questions are attempted only the first two answers will be marked.
The time allowed is TWO hours. Each question is worth 50 marks.
At the end of the examination the question paper and/or answer book, used or unused, will be collected from you before you leave the examination room.

G6017 Program Analysis
1.
(a) Precisely specify the conditions under which the following algorithm returns
true, and then discuss, in detail, the running time of the algorithm. If you think it has different best- and worst-case running times then these should be considered separately, and you should explain the conditions under which best and worst-cases arise.
You must fully explain your answer and use O,  and &#***3; appropriately to receive full marks.
  Algorithm Ex1 ((𝑎1, ... 𝑎𝑛), (𝑏1, ... , 𝑏𝑚))
𝑘←0
for 𝑖 ← 1 to 𝑛 do
𝑗←1
while 𝑗 ≤ 𝑚 do
If𝑎 ==𝑏 𝑖𝑗
𝑘←𝑘+1 𝑗←𝑗+1
return 𝑘 > 0
 (b) Precisely specify the conditions under which the following algorithm returns true, and then discuss, in detail, the running time of the algorithm. If you think it has different best- and worst-case running times then these should be considered separately, and you should explain the conditions under which best and worst-cases arise.
You must fully explain your answer and use O,  and &#***3; appropriately to receive full marks.
[10 marks]
 Algorithm Ex2 ((𝑎1, ... 𝑎𝑛), (𝑏1, ... , 𝑏𝑛)) w**2; ← w**5;w**3;w**6;Ү**;
for𝑖←1to𝑛 do 𝑗←𝑛
while𝑗>0andw**2; ==w**5;w**3;w**6;Ү**;do If𝑎 ==𝑏
𝑗←𝑗−1 return w**2;
𝑖𝑗
w**2; ← 𝑓𝑎𝑙w**4;Ү**;
 2
[10 marks]

(c) Precisely specify the conditions under which the following algorithm returns true, and then discuss, in detail, the running time of the algorithm. If you think it has different best- and worst-case running times then these should be considered separately, and you should explain the conditions under which best and worst-cases arise.
You must fully explain your answer and use O,  and &#***3; appropriately to receive full marks.
 Algorithm Ex3 ((𝑎1, ... 𝑎𝑛), 𝑏)
w**2;←0
w**8; ← 𝑓𝑎𝑙w**4;Ү**;
for 𝑖 ← 1 to 𝑛 − 1 do
𝑧 ← 𝑎𝑖 + 𝑎𝑖+1 If 𝑧 < 𝑏
w**2;←w**2;+1
else
If w**2; < 0 return w**8;
w**2;←w**2;−1 w**8; ← w**5;w**3;w**6;Ү**;
 (d) A data pattern analyser is to be built that can detect and count up the number of occurrences of two and three letter same letter sequences in a sequence (e.g. (a,a) or (b,b,b) ). The analyser should stop if it encounters * in the sequence and return the number of occurrences found up to that point in the form of a 2-tuple (#2𝐿Ү**;w**5;w**5;Ү**;w**3;𝑆Ү**;w**2;w**6;Ү**;𝑛𝑐Ү**;w**4;, #3𝐿Ү**;w**5;w**5;Ү**;w**3;𝑆Ү**;w**2;w**6;Ү**;𝑛𝑐Ү**;w**4;). A 3 letter sequence should only count as a 3 letter sequence, not an occurrence of two 2 letter sequences. No letter in the input sequence ever occurs more than 3 times in a row.
So, for example:
Input string (a,b,a,b,b,a,a,*)
(x,x,x,y,y) (p,q,p,z,z,*) (*,a,a)
(x,x,a,d,*, s,s,s,l)
2 letter sequences found
2 1 1 0 1
3 letter sequences found
0 1 0 0 0
[10 marks]
                     3

Produce a formal statement of this problem, and then write an algorithm to solve the problem using a pseudo code style similar to the one shown in parts (a) to (c). State the bounds on the best and worst case performance of your algorithms using O,  and &#***3; appropriately to receive full marks.
[10 marks]
(e) A file is protected by a random password consisting of 𝑛 binary bits. All password combinations are equally probable. To access the file we need the correct password. The process of applying the password to the file takes 10ms regardless of the value of 𝑛. Brute force attack is always a viable basic strategy for guessing a password.
To ensure that the file remains sufficiently secure, we need to ensure that there is no more than a 1% chance over 30 days that the password is guessed by a hacker program utilizing brute force working 24 hours a day, 7 days a week. How many bits should be specified for the password?
2.
(a) A student has been asked to put some parcels on a shelf. The parcels all weigh different amounts, and the shelf has a maximum safe loading weight capacity of 100 Kg. The weight of parcels are as follows (in Kg):
𝒑𝒂𝒓𝒄𝒆𝒍 𝒘𝒆𝒊𝒈𝒉𝒕 (𝑲𝒈)
18 2 50 ** 4 15 54 65 7 20
The student has been asked to load the maximum weight possible parcels on the shelf subject to the maximum safe loading weight.
State two possible approaches for a greedy algorithm solution to solve this problem. In each case, state clearly the result you would get from applying that approach to this problem, stating whether the solution is optimal or not. If
[10 marks]
                  4

your answer does not produce an optimal solution, what algorithm could be employed to find one?
[10 marks]
(b) One example of a greedy algorithm is the Dijkstra algorithm for finding the lowest cost path through a weighted graph. The diagram below shows two weighted graphs that a student wants to investigate using Dijkstra’s algorithm. In each case the task it to find the lowest cost of reaching every node from v1. Each graph has a single negative weight in it.
Graph (a) Graph (b)
One of the graphs will yield a correct analysis of the lowest cost for all vertices, and the other will produce an incorrect analysis. Which of the two graphs will produce the incorrect analysis, and explain why the greedy nature of Dijkstra’s algorithm is responsible for the incorrect analysis. Your answer should include the key concept of an invariant.
[5 marks]
(c) The priority queue is a widely used data structure. Priority queues may be implemented using binary heaps and simple linear arrays. For the basic priority queue operations of:
• Building an initial queue
• Taking the highest priority item off the queue
• Adding a new item to the queue
Compare and contrast the running time complexities (best and worst cases) associated with implementations using binary heaps and simple linear arrays. You may find it helpful to use diagrams to support your answer.
[10 marks]
           5

(d) A recursive algorithm is applied to some data 𝐴 = (𝑎1, ... , 𝑎𝑚) where 𝑚 ≥ 2 and 𝑚 is even. The running time 𝑇 is characterised using the following recurrence equations:
𝑇(2) = 𝑐 when the size of 𝐴 is 2 𝑇(𝑚) = 𝑇(𝑚 − 2) + 𝑐 otherwise
Determine the running time complexity of this algorithm. Note that 𝑚 is even and the problem size reduces by 2 for each recursion.
[10 marks]
(e) Another recursive algorithm is applied to some data 𝐴 = (𝑎1, ... , 𝑎𝑚) where 𝑚 = 2w**9; (i.e. 2, 4, 8,16 ...) where w**9; is an integer ≥ 1. The running time T is characterised using the following recurrence equations:
𝑇(1) = 𝑐 when the size of 𝐴 is 1, and 𝑐 is a constant 𝑇(𝑚) = 2𝑇 (𝑚) + 𝑚 otherwise
2
Determine the running time complexity of this algorithm. You will find it helpful to recall that:
w**9;=∞ 1
∑2𝑘 →1 w**9;=1
And
2𝑙w**0;𝑔2(w**9;) = w**9;
3.
[15 marks]
(a) The subset sum problem can be reliably solved optimally using the dynamic programming algorithm shown below:
   SubsetSum(𝑛, 𝑊)
Let w**;(0,w**8;) = 0 for each w**8; ∈ {0,...,𝑊} for 𝑖 ← 1 w**5;w**0; 𝑛
for w**8; ← 0 w**5;w**0; 𝑊 ifw**8;<w**8;𝑖 then
w**;(𝑖, w**8;) ← w**;(𝑖 − 1, w**8;)
else
w**;(𝑖,w**8;)←max(w**8;𝑖 +w**;(𝑖−1,w**8;−w**8;𝑖),w**;(𝑖−1,w**8;))
 6

Where 𝑛 is the number of requests, 𝑊 is the maximum weight constraint, w**8;𝑖 is the weight associated with request 𝑖, and w**; is the solution space.
You are given a set of requests and their corresponding weights. The maximum weight constraint 𝑊 is 12.
𝒊 𝒘𝒊
11 2** 10 46 53 62
Copy the following solution space table to your answer book (do not write your answer on the question paper) and complete the table to determine the optimal subset sum.
                       𝒊
6 5 4 3 2 1 0
𝒘
0 1 2 3 4 5 6 7 8 9 10 11 12
[10 marks]
     (b) The sequence alignment problem may be solved by the following dynamic programming algorithm:
   SequenceAlignment(X, Y):
Let w**;(𝑖, 0) ← 𝑖 × 𝛾 for each 1 ≤ 𝑖 ≤ 𝑛 Let w**;(0, 𝑗) ← 𝑗 × 𝛾 for each 1 ≤ 𝑗 ≤ 𝑚 For 𝑖 ← 1 w**5;w**0; 𝑛
For 𝑗 ← 1 w**5;w**0; 𝑚
w**;(𝑖, 𝑗) ← min [𝛿(w**9; , 𝑦 ) + w**;(𝑖 − 1, 𝑗 − 1),
𝑖𝑗
𝛾 + w**;(𝑖, 𝑗 − 1),
𝛾 + w**;(𝑖 − 1), 𝑗 ]
 7

Where 𝑋 = (w**9; ,...,w**9; ) and 𝑌 = (𝑦 ,...,𝑦 ) are two sequences to be aligned, 𝛿(w**1;,w**2;) 1𝑛 1𝑚
is a penalty associated with matching symbol w**1; to w**2;, and 𝛾 is a gap penalty. The sequence alignment algorithm is applied using the following data:
𝑋 =(𝑎,𝑏,𝑐)
𝑌 = (𝑎,𝑏,𝑎,𝑏,𝑏)
𝛾=4
The delta function is defined for symbols in the alphabet {𝑎, 𝑏, 𝑐} :
aBc a045 b407 c570
Generate the problem space matrix w**; and thus determine the optimal alignment between 𝑋 and 𝑌.
[15 marks] (c) Draw a Minimum Spanning Tree derived from the graph shown below.
[5 marks]
(d) The Ford-Fulkerson algorithm is used to determine network flow. The diagram below represents a data network that connects a Data Service Provider (DSP)
                         8

connected to w**7;1(w**4;) to a customer connected to w**7;6(w**5;). Each edge represents a single data transmission link.
The notation w**1;/w**2; indicates a current actual forwards flow w**1; measured in Gb/s in a pipe with a maximum capacity of w**2; also measured in Gb/s.
At the outset no data is being sent by the DSP to the customer.
i. Show the residual graph that will be created from the initial empty flow. When drawing the residual graph, show a forward edge with capacity w**9; and a backward edge with flow 𝑦 by annotating the edge w**9;⃗; 𝑦**; .
[2 marks]
ii. What is the bottleneck edge of the path (w**4;, w**7;3, w**7;4, w**5;) in the residual graph you have given in answer to part (a) ?
[2 marks]
iii. Show the residual graph after incorporating the simple path (w**4;, w**7;3, w**7;4, w**5;) that results from augmenting the flow based on the residual graph you have given in answer to part (a).
[4 marks]
iv. Repeat the process outlined above incorporating additionally the simple paths (w**4;, w**7;3, w**7;2, w**7;5, w**5;) , (w**4;, w**7;2, w**7;5, w**7;4, w**5;) and (w**4;, w**7;2, w**7;5, w**5;) showing each residual graph, to determine the maximum flow between w**4; and w**5;, and thus the maximum data bandwidth that can be achieved between the DSP and the customer.
請加QQ:99515681 或郵箱:99515681@qq.com   WX:codehelp

掃一掃在手機打開當前頁
  • 上一篇:代做SIPA U6500、代寫 java,python 程序設計
  • 下一篇:TEMU FUND海外拼多多是什么?一篇文章告訴你
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務 管路
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真技術服務
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲勞振動
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務 7類仿真分析代做服務40個行業
    流體cfd仿真分析服務 7類仿真分析代做服務4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗證碼 豆包網頁版入口 破天一劍 目錄網 排行網

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

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

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    国产美女被下药99| 久久综合婷婷综合| 久久在线中文字幕| 中文字幕中文字幕一区三区| 国产在线精品自拍| 国产成人精品一区二区在线| 日本高清一区| 久久免费观看视频| 亚洲xxxx在线| 91精品国产综合久久香蕉最新版| 国产aaa精品| 国产日韩一区二区在线| 国产精品加勒比| 蜜桃av噜噜一区二区三| 国产精品免费观看在线| 欧美日本韩国在线| 日韩中文在线中文网三级| 日韩伦理一区二区三区av在线| 久久久久九九九| 欧美一级中文字幕| 国产高清www| 日本不卡一区| 精品国产一区二区三区久久久| 欧美亚洲精品一区二区| 国产精品无码专区av在线播放| 欧美福利精品| 国产精品三级美女白浆呻吟| 国产中文欧美精品| 久久97精品久久久久久久不卡 | 91精品视频专区| 亚洲xxxx视频| 久久久久久久久网| 狠狠精品干练久久久无码中文字幕| 国产精品电影网| 国产在线青青草| 中文字幕一区二区三区有限公司 | 欧美 日韩 激情| 美女av一区二区三区 | 欧美亚洲另类制服自拍| 国产精品欧美一区二区| 国产日韩一区二区在线| 亚洲综合最新在线| 国产不卡一区二区在线播放| 欧美亚州在线观看| 精品国产一二| 99视频国产精品免费观看| 欧美一级黄色影院| 久久天天躁狠狠躁夜夜躁| 国产三级精品网站| 性亚洲最疯狂xxxx高清| 久久精品中文字幕| 国产精品自在线| 日本在线高清视频一区| 国产精品偷伦视频免费观看国产| 国产伦精品免费视频| 日日碰狠狠丁香久燥| 久久九九国产精品怡红院| 国产伦视频一区二区三区| 视频一区三区| 国产精品国产自产拍高清av水多| www.av一区视频| 人妻精品无码一区二区三区| 精品国产乱码久久久久久蜜柚| 久久一区免费| 国产一区二区视频免费在线观看 | 欧美精品午夜视频| 国产福利不卡| 国产日产精品一区二区三区四区 | 91免费精品视频| 精品www久久久久奶水| 亚洲高清123| 国产精品久久久久久中文字| 91九色蝌蚪国产| 含羞草久久爱69一区| 日韩一级片一区二区| 另类天堂视频在线观看| 国产富婆一区二区三区| 国产一区二区三区在线免费| 日本一区二区三区四区在线观看 | 欧美一级大片在线观看| 亚洲国产精品久久久久爰色欲| 国产精品免费一区豆花| 国产白丝袜美女久久久久| 国产美女久久久| 精品欧美一区免费观看α√| 日本中文字幕在线视频观看| 精品自拍视频在线观看| 久久久国产精品亚洲一区| 97国产精品久久| 国产日韩欧美在线看| 青青草成人网| 日本在线一区| 亚洲图片都市激情| 国产精品免费视频xxxx| 国产对白在线播放| 97精品视频在线观看| 国产呦系列欧美呦日韩呦| 欧美亚洲另类在线| 日韩国产精品一区二区| 亚洲a在线观看| 中国丰满熟妇xxxx性| 国产精品久久97| 俺也去精品视频在线观看| 国产v片免费观看| 91精品国产综合久久香蕉| 国产精品中文久久久久久久| 国产一区香蕉久久| 欧美日韩亚洲综合一区二区三区激情在线| 亚洲精品一区二区三区樱花| 欧美精品久久久久久久久| 国产精品久久久久秋霞鲁丝| 久久久噜噜噜久久| 久久国产亚洲精品无码| 99视频免费观看蜜桃视频| 国产欧美精品aaaaaa片| 国内一区二区在线视频观看| 欧美综合激情网| 欧洲日本亚洲国产区| 日本精品一区二区三区不卡无字幕 | 亚洲精品乱码久久久久久蜜桃91| 欧美激情网站在线观看| 精品久久久久久一区二区里番| 久色乳综合思思在线视频| 久久天天躁夜夜躁狠狠躁2022| 国产精品久久在线观看| 国产精品嫩草视频| 国产精品久久久久久av下载红粉| 国产精品无码av无码| 国产精品美女久久久久av超清| 国产精品情侣自拍| 国产精品国色综合久久| 久久伊人免费视频| 国产精品久久久久免费| 国产精品久久一| 久久香蕉国产线看观看网| 九九九热精品免费视频观看网站| 欧美激情xxxxx| 亚洲影视九九影院在线观看| 无码人妻h动漫| 日日夜夜精品网站| 欧洲精品视频在线| 精品一区日韩成人| 成人在线观看a| 久久天堂国产精品| 日日骚av一区| 久久综合伊人77777| 欧美人与性动交| 亚洲aⅴ日韩av电影在线观看| 亚洲www在线| 人妻无码久久一区二区三区免费 | 天天在线免费视频| 欧美精品久久| 国产欧美日韩精品丝袜高跟鞋| www国产无套内射com| 久久综合九色欧美狠狠| y97精品国产97久久久久久| 国产精品久久激情| 一区视频二区视频| 午夜精品视频在线观看一区二区| 亚洲爆乳无码专区| 欧美一级片久久久久久久| 青青草成人网| 国产欧美日韩一区二区三区| 97国产suv精品一区二区62| 国产二区视频在线播放| 国产精品日韩二区| 亚洲一区精品视频| 日韩精品在线中文字幕| 国内精品视频在线| 成人精品视频99在线观看免费| 国产激情视频一区| 国产精品久久久久久久天堂| 亚洲精品乱码视频| 免费在线观看亚洲视频| 精品一区久久久久久| 91精品国产成人www| 国产精品无码专区在线观看| 亚洲专区国产精品| 欧美日韩视频免费在线观看 | www日韩欧美| 在线亚洲美日韩| 欧美亚洲一级片| 97精品国产91久久久久久| 色偷偷88888欧美精品久久久| 欧美激情亚洲视频| 欧美精品一区二区三区三州| 国产精品香蕉在线观看| 国产精品无码专区av在线播放 | 色av吧综合网| 亚洲欧洲三级| 国产一区免费视频| 色777狠狠综合秋免鲁丝| 亚洲视频小说| 国产欧美精品在线| 久久精品一本久久99精品| 五月天亚洲综合情| 国产自偷自偷免费一区| 久久久久久久久久久久久国产 | 久久久综合香蕉尹人综合网| 色与欲影视天天看综合网|