# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
168900 | abil | Experiments with Gorlum (IZhO13_expgorl) | C++14 | 18 ms | 256 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>
#define fr first
#define sc second
#define pb push_back
#define mk make_pair
#define all(s) s.begin(),s.end()
//#define int long long
using namespace std;
const int N = (1e6 + 12);
const int mod = (1e9 + 7);
const int INF = (0x3f3f3f3f);
int lx, ly;
double dist(double x, double y){
return sqrt((x - lx) * (x - lx) + (y - ly) * (y - ly));
}
main()
{
int k;
string s;
scanf("%d", &k);
cin >> s;
double gx, gy;
cin >> lx >> ly;
cin >> gx >> gy;
double inx = gx, iny = gy;
double ansmin = dist(gx, gy), ansmax = dist(gx, gy);
double ans1 = ansmin, ans2 = ansmax, lastx, lasty;
lastx = gx, lasty = gy;
for(int j = 0;j < s.size(); j++){
if(s[j] == 'L'){
gx--;
}
else
if(s[j] == 'R'){
gx++;
}
else
if(s[j] == 'F'){
gy++;
}
else
if(s[j] == 'B'){
gy--;
}
lastx = gx;
lasty = gx;
}
ans1 = min(ans1, dist(lastx, lasty));
//if(ans1 == ansmin){
gx = inx, gy = iny;
for(int i = 0;i < min(1000, k); i++){
for(int j = 0;j < s.size(); j++){
if(s[j] == 'L'){
gx--;
}
else
if(s[j] == 'R'){
gx++;
}
else
if(s[j] == 'F'){
gy++;
}
else
if(s[j] == 'B'){
gy--;
}
ansmin = min(ansmin, dist(gx, gy));
ansmax = max(ansmax, dist(gx, gy));
}
}
gx = inx, gy = iny;
double xx = lastx - gx, yy = lasty - gy;
gx = gx + max(0, k - 1000) * xx;
gy = gy + max(0, k - 1000) * yy;
ansmax = max(ansmax, dist(gx, gy));
for(int i = max(0 + 1, k - 1000 + 1);i <= k; i++){
for(int j = 0;j < s.size(); j++){
if(s[j] == 'L'){
gx--;
}
else
if(s[j] == 'R'){
gx++;
}
else
if(s[j] == 'F'){
gy++;
}
else
if(s[j] == 'B'){
gy--;
}
ansmin = min(ansmin, dist(gx, gy));
ansmax = max(ansmax, dist(gx, gy));
}
}
//}
//else{
//gx = inx, gy = iny;
//for(int i = 0;i < min(1000, k); i++){
//for(int j = 0;j < s.size(); j++){
//if(s[j] == 'L'){
//gx--;
//}
//else
//if(s[j] == 'R'){
//gx++;
//}
//else
//if(s[j] == 'F'){
//gy++;
//}
//else
//if(s[j] == 'B'){
//gy--;
//}
//ansmin = min(ansmin, dist(gx, gy));
//ansmax = max(ansmax, dist(gx, gy));
//}
//}
//gx = inx, gy = iny;
//double xx = lastx - gx, yy = lasty - gy;
//gx = gx + max(0, k - 1000) * xx;
//gy = gy + max(0, k - 1000) * yy;
//ansmin = min(ansmin, dist(gx, gy));
//for(int i = max(0 + 1, k - 1000 + 1);i <= k; i++){
//for(int j = 0;j < s.size(); j++){
//if(s[j] == 'L'){
//gx--;
//}
//else
//if(s[j] == 'R'){
//gx++;
//}
//else
//if(s[j] == 'F'){
//gy++;
//}
//else
//if(s[j] == 'B'){
//gy--;
//}
//ansmin = min(ansmin, dist(gx, gy));
//ansmax = max(ansmax, dist(gx, gy));
//}
//}
//}
cout << fixed << setprecision(9) << ansmin << " " << ansmax;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |