Answered step by step
Verified Expert Solution
Question
1 Approved Answer
I need help with this C + + Program. I have most of the code but it's inputting a different number instead of 1 8
I need help with this C Program. I have most of the code but it's inputting a different number instead of seconds for the Set Quickest path.
The definition by APM Body of Knowledge th edition of a Business Case is one that provides justification for undertaking a project, programme or portfolio This is further explained by the article: The Right Way to Present Your Business Case by Carolyn OHara on the site, Harvard Business Review. The article goes on to detail how one can properly and more efficiently deliver a business case thats persuasive while being straight to the point. If its not communicated in a well manner, then its pointless if the business case is a solid once thats very well planned out. Ou basically need to be persuasive and not just use numbers and figures. This can be done through the use of a story. The story can be further broken down into outlining a need, impact and a solution while making it clear whats at stake. The more it is storylike and uses emotional and human connection, the better your business case will come across.
First, before presenting the business case though, you still need the facts and research such as what are the strengths, the weaknesses, opportunities and threats. The strengths can be about the value of the product while the weaknesses should be researched and stated. The goals need to be realistic and welldefined for when the project will be done. The project will need a business case to justify the project. It will need to answer the following during its presentation: Why, when, how much, what are the risks, what are the alternatives and how will the success of the project be measured?
You could also use testimonials in your business case that outline why its a good idea to move forward with the project. The article makes a good point in stating that business cases are usually attempting to make change and people are not so keen on change. Therefore, instead of appealing to the mind with only facts and figures, you should appeal to the heart. You can use an attention grabber by using the need for the technology being presented because a business might not always pursue a project even if theres an opportunity for improvement. Addressing the concerns of the audience is another way of gaining supporters for your business case. For example, if the finance personnel s concerned about how much a project or technology will cost, be sure to address that and have a good reason for the expenses while limiting them. Additionally, if there is someone in the audience who is interested in the growth of the company, make sure to point out how the project will expand its reach to other regions of the world. Always have an answer ready for any potential questions.
Finding the right way to present your business case is just as important, states the article. If the presentation has far too many slides that are too busy with overwhelming information and detailed needless graphs, you will lose your audience. Keep it simple and to the point with straightforward visuals that are easy to read and understand. Remember to tell a story with your business case and have a concise and detailed version of it while presenting the need and reason to care about it Do not forget to address concerns or overwhelm your audience with unnecessary information or visuaSample File: Sample Run:
########
#S###
###
#TT#####
E
T######
T#######
TT######
ST
T
TT
TE
Enter filename: rat.txt
Set :
Shortest Path: spaces
Quickest Path: seconds
Set :
Shortest Path: spaces
Quickest Path: seconds
Run again YN: n
#include
#include
#include
#include
#include
#include Include for memset
using namespace std;
struct Cell
int layer, row, col, dist, time;
Cellint l int r int c int d int t : layerl rowr colc distd timet
;
const int MAXLAYERS ;
const int MAXROWS ;
const int MAXCOLS ;
const int INF INTMAX;
int layers, rows, cols;
char mazeMAXLAYERSMAXROWSMAXCOLS;
bool visitedMAXLAYERSMAXROWSMAXCOLS;
Directions for movement: Up Down, Right, Left
const int dz;
const int dx;
const int dy;
Function to check if a cell is valid to move to
bool isValidint layer, int row, int col
return layer && layer layers && row && row rows && col && col cols &&
mazelayerrowcol# && visitedlayerrowcol;
Function to find the shortest and quickest paths using BFS
pair shortestQuickestPathint startLayer, int startRow, int startCol, int endLayer, int endRow, int endCol
queue q;
qpushCellstartLayer startRow, startCol, ;
visitedstartLayerstartRowstartCol true;
int shortest INF;
int quickest INF;
while qempt
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started