# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
354607 | Lam_lai_cuoc_doi | Sparklers (JOI17_sparklers) | C++17 | 1 ms | 384 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <cstdio>
#include <cmath>
#define task ""
using namespace std;
using ll = long long;
using ld = long double;
const int N = 1e5 + 2;
const int Inf = 1e9 + 7;
int n, T, k;
int x[N];
void Read()
{
cin >> n >> k >> T;
for (int i = 1; i <= n; ++i)
cin >> x[i];
}
bool Check(int v)
{
int a(k), b(k);
while (a > 1 || b < n)
{
bool flag(1);
if (a > 1 && b < n && 4ll * T >= ceil((ld)1.0 * (x[b + 1] - x[a - 1] - (x[b] - x[a])) / v))
{
flag = 0;
--a;
++b;
}
else if (a > 1 && 2ll * T * (b + 1 - a) >= ceil((ld)1.0 * (x[b] - x[a - 1]) / v))
{
flag = 0;
--a;
}
else if (b < n && 2ll * T * (b + 1 - a) >= ceil((ld)1.0 * (x[b + 1] - x[a]) / v))
{
flag = 0;
++b;
}
if (flag)
return false;
}
return true;
}
void Solve()
{
int l = 0, m, h = 1e9 + 7;
while (l <= h)
{
m = (l + h) / 2;
if (!Check(m))
l = m + 1;
else
h = m - 1;
}
cout << l;
}
int32_t main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
if (fopen(task ".INP", "r"))
{
freopen(task ".INP", "r", stdin);
freopen(task ".OUT", "w", stdout);
}
Read();
Solve();
}
컴파일 시 표준 에러 (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... |