-
Notifications
You must be signed in to change notification settings - Fork 0
/
(Optimized)699A-Launch of Collider.cpp
57 lines (46 loc) · 1.12 KB
/
(Optimized)699A-Launch of Collider.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
53
54
55
56
57
//(Optimized)699A-Launch of Collider
#include <iostream>
#include <climits>
//#include <algorithm>
#include <deque>
using namespace std;
int main ()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int n,d,t; cin >> n;
string s;
deque <int> distance;
//deque <int> time;
int minimum = INT_MAX;
bool empty = true;
cin >> s;
cin >> d;
distance.push_back(d);
for (int i = 1; i < n; i++)
{
cin >> d;
distance.push_back(d);
if(s[i] == 'L' && s[i-1] == 'R')
{
t = ( distance[i] - distance[i-1] ) / 2;
// time.push_back(t);
minimum = min(minimum, t);
empty = false;
}
}
//we don't need to store the time values we only need the minimum of it
//Solution:
// make a minimum variable with large value like 10^9
// and then compare it with other value
//Old Solution
/* sort(time.begin(), time.end());
if (!time.empty())
cout << time[0];
else
cout << -1;*/
if (empty)
cout << -1;
else
cout << minimum;
}