Submission #580778

#TimeUsernameProblemLanguageResultExecution timeMemory
580778Omar_ElgedawyLost in the cycle (IOI19_cycle)C++14
100 / 100
1 ms208 KiB
#include <bits/stdc++.h> //#include "grader.cpp" #include "cycle.h" using namespace std; void escape(int n) { if(jump(0)){ int loc=0,one=0; int l=n/2-1,r=n-1; if(n%2==0&&jump(n/2)){ return; } if(n%2==0){ loc+=n/2; loc=(loc+n/2+n%2)%n; jump(n/2); } while(l<=r){ int m=(r+l)/2; int dist; if(m>loc) dist=m-loc; else dist=((n-loc)+m)%n; loc=(loc+dist)%n; if(jump(dist)){ r=m-1; one=loc; } else{ l=m+1; } } if(loc<one){ jump(one-loc); } else if(loc>one){ jump(((n-loc)+one)%n); } jump(n/2); } else{ int loc=0,one; int l=1,r=n/2; while(l<=r){ int m=(r+l)/2; int dist; if(m>loc) dist=m-loc; else dist=(n-loc)+m; loc=(loc+dist)%n; if(jump(dist)){ r=m-1; one=loc; } else{ l=m+1; } } if(loc<one) jump(one-loc); else if(loc>one) jump((n-loc)+one); jump(n/2); } }

Compilation message (stderr)

cycle.cpp: In function 'void escape(int)':
cycle.cpp:64:8: warning: 'one' may be used uninitialized in this function [-Wmaybe-uninitialized]
   64 |    jump((n-loc)+one);
      |    ~~~~^~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...