제출 #71880

#제출 시각아이디문제언어결과실행 시간메모리
71880:p (#119)The Ant Doing Hard Work (FXCUP3_ant)C++17
90 / 100
3 ms472 KiB
#include "ant.h"

#include <bits/stdc++.h>
using namespace std;

int FindK()
{
  int l = 1, r = 99999999;
  int res = 99999999;
  vector<pair<int, int>> logs;

  while(l<=r)
  {
    int t = (l+r)/2;
    int cnt = DeliverCount(t);

    logs.push_back({t, cnt});

    if(cnt > 0)
    {
      res = min(res, t);
      r = t - 1;
    } else l = t + 1;
  }

	return res;
}
#Verdict Execution timeMemoryGrader output
Fetching results...