Submission #88979

#TimeUsernameProblemLanguageResultExecution timeMemory
88979lazarus88Experiments with Gorlum (IZhO13_expgorl)C++14
0 / 100
2 ms252 KiB
#include<bits/stdc++.h> using namespace std; int main(){ int k; cin>>k; string s; cin>>s; double dis=0,min=9999999,max=0; pair<int,int> l,g; cin>>l.first>>l.second; cin>>g.first>>g.second; dis=sqrt((l.first-g.first)*(l.first-g.first)+(l.second-g.second)*(l.second-g.second)); if(dis<min) min=dis; if(dis>max) max=dis; for(int i=0;i<s.size();i++){ if(s[i]=='L') g.second--; if(s[i]=='R') g.second++; if(s[i]=='F') g.first++; if(s[i]=='B') g.first--; dis=sqrt((g.first-l.first)*(g.first-l.first)+(g.second-l.second)*(g.second-l.second)); if(dis<min) min=dis; if(dis>max) max=dis; } cout<<min<<' '<<max; }

Compilation message (stderr)

expgorl.cpp: In function 'int main()':
expgorl.cpp:14:15: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  for(int i=0;i<s.size();i++){
              ~^~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...