Skip to content
Programmingoneonone
Programmingoneonone
  • Home
  • CS Subjects
    • Internet of Things (IoT)
    • Digital Communication
    • Human Values
  • 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
Programmingoneonone

HackerEarth The Perfect Road problem solution

YASH PAL, 31 July 2024
In this HackerEarth The Perfect Road problem solution we have given that, there are N paths numbered from 1 to N, where each path connects the starting point S to the destination point X. The maximum speed limit is speed[i] for the ith path which can be used to reach the destination. Find the path to reach the destination as early as possible. If there are multiple paths from which you can choose, print Many Roads. Also, it is guaranteed that X will always be greater than S.
HackerEarth The Perfect Road problem solution

HackerEarth The Perfect Road problem solution.

#include<iostream>
#include<algorithm>
#include<functional>
#include<utility>
#include<cstring>
#include<climits>
#include<cstdlib>
#include<cstdio>
#include<vector>
#include<cmath>
#include<stack>
#include<queue>
#include<deque>
#include<map>
#include<set>
#define MAX LONG_LONG_MAX
#define MIN LONG_LONG_MIN
#define ll long long
#define mp make_pair
#define pb push_back
#define ff first
#define ss second
#define INF 1e17
using namespace std;
const int mod=1e+7;
int FindPerfectRoad(int Startpoint,int X,vector<int> s)
{
double res=999999.000;
vector<double> ans;
int answer=0,counter=0,Diff=(X-Startpoint);
int n=s.size();
for(int i=0;i<n;i++)
{
double TimeReq=(Diff/(double)s[i]);
ans.push_back(TimeReq);
if(TimeReq<res)
{
res=TimeReq;
answer=i+1;
}
}
for(int i=0;i<n;i++)
if(ans[i]==res)
counter++;
if(counter==1)
return answer;
else
return -1;
}
int main()
{
int t;
cin>>t;
while(t--)
{
int n,StartPoint,X;
cin>>StartPoint>>X>>n;
vector<int> s;
for(int i=0;i<n;i++)
{
int temp;
cin>>temp;
s.push_back(temp);
}
int ans=FindPerfectRoad(StartPoint,X,s);
if(ans==-1)
cout<<"Many Roads"<<endl;
else
cout<<ans<<endl;
}
return 0;
}
coding problems solutions

Post navigation

Previous post
Next post

Pages

  • About US
  • Contact US
  • Privacy Policy

Programing Practice

  • C Programs
  • java Programs

HackerRank Solutions

  • C
  • C++
  • Java
  • Python
  • Algorithm

Other

  • Leetcode Solutions
  • Interview Preparation

Programming Tutorials

  • DSA
  • C

CS Subjects

  • Digital Communication
  • Human Values
  • Internet Of Things
  • YouTube
  • LinkedIn
  • Facebook
  • Pinterest
  • Instagram
©2025 Programmingoneonone | WordPress Theme by SuperbThemes