이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define pii pair<int, int>
#define mp make_pair
#define F first
#define S second
#define PB push_back
#define maxc 1000000007
#define N 500005
using namespace std;
deque<int> q;
int n, a[N], x2[N], res[N], delta[N];
void inline MAX(int &A, int B) {A = max(A, B);}
int main()
{
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
//freopen("INP.TXT", "r", stdin);
cin >> n;
for (int i = 1; i <= n; i++)
cin >> a[i];
for (int i = 1; i <= sqrt(n) + 1; i++)
x2[i] = i*i;
for (int i = 1; i <= sqrt(n) + 1; i++)
delta[i] = x2[i] - x2[i-1];
for (int can = 1; can <= sqrt(n)+1; can++)
{
int len = delta[can];
while (!q.empty()) q.pop_back();
for (int i = 1; i <= n; i++)
{
int pos = i - x2[can-1] - 1;
while (!q.empty() && q.front() <= pos - len)
q.pop_front();
if (pos > 0)
{
while (!q.empty() && a[q.back()] <= a[pos])
q.pop_back();
q.push_back(pos);
}
if (!q.empty()) MAX(res[i], a[q.front()] + can);
}
while (!q.empty()) q.pop_back();
for (int i = n; i >= 1; i--)
{
int pos = i + x2[can-1] + 1;
while (!q.empty() && q.front() >= pos + len)
q.pop_front();
if (pos <= n)
{
while (!q.empty() && a[q.back()] <= a[pos])
q.pop_back();
q.push_back(pos);
}
if (!q.empty()) MAX(res[i], a[q.front()] + can);
}
}
for (int i = 1; i <= n; i++)
if (res[i] <= a[i]) cout <<0<<'\n';
else cout <<res[i] - a[i]<<'\n';
}
# | 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... |
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |