답안 #339268

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
339268 2020-12-25T03:03:11 Z beksultan04 생물 실험 (IZhO13_expgorl) C++14
0 / 100
168 ms 12896 KB
#include <bits/stdc++.h>
using namespace std;
//#define int long long
#define pii pair<int,int>
#define OK puts("OK");
#define NO puts("NO");
#define YES puts("YES");
#define fr first
#define sc second
#define ret return
#define scan1(a) scanf("%lld",&a);
#define scan2(a,b) scanf("%lld %lld",&a, &b);
#define scan3(a,b,c) scanf("%lld %lld %lld",&a,&b,&c);
#define all(s) s.begin(),s.end()
#define allr(s) s.rbegin(),s.rend()
#define pb push_back
#define sz(v) (int)v.size()
#define endi puts("");
#define eps 1e-15
const int N = 1e5+12,INF=1e9+7;

long double disting(double x,double y,double x1,double y1){
    ret ((x-x1)*(x-x1))+((y-y1)*(y-y1));
}

main(){
    long double k,i,j,mx,mn,l=0,r=0,x1,y1,x,y;
    string s;
    cin>>k>>s>>x>>y>>x1>>y1;
    while (k-- && s.size()+s.size() < 1e7){
        s += s;
    }
    cout <<fixed <<setprecision(12);
    mn = disting(x,y,x1,y1);
    mx = disting(x,y,x1,y1);
    for (i=0;i<s.size();++i){
        if (s[i] == 'L'){
            x1--;
        }
        if (s[i] == 'R'){
            x1++;
        }
        if (s[i] == 'F'){
            y1++;
        }
        if (s[i] == 'B'){
            y1--;
        }
        mn = min(mn,disting(x,y,x1,y1));
        mx = max(mx,disting(x,y,x1,y1));

    }
    cout <<sqrt(mn)<<" "<<sqrt(mx);
}







Compilation message

expgorl.cpp:26:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   26 | main(){
      |      ^
expgorl.cpp: In function 'int main()':
expgorl.cpp:27:21: warning: unused variable 'j' [-Wunused-variable]
   27 |     long double k,i,j,mx,mn,l=0,r=0,x1,y1,x,y;
      |                     ^
expgorl.cpp:27:29: warning: unused variable 'l' [-Wunused-variable]
   27 |     long double k,i,j,mx,mn,l=0,r=0,x1,y1,x,y;
      |                             ^
expgorl.cpp:27:33: warning: unused variable 'r' [-Wunused-variable]
   27 |     long double k,i,j,mx,mn,l=0,r=0,x1,y1,x,y;
      |                                 ^
# 결과 실행 시간 메모리 Grader output
1 Incorrect 168 ms 12896 KB Output isn't correct
2 Halted 0 ms 0 KB -