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

合肥生活安徽新聞合肥交通合肥房產(chǎn)生活服務(wù)合肥教育合肥招聘合肥旅游文化藝術(shù)合肥美食合肥地圖合肥社保合肥醫(yī)院企業(yè)服務(wù)合肥法律

COMP2051代做、代寫C/C++,Python編程

時(shí)間:2024-04-11  來源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯(cuò)



Artificial Intelligence Methods (COMP2051 or AE2AIM) Coursework Ver1.0 1
Artificial Intelligence Methods (COMP2051 or AE2AIM)
Prof. Ruibin Bai Spring 2024
Coursework: Perturbative hyper-heuristic for Bin Packing Problem
1. Introduction
Bin packing is one of the most studied combinatorial optimisation problems and has
applications in logistics, space planning, production, cloud computing, etc. Bin packing is
proven to be NP-Hard and the actual difficulties depend on both the size of the problem (i.e.
the total number of items to be packed) and other factors like the distribution of item sizes in
relation to the bin size as well as the number of distinct item sizes (different items may have a
same size).
In this coursework, you are asked to write a C/C++/Python program to solve this problem
using a perturbative hyper-heuristic method. In addition to submitting source code, a
written report (no more than 2000 words and 6 pages) is required to describe your algorithm
(see Section 4 for detailed requirements). Both your program and report must be completed
independently by yourself. The submitted documents must successfully pass a plagiarism
checker before they can be marked. Once a plagiarism case is established, the academic
misconduct policies shall be applied strictly.
This coursework carries 45% of the module marks.
2. Bin Packing Problem (BPP)
Given a set of n items, each item j has a size of aj, BPP aims to pack all items in the
minimum number of identical sized bins without violating the capacity of bins (V). The
problem can be mathematically formulated as follow:
Artificial Intelligence Methods (COMP2051 or AE2AIM) Coursework Ver1.0 2
This mathematical formulation is generally NOT solvable by existing integer programming
solvers like CPlex, Gurobi, LPSolve, especially when the number of items n is large. The
solution space of bin packing problem is characterised by its huge size and plateau-like that
makes it very challenging for traditional neighbourhood search methods. In order to
consistently solve the problem with good quality solutions, metaheuristics and hyperheuristics are used, which is the task of this coursework.
3. Problem instances
Over the years, a large number of BPP instances have been introduced by various research.
See https://www.euro-online.org/websites/esicup/data-sets/ for a collection of different bin
packing problem. In this coursework, we shall provide 3 instances files (binpack1.txt,
binpack3.txt and binpack11.txt), respectively representing easy, medium and hard instances.
From which 10 instances shall be selected for testing and evaluation of your algorithm in
marking. For each test instance, only 1 run is executed, and its objective value is used for
marking the performance component (see Section 5).
4. Experiments conditions and submission requirements
The following requirements should be satisfied by your program:
(1) You are required to submit two files exactly. The first file should contain all your
program source codes. The second file is a coursework report. Please do NOT
compress the files.
(2) Your source code should adopt a clean structure and be properly commented.
Artificial Intelligence Methods (COMP2051 or AE2AIM) Coursework Ver1.0 3
(3) Your report should include the followings:
• The main components of the algorithm, including solution encoding, fitness
function, list of low-level heuristics as well as considerations regarding the
intensification and diversification mechanisms. (12 marks).
• Statistical results (avg, best, worst of 5 runs) of the algorithm for all the problem
instances, in comparison with the best published results (i.e. the absolute gap to
the best results). Note that although your report should include results for 5 runs
but your final submission should only have one single run for each instance (i.e.
if you use the sketch code from the lab, set global variable NUM_OF_RUNS=1
before you submit the code). (3 marks)
• A short discussion/reflection on results and performance of the algorithm. (5
marks)
(4) Name your program file after your student id. For example, if your student number
is 2019560, name your program as 2019560.c (or 2019560.cpp, or 2019560.py).
(5) Your program should compile and run without errors on either CSLinux Server or a
computer in the IAMET**. Therefore, please fully tested before submission. You
may use one of the following commands (assuming your student id is 2019560 and
your program is named after your id):
 gcc -std=c99 -lm 2019560.c -o 2019560
or
 g++ -std=c++11 -lm 2019560.cpp -o 2019560
For Python programs, this second can be skipped.
(6) After compilation, your program should be executable using the following
command:
 ./2019560 -s data_fle -o solution_file -t max_time
where 2019560 is the executable file of your program, data_file is one of
problem instance files specified in Section 3. max_time is the maximum time
permitted for a single run of your algorithm. In this coursework, maximum of 30
seconds is permitted. soluton_file is the file for output the best solutions by
your algorithm. The format should be as follows:
# of problems
Instance_id1
obj= objective_value abs_gap
item_indx in bin0
item_indx in bin1
… …
Instance_id2
obj= objective_value abs_gap
item_indx in bin0
Artificial Intelligence Methods (COMP2051 or AE2AIM) Coursework Ver1.0 4
item_indx in bin1
… …
An example solution file for problem data file “binpack1.txt” is available on
moodle.
For submissions using Python, the compilation and running are combined in one
command as follows:
 python 2019560.py -s data_fle -o solution_file -t max_time
(7) The solution file output in (6) by your algorithm (solution_file) is expected to
pass a solution checking test successfully using the following command on
CSLInux:
 ./bpp_checker -s problem_file -c solution_file
where problem_file is one of problem data files in Section 3. If your solution file
format is correct, you should get a command line message similar to: “Your total score
out of 20 instances is: 80." If the solutions are infeasible for some instances, you would
get error messages.
The solution checker can be downloaded from moodle page. It is runnable only on
CSLinux.
(8) Your algorithm should run only ONCE for each problem instance and each run
should take no more than 30 seconds.
(9) Please carefully check the memory management in your program and test your
algorithm with a full run on CSLinux (i.e. running multiple instances in one go). In
the past, some submitted programs can run for **2 instances but then crashed
because of out-of-memory error. This, if happens, will greatly affect your score.
(10) You must strictly follow policies and regulations related to Plagiarism. You are
prohibited from using recent AI tools like ChatGPT/GPT-4 or other similar large
language models (LLMs). Once a case is established, it will be treated as a
plagiarism case and relevant policies and penalties shall be applied.
Artificial Intelligence Methods (COMP2051 or AE2AIM) Coursework Ver1.0 5
5. Marking criteria
• The quality of the experimental results (20 marks). Your algorithm shall be tested for
a file containing 10 instances chosen from the provided set of instances. The
performance of your algorithm is evaluated by computing the absolute gap with the
best known results using
   _    =     _       _          −     _     _         
Criteria Mark
abs_gap < 0 New best results! Bonus: 2 extra marks for
each new best result.
abs_gap <= 0 2 marks per instance
0<abs_gap <=1 1.5 marks per instance
1<abs_gap<=2 1 mark per instance
2< abs_gap <=3 0.5 mark per instance
• abs_gap >4 or
• infeasible solution or
• fail to output solution
within required time limit
0 mark
• The quality of codes, including organisation of the functions/methods, naming
conventions and clarity and succinctness of the comments (5 marks)
• Report (20 marks)
6. Submission deadline
3rd May 2024, 4pm Beijing Time
 Standard penalties are applied for late submissions.
7. How to submit
Submit via Moodle.
8. Practical Hints
• Solution encoding for bin packing is slightly more challenging compared with
knapsack program because both the number of bins to be used and the number of
items to be packed in each bin are parts of decisions to be optimised. Therefore, the
Artificial Intelligence Methods (COMP2051 or AE2AIM) Coursework Ver1.**
data structure that is used to hold the packing information cannot be implemented via
fixed-size arrays. You may consider to use vector from C++ STL (standard template
library) which requires you to include <vector.h> as header file. If you prefer C style
without classes, the following data type would be also acceptable:
struct bin_struct {
 std::vector<item_struct> packed_items;
 int cap_left;
};
struct solution_struct {
 struct problem_struct* prob; //maintain a shallow copy of problem data
 float objective;
 int feasibility; //indicate the feasibility of the solution
 std::vector<bin_struct> bins;
};
In this way, you could open/close bins and at the same time to add/remove items for a
specific bin through API functions provided by the vector library.
• The search space of bin packing problem has a lot of plateaus that make the problem
extremely difficult for simple neighbourhood methods. Therefore, multiple low-level
heuristics are suggested within a perturbative hyper-heuristic method. You are free to
select any of the perturbative hyper-heuristic methods described in
(https://link.springer.com/article/10.1007/s10288-01**0182-8), as well as some of the
more recent ones
(https://www.sciencedirect.com/science/article/pii/S0377221719306526).
• Your algorithm must be runnable on CSLinux and/or computers on IAMET**.
Therefore, you are not permitted to use external libraries designed specifically for
optimisation. 

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





 

掃一掃在手機(jī)打開當(dāng)前頁
  • 上一篇:越南駕駛證簽證辦理(越南駕照的有效期)
  • 下一篇:FIT1047代做、Python/c++程序語言代寫
  • ·代做SWEN20003、代寫C/C++,python編程語
  • ·QBUS6820代做、Python編程語言代寫
  • ·代寫CMSE11475、代做Java/Python編程
  • ·代寫CPSC 217、代做python編程設(shè)計(jì)
  • ·代寫CMSC 323、代做Java/Python編程
  • ·CMSC 323代做、代寫Java, Python編程
  • ·CS170程序代做、Python編程設(shè)計(jì)代寫
  • ·COM3524代做、代寫Java,Python編程設(shè)計(jì)
  • · Root finding part代做、代寫c++,Python編程語言
  • ·代寫ECS 120、代做Java/Python編程設(shè)計(jì)
  • 合肥生活資訊

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

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

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

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    欧美日韩电影在线观看| 欧洲精品在线播放| 色吧影院999| 久久精品日韩| 久久久久久网址| 色妞色视频一区二区三区四区| 国产成人精品免高潮费视频| 国产不卡一区二区视频| 国产成人精品视频免费看| 久久精品国产免费观看| 国产精品免费一区二区三区观看 | 国产精品入口免费视频一| 国产精品久久久久久五月尺| 国产精品久久久久久久久粉嫩av | 免费99精品国产自在在线| 久久精品国产成人精品| 久久视频在线观看免费| 精品国产免费av| 国产99视频精品免费视频36| 一本—道久久a久久精品蜜桃| 亚洲va国产va天堂va久久| 日本一区二区三区在线播放 | 日韩久久久久久久久久久久久| 欧美黄网在线观看| 国产欧美日韩亚洲精品| 久久久欧美精品| 国产精品区二区三区日本| 精品久久久久久亚洲| 亚洲三级一区| 欧美综合第一页| 成人免费在线网| 久久久久久久999| 国产精品嫩草影院久久久| 精品国产免费av| 日韩在线三区| 精品一区二区三区国产| 99国产在线视频| 久久久久久国产三级电影| 美女黄色丝袜一区| 日韩一区二区三区高清| 免费在线精品视频| 成人av在线天堂| 精品国产欧美成人夜夜嗨| 曰韩不卡视频| 欧美激情精品久久久久久小说| 97人人爽人人喊人人模波多| 国产精品网站大全| 一区二区三区观看| 欧美污视频久久久| 91免费的视频在线播放| 国产精品成人久久电影| 日本国产精品视频| av 日韩 人妻 黑人 综合 无码| 国产精品免费久久久| 色综合电影网| 国产乱子夫妻xx黑人xyx真爽| 日韩中文字在线| 亚洲 自拍 另类小说综合图区| 国产一区视频在线| www.欧美免费| 日本在线观看不卡| 97精品在线观看| 欧美成人精品在线| 欧美日本韩国国产| 久久精品二区| 水蜜桃亚洲精品| 成人免费观看cn| 久久99精品视频一区97| 国产综合在线看| 国产精品日韩三级| 青青久久av北条麻妃黑人| 久久香蕉综合色| 亚洲三级一区| 北条麻妃在线一区| 欧美日韩成人在线观看| 国产一区二区片| 国产精品对白一区二区三区| 人妻内射一区二区在线视频| 国产福利精品视频| 动漫一区二区在线| 99免费视频观看| 亚洲综合在线中文字幕| 成人免费观看a| 一级特黄录像免费播放全99| 成人精品水蜜桃| 亚洲在线一区二区| 不卡中文字幕在线| 亚洲图片小说在线| aaa毛片在线观看| 亚洲视频在线二区| 77777亚洲午夜久久多人| 亚洲电影一二三区| 99爱精品视频| 午夜精品美女自拍福到在线 | 国产精品亚洲欧美导航| 久热精品视频在线免费观看| 国产日韩精品推荐| 久久久久成人精品| av在线免费观看国产| 亚洲欧洲精品在线观看| 91精品国产电影| 日本欧美黄网站| 精品国产美女在线| 狠狠久久综合婷婷不卡| 欧美乱人伦中文字幕在线| 国产在线观看不卡| 色综合久久久久久中文网| 99在线热播| 日日摸日日碰夜夜爽av| 俺去了亚洲欧美日韩| 国内精品久久久久久影视8| 久久99精品久久久久久青青91| www精品久久| 日本在线视频不卡| 国产精品日韩av| 国产精品一区二区你懂得| 欧美一区二区三区免费观看| 久久久国产精品x99av| 激情伦成人综合小说| 最新av网址在线观看| 国产精品18毛片一区二区| 日韩精品在线视频免费观看| 国产精品高清网站| 97精品伊人久久久大香线蕉| 欧美有码在线视频| 制服诱惑一区| www.日韩.com| 成人久久久久久久久| 日本wwww视频| 久操成人在线视频| 国产成人jvid在线播放| 国产午夜福利在线播放| 亚洲精品欧美日韩| 久久精品人人做人人爽| 91九色国产在线| 精品无人区一区二区三区竹菊| 亚洲综合在线播放| 国产精品无码一本二本三本色| 高清亚洲成在人网站天堂| 欧美最猛黑人xxxx黑人猛叫黄| 中文字幕综合在线观看| 久久久国产视频91| 91成人综合网| 国产日韩一区欧美| 青青久久av北条麻妃海外网| 正在播放国产精品| 国产精品美女网站| 久久婷婷国产综合尤物精品| 国产区日韩欧美| 欧洲亚洲在线视频| 亚洲一区二区三区免费看| www.欧美三级电影.com| 97免费在线视频| 国产一区视频免费观看| 欧美亚洲视频一区| 亚洲va久久久噜噜噜久久狠狠| 国产精品久久久久7777| 日韩有码在线视频| 91久久夜色精品国产网站| 国产一区欧美二区三区| 欧美中文字幕在线| 日本精品视频一区| 懂色av粉嫩av蜜臀av| 欧美激情亚洲综合一区| 国产精品久久久久av免费| 久久精品91久久久久久再现| 91久久精品www人人做人人爽| 国内精品在线一区| 欧美一区二视频在线免费观看| 少妇av一区二区三区无码| 中文字幕一区二区三区最新| 国产精品免费一区二区三区四区 | 欧美激情伊人电影| 国产精品乱码| 久久精品久久精品亚洲人| 久久久久久久久久久久久国产精品 | 午夜精品一区二区三区在线视频 | 久久久久久欧美精品色一二三四| 91久久国产精品91久久性色| 国产欧美精品久久久| 免费拍拍拍网站| 今天免费高清在线观看国语| 欧美在线视频二区| 欧美亚洲日本在线观看| 日韩精品欧美专区| 日本免费高清一区二区| 日本aa在线观看| 热99精品里视频精品| 欧美亚洲一级片| 极品校花啪啪激情久久| 麻豆91蜜桃| 国产乱人伦精品一区二区| 国产精品影片在线观看| 99热亚洲精品| 久青草视频在线播放| 久久久国产精品一区二区三区| 国产激情999| zzjj国产精品一区二区| 国产精品久久久久久久久久尿 | 日韩影院一区|