日本欧洲视频一区_国模极品一区二区三区_国产熟女一区二区三区五月婷_亚洲AV成人精品日韩一区18p

FIT5216代做、代寫Java/c++程序設計

時間:2024-03-23  來源:  作者: 我要糾錯



FIT5216: Modelling Discrete Optimization Problems
Assignment 1: Animal Capture
1 Overview
For this assignment, your task is to write a MiniZinc model for a given problem specification.
• Submit your work to the MiniZinc auto grading system (using the submit button in the
MiniZinc IDE).
You have to submit by the due date (Friday 22nd March 2024, 11:55pm), using MiniZinc to
receive full marks. You can submit as often as you want before the due date. Late submissions
without special consideration receive a penalty of 10% of the available marks per day. Submissions
are not accepted more than 7 days after the original deadline.
This is an individual assignment. Your submission has to be entirely your own work. We
will use similarity detection software to detect any attempt at collusion, and the penalties are
quite harsh. Note that we will compare all your saved models against others. You may not use
large language models such as ChatGPT for any part of this assignment. If in doubt, contact
your teaching team with any questions!
Learning outcomes from this assessment include:
• model a discrete optimisation problem using a mix of basic and more advanced modelling
techniques in a high level modelling language;
• identify and fix errors in models;
2 Problem Statement
You are charged with setting up an animal monitoring program in a forested region. You need to
set up a wireless network of camera traps to detect as much of the wildlife as possible given your
budget restrictions.
Input data is given in MiniZinc data format:
LOC = ⟨ the set of locations where you can place traps and the base ⟩;
base = ⟨ the base location where you collect information ⟩;
n = ⟨ The number of camera traps available to use ⟩;
wild = ⟨ Wildlife density at each location ⟩;
cost = ⟨ cost to setup a trap at each location ⟩;
d = ⟨ distance matrix from each location to another ⟩;
move = ⟨ animal movement distance ⟩;
link = ⟨ wireless link distance ⟩;
mind = ⟨ minimum distance between two traps ⟩;
opcost = ⟨ operating cost for each trap ⟩;
budget = ⟨ budget for setting up system ⟩;
1
Note that the base location is always the first in LOC. If the cost to setup a trap at a location is
negative then we are not able to set up a trap there.
Here is a sample data set:
LOC = { BASE, A, B, C, D, E, F, G, H };
base = BASE;
n = 3;
wild = [ 0, 10, 7, 3, 2, 8, 6, 4, 9 ];
cost = [ 0, 6, 4, 5, -1, 3, 2, 2, 4 ];
d = [| 0, 4, 8, 12, 16, 18, 19, 14, 5
| 4, 0, 5, 9, 12, 17, 20, 7, 9
| 8, 5, 0, 5, 8, 12, 14, 15, 12
|12, 9, 5, 0, 3, 6, 8, 10, 11
|16, 12, 8, 3, 0, 9, 2, 6, 8
|18, 17, 12, 6, 9, 0, 5, 8, 15
|19, 20, 14, 8, 2, 5, 0, 8, 12
|14, 7, 15, 10, 6, 8, 8, 0, 9
| 5, 9, 12, 11, 8, 15, 12, 9, 0 |];
move = 7;
link = 6;
mind = 3;
opcost = 8;
budget = 26;
There are 9 locations, the first location is the BASE of operations, where no camera traps can be
placed. There are three camera traps available for use. Each location has a wildlife density and
cost to set up a trap there. Note that since the cost for D is −1 we are not able to set up a trap
there. The distance matrix is symmetric, and has 0s on the diagonal (the distance to a location
from itself is always 0). Animals can move up to distance 7, while the wireless link has range 6.
Each pair of traps must be placed at least 3 distance apart. Operating each trap costs 8, and a
total budget for operating and setting up the system is 26.
There are two decisions to be made
array[0..n] of var LOC: x; % where traps are placed, but x[0] = base
array[1..n] of var 0..n: s; % send location (only used in part C)
The aim is to cover the most possible wildlife. A location is “covered” if there is a trap at a
location at most move from this location.
Part A - Using all the traps
Create a model animal.mzn that takes data in the format specified above and decides on exactly
n different camera trap locations. For the moment we ignore the budget constraint.
So the aim is to select n different locations in x[1..n]. The 0th location must be set to base
and no other location set to base. For part A and part B, just set s[i] = 0 for all i.
Remember you can use the expression d[u,v] to find the distance between two locations, even
if the locations u and v are decisions. You will need to decide which locations are covered, and
2
you may want to build an auxilliary decision variable to store this information, or to count for each
locations how many traps cover it.
Here is a sample solution.
x = [0: BASE, 1: H, 2: C, 3: A];
s = [0, 0, 0];
total_wild = 43;
We elected to place traps at locations {A, C, H}. The total wildlife that is covered by this setup
is 43, being the wildlife at locations {A, B, C, D, E, G, H} (which are within 7 of one of the traps).
Note that no two traps are less than distance 3 apart, and no traps are set up at locations with
negative cost.
Note that you will not be able to obtain many marks by just answering part A. Some problems
will have no solution, whereas using part B they have a solution.
Part B - Possibly using less traps
Modify your model animal.mzn to treat n as a bound on the maximal possible number of equipment.
We will use the base location as a dummy value. So if x[i] = base then this indicates no trap
placed. We must force all the dummy locations to be at the end of the x array (except that x[0]
= base always).
Now you must take into account the budget constraint: that is the total operating cost of traps
installed plus the install cost must be no more than the budget.
Note that you should endeavour to only have one way of representing each possible set of
installed traps. This will usually make the model more efficient.
Here is a sample solution for part B.
x = [0: BASE, 1: B, 2: F, 3: BASE];
s = [0, 0, 0];
total_wild = 36;
Now we only place traps at locations {B, F}. The final entry in the x array indicates we do not
place a third trap. The total wildlife covered is 36 being the wildlife at locations {A, B, C, D, E, F}
(which are within 7 of one of the traps). The two traps are 14 apart, well outside the minimum
distance. The total budget used is 16 in operating cost (running two cameras) plus 4 + 2 = 6 setup
costs, fitting within the budget of 26. Note that the total cost for the previous solution {A, C, H}
is 3 × 8 + 6 + 5 + 4 = 39 over the given budget.
Note that you will not be able to obtain full marks by just answering parts A and B, but you
can get a good mark. For full marks you need to correctly complete part C but it is designed to
be challenging.
Part C - Connecting the network
The camera traps have to send the photos to the base for the system to work. To do this each
trap must send its information to the base directly, or to another trap which then sends on the
information further. To represent this network, we use s[i] to refer to the place (from 0 to n)
where the camera at the i
th place sends its information. Note that sending to place 0 represents
3
sending to the base (x[0] = base). To ensure that the network is a tree we require that the place
where location i sends its info is a place less than i. Note that we require the distance between the
location sending and receiving information is no more than link.
For dummy locations i where x[i] = base we should set the send place to 0, but there is no
distance constraint, since we are not actually setting up a camera.
A solution for part C is given by
x = [0: BASE, 1: A, 2: B, 3: BASE];
s = [0, 1, 0];
total_wild = 24;
Again we only use two camera traps at {A, B}. The trap at A sends its info to location 0, the base,
at distance 4; while the trap at B sends its info to location 1, A, at distance 5 (which will then be
sent on to the base by A); hence the link constraints are satisfied. Note that the previous solution
{B, F} is no longer valid since F is at distance 19 from BASE and 14 from B, so no send link
is available. The total wildlife covered is 24 consisting of {A, B, C, G}. The budget constraints is
satisfied with cost 2 × 8 + 6 + 4 = 26.
3 Instructions
Edit the provided mzn model files to solve the problems described above. You are provided with
some sample data files to try your model on. Your implementations can be tested locally by using
the Run+check icon in the MiniZinc IDE. Note that the checker for this assignment will only
test whether your model produces output in the required format, it does not check whether your
solutions are correct. The grader on the server will give you feedback on the correctness of your
submitted solutions and models.
4 Marking
The marks are automatically calculated. With only Part A you can get full marks for a few
instances, most will get 0. With Part A and part B you can get full marks for many instances,
and otherwise a max of 0.75. The autograder will grade instances as: 0.25 for any solution, 0.5 for
a reasonable solution, 0.75 for a good solution, and full marks for the optimal solution. Because
part C adds constraints which can removes solutions, part B solutions that ignore part C may give
superoptimal answers (violating the C constraints), these will get a maximum of 0.75 marks. To
get maximum marks your model must be efficient as well as correct. Ways to improve efficiency
are:
• Make sure there is only one (or at least as few as possible) ways of representing the same
solution (set of traps placed).
• Express the constraints you need in the simplest possible form
The submission has 10 marks for locally tested data and 10 for model testing, for a total of 20
marks. For model testing you will only get feedback of marks for each test, you will not be able to
see the test data. Concentrate on getting the locally tested data working first, since this is easier
請加QQ:99515681  郵箱:99515681@qq.com   WX:codehelp 

標簽:

掃一掃在手機打開當前頁
  • 上一篇:代寫DSCI 525、Python/c++程序設計代做
  • 下一篇:代寫EECS 183 Project 4 代做python
  • 無相關信息
    昆明生活資訊

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

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

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

    日本欧洲视频一区_国模极品一区二区三区_国产熟女一区二区三区五月婷_亚洲AV成人精品日韩一区18p

              欧美精品一区二区三区视频| 亚洲国产裸拍裸体视频在线观看乱了中文 | 久久美女性网| 亚洲卡通欧美制服中文| 国产精品久久久久久久久久免费| 久久久99国产精品免费| 一区二区三区四区五区视频| 韩国av一区| 国产精品美女久久久久aⅴ国产馆| 久久久水蜜桃| 欧美一区免费| 亚洲欧美成人在线| 一区二区三区www| 亚洲区第一页| 亚洲缚视频在线观看| 国产一区二区中文| 国产精品色午夜在线观看| 欧美日本网站| 欧美区一区二| 欧美激情一二三区| 欧美jjzz| 欧美高清视频在线播放| 另类春色校园亚洲| 久久精品夜色噜噜亚洲a∨| 性欧美长视频| 午夜精品国产更新| 亚洲一区在线免费观看| 亚洲愉拍自拍另类高清精品| 99国产精品视频免费观看| 亚洲精品日韩综合观看成人91| 在线观看久久av| 亚洲福利在线看| 91久久精品国产91久久| 亚洲人成人一区二区三区| 亚洲韩国一区二区三区| 最新国产精品拍自在线播放| 亚洲精品国精品久久99热| 亚洲成人在线网站| 亚洲精品自在在线观看| 99日韩精品| 亚洲图片激情小说| 欧美有码在线视频| 久久久一本精品99久久精品66| 久久久亚洲欧洲日产国码αv| 另类激情亚洲| 欧美久色视频| 国产精品日韩在线观看| 国产午夜精品一区二区三区视频| 国产一区二区三区四区在线观看 | 亚洲国产高清一区| 亚洲国产精品欧美一二99| 亚洲精品欧美极品| 亚洲午夜电影在线观看| 欧美伊人影院| 欧美福利网址| 国产精品在线看| 在线精品亚洲| 亚洲与欧洲av电影| 久久久欧美一区二区| 欧美—级a级欧美特级ar全黄| 欧美日韩午夜精品| 国语自产精品视频在线看抢先版结局| 亚洲国产高清aⅴ视频| 一区二区欧美国产| 久久久久这里只有精品| 欧美日韩专区| 在线播放一区| 亚洲欧美日韩一区二区三区在线观看| 久久精品亚洲一区二区| 欧美视频在线观看 亚洲欧| 国产视频一区免费看| 亚洲经典自拍| 久久riav二区三区| 欧美亚洲成人免费| 在线国产精品播放| 欧美一区二区精品在线| 欧美精品一区二区蜜臀亚洲| 国语自产精品视频在线看一大j8 | 一区二区三区国产盗摄| 久久久天天操| 国产精品美女主播| 日韩视频免费| 欧美xart系列高清| 伊大人香蕉综合8在线视| 中文亚洲欧美| 欧美日韩中文另类| 亚洲日本免费| 美女91精品| 伊人久久综合| 久久综合狠狠综合久久综合88 | 亚洲欧美资源在线| 国产精品va| 亚洲色图在线视频| 欧美激情一区二区三区在线视频| 在线观看欧美精品| 久久久久久成人| 精品二区久久| 久久亚洲美女| 亚洲激情在线播放| 麻豆91精品| 亚洲国产精品一区| 欧美福利在线| 亚洲伦理网站| 欧美大胆a视频| 亚洲第一页中文字幕| 久久亚洲电影| 亚洲片在线资源| 欧美日韩另类国产亚洲欧美一级| 亚洲精品免费一二三区| 欧美精品久久久久久久免费观看 | 亚洲精品乱码久久久久久按摩观| 欧美激情综合亚洲一二区 | 欧美日韩一区二| 在线一区视频| 国产精品中文字幕欧美| 欧美影片第一页| 1769国产精品| 欧美日韩久久精品| 亚洲欧美日韩专区| 伊人色综合久久天天| 欧美成人官网二区| 亚洲一区二区三区涩| 国产乱码精品一区二区三区忘忧草| 午夜亚洲视频| 亚洲国产99精品国自产| 欧美视频一区| 久久久久久久网| 一本色道久久综合狠狠躁篇的优点| 国产精品久久久久国产a级| 欧美在线观看一区| 日韩一区二区免费看| 国产亚洲精品自拍| 欧美精品一区在线| 欧美亚洲一区| 亚洲精品久久7777| 国产日韩视频| 欧美三级在线播放| 免费国产一区二区| 亚洲欧美日韩另类| 亚洲精品日韩在线| 樱桃成人精品视频在线播放| 欧美日韩一区二区三| 久久久久国产精品一区三寸| 99视频日韩| 1769国产精品| 国产亚洲va综合人人澡精品| 欧美日韩中文另类| 欧美国产视频一区二区| 亚洲欧美日韩电影| 在线视频精品| 亚洲欧洲日本mm| 黑丝一区二区三区| 国产农村妇女毛片精品久久麻豆 | 欧美极品aⅴ影院| 欧美中文字幕在线播放| 亚洲在线视频一区| 亚洲美女视频网| 亚洲高清三级视频| 激情自拍一区| 激情文学一区| 在线观看视频一区二区欧美日韩| 国产精品乱码一区二区三区| 欧美日韩激情小视频| 蜜桃精品久久久久久久免费影院| 久久国产直播| 欧美专区亚洲专区| 欧美在线精品免播放器视频| 欧美日韩在线直播| 欧美精品黄色| 欧美精品一区二区三区很污很色的| 美女日韩欧美| 欧美bbbxxxxx| 欧美精品黄色| 欧美日韩国产成人在线91| 欧美日韩不卡| 国产精品久久77777| 欧美午夜电影在线| 国产精品日韩二区| 国产精品婷婷午夜在线观看| 国产精品久久久久久一区二区三区| 欧美天堂亚洲电影院在线播放 | 日韩一区二区精品| 一区二区三区国产精华| 亚洲午夜女主播在线直播| 日韩一区二区免费高清| 在线亚洲欧美视频| 亚洲在线一区二区| 久久久五月天| 欧美激情精品久久久六区热门| 欧美日本亚洲视频| 国产精品亚洲不卡a| 黑人一区二区| 亚洲精品国精品久久99热| 亚洲自拍偷拍视频| 久久久噜噜噜久久久| 欧美国产精品一区| 国产精品久久久久久超碰| 国内精品视频一区| 一区二区三区欧美| 鲁大师成人一区二区三区 |