제출 #784673

#제출 시각아이디문제언어결과실행 시간메모리
784673BoasFinding Routers (IOI20_routers)C++17
39 / 100
1 ms340 KiB
#include "routers.h"
using namespace std;

// l is length
// n is number of routers
// q is max uses of detector
vector<int> find_routers(int l, int n, int q)
{
  vector<int> ans(n); // distance of each router i to the origin
  if (n == 2)
  {
    // find position of switch (first point where i = 1) using binary search
    int min = 2;
    int max = (l / 2) + 1;
    while (max - min > 0)
    {
      int k = (max + min) / 2;
      int i = use_detector(k);
      if (i == 0)
      {
        min = k + 1;
      }
      else
      {
        max = k;
      }
    }
    ans[1] = min + max - 2;
  }
  return ans;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...