# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
339281 | beksultan04 | Experiments with Gorlum (IZhO13_expgorl) | C++14 | 349 ms | 65540 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define pii pair<int,int>
#define OK puts("OK");
#define NO puts("NO");
#define YES puts("YES");
#define fr first
#define sc second
#define ret return
#define scan1(a) scanf("%lld",&a);
#define scan2(a,b) scanf("%lld %lld",&a, &b);
#define scan3(a,b,c) scanf("%lld %lld %lld",&a,&b,&c);
#define all(s) s.begin(),s.end()
#define allr(s) s.rbegin(),s.rend()
#define pb push_back
#define sz(v) (int)v.size()
#define endi puts("");
#define eps 1e-15
const int N = 1e5+12,INF=1e9+7;
double disting(double x,double y,double x1,double y1){
ret ((x-x1)*(x-x1))+((y-y1)*(y-y1));
}
main(){
double k,i,j,l=0,r=0,x1,y1,x,y,mn,mx;
string s,t="";
cin>>k>>s>>x>>y>>x1>>y1;
t = s;
while (k>1){
s += t;
k--;
}
cout <<fixed <<setprecision(12);
mn = disting(x,y,x1,y1);
mx = disting(x,y,x1,y1);
for (i=0;i<s.size();++i){
if (s[i] == 'L'){
x1--;
}
if (s[i] == 'R'){
x1++;
}
if (s[i] == 'F'){
y1++;
}
if (s[i] == 'B'){
y1--;
}
mn = min(mn,disting(x,y,x1,y1));
mx = max(mx,disting(x,y,x1,y1));
}
cout <<sqrt(mn)<<" "<<sqrt(mx);
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |