Submission #1009123

# Submission time Handle Problem Language Result Execution time Memory
1009123 2024-06-27T09:01:56 Z bornag Experiments with Gorlum (IZhO13_expgorl) C++11
0 / 100
1000 ms 424 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;
		
	double mxi = -1;
	double mni = LLONG_MAX;
	
	double 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(int j = 0; j < s.size(); j++){
			char c = s[j];
		
			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';
}

Compilation message

expgorl.cpp: In function 'int main()':
expgorl.cpp:30:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   30 |   for(int j = 0; j < s.size(); j++){
      |                  ~~^~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 62 ms 344 KB Output is correct
2 Correct 78 ms 424 KB Output is correct
3 Correct 86 ms 348 KB Output is correct
4 Correct 115 ms 348 KB Output is correct
5 Correct 47 ms 348 KB Output is correct
6 Correct 63 ms 348 KB Output is correct
7 Correct 90 ms 344 KB Output is correct
8 Correct 116 ms 348 KB Output is correct
9 Execution timed out 1079 ms 348 KB Time limit exceeded
10 Halted 0 ms 0 KB -