Блог пользователя rahul_bhaiya_sabka_baap

Автор rahul_bhaiya_sabka_baap, история, 6 лет назад, По-английски

There is a square matrix 'X' of dimension n x n. It consists of zeros and ones. Given a value k, print the dimensions of a sub matrix of X consisting at most k zeros.

Полный текст и комментарии »

  • Проголосовать: нравится
  • -10
  • Проголосовать: не нравится

Автор rahul_bhaiya_sabka_baap, история, 6 лет назад, По-английски

Given an array of size N and an integer K. You need to find the (sum of subsequence * GCD of that subsequence) over all K length subsequences of the given array A. Print the answer modulo 998244353. For e.g. A[] = {1, 2}, K = 1. Two subsequences of length 1 are {1} and {2}, then answer is 1*1 + 2*2 = 5

Полный текст и комментарии »

  • Проголосовать: нравится
  • +13
  • Проголосовать: не нравится

Автор rahul_bhaiya_sabka_baap, история, 6 лет назад, По-английски

Given an array of N numbers and a number K find the maximum subarray size such that the average of the elements of the subarray >= k

Полный текст и комментарии »

  • Проголосовать: нравится
  • -14
  • Проголосовать: не нравится

Автор rahul_bhaiya_sabka_baap, история, 6 лет назад, По-английски

You have a dictionary with set of words, you have to create a data structure which will give you no of words of length L whose ith character is C. Queries are very frequent, Try to optimize it. If possible, please do provide the code.

Полный текст и комментарии »

  • Проголосовать: нравится
  • -4
  • Проголосовать: не нравится