-
Notifications
You must be signed in to change notification settings - Fork 0
/
Taxi_Booking_21_03_23.cpp
52 lines (47 loc) · 994 Bytes
/
Taxi_Booking_21_03_23.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
//{ Driver Code Starts
// Initial Template for C++
#include <bits/stdc++.h>
using namespace std;
// } Driver Code Ends
// User function Template for C++
class Solution
{
public:
int minimumTime(int N, int cur, vector<int> &pos, vector<int> &time)
{
int temp = 0;
int dist = abs(cur - pos[0]) * time[0];
for (int i = 0; i < N; i++)
{
temp = abs(cur - pos[i]) * time[i];
if (dist > temp)
{
dist = temp;
}
}
return dist;
}
};
//{ Driver Code Starts.
int main()
{
int t;
cin >> t;
while (t--)
{
int N, cur;
cin >> N >> cur;
vector<int> pos(N), time(N);
for (int i = 0; i < N; i++)
{
cin >> pos[i];
}
for (int i = 0; i < N; i++)
{
cin >> time[i];
}
Solution ob;
cout << ob.minimumTime(N, cur, pos, time) << endl;
}
}
// } Driver Code Ends