이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "ricehub.h"
#include <cmath>
#include <vector>
#include <iostream>
using namespace std;
int besthub(int R, int L, int X[], long long B)
{
  vector<long long> ac(R + 1);
  ac[0] = 0;
  for (int i = 1; i <= R; i++)
  {
    ac[i] = ac[i - 1] + (long long)X[i - 1];
  }
  long long min, max, med;
  min = 1;
  max = R;
  while (true)
  {
    if (min == max or min > max)
    {
      return min;
    }
    med = (min + max) / 2;
    cout<<med<<endl;
    //hallamos la mitad de los posible y no posible
    bool possible = false;
    for (int i = 0; i <= R - med; i++)
    {
      long long izq = i;
      long long der = i + med - 1;
      long long mid = (izq + der) / 2;
      long long aux = (mid - izq);
      long long aux2 = (der - mid);
      long long rm = X[mid];
      long long sum = ((aux - aux2) * rm) - (ac[mid] - ac[izq]) + (ac[der + 1] - ac[mid + 1]);
      if (sum <= B)
      {
        possible = true;
        break;
      }
    }
    if (possible == true)
    {
      min = med;
    }
    else
    {
      max = med - 1;
    }
  }
  return 1;
}
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... |