#include<bits/stdc++.h>
using namespace std;
long long n,gx,gy,lx,ly;
string pu,u;
double mi,ma,tr;
int main(){
ios::sync_with_stdio(false);
cin.tie(0); cout.tie(0);
cin>>n;
cin>>pu;
for(int i = 0; i<n; i++){
u+=pu;
}
cin>>lx>>ly>>gx>>gy;
mi= INT_MAX;
ma=0;
for(auto e: u){
if(e=='L'){
gx-=1;
}
else if(e=='R'){
gx+=1;
}
else if(e=='F'){
gy+=1;
}
else if(e=='B'){
gy-=1;
}
else if(e=='I'){
continue;
}
tr=sqrt(abs(lx-gx)*abs(lx-gx) +abs(ly-gy)*abs(ly-gy));
if(tr>ma) ma = tr;
if(tr<mi) mi = tr;
}
cout<<fixed;
cout<<setprecision(12);
cout<<mi<<' '<<ma;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
66 ms |
33976 KB |
Output is correct |
2 |
Correct |
87 ms |
27328 KB |
Output is correct |
3 |
Correct |
94 ms |
30204 KB |
Output is correct |
4 |
Correct |
101 ms |
32548 KB |
Output is correct |
5 |
Correct |
61 ms |
21240 KB |
Output is correct |
6 |
Correct |
83 ms |
44480 KB |
Output is correct |
7 |
Correct |
86 ms |
33912 KB |
Output is correct |
8 |
Correct |
118 ms |
60140 KB |
Output is correct |
9 |
Runtime error |
21 ms |
65536 KB |
Execution killed with signal 9 |
10 |
Halted |
0 ms |
0 KB |
- |