답안 #168889

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
168889 2019-12-17T03:43:15 Z abil 생물 실험 (IZhO13_expgorl) C++14
0 / 100
183 ms 612 KB
#include <bits/stdc++.h>

#define fr first
#define sc second
#define pb push_back
#define mk make_pair
#define all(s) s.begin(),s.end()
//#define int long long

using namespace std;

const int N = (1e6 + 12);
const int mod = (1e9 + 7);
const int INF = (0x3f3f3f3f);

int lx, ly;

double dist(double x, double y){
	return sqrt((x - lx) * (x - ly) + (y - ly) * (y - ly)); 
}
main()
{
	int k;
	string s;
	scanf("%d", &k);
	cin >> s;
	double gx, gy;
	cin >> lx >> ly;
	cin >> gx >> gy;
	double ansmin = dist(gx, gy), ansmax = dist(gx, gy);
	for(int i = 0;i < k; i++){
		for(int j = 0;j < s.size(); j++){
			if(s[j] == 'L'){
				gx--;
			}
			else
			if(s[j] == 'R'){
				gx++;
			}
			else
			if(s[j] == 'F'){
				gy++;
			}
			else
			if(s[j] == 'B'){
				gy--;
			}
			ansmin = min(ansmin, dist(gx, gy));
			ansmax = max(ansmax, dist(gx, gy));
		}
	}
	cout << fixed << setprecision(9) << ansmin << " " << ansmax;
}

Compilation message

expgorl.cpp:21:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
 main()
      ^
expgorl.cpp: In function 'int main()':
expgorl.cpp:32:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for(int j = 0;j < s.size(); j++){
                 ~~^~~~~~~~~~
expgorl.cpp:25:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d", &k);
  ~~~~~^~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Incorrect 183 ms 612 KB Output isn't correct
2 Halted 0 ms 0 KB -