Submission #84688

#TimeUsernameProblemLanguageResultExecution timeMemory
84688talipExperiments with Gorlum (IZhO13_expgorl)C++14
0 / 100
4 ms376 KiB
#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;mini((long double)(k), 100.0)>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=mini(mindis, dis); maxdis=maxi(maxdis, dis); //cout << mindis << " " << maxdis << "\n"; } } cout << setprecision(12) << fixed << mindis << " " << maxdis; }

Compilation message (stderr)

expgorl.cpp: In function 'int main()':
expgorl.cpp:32:31: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
         for(int i=0;s.length()>i;i++){
                     ~~~~~~~~~~^~
#Verdict Execution timeMemoryGrader output
Fetching results...