Arnab Chakraborty has Published 4293 Articles

C++ program to find in how many bases we can represent the number not greater than M

Arnab Chakraborty

Arnab Chakraborty

Updated on 03-Mar-2022 06:48:09

178 Views

Suppose we have a numeric string S, and another number M. Let d be the greatest digit in S. We have to find in many different integers not greater than M can be found by choosing an integer n not less than d+1 and seeing S as a base-n number?So, ... Read More

C++ program to count final number of characters are there after typing n characters in a crazy writer

Arnab Chakraborty

Arnab Chakraborty

Updated on 03-Mar-2022 06:47:47

153 Views

Suppose we have an array A with n elements, and another value c is there. There is a crazy word processor present in our system where we can type characters but if we do not type for consecutive c seconds, all of the written letters will be removed. A[i] represents ... Read More

C++ program to find longest possible time not greater than T to solve all problems

Arnab Chakraborty

Arnab Chakraborty

Updated on 03-Mar-2022 06:44:35

261 Views

Suppose we have an array A with N elements. Have another number T. Consider Amal is trying to participate in a programming contest. It lasts for T minutes and present N problems. He has A[i] time to solve ith problem. He will choose zero or more problems to solve from ... Read More

C++ program to find minimum number of operations needed to make all cells at r row c columns black

Arnab Chakraborty

Arnab Chakraborty

Updated on 03-Mar-2022 06:42:15

272 Views

Suppose we have two numbers r, c and a grid of size n x m. Some cells are in black and remaining are white. In one operation, we can select some black cells and can do exactly one of these two −Color all cells in its row black, orcolor all ... Read More

C++ program to find maximum how many chocolates we can buy with at most k rupees

Arnab Chakraborty

Arnab Chakraborty

Updated on 03-Mar-2022 06:28:13

467 Views

Suppose we have an array A with n elements, and other values l, r and k are there. Amal wants to buy chocolates and he will not buy too expensive chocolates, and not also too cheap chocolates. In the store, there are n different chocolate bars and the prices are ... Read More

C++ program to count number of steps needed to make sum and the product different from zero

Arnab Chakraborty

Arnab Chakraborty

Updated on 03-Mar-2022 06:24:13

297 Views

Suppose we have an array A with n elements. In one operation, we can add 1 with any one element preset in A. If either the sum or the product of all elements in the array is equal to zero, We can do this operation one more time. We have ... Read More

C++ program to find minimum number of punches are needed to make way to reach target

Arnab Chakraborty

Arnab Chakraborty

Updated on 03-Mar-2022 06:22:12

308 Views

Suppose we have a matrix containing H rows and W columns. The cells either holds '.' or '#'. The dot '.' indicates passable space, and '#' indicates block. Amal will go from his house to a market. His house is in the cell at the top-left corner, and the market ... Read More

C++ program to find maximum profit we can make by making hamburger and chicken burgers

Arnab Chakraborty

Arnab Chakraborty

Updated on 03-Mar-2022 06:20:46

372 Views

Suppose we have five numbers b, p, f, h and c. There are two types of burgers in a restaurant. These are hamburger and chicken burger. Hamburger needs two buns and a beef patty and for chicken burger we need two buns and a chicken cutlet. We have b buns, ... Read More

C++ program to check we can place dominos on colored cells in correct order or not

Arnab Chakraborty

Arnab Chakraborty

Updated on 03-Mar-2022 06:17:10

167 Views

Suppose we have five numbers n, k1, k2, w and b. There is a board with 2 x n cells and first k1 cells in the first row, first k2 cells in second row are colored in white. All other cells are black. We have w white dominos and b ... Read More

C++ program to find number of groups can be formed from set of programmers

Arnab Chakraborty

Arnab Chakraborty

Updated on 03-Mar-2022 06:12:58

447 Views

Suppose we have an array A with n elements. The A[i] represents the programming skill of ith student. All elements in A are distinct. We want to split them into teams in such a way that −No two students i and j, such that |A[i] - A[j]| = 1 belong ... Read More

Advertisements