#include <bits/stdc++.h>
#define ld long double
#define calc() sqrt((lax-gox)*(lax-gox)+(lay-goy)*(lay-goy))
using namespace std;
/*
ld mini(ld a, ld b){
if(a>b){
return b;
}
return a;
}
ld maxi(ld a, ld b){
if(a>b){
return a;
}
return b;
}*/
/*
ld calc(ld lax, ld lay, ld gox, ld goy){
return ;
}*/
int main(){
ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);
ld k; string s; cin >> k >> s;
ld lax, lay, gox, goy; cin >> lax >> lay >> gox >> goy;
ld mindis=calc(), maxdis; maxdis=mindis;
ld dis=maxdis;
//cout << mindis << " " << maxdis;
for(int r=0;k>r;r++){
for(int i=0;s.length()>i;i++){
if(s[i]=='R')gox++;
if(s[i]=='L')gox--;
if(s[i]=='F')goy++;
if(s[i]=='B')goy--;
if(s[i]=='I')continue;
dis=calc();
mindis=min(mindis, dis);
maxdis=max(maxdis, dis);
//cout << mindis << " " << maxdis << "\n";
}
}
cout << setprecision(12) << fixed << mindis << " " << maxdis;
}
Compilation message
expgorl.cpp: In function 'int main()':
expgorl.cpp:33:31: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i=0;s.length()>i;i++){
~~~~~~~~~~^~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
293 ms |
416 KB |
Output is correct |
2 |
Correct |
366 ms |
416 KB |
Output is correct |
3 |
Correct |
421 ms |
440 KB |
Output is correct |
4 |
Correct |
431 ms |
568 KB |
Output is correct |
5 |
Correct |
215 ms |
568 KB |
Output is correct |
6 |
Correct |
368 ms |
628 KB |
Output is correct |
7 |
Correct |
369 ms |
628 KB |
Output is correct |
8 |
Correct |
541 ms |
632 KB |
Output is correct |
9 |
Execution timed out |
1074 ms |
632 KB |
Time limit exceeded |
10 |
Halted |
0 ms |
0 KB |
- |