Submission #1009053

# Submission time Handle Problem Language Result Execution time Memory
1009053 2024-06-27T08:23:48 Z tarpent Experiments with Gorlum (IZhO13_expgorl) C++14
0 / 100
160 ms 35000 KB
#include<bits/stdc++.h>
using namespace std;
int n,gx,gy,lx,ly;
string pu,u;
long double mi,ma,tr;
int main(){
	ios::sync_with_stdio(false);
	cin.tie(0); cout.tie(0);
	
	cin>>n;
	cin>>pu;
	for(int i = 0; i<n; i++){
		u+=pu;
	}
	cin>>gx>>gy>>lx>>ly;
	mi= LLONG_MAX*100;
	for(auto e: u){
		if(e=='L'){
			gx-=1;
		}
		else if(e=='R'){
			gx+=1;
		}
		else if(e=='F'){
			gy+=1;
		}
		else if(e=='B'){
			gy-=1;
		}
		else if(e=='I'){
			continue;
		}
		
		tr=sqrt(abs(lx-gx)^2 +abs(ly-gy)^2);
		if(tr>ma) ma = tr;
		if(tr<mi) mi = tr;
	}
	cout<<fixed;
	
	cout<<setprecision(9);
	cout<<mi<<' '<<ma;
	
	
}

Compilation message

expgorl.cpp: In function 'int main()':
expgorl.cpp:16:15: warning: integer overflow in expression of type 'long long int' results in '-100' [-Woverflow]
   16 |  mi= LLONG_MAX*100;
      |               ^
expgorl.cpp:34:24: warning: suggest parentheses around arithmetic in operand of '^' [-Wparentheses]
   34 |   tr=sqrt(abs(lx-gx)^2 +abs(ly-gy)^2);
      |                      ~~^~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Incorrect 160 ms 35000 KB Output isn't correct
2 Halted 0 ms 0 KB -