# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
88981 | lazarus88 | 생물 실험 (IZhO13_expgorl) | C++14 | 2 ms | 376 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |