#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;
}
bool ok = true;
for(auto log : logs)
{
if(log.first/l != log.second) ok = false;
}
return ok ? l : res;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
3 ms |
376 KB |
Execution failed because the return code was nonzero |
2 |
Halted |
0 ms |
0 KB |
- |