# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
88992 | 2018-12-10T07:46:17 Z | Lkvatashidze | 생물 실험 (IZhO13_expgorl) | C++17 | 296 ms | 504 KB |
#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)); int n=s.size(); while (k--) { int i=1; for (int i=0; i<n; i++) { if (s[i]=='L') x--; if (s[i]=='R') x++; if (s[i]=='F') y++; if (s[i]=='B') 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 << ' '; cout << fixed << setprecision(8) << mx; return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 296 ms | 504 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |