Skip to content
Programmingoneonone
Programmingoneonone
  • CS Subjects
    • Internet of Things (IoT)
    • Digital Communication
    • Human Values
    • Cybersecurity
  • Programming Tutorials
    • C Programming
    • Data structures and Algorithms
    • 100+ Java Programs
    • 100+ C Programs
  • HackerRank Solutions
    • HackerRank Algorithms Solutions
    • HackerRank C problems solutions
    • HackerRank C++ problems solutions
    • HackerRank Java problems solutions
    • HackerRank Python problems solutions
  • Work with US
Programmingoneonone
Programmingoneonone

HackerEarth Vegetable Market problem solution

YASH PAL, 31 July 202411 February 2026
In this HackerEarth Vegetable Market problem solution, There are N stalls in a vegetable market that are selling vegetables. You have to buy an equal amount of vegetables from each stall. If a stall does not have enough vegetables to offer, then you have to buy all the vegetables available in that stall. If you are given the number of vegetables that every stall can offer, determine the minimum quantity that you need to buy from each stall such that you have at least K vegetables in total.
HackerEarth Vegetable Market problem solution

HackerEarth Vegetable Market problem solution.

#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define si(x) scanf("%d", &x)
#define sc(x) scanf("%c", &x)
#define sl(x) scanf("%lld", &x)
#define pl(x) printf("%lldn", x)
#define pi(x) printf("%dn", x)
#define gu getchar_unlocked
#define pu putchar_unlocked
#define setbits __builtin_popcountll
#define pb push_back
#define mp make_pair
#define MOD 1000000007
#define speed ios::sync_with_stdio(false)

ll arr[100005];
ll leftarr[1000005], rightarr[1000005];
vector <ll> quan(1000005, 0);

int main(){
int n, i;
si(n);
for(i = 1; i <= n; i++){
sl(arr[i]);
leftarr[arr[i]]++;
rightarr[arr[i]]++;
}
for(i = 1; i <= 1000002; i++){
leftarr[i] = leftarr[i - 1] + (i * leftarr[i]);
}
for(i = 1000002; i >= 0; i--){
rightarr[i] += rightarr[i + 1];
}
for(i = 1; i <= 1000002; i++){
quan[i] = leftarr[i - 1] + (rightarr[i] * i);
}
int q;
si(q);
while(q--){
ll K;
sl(K);
vector <ll> :: iterator it;
it = lower_bound(quan.begin(), quan.end(), K);
if(it != quan.end()){
int index = it - quan.begin();
pi(index);
}
else{
pi(-1);
}
}
}
coding problems solutions HackerEarth HackerEarth

Post navigation

Previous post
Next post

Leave a Reply

Your email address will not be published. Required fields are marked *

Pages

  • About US
  • Contact US
  • Privacy Policy

Follow US

  • YouTube
  • LinkedIn
  • Facebook
  • Pinterest
  • Instagram
©2026 Programmingoneonone | WordPress Theme by SuperbThemes