Arnab Chakraborty has Published 4173 Articles

Program to find maximal network rank in Python

Arnab Chakraborty

Arnab Chakraborty

Updated on 05-Oct-2021 10:54:28

475 Views

Suppose there are n cities and there are some roads connecting these cities. Each roads[i] = [u, v] indicates that there is a two-way road between cities u and v. Now consider network rank is the total number of directly connected roads to either city. When a road is directly ... Read More

Program to find valid matrix given row and column sums in Python

Arnab Chakraborty

Arnab Chakraborty

Updated on 04-Oct-2021 13:15:42

385 Views

Suppose we have two arrays rowSum and colSum with non-negative values where rowSum[i] has the sum of the elements in the ith row and colSum[j] has the sum of the elements in the jth column of a 2D matrix. We have to find any matrix with non-negative values of size ... Read More

Program to find maximum non negative product in a matrix in Python

Arnab Chakraborty

Arnab Chakraborty

Updated on 04-Oct-2021 11:53:09

218 Views

Suppose we have a matrix of order m x n. Initially we are at the top-left corner cell (0, 0), and in each step, we can only move right or down in the matrix. Now among all possible paths from the top-left corner cell (0, 0) to bottom-right corner cell(m-1, ... Read More

Program to find split a string into the max number of unique substrings in Python

Arnab Chakraborty

Arnab Chakraborty

Updated on 04-Oct-2021 10:07:49

425 Views

Suppose we have a string s, we have to find the maximum number of unique substrings that the given string can be split into. We can split string s into any list of non-empty substrings such that the concatenation of the substrings forms the original string. But we must split ... Read More

Program to make sum divisible by P in Python

Arnab Chakraborty

Arnab Chakraborty

Updated on 04-Oct-2021 10:00:07

438 Views

Suppose we have an array nums and another value p, we remove the smallest subarray (not the whole array) such that the sum of the remaining values is divisible by p. We have to find the length of the smallest subarray that we need to remove, if there is no ... Read More

Program to find maximum sum obtained of any permutation in Python

Arnab Chakraborty

Arnab Chakraborty

Updated on 04-Oct-2021 09:44:48

535 Views

Suppose we have an array nums, and another array called requests where requests[i] = [start_i, end_i], this represents the ith request asks for the sum of nums[start_i] + nums[start_i+1] + ... + nums[end_i-1] + nums[end_i]. We have to find the maximum total sum of all requests among all permutations of ... Read More

Program to find minimum cost to connect all points in Python

Arnab Chakraborty

Arnab Chakraborty

Updated on 04-Oct-2021 09:32:53

515 Views

Suppose we have an array called points with some points in the form (x, y). Now the cost of connecting two points (xi, yi) and (xj, yj) is the Manhattan distance between them, the formula is |xi - xj| + |yi - yj|. We have to find the minimum cost ... Read More

Program to count number of unhappy friends in Python

Arnab Chakraborty

Arnab Chakraborty

Updated on 04-Oct-2021 09:18:51

296 Views

Suppose we have a list of preferences for n(even) different friends. For each person i, the preferences[i] holds a list of friends sorted in the order of preference. So, a friend earlier in the list is more preferred than a friend later in the list. The friends in each list ... Read More

Program to find minimum deletion cost to avoid repeating letters in Python

Arnab Chakraborty

Arnab Chakraborty

Updated on 04-Oct-2021 08:50:25

726 Views

Suppose we have a string s and another array of integers called cost where cost[i] represents the cost of deleting the ith character in s. We have to find the minimum cost of deletions such that there are no two same letters next to each other. We have to keep ... Read More

Program to find number of ways where square of number is equal to product of two numbers in Python

Arnab Chakraborty

Arnab Chakraborty

Updated on 04-Oct-2021 08:39:40

235 Views

Suppose we have two arrays nums1 and nums2, we have to find of triplets formed (type 1 and type 2) following these two rules −Triplet (i, j, k) if nums1[i]^2 = nums2[j] * nums2[k] where [0

Advertisements