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

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

ECE2810J代做、代寫C++語言編程
ECE2810J代做、代寫C++語言編程

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



ECE2810J — Data Structures
and Algorithms
Programming Assignment 3
— UM-SJTU-JI (Fall 2024)
Notes
• Submission: on JOJ
• Due at Dec 1st, 2024, by 23:59
1 Introduction
In this assignment, you are tasked with implementing a C++ solution to a simpliffed version of the “sokoban” game,
where the objective is to push speciffc boxes to designated target positions on a grid. The challenge lies in devising an
efffcient strategy to navigate the grid, avoid obstacles, and ensure that all required boxes reach their target locations.
Your program should be able to handle various conffgurations of boxes, walls, and goals, ensuring the correct boxes are
pushed to their intended destinations. This project is C++ only, no other language is allowed.
2 Programming Assignment
2.1 Read Map
The map is designed as a grid where each cell is either a walkable path, a wall, or a point of interest (like the starting
point or a box). The ffrst line of the ffle deffnes the dimensions of the map in terms of columns and rows. The rest of
the ffle speciffes the content of each cell in the grid, using a series of symbols to represent different elements:
• . - Path: This represents a walkable path where the player can move freely. Boxes can also be pushed across
this type of cell.
• # - Wall: This represents an impassable barrier. Neither the player nor the boxes can pass through these cells.
• S - Starting Point: This is where the player begins. Each map should contain exactly one S character.
• B - Box’s Original Position: The initial position of a box.
• T - Target Position for Boxes: The destination cell for a box.
• R - Box at Target Position: This indicates that a box has been successfully pushed to its target position.
To ensure a valid and challenging map, the following constraints must be met:
(1) The outermost boundary of the map must be composed entirely of walls (#) to prevent the player or boxes from
exiting the map area.
(2) Each map must contain exactly one starting point (S).
(3) For test cases of the ffrst part on JOJ, the number of boxes (B) will be less or equal to 8 and the result of rows
times columns should be less or equal to 800.
(4) For test cases released on Canvas, it can be very complicated.
The player can move in four cardinal directions:
• Up
1• Down
• Left
• Right
The player can push a box if it is adjacent in one of these directions, and if the cell behind the box in that direction is
a path (.). Boxes can only be pushed. In other words, they cannot be pulled. Only one box can be pushed at a time,
and the player must move to the former box’s position after pushing it.
Below is an example of a map conffguration ffle. In this example, the map size is speciffed on the ffrst line as 11 10,
indicating 10 rows and 11 columns. The outer boundary is composed of walls (#), while inner cells deffne paths, the
starting point, box positions, and target positions.
11 10
###########
#..#..#...#
#..B....#.#
#..##.#...#
##.#...B###
##.#.....##
#SBBTT#..##
#..#.TT.###
####..#####
###########
2.2 Search routes
Help the player to ffnd the shortest route to push all the boxes to the expected place. Please notice that it is possible
that there are multiple boxes and multiple target positions. The player should push all the boxes to the target positions.
2.3 Show the route
The task requires the program to display the player’s route on the map, detailing each movement step-by-step. Each
step should be represented by a character indicating the direction moved:
• U for up
• R for right
• L for left
• W for down
For instance, given the map conffguration shown, the route may look like:
DRURRUURUURRDDDLLLDDRRRURULLLDLDRULLLUUULUURDRRURDDDDDLLLUUULURRRURDDDDULD
This format will be used as the return value of the solve function provided in the template code.
Bonus Requirements
(1) Display the map, player, boxes, and other elements at each step using the same format as the input map. Store
all the map state in a ffle, ensuring it is clear and easy to read.
2(2) Use a graphical interface to visually represent each step, showing the map, player, boxes, and other elements in
their updated positions. The output should be displayed as an animation, with each step shown for a brief period
before transitioning to the next step.
2.4 Unsolvable Maps
In some cases, a map conffguration may be unsolvable due to the positioning of walls or boxes, creating an impasse
that prevents the player from reaching all targets. Such conffgurations are referred to as “invalid maps.” This occurs
when one or more boxes are placed in positions from which they cannot be moved to their designated target cells.
A map is considered invalid if:
• There is more than one starting point or no starting point.
• There are more boxes than target positions.
• A box is surrounded by walls or other boxes in a way that makes it immovable.
• Any box is placed in a corner or against a wall where it has no path to the target position.
The following example demonstrates a typical invalid map layout:
11 10
###########
#..#..#...#
#.#B....#.#
#..##.#...#
##.#....###
##.#.....##
#S..TT#..##
#..#.TT.###
####..#####
###########
In this map: The box (B) is located next to walls on two sides, which prevents it from being moved toward the target
position (P).
When the program encounters such a conffguration, it should recognize the situation as unsolvable and output a
message as “No solution!” The program should then terminate without attempting to ffnd a solution or display a route.
3 Input / Output
As mentioned above, the input map is stored in a ffle. To test your program, you can use the following command to
read the map from a ffle:
1 ./main < inputMap.txt
For submission on JOJ, the output (i.e. the return value of the function) should either be “No solution!” or the route
to push all the boxes to the target positions.
If you have implemented the ffrst bonus requirements, you should ffrst display the steps in the format mentioned above,
and then display the map at each step. We highly recommend you to store the map at all steps in a ffle. For example,
if the output is stored in a ffle named output.txt, you can use the following command:
31 ./main < inputMap.txt > output.txt
If you have implemented the second bonus requirements, you should display the map in a graphical interface.
4 Submission
(1) For part 1 on JOJ, submit your source code in one ffle named sokoban.hpp. Your source code should include a
function named solve and a function named read_map.
(2) For part 2 on JOJ, put the detailed route output in the answers part in sokoban.hpp. The test cases will be
released on canvas, which may take a long time for your program to run. Please notice that part 2 and bonus
will be graded if and only if you can pass 80 percent of the test cases in part 1.
(3) Submit the source code on Canvas along with a corresponding Makefile to compile the source code. A sample
Makefile is provided on Canvas, which you may modify as needed. Your code submitted on Canvas should be
able to compile successfully and output the detailed route with the corresponding input ffle.
(4) (Optional) If you have implemented the ffrst bonus requirement, you also need to submit the output ffles on
Canvas. The naming format should match the original ffle name. For example, if the input ffle is named big_1.in,
the output ffle should be named big_1_detail.out. Failure to follow the correct naming format will result in
an invalid submission.
(5) (Optional) If you have implemented the second bonus requirement. You may come to the TA’s offfce hours
to demonstrate your program. The due date will be the same. The TA will give you a score based on the
demonstration.
5 Implementation Requirements and Restrictions
5.1 Requirements
• You must make sure that your code compiles successfully on a Linux operating system with g++ and the options
-std=c++1z -Wall -Wextra -Werror -pedantic -Wno-unused-result -Wconversion -Wvla.
• You can use any header ffle deffned in the C++17 standard. You can use cppreference as a reference.
5.2 Memory Leak
You may not leak memory in any way. To help you see if you are leaking memory, you may wish to call valgrind, which
can tell whether you have any memory leaks. (You need to install valgrind ffrst if your system does not have this
program.) The command to check memory leak is:
valgrind --leak-check=full <COMMAND>
You should replace <COMMAND> with the actual command you use to issue the program under testing. For example, if
you want to check whether running program
./main < input.txt
causes memory leak, then <COMMAND> should be “./main < input.txt”. Thus, the command will be
valgrind --leak-check=full ./main < input.txt
45.3 Code Quality
We will use cpplint, cppcheck to check your code quality. If your code does not pass these checks, you will lose some
points.
For cpplint, you can use the following command to check your code quality:
1 cpplint --linelength=120
,→ --filter=-legal,-readability/casting,-whitespace,-runtime/printf,
2 -runtime/threadsafe_fn,-readability/todo,-build/include_subdir,-build/header_guard
,→ *.h *.cpp
For cppcheck, only things related to error will lead to deduction. You can use the following command to check your
code quality:
1 cppcheck --enable=all *.cpp
6 Grading
6.1 Correctness
We will use the test cases on JOJ and Canvas to verify the correctness of your code. This section will have a total
score of 100 points.
6.2 Code Quality
Bad code quality will lead to a deduction of up to 20 points.
6.3 Bonus
For the ffrst bonus requirement, you can get up to 10 points. For the second bonus requirement, you can get up to
30 points. Please notice that bonus will be graded if and only if all the small test cases are passed. What’s more, the
total score will not exceed 130 points.
7 Late Policy
Same as the course policy.
8 Honor Code
Please DO NOT violate honor code.
Some behaviors that are considered as cheating:
• Reading another student’s answer/code, including keeping a copy of another student’s answer/code
• Copying another student’s answer/code, in whole or in part
• Having someone else write part of your assignment
• Using test cases of another student
5• Testing your code with another one’s account (Testing chances are limited)
• Post your code to github
9 Acknowledgement
This programming assignment is designed based on ENGR1510J Lab 3.
6

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




 

掃一掃在手機打開當前頁
  • 上一篇:代寫I&C SCI 46 、c/c++,Java程序語言代做
  • 下一篇:CS1026A代做、Python設計程序代寫
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業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在线免费观看
    91精品国产91久久久久久不卡 | 国产福利精品在线| 国产精品久久久久久久久电影网| 欧美一级在线播放| 91高潮在线观看| 亚洲欧洲精品在线观看| 国产免费久久av| 超碰91人人草人人干| 国内精品久久影院| 国产精品偷伦免费视频观看的 | 国产精品免费一区二区三区| 日韩暖暖在线视频| 久久人人97超碰精品888| 亚洲精品成人三区| 国产午夜精品在线| 国产精品久久久久久久午夜| 日本一区二区不卡高清更新| 99精品在线直播| 亚洲淫片在线视频| 成人免费毛片网| 九九精品视频在线| 国产麻豆日韩| 中文字幕免费高| www.九色.com| 日韩av电影免费在线| 国产精品av电影| 日韩av大片免费看| 国产v片免费观看| 日韩欧美一区二区视频在线播放| 国产成人一区二区三区免费看| 日本在线观看一区| www国产91| 国产在线一区二区三区欧美 | 91国自产精品中文字幕亚洲| 视频一区二区综合| 久久久久久一区二区三区| 青青a在线精品免费观看| 久久www视频| 欧美变态另类刺激| 色综合老司机第九色激情| 国产精品一区在线观看| 午夜精品久久久久久久99黑人| 91精品一区二区| 日本一级黄视频| 国产精品久久一| 成人av播放| 日韩精品一区二区三区色欲av| 国产精品久久久久免费a∨大胸| 国产美女视频免费| 日本一区二区三区精品视频| 日韩在线免费观看视频| 国产资源在线视频| 午夜午夜精品一区二区三区文| 久久久久久久久久久久久国产| 蜜桃视频在线观看91| 亚洲熟妇av日韩熟妇在线| 国产成人97精品免费看片| 欧美久久久久久久久久久久久久| 精品免费久久久久久久| 69国产精品成人在线播放| 日韩精品一区二区三区丰满| 国产精品久久久久久久久久久不卡| 成人免费网站在线| 人妻无码一区二区三区四区| 国产精品久久久久久久久久ktv | 91精品久久久久久久久青青| 日韩免费在线播放| 久久成人免费视频| 99久久精品免费看国产一区二区三区| 日本欧美精品在线| 欧美猛交ⅹxxx乱大交视频| 91老司机精品视频| 免费在线观看的毛片| 一区二区三区一级片| 国产高清在线精品一区二区三区| 黄色国产小视频| 色婷婷精品国产一区二区三区| 国产精品国产亚洲精品看不卡| 久久久亚洲精品无码| 国产日韩av网站| 日韩精品资源| 亚洲国产欧美日韩| 欧美成人第一页| 国产成a人亚洲精v品在线观看| 国产精品自拍合集| 欧美怡红院视频一区二区三区| 亚洲欧洲久久| 精品国产区在线| 国产成人精品综合| 国产成人综合久久| 超碰97国产在线| 麻豆精品传媒视频| 青青草视频国产| 日韩在线综合网| 色综合久久久888| 国产精品国产精品国产专区蜜臀ah| 久久国产色av免费观看| 99精品99久久久久久宅男| 日韩国产欧美精品| 亚洲精品日韩成人| 欧美精品久久久久| 国产精品三区四区| 国产成人免费观看| 久99久在线| 国产精品69av| 99久久精品免费看国产一区二区三区 | 欧美国产一区二区在线| 日本午夜精品电影| 亚洲精品第一区二区三区| 欧美日本精品在线| 久久精品视频网站| 久久久久久久久久久久久久久久久久av| 91好吊色国产欧美日韩在线| 啊啊啊一区二区| 成人亚洲欧美一区二区三区| 国产四区在线观看| 国产这里只有精品| 欧美亚洲在线视频| 日韩精品一区二区三区不卡| 亚洲一区二区在| 一级特黄录像免费播放全99| 欧美激情乱人伦一区| 国产精品久久久久久久美男| 国产精品久久激情| 精品国产aⅴ麻豆| 国产精品免费久久久久影院 | 国产精品久久久亚洲| 国产精品视频免费在线观看| xxav国产精品美女主播| 久久久久久久久国产精品| 久久久久久久一| 色阁综合伊人av| 久久久国产精品x99av| 久久精品中文字幕| 国产精品久久久久久免费观看| 欧美成人一区在线| 欧美激情一二区| 国产99久久久欧美黑人| 一本一生久久a久久精品综合蜜| 一区二区不卡在线| 无码人妻h动漫| 日韩女优人人人人射在线视频| 欧美中日韩一区二区三区| 国内精品久久久久久久| 国产区精品视频| 99三级在线| 九九九久久久| 国产精品嫩草影院一区二区| 欧美成人在线网站| 亚洲一区二区三区乱码aⅴ| 色狠狠久久av五月综合| 欧美日韩一区二区三区电影| 男女视频网站在线观看| 国产日韩精品综合网站| 91精品网站| 久久精品视频播放| 日本三级久久久| 欧美成人性色生活仑片| 91精品国自产在线观看| 久久免费一级片| 日韩视频永久免费观看| 欧美精品在线网站| 亚洲v日韩v欧美v综合| 青青成人在线| 国产欧美精品一区二区三区 | 欧美久久久精品| 性一交一乱一伧国产女士spa| 欧美中文字幕在线| 国产精品亚洲不卡a| 久久精品magnetxturnbtih| 国产精品久久久久不卡| 午夜精品一区二区三区在线| 欧美成人精品免费| 97人人模人人爽视频一区二区| 日韩中文理论片| 一区二区三区视频在线播放| 热re99久久精品国99热蜜月| 国产欧美高清在线| 国产成人亚洲综合| 国产aⅴ精品一区二区三区黄| 亚洲激情电影在线| 精品嫩模一区二区三区| 114国产精品久久免费观看| 日韩在线中文视频| 伊人久久婷婷色综合98网| 欧美在线影院在线视频| 成人精品久久久| 国产成人午夜视频网址| 亚洲国产一区二区三区在线| 精品视频免费观看| 久久精品国产理论片免费| 欧美激情综合色综合啪啪五月| 三区精品视频| 国产乱码精品一区二区三区卡| 色噜噜狠狠色综合网图区| 尤物一区二区三区| 日本精品www| 91国语精品自产拍在线观看性色| 国产精品久久精品视| 日韩精品一区二区三区丰满 |