Submission #1009164

# Submission time Handle Problem Language Result Execution time Memory
1009164 2024-06-27T09:29:40 Z tarpent Experiments with Gorlum (IZhO13_expgorl) C++14
Compilation error
0 ms 0 KB
#include<bits/stdc++.h>
#pragma GCC optimize("O3,unroll-loops")
#pragma GCC target("avx2,popcnt,lzcnt,abm,bmi,bmi2,fma,tune=native")
using namespace std;
long long n,gx,gy,lx,ly;
string pu;
long float mi,ma,tr;
int main(){
	ios::sync_with_stdio(false);
	cin.tie(0); cout.tie(0);
	
	cin>>n;
	cin>>pu;
	cin>>lx>>ly>>gx>>gy;
	mi= INT_MAX;
	ma=0;
	int siz;
	char e;
	siz = pu.size();
	for(int i = 0; i<n; i++){
		for(int j = 0; j<siz; j++){
			e=pu[j];
			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=abs(lx-gx)*abs(lx-gx) +abs(ly-gy)*abs(ly-gy);
			
			if(tr<mi) mi = tr;
			
			if(tr>ma) ma = tr;
		}
		
	}
	
	cout<<fixed;
	cout<<setprecision(12);
	cout<<sqrtf(mi)<<' '<<sqrtf(ma);
	
	
}

Compilation message

expgorl.cpp:7:1: error: 'long' specified with 'float'
    7 | long float mi,ma,tr;
      | ^~~~
expgorl.cpp:7:1: error: 'long' specified with 'float'
expgorl.cpp:7:1: error: 'long' specified with 'float'