99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

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

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

時間:2024-12-03  來源:合肥網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
• D 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
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 and part 3 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. The test cases in part 1 and part 3 are similar,
but part 3 has stricter time and memory limitations.
(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 70 percent of the test cases in part 1.
(3) Submit the source code for part 2 on Canvas along with a corresponding Makefile to compile the source code.
(i.e. The code you used to get answer for part 2 on JOJ. ) 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. You only need to submit the output ffle for one test case.
(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.
Basic Tips for Optimizing Your Program
Deadlocks
• What is a freeze deadlock?
• List common freeze deadlocks.
• Analyze the pros and cons of adding more deadlock detections.
Efffciency
• How much memory do you need to store a “state”?
• With 100 bits, how many states can you store?
• If visiting one state takes 1ns, how much time will it take to visit through all possible states represented by 100
bits?
• How much information do you need to backtrace a path?
C++ Features
• Is std::pair fast or slow?
• How many temporary objects have you created in each iteration? Are they really necessary?
45 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
5.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. Your score will be calculated as follows:
min
(
100,
score in part 1 + score in part 2 + score in part 3
14
)
Please notice that the total points on JOJ will be 2150 with 1000 points for part 1, 400 points for part 2, and 750
points for part 3. You only need to get 1400 points on JOJ to get full score in this section.
56.2 Code Quality
Bad code quality will lead to a deduction of up to 20 points, which will be applied directly to your final score.
6.3 Bonus
For the first bonus requirement, you can get up to 10 points. For the second bonus requirement, you can get up to
30 points. The total score for the whole project 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
• Testing your code with another one’s account
• Post your code to github
• Using any kind of AI tools to solve the problem
9 Acknowledgement
This programming assignment is designed based on ENGR1510J Lab 3 and ENGR1510J Project 3.


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

掃一掃在手機打開當前頁
  • 上一篇:代寫QHE5701、SQL編程語言代做
  • 下一篇:菲律賓黑名單能申請保關入境嗎(應該怎么做)
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    2025年10月份更新拼多多改銷助手小象助手多多出評軟件
    2025年10月份更新拼多多改銷助手小象助手多
    有限元分析 CAE仿真分析服務-企業/產品研發/客戶要求/設計優化
    有限元分析 CAE仿真分析服務-企業/產品研發
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發動機性能
    挖掘機濾芯提升發動機性能
    海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
    海信羅馬假日洗衣機亮相AWE 復古美學與現代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
  • 短信驗證碼 trae 豆包網頁版入口 目錄網 排行網

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

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

    99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

          9000px;">

                93久久精品日日躁夜夜躁欧美| 国产亚洲欧美日韩在线一区| 色婷婷av一区二区三区之一色屋| 久久综合九色综合久久久精品综合| 亚洲精品综合在线| 久久99热99| 91精品国产乱| 精品一区二区在线观看| 久久亚洲免费视频| 成人av在线网站| 亚洲综合色视频| 欧美电影在线免费观看| 国产一区二区三区在线看麻豆| 久久精品视频免费| av激情成人网| 奇米一区二区三区av| 国产夜色精品一区二区av| 极品少妇一区二区| 中文成人av在线| 欧美在线观看一区二区| 国精品**一区二区三区在线蜜桃| 久久综合狠狠综合久久综合88| 9i在线看片成人免费| 日日摸夜夜添夜夜添精品视频| 久久久久久久久久看片| 欧美性一级生活| 国产成人三级在线观看| 午夜不卡av在线| 久久色中文字幕| 国产精品白丝av| 婷婷国产在线综合| 国产精品人成在线观看免费| 91麻豆精品国产91| eeuss鲁片一区二区三区| 久久精品国产亚洲一区二区三区| 国产精品麻豆欧美日韩ww| 欧美三级一区二区| k8久久久一区二区三区| 午夜久久久久久久久久一区二区| 国产校园另类小说区| 在线精品视频小说1| 国产91在线观看| 极品尤物av久久免费看| 亚洲一区二区高清| 亚洲视频在线一区二区| 久久亚洲精精品中文字幕早川悠里| 色94色欧美sute亚洲线路二 | 亚洲另类中文字| 欧美一区二区视频在线观看2020| 99久久婷婷国产| 国产a精品视频| 午夜电影一区二区| 亚洲免费观看视频| 亚洲欧美一区二区久久| 亚洲色图.com| 一区二区三区加勒比av| 一区二区在线电影| 一区二区三区国产豹纹内裤在线| 亚洲精品国产一区二区三区四区在线| 亚洲国产精品黑人久久久 | 欧美成人性战久久| 欧美一区二区三区日韩| 日韩一级视频免费观看在线| 欧美高清精品3d| 日韩精品一区二区三区蜜臀| 日韩你懂的在线播放| 久久亚区不卡日本| 国产精品久久久久久久裸模| 亚洲欧洲制服丝袜| 日韩1区2区日韩1区2区| 精品亚洲欧美一区| 国产91综合网| 欧美亚洲自拍偷拍| 日韩一区二区在线观看| 精品日本一线二线三线不卡| 国产三级欧美三级| 亚洲免费在线观看视频| 五月激情六月综合| 国产午夜亚洲精品不卡| 亚洲视频一二三| 亚洲成av人片在www色猫咪| 久久se这里有精品| 91免费看视频| 欧美大胆人体bbbb| 国产精品青草久久| 天涯成人国产亚洲精品一区av| 蜜臀国产一区二区三区在线播放| 久久av资源网| 久久国产剧场电影| 成人一区二区在线观看| 欧美亚洲一区三区| 欧美不卡在线视频| 亚洲免费在线播放| 麻豆精品在线观看| 高潮精品一区videoshd| 91国产免费观看| 久久久亚洲精品石原莉奈| 亚洲日穴在线视频| 国产一区二区在线视频| 欧美日韩亚洲综合在线| 久久精品视频免费| 日本视频一区二区三区| 91小视频在线观看| 久久―日本道色综合久久| 亚洲一区二区三区在线看| 国产成人午夜99999| 日韩欧美专区在线| 亚洲小说春色综合另类电影| 丰满少妇久久久久久久| 日韩精品一区二区三区老鸭窝| 亚洲一区二区精品3399| 91视频精品在这里| 日本一区二区成人| 国产不卡一区视频| 久久一区二区视频| 久久精品国产77777蜜臀| 欧美另类一区二区三区| 一区二区日韩av| 99riav一区二区三区| 久久精品夜色噜噜亚洲aⅴ| 裸体一区二区三区| 91精品国产一区二区三区香蕉| 亚洲美女电影在线| 91小宝寻花一区二区三区| 欧美国产精品v| 国产成都精品91一区二区三| 精品国产亚洲在线| 裸体在线国模精品偷拍| 69堂成人精品免费视频| 午夜视频一区在线观看| 欧美三级资源在线| 亚洲国产精品天堂| 欧美在线一二三| 亚洲自拍偷拍网站| 欧美日韩国产综合草草| 偷拍与自拍一区| 欧美少妇一区二区| 亚洲成人资源网| 欧美精品日韩一区| 蜜臀久久久久久久| 亚洲精品一区二区在线观看| 国产福利一区二区| 亚洲欧美另类综合偷拍| 色综合天天视频在线观看| 亚洲精品一卡二卡| 欧美日韩你懂的| 精品一二三四区| 国产精品美日韩| 色婷婷亚洲综合| 视频一区二区三区在线| 日韩欧美亚洲国产另类| 国产一区二区三区免费| 国产精品天干天干在线综合| 97se亚洲国产综合自在线不卡| 亚洲视频狠狠干| 欧美一级电影网站| 国产二区国产一区在线观看| 国产精品麻豆视频| 欧美日本乱大交xxxxx| 久久国产精品第一页| 亚洲人成人一区二区在线观看| 777午夜精品免费视频| 国产成人小视频| 天堂一区二区在线| 中文字幕二三区不卡| 欧美日韩成人综合| 国产精品一区二区男女羞羞无遮挡| 国产精品九色蝌蚪自拍| 欧美精品黑人性xxxx| 夫妻av一区二区| 蜜臀av性久久久久av蜜臀妖精| 亚洲人成精品久久久久| 久久亚洲私人国产精品va媚药| 欧美午夜宅男影院| eeuss鲁片一区二区三区在线观看| 天堂在线亚洲视频| 一区二区免费看| 中文字幕+乱码+中文字幕一区| 在线成人免费视频| 欧美在线制服丝袜| 91色.com| 国产麻豆午夜三级精品| 视频一区二区三区中文字幕| 亚洲人成7777| 国产精品久久久久一区二区三区共| 在线不卡中文字幕| 欧美午夜一区二区三区 | 欧美一区二区三区在| 色先锋久久av资源部| 成人激情小说乱人伦| 激情av综合网| 午夜欧美电影在线观看| 久久综合久久久久88| 欧美mv和日韩mv国产网站| 欧美美女黄视频| 在线一区二区视频| 91视频精品在这里| 色老综合老女人久久久| 国产盗摄一区二区| 国产精品 日产精品 欧美精品|