Question: im posting this for second time because the first answer was incomplete the question is to put the 3 information blocks in files Input: The

Input: The horizontal size of the field The vertical size of the field Yearly information block: Starting with year information and number of plantings in that year Then the top left and bottom right coordinates of cach planting in that year Output: The tiredness map of the whole field as a 2D int array NOTE: The coordinates of the top left corner part of the map is 0,0 and the maximum size of the field is 40,40 NOTE: No plantings given for the same year can overlap with one another. NOTE: You MUST use relative address for the input file and put the file in the folder where your executable is HINT: You should start with a 2D array where the value of EACH cell is 0. HINT: While calculating the map for the next year, using a temporary second 2D array is STRONGLY SUGGESTED (e.g., tirednessMap, new TirednessMap). Sample Input/Outputs: Input File Contents (filename should be the Output same as in the input) fieldInfol.txt 55 00011 2016 2 02210 0022 02210 1344 02220 20172 00000 1133 3040 fieldInfo2.txt 10 10 0000000000 20143 0000000044 2227 0020000044 0000000044 8193 0000022220 20153 0000022220 2227 0000000000 5487 0000000000 8193 0000000001 20164 0000000001 0022 3869 5485 8193 20172 8193 9899 fieldInfo3.txt 55 00000 20141 00000 0022 00000 20151 00000 0022 00000 20160 20170 5487 Outline: In this project, you are expected to write a program that calculates and keeps the tiredness of a rectangular field as a 2D int array (tirednessMap) given the information about which parts of the field has been planted in the previous years. The program will read the name of the file as a string which holds the planting input. The file will contain the following information: First the horizontal size of the rectangular field (sizeX) and the vertical size of the rectangular field (sizeY) will be given as int values. Then, a planting information will be given for each previous year as an information block The information block will start with the year information (currentYear) and how many plantings have been made during that year (planting Count), both as int values. Next, planting Count many planting information will be given as 4 int tuples: startXCoord, starty Coord, end XCoord, and end Y Coord representing this smaller rectangular area has been planted in this year. This currentYear - plantingCount and that many plantingCount information blocks will keep continuing for each subsequent year until the current Year's value becomes 2017 which will be the last information block Example input file 108 2015 2 00SS 7082 20161 0055 2017 2 0033 7082 Each information will be given IN A SINGLE LINE within the file as seen in the example above. Using this information, your program will calculate the tiredness of each part of the 2D rectangular field as follows Each cell in the 2D int array will represent the tiredness of that part of the field. The tiredness of each part starts at "O". The tiredness of each part increases by I every year the field has been planted. The tiredness of each part decreases by I every year the field has NOT been planted to a minimum of 0. Example output tiredness map for the input given above: 3 3 3 3 1 1 0 1 1 0 3 3 3 3 1 1 0 1 1 0 3 3 3 3 1 1 0 1 1 0 3 3 0 0 1 0 o 1 1 0 0 0 0 0 3 3 1 1 1 1 1 . 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
