# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
849454 | Benmath | Measures (CEOI22_measures) | C++14 | 1561 ms | 7136 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/******************************************************************************
Online C++ Compiler.
Code, Compile, Run and Debug C++ program online.
Write your code in this editor and press "Run" button to compile and execute it.
*******************************************************************************/
#include <bits/stdc++.h>
using namespace std;
int broj_ljudi, broj_dodatnih;
double maksimalna_udaljenost;
double ljudi[200010];
double dodatniljudi[11];
int check (double mid, vector<double>v){
int provjera = 0;
double prethodni = v[0] - mid;
for(int i = 1; i < v.size(); i++){
double mogucnost1 = v[i] - mid;
double mogucnost2 = v[i] + mid;
double moguce = prethodni + maksimalna_udaljenost;
if(mogucnost1 >= moguce){
prethodni = mogucnost1;
}else if (moguce <= mogucnost2){
prethodni = moguce;
}else{
provjera++;
break;
}
}
return provjera;
}
void ispisi(double x){
long long int x1 = x;
double x2 = x1;
if(x==x2){
cout<<x1;
}else{
cout<<fixed<<setprecision(1)<<x;
}
cout<<" ";
}
int main()
{
cin>>broj_ljudi;
cin>>broj_dodatnih;
cin>>maksimalna_udaljenost;
vector<double>v;
for (int i = 0; i < broj_ljudi; i++){
cin >> ljudi[i];
v.push_back(ljudi[i]);
}
vector<double>ansispis;
for(int i = 0; i < broj_dodatnih; i++){
cin >> dodatniljudi[i];
v.push_back(dodatniljudi[i]);
sort(v.begin(), v.end());
long long int l = 0;
long long int r = 10000000000000000;
double ans = 10000000000000000;
double two = 2;
while (l <= r){
long long int mid = (l + r) / 2;
double mid1 = mid;
double provjerit = mid1 / two;
if(check(provjerit,v) == 0){
ans = min(ans,provjerit);
r = mid - 1;
}else{
l = mid + 1;
}
}
ansispis.push_back(ans);
}
for(int i = 0; i < ansispis.size(); i++){
ispisi(ansispis[i]);
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |