Submission #28764

#TimeUsernameProblemLanguageResultExecution timeMemory
28764h0ngjun7Rice Hub (IOI11_ricehub)C++14
0 / 100
3 ms5020 KiB
#include "ricehub.h" int besthub(int R, int L, int X[], long long B) { int l = 0, r = R, ans = 0; while (l <= r) { int m = (l + r) / 2; long long dist = 0; int left, right, mid, ok = 0; int ln = 0, rn = 0; for (int i = 0; i < R && !ok; i++) { if (i + 1 == m) { left = (i + 1) - m, right = i; mid = (left + right) / 2; for (int i = left; i < mid; i++) dist += X[mid] - X[left], ln++; for (int i = mid + 1; i <= right; i++) dist += X[right] - X[mid], rn++; if (dist <= B) ok = 1; } else if (i + 1 > m) { dist -= X[left + 1] - X[left]; left++; dist += 1LL * (X[mid + 1] - X[mid]) * (ln - rn); mid++; dist += X[right + 1] - X[right]; right++; if (dist <= B) ok = 1; } } if (ok) { if (ans < m) ans = m; l = m + 1; } else r = m - 1; } return ans; }

Compilation message (stderr)

ricehub.cpp: In function 'int besthub(int, int, int*, long long int)':
ricehub.cpp:21:59: warning: 'mid' may be used uninitialized in this function [-Wmaybe-uninitialized]
     dist += 1LL * (X[mid + 1] - X[mid]) * (ln - rn); mid++;
                                                           ^
ricehub.cpp:22:45: warning: 'right' may be used uninitialized in this function [-Wmaybe-uninitialized]
     dist += X[right + 1] - X[right]; right++;
                                             ^
ricehub.cpp:20:42: warning: 'left' may be used uninitialized in this function [-Wmaybe-uninitialized]
     dist -= X[left + 1] - X[left]; left++;
                                          ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...