# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
88948 | beso123 | Experiments with Gorlum (IZhO13_expgorl) | C++14 | 2 ms | 504 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include <iostream>
#include <iomanip>
using namespace std;
double n;
double a1,b1,a2,b2;
double dis1;
void dis(){
double a=(a1-a2)*(a1-a2);
double b=(b1-b2)*(b1-b1);
dis1=sqrt(a+b);
}
int main(){
freopen("expgorl.in","r",stdin);
freopen("expgorl.out","w",stdout);
//cout<<setprecision(2)<<3;
cin>>n;
string s;
cin>>s;
cin>>a1>>b1>>a2>>b2;
double mn=INT_MAX,mx=-INT_MAX;
for(int k=0;k<s.size();k++){
if(s[k]=='L')
a1--;
if(s[k]=='R')
a1++;
if(s[k]=='F')
b1++;
if(s[k]=='B')
b1--;
dis();
if(mx<dis1)
mx=dis1;
if(mn>dis1)
mn=dis1;
}
cout<<fixed;
cout<<setprecision(12)<<mn<<' ';
cout<<setprecision(12)<<mx;
//cout<<fixed;
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |