Submission #88978

#TimeUsernameProblemLanguageResultExecution timeMemory
88978LkvatashidzeExperiments with Gorlum (IZhO13_expgorl)C++17
0 / 100
2 ms376 KiB
#include <bits/stdc++.h> #define ll long long using namespace std; double mn, mx; int main() { ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0); ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0); int k; cin >> k; string s; cin >> s; int x, y; int x1, y1; cin >> x >> y; cin >> x1 >> y1; mn=sqrt((x1-x)*(x1-x)+(y-y1)*(y-y1)); for (int i=0; i<s.size(); i++) { if (s[i]=='L') x--; if (s[i]=='R') x++; if (s[i]=='U') y++; if (s[i]=='D') y--; double p=sqrt((x1-x)*(x1-x)+(y-y1)*(y-y1)); mn=min(mn,p); mx=max(mx,p); } cout << fixed << setprecision(8) << mn << ' ' << mx; return 0; }

Compilation message (stderr)

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