Submission #89076

#TimeUsernameProblemLanguageResultExecution timeMemory
89076mateExperiments with Gorlum (IZhO13_expgorl)C++17
0 / 100
1073 ms524 KiB
#include <bits/stdc++.h> using namespace std; int main() { double k,x1,x2,y1,y2,mx,mn,t; string s; cin>>k; cin>>s; cin>>x1>>y1; cin>>x2>>y2; mn=sqrt((x1-x2)*(x1-x2)+(y1-y2)*(y1-y2)); mx=mn; for(double i=0;i<k;i++) for(double j=0;j<s.size();j++){ if(s[j]=='L') x2=x2-1; if(s[j]=='R') x2=x2+1; if(s[j]=='F') y2=y2+1; if(s[j]=='B') y2=y2-1; t=sqrt((x1-x2)*(x1-x2)+(y1-y2)*(y1-y2)); mx=max(mx,t); mn=min(mn,t); //mx=max(mx,t*k); //mn=min(mn,t*k); } cout<<fixed<<setprecision(9)<<mn<<' '<<fixed<<setprecision(9)<<mx; return 0; }

Compilation message (stderr)

expgorl.cpp: In function 'int main()':
expgorl.cpp:27:8: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
        if(s[j]=='B')
        ^~
expgorl.cpp:30:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
             t=sqrt((x1-x2)*(x1-x2)+(y1-y2)*(y1-y2));
             ^
expgorl.cpp:19:4: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
    for(double i=0;i<k;i++)
    ^~~
expgorl.cpp:40:8: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
        cout<<fixed<<setprecision(9)<<mn<<' '<<fixed<<setprecision(9)<<mx;
        ^~~~
#Verdict Execution timeMemoryGrader output
Fetching results...