Answered step by step
Verified Expert Solution
Question
1 Approved Answer
please help me get the correct code in C++ and please provide a screenshot of the correct output You are given two numbers and representing
please help me get the correct code in C++ and please provide a screenshot of the correct output
You are given two numbers and representing the dimensions of an rectangular board. The rows of the board are numbered from 1 to and the columns are numbered from Each cell has a value equal to the product of its row index and column index " (both 1 -based); in other words, board [i][j]=(i+1)(j+1) Initially, all the cells in the board are considered active, though some of them will eventually be deactivated through a sequence of queries - specifically, you will be given an array where each query is of one of the following 3 types: - find the minimum value among all remaining active cells on the board. - deactivate all cells in row - deactivate all cells in column j : Given the dimensions and the array of queries, your task is to return an array consisting of calculated values (results of the queries of the 0th type), in the order in which they were calculated. malncepp 1 vectorklong long solution(int n, int m, vectorkvector queries) f 3 mapute Expected Outputs [1,1,2,6] Click the "Run Tests" button to see output and console logs. Inpult Expected Outputs [1,1] 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