This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <cmath>
#include <functional>
#include <fstream>
#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
#include <set>
#include <map>
#include <list>
#include <time.h>
#include <math.h>
#include <random>
#include <deque>
#include <queue>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <cassert>
#include <bitset>
#include <sstream>
#include <chrono>
#include <cstring>
#include <numeric>
#include "gap.h"
using namespace std;
long long findGap1(int t, int n)
{
long long ST = 0;
long long DR = (long long)1e18;
vector<long long> a(n);
for (int i = 0; i <= n - 1 - i; i++)
{
MinMax(ST, DR, &ST, &DR);
int j = n - 1 - i;
a[i] = ST;
a[j] = DR;
ST++;
DR--;
}
long long best_gap = (a[n - 1] - a[0] + (n - 2)) / (n - 1);
for (int i = 0; i + 1 < n; i++)
{
best_gap = max(best_gap, a[i + 1] - a[i]);
}
return best_gap;
}
long long findGap(int t, int n)
{
if (t == 1)
{
return findGap1(t, n);
}
long long ST = 0;
long long DR = (long long)1e18;
MinMax(ST, DR, &ST, &DR);
long long best_gap = (DR - ST + (n - 2)) / (n - 1);
vector<long long> pivots;
for (int j = 0; j < n; j++)
{
pivots.push_back(ST + j * best_gap);
}
pivots.back() = DR + 1;
vector<pair<long long, long long>> intel(n - 1);
for (int i = 0; i < n - 1; i++)
{
if (pivots[i] > pivots[i + 1] - 1)
{
intel[i] = { -1, -1 };
continue;
}
MinMax(pivots[i], pivots[i + 1] - 1, &intel[i].first, &intel[i].second);
//cout << i<<" : "<<intel[i].first << " " << intel[i].second << "\n";
}
for (int i = 0; i < n - 2; i++)
{
if (intel[i].second == -1)
{
continue;
}
int j = i + 1;
while (j < n - 1 && intel[j].first == -1)
{
j++;
}
if (j < n - 1)
{
assert(intel[j].first != -1);
best_gap = max(best_gap, intel[j].first - intel[i].second);
}
}
return best_gap;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |