이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define finish(x) return cout << x << endl, 0
#define ll long long
int n, k, T;
vector <int> x;
bool can(int s){
int l, r;
l = r = k;
double t = T;
auto calc = [&](double d){
d /= 2;
return t - d / s;
};
while(l > 0 || r < n - 1){
if(l > 0){
double new_t = calc(x[l] - x[l - 1]);
if(new_t >= 0){
l--;
t = new_t + T;
continue;
}
}
if(r < n - 1){
double new_t = calc(x[r + 1] - x[r]);
if(new_t >= 0){
r++;
t = new_t + T;
continue;
}
}
return 0;
}
return 1;
}
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
cin >> n >> k >> T;
x.resize(n);
for(auto &i : x) cin >> i;
k--;
if(x.back() - x[0] == 0) finish(0);
int l = 1, r = 1e9;
while(l <= r){
int mid = (l + r) / 2;
if(can(mid)) r = mid - 1;
else l = mid + 1;
}
cout << l << endl;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |