Submission #1009136

#TimeUsernameProblemLanguageResultExecution timeMemory
1009136tarpent생물 실험 (IZhO13_expgorl)C++14
0 / 100
56 ms348 KiB
#include<bits/stdc++.h> using namespace std; long long n,gx,gy,lx,ly; string pu; double mi,ma,tr; int main(){ ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); cin>>n; cin>>pu; cin>>lx>>ly>>gx>>gy; mi= INT_MAX; ma=0; int siz; char e; siz = pu.size(); for(int i = 0; i<n; i++){ for(int j = 0; j<siz; j++){ e=pu[j]; if(e=='L'){ gx-=1; } else if(e=='R'){ gx+=1; } else if(e=='F'){ gy+=1; } else if(e=='B'){ gy-=1; } else if(e=='I'){ continue; } tr=sqrt(abs(lx-gx)^2 +abs(ly-gy)^2); if(tr<mi) mi = tr; if(tr>ma) ma = tr; } } cout<<fixed; cout<<setprecision(12); cout<<mi<<' '<<ma; }

Compilation message (stderr)

expgorl.cpp: In function 'int main()':
expgorl.cpp:36:25: warning: suggest parentheses around arithmetic in operand of '^' [-Wparentheses]
   36 |    tr=sqrt(abs(lx-gx)^2 +abs(ly-gy)^2);
      |                       ~~^~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...