Sunidhi Bansal has Published 1085 Articles

Maximize the product of four factors of a Number in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 14-Aug-2020 07:24:30

244 Views

Given the task is to calculate the maximum product that can be obtained from four factors A, B, C, D of a given number N, given the condition −The sum of the four factors should be equal to the number N, that is, N=A+B+C+D.Input − N=10Output − 20Explanation − The ... Read More

Maximize the given number by replacing a segment of digits with the alternate digits given in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 14-Aug-2020 07:20:47

281 Views

Given the task is to maximize a given number with ‘N’ number of digits by replacing its digit using another array that contains 10 digits as an alternative for all single-digit numbers 0 to 9, The given condition is that only a consecutive segment of numbers can be replaced and ... Read More

Maximize the profit by selling at-most M products in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 14-Aug-2020 07:18:37

477 Views

Given the task is to calculate the maximum profit that can be made by selling at-most ‘M’ products.The total number of products are ‘N’ and the cost price and the selling price of each product is given in the lists CP[] and SP[] respectively.Input N=6, M=4 CP[]={1, 9, 5, 8, 2, ... Read More

Maximum difference elements that can added to a set in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 14-Aug-2020 07:16:58

137 Views

According to the problem we are given a set arr[n] where n is the number of integer elements in the set, the task is to find the maximum difference elements which are to be added to obtain the elements in the set. In other words, the difference should be in ... Read More

Count number of Distinct Substring in a String in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 14-Aug-2020 07:15:26

721 Views

According to the problem we are given a string str, we must count all the substrings in the given string. Substring is a string which is a part of an already existing string whose size may be smaller than or equal to the existing string.Let's understand the problem and its ... Read More

Maximum difference between two subsets of m elements in C

Sunidhi Bansal

Sunidhi Bansal

Updated on 14-Aug-2020 07:13:21

850 Views

The task is to find the greatest difference between the sum of m elements in an array. Suppose we have an array and a number m, then we will first find the sum of highest m numbers and then subtract the sum of lowest m numbers from it to get ... Read More

Maximum difference of sum of elements in two rows in a matrix in C

Sunidhi Bansal

Sunidhi Bansal

Updated on 14-Aug-2020 07:11:14

304 Views

We are given a matrix and the task is to find the greatest difference between the sum of elements in two rows of a matrix. Suppose we have a matrix M[i, j] with i rows and j columns. Let the rows be R0 to Ri-1. The difference will be calculated ... Read More

Count Distinct Non-Negative Integer Pairs (x, y) that Satisfy the Inequality x*x + y*y < n in C++

Sunidhi Bansal

Sunidhi Bansal

Updated on 13-Aug-2020 08:42:05

221 Views

We are given a positive integer N. The goal is to count the pairs of distinct non-negative positive integers that satisfy the inequality − x*x + y*y < N.We will start from x=0 to x2 lt; N and y=0 to y2 < N . If any x2 + y2 < ... Read More

Reasons for a C++ program crash

Sunidhi Bansal

Sunidhi Bansal

Updated on 13-Aug-2020 08:37:52

1K+ Views

The abnormal behavior of C++ programs often leads to program crash. You may have encountered problems like Segmentation fault, Aborted, Floating point exception etc. Following are sample programs that may help you to understand the reasons for a C++ program crash.ExceptionsExceptions in C++ are responses of a program when it ... Read More

Program for sum of geometric series in C

Sunidhi Bansal

Sunidhi Bansal

Updated on 13-Aug-2020 08:35:00

6K+ Views

Given three inputs first one is “a” which is for the first term of geometric series second is “r” which is the common ratio and “n” which are the number of series whose sum we have to find.Geometric series is a series which have a constant ratio between its successive ... Read More

Advertisements