답안 #1009082

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1009082 2024-06-27T08:36:12 Z bornag 생물 실험 (IZhO13_expgorl) C++14
0 / 100
1000 ms 428 KB
#include <bits/stdc++.h>
using namespace std;

#define ll long long
#define ld long double

ll lx, ly, gx, gy;
string cmd, s;

ll k;

int main(){
	ios::sync_with_stdio(false);
	cin.tie(0); cout.tie(0);
	
	cout << fixed << setprecision(12);
	
	cin >> k >> s;
	
	cin >> lx >> ly >> gx >> gy;
		
	ld mxi = -1;
	ld mni = LLONG_MAX;
	
	ld di = sqrt(abs(gx-lx)*abs(gx-lx) + abs(gy-ly)*abs(gy-ly));
	mxi = max(mxi, di);
	mni = min(mni, di);
	
	for(int i = 0; i < k; i++){
		for(auto c : s){
		
			if(c == 'L') gx--;
			else if(c == 'R') gx++;
			else if(c == 'F') gy++;
			else if(c == 'B') gy--;
		
			di = sqrt(abs(gx-lx)*abs(gx-lx) + abs(gy-ly)*abs(gy-ly));
			mxi = max(mxi, di);
			mni = min(mni, di);
		}
	}
	
	cout << mni << ' ' << mxi << '\n';
}
# 결과 실행 시간 메모리 Grader output
1 Correct 112 ms 344 KB Output is correct
2 Correct 179 ms 424 KB Output is correct
3 Correct 175 ms 348 KB Output is correct
4 Correct 198 ms 428 KB Output is correct
5 Correct 103 ms 348 KB Output is correct
6 Correct 162 ms 428 KB Output is correct
7 Correct 156 ms 348 KB Output is correct
8 Correct 247 ms 348 KB Output is correct
9 Execution timed out 1018 ms 344 KB Time limit exceeded
10 Halted 0 ms 0 KB -