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

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

代寫COMP3702、代做Python編程語言

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



COMP3702 Assignment 1: Search in BeeBot
The BeeBot AI Environment
You have been tasked with developing a search algorithm for automatically controlling BeeBot, a Bee
which operates in a hexagonal environment, and has the capability to push, pull and rotate honey ‘Widgets’
in order to reposition them to target honeycomb locations. To aid you in this task, we have provided
support code for the BeeBot environment which you will interface with to develop your solution at https:
//github.com/comp3702/2024-Assignment-**Support-Code. To optimally solve a level, your AI agent
must efficiently find a sequence of actions so that every Target honeycomb cell is occupied by part of a
Widget, while incurring the minimum possible action cost.
Levels in BeeBot are composed of a Hexagonal grid of cells, where each cell contains a character representing
the cell type. An example game level is shown in Figure 1.
Figure 1: Example game level of BeeBot, showing character-based and GUI visualiser representations
Page 1
COMP3702 Assignment 1: Search in BeeBot
Environment representation
Hexagonal Grid
The environment is represented by a hexagonal grid. Each cell of the hex grid is indexed by (row, column)
coordinates. The hex grid is indexed top to bottom, left to right. That is, the top left corner has coordinates
(0, 0) and the bottom right corner has coordinates (nrows ? 1, ncols ? 1). Even numbered columns (starting
from zero) are in the top half of the row, and odd numbered columns are in the bottom half of the row. An
example is shown in Figure 2.
____ ____
/ \ / \
/row 0 \____/row 0 \____ ...
\col 0 / \col 2 / \
\____/row 0 \____/row 0 \ ...
/ \col 1 / \col 3 /
/row 1 \____/row 1 \____/ ...
\col 0 / \col 2 / \
\____/row 1 \____/row 1 \ ...
\col 1 / \col 3 /
... \____/ ... \____/
... ...
Figure 2: Example hexagonal grid showing the order that rows and columns are indexed
Two cells in the hex grid are considered adjacent if they share an edge. For each non-border cell, there are 6
adjacent cells.
The BeeBot Agent and its Actions
The BeeBot Bee occupies a single cell in the hex grid. In the visualisation, the Bee is represented by the
cell marked with the character ‘R’ (or the Bee in the graphical visualiser). The side of the cell marked with
‘*’ (or the arrow in the graphical visualiser) represents the front of the Bee. The state of the Bee is defined
by its (row, column) coordinates and its orientation (i.e. the direction its front side is pointing towards).
At each time step, the agent is prompted to select an action. The Bee has 4 available actions:
? Forward → move to the adjacent cell in the direction of the front of the Bee (keeping the same
orientation)
? Reverse→ move to the adjacent cell in the opposite direction to the front of the Bee (keeping the same
orientation)
? Spin Left → rotate left (relative to the Bee’s front, i.e. counterclockwise) by 60 degrees (staying in the
same cell)
? Spin Right → rotate right (i.e. clockwise) by 60 degrees (staying in the same cell)
The Bee is equipped with a gripper on its front side which allows it to manipulate honey Widgets. When the
Bee is positioned with its front side adjacent to a honey Widget, performing the ‘Forward’ action will result in
the Widget being pushed, while performing the ‘Reverse’ action will result in the honey Widget being pulled.
Action Costs
Each action has an associated cost, representing the amount of energy used by performing that action.
If the Bee moves without pushing or pulling a honey widget, the cost of the action is given by a base action
cost, ACTION_BASE_COST[a] where ‘a’ is the action that was performed.
If the Bee pushes or pulls a honey widget, an additional cost of ACTION_PUSH_COST[a] is added on top, so
the total cost is ACTION_BASE_COST[a] + ACTION_PUSH_COST[a].
The costs are detailed in the constants.py file of the support code:
ACTION_BASE_COST = {FORWARD: 1.0, REVERSE: 1.0, SPIN_LEFT: 0.1, SPIN_RIGHT: 0.1}
ACTION_PUSH_COST = {FORWARD: 0.8, REVERSE: 0.5, SPIN_LEFT: 0.0, SPIN_RIGHT: 0.0}
Page 2
COMP3702 Assignment 1: Search in BeeBot
Obstacles
Some cells in the hex grid are obstacles. In the visualisation, these cells are filled with the character ‘X’
(represented as black cells in the graphical visualiser). Any action which causes the Bee or any part of a
honey Widget to enter an obstacle cell is invalid (i.e. results in collision). The outside boundary of the hex
grid behaves in the same way as an obstacle.
Widgets
Honey Widgets are objects which occupy multiple cells of the hexagonal grid, and can be rotated and translated
by the BeeBot Bee. The state of each honey widget is defined by its centre position (row, column)
coordinates and its orientation. Honey Widgets have rotational symmetries - orientations which are rotationally
symmetric are considered to be the same.
In the visualisation, each honey Widget in the environment is assigned a unique letter ‘a’, ‘b’, ‘c’, etc. Cells
which are occupied by a honey Widget are marked with the letter assigned to that Widget (surrounded by
round brackets). The centre position of the honey Widget is marked by the uppercase version of the letter,
while all other cells occupied by the widget are marked with the lowercase.
Three honey widget types are possible, called Widget3, Widget4 and Widget5, where the trailing number
denotes the number of cells occupied by the honey Widget. The shapes of these three honey Widget types
and each of their possible orientations are shown in Figures 3 to 5 below.
VERTICAL
_____
SLANT_LEFT / \ SLANT_RIGHT
_____ / (a) \ _____
/ \ \ / / \
/ (a) \_____ \_____/ _____/ (a) \
\ / \ / \ / \ /
\_____/ (A) \_____ / (A) \ _____/ (A) \_____/
\ / \ \ / / \ /
\_____/ (a) \ \_____/ / (a) \_____/
\ / / \ \ /
\_____/ / (a) \ \_____/
\ /
\_____/
Figure 3: Widget3
UP DOWN
_____ _____ _____
/ \ / \ / \
/ (a) \ / (a) \_____/ (a) \
\ / \ / \ /
\_____/ \_____/ (A) \_____/
/ \ \ /
_____/ (A) \_____ \_____/
/ \ / \ / \
/ (a) \_____/ (a) \ / (a) \
\ / \ / \ /
\_____/ \_____/ \_____/
Figure 4: Widget4
SLANT_RIGHT SLANT_LEFT
_____ _____
HORIZONTAL / \ / \
_____ _____ / (a) \_____ _____/ (a) \
/ \ / \ \ / \ / \ /
/ (a) \_____/ (a) \ \_____/ (a) \ / (a) \_____/
\ / \ / / \ / \ / \
\_____/ (A) \_____/ _____/ (A) \_____/ \_____/ (A) \_____
/ \ / \ / \ / \ / \
/ (a) \_____/ (a) \ / (a) \_____/ \_____/ (a) \
\ / \ / \ / \ / \ /
\_____/ \_____/ \_____/ (a) \ / (a) \_____/
\ / \ /
\_____/ \_____/
Figure 5: Widget5
Page 3
COMP3702 Assignment 1: Search in BeeBot
Two types of widget movement are possible – translation (change in centre position) and rotation (change in
orientation).
Translation occurs when the Bee is positioned with its front side adjacent to one of the honey widgets’ cells
such that the Bee’s orientation is in line with the honey widget’s centre position. Translation results in the
centre position of the widget moving in the same direction as the Bee. The orientation of the honey Widget
does not change when translation occurs. Translation can occur when either ‘Forward’ or ‘Reverse’ actions
are performed. For an action which results in translation to be valid, the new position of all cells of the moved
widget must not intersect with the environment boundary, obstacles, the cells of any other honey Widgets or
the Bee’s new position.
Rotation occurs when the Bee’s current position is adjacent to the centre of the widget but the Bee’s
orientation does not point towards the centre of the widget. Rotation results in the honey widget spinning
around its centre point, causing the widget to change orientation. The position of the centre point does not
change when rotation occurs. Rotation can only occur for the ‘Forward’ action - performing ‘Reverse’ in a
situation where ‘Forward’ would result in a widget rotation is considered invalid.
The following diagrams show which moves result in translation or rotation for each honey Widget type, with
the arrows indicating directions from which the Bee can push or pull a widget in order to cause a translation
or rotation of the widget. Pushing in a direction which is not marked with an arrow is considered invalid.
Forward Translate
Reverse Translate
Forward Rotate CW
Reverse Rotate CCW
Figure 6: Widget3 translations and rotations
Forward Translate
Reverse Translate
Forward Rotate CW
Reverse Rotate CCW
Figure 7: Widget4 translations and rotations
Page 4
COMP3702 Assignment 1: Search in BeeBot
Forward Translate
Reverse Translate
Forward Rotate CW
Reverse Rotate CCW
Figure 8: Widget5 translations and rotations
Targets
The hex grid contains a number of ‘target’ honeycomb cells which must be filled with honey. In the visuali-
sation, these cells are marked with ‘tgt’ (cells coloured in orange in the graphical visualiser). For a BeeBot
environment to be considered solved, each target cell must be occupied by part of a honey Widget. The
number of targets in an environment is always less than or equal to the total number of cells occupied by all
honey Widgets.
Interactive mode
A good way to gain an understanding of the game is to play it. You can play the game to get a feel for
how it works by launching an interactive game session from the terminal with the following command for the
graphical visualiser:
$ python play_game.py .txt
or the following command for the command-line ASCII-character based visualiser:
$ python play.py .txt
where .txt is a valid testcase file (from the support code, with path relative to the current
directory), e.g. testcases/ex1.txt.
Depending on your python installation, you should run the code using python, python3 or py.
In interactive mode, type the symbol for your chosen action (and press enter in the command line version) to
perform the action: press ’W’ to move the Bee forward, ’S’ to move the Bee in reverse, ’A’ to turn the Bee
left (counterclockwise) and ’D’ to turn the Bee right (clockwise). Use ’Q’ to quit the simulation, and ’R’ to
reset the environment to the initial configuration.
Page 5

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





 

掃一掃在手機打開當前頁
  • 上一篇:代做Electric Vehicle Adoption Tools 、代寫Java程序設計
  • 下一篇:COS110代做、代寫C/C++設計程序
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業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在线免费观看
    伊人天天久久大香线蕉av色| 无码人妻精品一区二区蜜桃网站 | 国产成人免费av电影| 欧美日韩精品久久久免费观看| 欧美精品在线免费播放| 久久精品中文字幕免费mv| av一本久道久久波多野结衣| 日韩欧美国产免费| 婷婷五月综合缴情在线视频| 欧美激情在线观看视频| 国产精品日韩高清| 日韩中文字幕视频在线| 91老司机精品视频| 精品一区久久久久久| 日本欧美一二三区| 日本国产一区二区三区| 亚洲欧洲日产国码无码久久99| 另类专区欧美制服同性| 欧美精品久久久久久久久| 精品国产免费一区二区三区| 国产精品手机播放| 久久国产精品偷| 午夜精品一区二区三区在线视| 久久成人免费视频| 久久国产天堂福利天堂| 亚洲人成77777| 日韩精品欧美在线| 免费国产黄色网址| 国产精品一区电影| 国产免费一区二区三区视频 | 日韩精品久久一区二区| 国产成人久久777777| 国产精品久久久久久av下载红粉| 国产精品高清一区二区三区| 亚洲国产另类久久久精品极度 | 中文字幕人成一区| 日韩欧美视频一区二区三区四区| 日本wwwcom| 免费特级黄色片| 91精品国产乱码久久久久久蜜臀| 久久精品国产一区二区电影| 日本黄网免费一区二区精品| 精品一区二区三区无码视频| 国产成人91久久精品| 国产精品你懂得| 亚洲av首页在线| 欧美h视频在线观看| www.av中文字幕| 国产精品久久久久久久久久直播| 精品国产一区二区三区在线| 欧美一区二区在线| 久久av免费观看| 一本色道久久综合亚洲精品婷婷 | 99色这里只有精品| 精品综合久久久久久97| 日韩精品一区二区三区色偷偷| 97人人香蕉| 亚洲最大成人在线| 国产女主播自拍| 久久久国产一区二区三区| 日本不卡在线播放| 隔壁老王国产在线精品| 深夜福利一区二区| 日本一区二区在线免费播放| 成人av在线亚洲| 国产99久久九九精品无码| 国产三级中文字幕| 中文字幕av日韩精品| www.浪潮av.com| 亚洲综合最新在线| 国产一区二区免费在线观看| 久久福利网址导航| 欧美日韩高清免费| 精品免费日产一区一区三区免费 | 久久久久成人网| 欧美大陆一区二区| 国产精品12p| 日韩av日韩在线观看| 69精品丰满人妻无码视频a片| 亚洲在线观看一区| 久久艳妇乳肉豪妇荡乳av| 日韩精品一区二区三区色偷偷| 国产精品国产一区二区| 国产又黄又爽免费视频| 亚洲综合日韩在线| 国产精品手机在线| 亚洲精品一区二区三区蜜桃久| 欧美精品国产精品久久久| 国产精品三级在线| 7777精品视频| 日本一区二区三区视频在线播放| 99视频精品全部免费看| 黄网站色视频免费观看| 亚洲高清不卡一区| 欧美乱妇40p| 国产成人综合精品在线| 欧美中文在线观看| 亚洲国产精品一区二区第四页av | 国产日韩欧美一二三区| 日韩av免费网站| 国产精品你懂得| 久久久久国产精品熟女影院| 国模精品一区二区三区| 亚洲图片在线观看| 久久久久欧美| 国产中文字幕91| 欧美精品国产精品久久久| 欧洲一区二区在线| 天天综合中文字幕| 欧美一区2区三区4区公司二百| 久久精品一二三区| 国产嫩草一区二区三区在线观看| 欧美日韩免费精品| 欧美高清视频一区| 国产欧美在线一区二区| 久久精品日产第一区二区三区| 欧美激情图片区| 色播亚洲婷婷| av动漫在线看| 欧美精品少妇videofree| 亚洲一区二三| 日韩精品一区二区在线视频| 欧洲精品在线播放| 日本欧美在线视频| 青青在线视频免费| 亚洲欧洲日夜超级视频| 久久久精品视频在线观看| 色妞在线综合亚洲欧美| 国产精品第一第二| 欧美精品一区二区三区免费播放| 国产在线98福利播放视频| 成人精品久久一区二区三区 | 久久久人人爽| av动漫在线免费观看| 日韩在线视频国产| 久久777国产线看观看精品| 国产精品国三级国产av| 国产精品国产对白熟妇| 亚洲激情一区二区| 欧美日韩亚洲综合一区二区三区激情在线| 黄色一区三区| 色青青草原桃花久久综合| 亚洲一区三区视频在线观看| 免费av一区二区三区| 国产爆乳无码一区二区麻豆| 欧美xxxx14xxxxx性爽| 久久99国产精品久久久久久久久| 久久久久人妻精品一区三寸| 国产精品91久久久| 国产精品三级美女白浆呻吟| 日韩欧美亚洲精品| 久久精品国产精品青草色艺| 三级精品视频久久久久| 亚洲自偷自拍熟女另类| 欧美激情www| 国产精品伊人日日| 久久视频在线观看免费| 高清一区二区三区日本久| 欧美亚洲国产视频小说| 按摩亚洲人久久| 日本不卡一区二区三区视频 | 日日橹狠狠爱欧美超碰| 欧美激情18p| 精品国产一区二区三区日日嗨| 久久久久久网站| 国产精品日韩欧美综合| 国产精品嫩草在线观看| 久久精品视频在线观看| 久久精品视频一| 国产精品久久久久久久天堂第1集| 久久久噜噜噜久久| 国产精品久久一区主播| 欧美日本精品在线| 亚洲高清视频一区二区| 日韩国产欧美亚洲| 精品欧美一区二区久久久伦| 精品视频一区在线| 99九九视频| 国产超级av在线| 国产aⅴ精品一区二区三区黄| 色婷婷综合久久久久中文字幕| 美日韩免费视频| 91精品在线国产| 国产精品美女久久久久久免费| 国产精品视频最多的网站| 日韩在线电影一区| 国产欧美123| 日韩一区二区在线视频| 美女精品视频一区| 欧美一区二视频在线免费观看| 精品无码一区二区三区爱欲| 99久久99久久精品国产片| 久久久久久人妻一区二区三区| 亚洲精品一品区二品区三品区| 久久久久久美女| av电影一区二区三区| 激情深爱综合网| 国产xxx69麻豆国语对白| 日韩av高清| 97人人爽人人喊人人模波多|