# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
935104 | 2024-02-28T15:46:59 Z | Ludissey | Measures (CEOI22_measures) | C++14 | 1500 ms | 784 KB |
#include <bits/stdc++.h> #define int long long using namespace std; const int mod=1e9+7; signed main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); int n,m,D; cin >> n >> m >> D; vector<int> a(n); for (int i = 0; i < n; i++) cin >> a[i]; for (int _i = 0; _i < m; _i++) { int x; cin >> x; a.push_back(x); double l=0,r=2000000000000; double ans=0; while(r-l>=0.1){ double mid=(l+r)/(double)2; double lb=a[0]-mid; bool br=false; for (int i = 1; i < a.size(); i++) { double bc=max(lb+(double)D, (double)a[i]-mid); if(bc>(double)a[i]+mid) { br=true; break; } lb=bc; } if(br){ l=mid; }else{ ans=mid; r=mid; } } int roundAns=ans; if((double)ans-roundAns<0.25) cout << roundAns << " "; else if ((double)ans-roundAns<0.75) cout << roundAns << ".5 "; else cout << roundAns+1 << " "; } cout << "\n"; return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 488 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 488 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1567 ms | 784 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1567 ms | 784 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |