Submission #1009057

# Submission time Handle Problem Language Result Execution time Memory
1009057 2024-06-27T08:25:29 Z bornag Experiments with Gorlum (IZhO13_expgorl) C++14
0 / 100
371 ms 65536 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;
	
	for(int i = 0; i < k; i++) cmd+=s;
	
	cin >> lx >> ly >> gx >> gy;
	
	ld mxi = -1;
	ld mni = LLONG_MAX;
	for(auto c : cmd){
		ld di = sqrt(abs(gx-lx)*abs(gx-lx) + abs(gy-ly)*abs(gy-ly));
		mxi = max(mxi, di);
		mni = min(mni, di);
		
		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';
}
# Verdict Execution time Memory Grader output
1 Correct 225 ms 34488 KB Output is correct
2 Correct 292 ms 28096 KB Output is correct
3 Correct 294 ms 29944 KB Output is correct
4 Correct 339 ms 32804 KB Output is correct
5 Correct 174 ms 20732 KB Output is correct
6 Correct 261 ms 44224 KB Output is correct
7 Correct 300 ms 32376 KB Output is correct
8 Correct 371 ms 60652 KB Output is correct
9 Runtime error 21 ms 65536 KB Execution killed with signal 9
10 Halted 0 ms 0 KB -