# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
84433 | 2018-11-15T07:40:30 Z | farukkastamonuda | Experiments with Gorlum (IZhO13_expgorl) | C++14 | 1000 ms | 652 KB |
#include <bits/stdc++.h> #define fi first #define se second #define mp make_pair #define lo long long #define inf 1000000000 #define md 1000000007 #define pb push_back #define li 100005 using namespace std; int k,lx,ly,gx,gy; char s[li]; double mx,mn=inf; double dis(int a,int b){ double aa=a,bb=b; double cc=lx,dd=ly; return sqrt(abs(aa-cc)*abs(aa-cc)+abs(bb-dd)*abs(bb-dd)); } int main(){ scanf("%d",&k); scanf("%s",s+1); int t=strlen(s+1); scanf("%d %d %d %d",&lx,&ly,&gx,&gy); mx=max(mx,dis(gx,gy)); mn=min(mn,dis(gx,gy)); for(int i=1;i<=k;i++){ for(int j=1;j<=t;j++){ if(s[j]=='L'){ gx--; } if(s[j]=='R'){ gx++; } if(s[j]=='F'){ gy++; } if(s[j]=='B'){ gy--; } mx=max(mx,dis(gx,gy)); mn=min(mn,dis(gx,gy)); } } printf("%.12lf %.12lf\n",mn,mx); return 0; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 218 ms | 504 KB | Output is correct |
2 | Correct | 304 ms | 504 KB | Output is correct |
3 | Correct | 346 ms | 584 KB | Output is correct |
4 | Correct | 423 ms | 584 KB | Output is correct |
5 | Correct | 162 ms | 584 KB | Output is correct |
6 | Correct | 261 ms | 652 KB | Output is correct |
7 | Correct | 315 ms | 652 KB | Output is correct |
8 | Correct | 426 ms | 652 KB | Output is correct |
9 | Execution timed out | 1075 ms | 652 KB | Time limit exceeded |
10 | Halted | 0 ms | 0 KB | - |