You are a poor person in an island. There is only one shop in this island, this shop is open on all days of the week except for Sunday. Consider following constraints:
- N – Maximum unit of food you can buy each day.
- S – Number of days you are required to survive.
- M – Unit of food required each day to survive.
Currently, it’s Monday, and you need to survive for the next S days.
Find the minimum number of days on which you need to buy food from the shop so that you can survive the next S days, or determine that it isn’t possible to survive.
Examples:
Input : S = 10 N = 16 M = 2
Output : Yes 2
Explanation 1: One possible solution is to buy a box on the first day (Monday), it’s sufficient to eat from this box up to 8th day (Monday) inclusive. Now, on the 9th day (Tuesday), you buy another box and use the chocolates in it to survive the 9th and 10th day.
Input : 10 20 30
Output : No
Explanation 2: You can’t survive even if you buy food because the maximum number of units you can buy in one day is less the required food for one day.
Approach:
In this problem, the greedy approach of buying the food for some consecutive early days is the right direction.
If we can survive for the first 7 days then we can survive any number of days for that we need to check two things
-> Check whether we can survive one day or not.
-> (S >= 7) If we buy food in the first 6 days of the week and we can survive for the week i.e. total food we can buy in a week (6*N) is greater than or equal to total food we require to survive in a week (7*M) then we can survive.
Note : We are buying the food in the first 6 days because we are counting from Monday and the shop will remain close on Sunday.
If any of the above conditions are not true then we can’t survive else
the equation can be derived as :
the amount of food that we buy should >= the amount of food required to survive.—-> equation 1
the amount of food that we buy = number of times we buy (days) * amount of food that we get for one time buy (N)
the amount of food required to survive = the number of days we need to survive(S) * amount of food required on each day(M).
now from our equation 1:
days * N >= S * M
hence, days = ceil (S * M) / N
CPP
#include <bits/stdc++.h>
using namespace std;
void survival( int S, int N, int M)
{
if (((N * 6) < (M * 7) && S > 6) || M > N)
cout << "No\n" ;
else {
int days = (M * S) / N;
if (((M * S) % N) != 0)
days++;
cout << "Yes " << days << endl;
}
}
int main()
{
int S = 10, N = 16, M = 2;
survival(S, N, M);
return 0;
}
|
C
#include <stdio.h>
void survival( int S, int N, int M)
{
if (((N * 6) < (M * 7) && S > 6) || M > N)
printf ( "No\n" );
else {
int days = (M * S) / N;
if (((M * S) % N) != 0)
days++;
printf ( "Yes %d\n" ,days);
}
}
int main()
{
int S = 10, N = 16, M = 2;
survival(S, N, M);
return 0;
}
|
Java
import java.io.*;
class GFG {
static void survival( int S, int N, int M)
{
if (((N * 6 ) < (M * 7 ) && S > 6 ) || M > N)
System.out.println( "No" );
else {
int days = (M * S) / N;
if (((M * S) % N) != 0 )
days++;
System.out.println( "Yes " + days);
}
}
public static void main(String[] args)
{
int S = 10 , N = 16 , M = 2 ;
survival(S, N, M);
}
}
|
Python3
def survival(S, N, M):
if (((N * 6 ) < (M * 7 ) and S > 6 ) or M > N):
print ( "No" )
else :
days = (M * S) / N
if (((M * S) % N) ! = 0 ):
days + = 1
print ( "Yes " ),
print (days)
S = 10 ; N = 16 ; M = 2
survival(S, N, M)
|
C#
using System;
class GFG {
static void survival( int S, int N, int M)
{
if (((N * 6) < (M * 7) && S > 6) || M > N)
Console.Write( "No" );
else {
int days = (M * S) / N;
if (((M * S) % N) != 0)
days++;
Console.WriteLine( "Yes " + days);
}
}
public static void Main()
{
int S = 10, N = 16, M = 2;
survival(S, N, M);
}
}
|
PHP
<?php
function survival( $S , $N , $M )
{
if ((( $N * 6) < ( $M * 7) &&
$S > 6) || $M > $N )
echo "No" ;
else
{
$days = ( $M * $S ) / $N ;
if ((( $M * $S ) % $N ) != 0)
$days ++;
echo "Yes " , floor ( $days ) ;
}
}
$S = 10; $N = 16; $M = 2;
survival( $S , $N , $M );
?>
|
Javascript
<script>
function survival(S, N, M)
{
if (((N * 6) < (M * 7) && S > 6) || M > N)
document.write( "No" );
else {
let days = (M * S) / N;
if (((M * S) % N) != 0)
days++;
document.write( "Yes " + Math.round(days));
}
}
let S = 10, N = 16, M = 2;
survival(S, N, M);
</script>
|
Output:
Yes 2
Time Complexity: O(1)
Space Complexity: O(1)
Another Approach:
Check whether the food required for S days can be bought or not by excluding the Sundays by taking all other days to buy. If can be bought then greedily buy from the initial day until food acquired is greater than or equal to food required for S days.
C++
#include <bits/stdc++.h>
using namespace std;
int minimumDays( int S, int N, int M)
{
double req = S * M;
if ((S - S / 7) * N < req) {
return -1;
}
else {
return ceil (req / N);
}
}
int main()
{
int S = 10, N = 16, M = 2;
int days = minimumDays(S, N, M);
if (days != -1) {
cout << "Yes " << days << endl;
}
else {
cout << "No" << endl;
}
return 0;
}
|
Java
import java.util.*;
class GFG {
static int minimumDays( int S, int N, int M)
{
double req = S * M;
if ((S - S / 7 ) * N < req) {
return - 1 ;
}
else {
return ( int )Math.ceil(req / N);
}
}
public static void main(String[] args)
{
int S = 10 , N = 16 , M = 2 ;
int days = minimumDays(S, N, M);
if (days != - 1 ) {
System.out.println( "Yes " + days);
}
else {
System.out.println( "No" );
}
}
}
|
Python3
from math import ceil
def minimumDays(S, N, M):
req = S * M;
if ((S - S / / 7 ) * N < req) :
return - 1 ;
else :
return ceil(req / N);
S = 10
N = 16
M = 2 ;
days = minimumDays(S, N, M);
if (days ! = - 1 ) :
print ( "Yes" , days);
else :
print ( "No" );
|
C#
using System;
using System.Collections.Generic;
class GFG
{
static int minimumDays( int S, int N, int M)
{
double req = S * M;
if ((S - S / 7) * N < req) {
return -1;
}
else {
return ( int )Math.Ceiling(req / N);
}
}
public static void Main( string [] args)
{
int S = 10, N = 16, M = 2;
int days = minimumDays(S, N, M);
if (days != -1) {
Console.WriteLine( "Yes " + days);
}
else {
Console.WriteLine( "No" );
}
}
}
|
Javascript
function minimumDays(S, N, M)
{
let req = S * M;
if ((S - S / 7) * N < req) {
return -1;
}
else {
return Math.ceil(req / N);
}
}
let S = 10, N = 16, M = 2;
let days = minimumDays(S, N, M);
if (days != -1) {
console.log( "Yes" , days);
}
else {
console.log( "No" );
}
|
Output:
Yes 2
Time Complexity: O(1)
Space Complexity: O(1)