#include <bits/stdc++.h>
#define ll long long
using namespace std;
double mn, mx;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int k;
cin >> k;
string s;
cin >> s;
int x, y;
int x1, y1;
cin >> x >> y;
cin >> x1 >> y1;
mn=sqrt((x1-x)*(x1-x)+(y-y1)*(y-y1));
int n=s.size();
for (int i=0; i<n; i++) {
if (s[i]=='L')
x--;
if (s[i]=='R')
x++;
if (s[i]=='F')
y++;
if (s[i]=='B')
y--;
double p=sqrt((x1-x)*(x1-x)+(y-y1)*(y-y1));
mn=min(mn,p);
mx=max(mx,p);
}
cout << fixed << setprecision(8) << mn << ' ';
cout << fixed << setprecision(8) << mx;
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
376 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |