이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "plants.h"
#include <vector>
#include <iostream>
#define ad push_back
using namespace std;
const int N = 2e5 + 30;
int n, k;
int a[N];
int t1[4*N], flg1[4*N];
void push1(int nd)
{
flg1[nd*2]+=flg1[nd];
flg1[nd*2+1]+=flg1[nd];
t1[nd]+=flg1[nd];
flg1[nd] = 0;
}
void upd1(int l, int r, int v, int nl = 0, int nr = n - 1, int nd = 1)
{
push1(nd);
if(l > nr || r < nl) return;
if(l == nl && r == nr)
{
flg1[nd] += v;
push1(nd);
return;
}
int md = (nl + nr)/2;
upd1(l,min(md, r), v, nl, md, nd*2);
upd1(max(md + 1, l), r, v, md + 1, nr, nd*2+1);
t1[nd]=min(t1[nd*2], t1[nd*2+1]);
}
int qry1(int l = 0, int r = n - 1, int nd = 1)
{
if(l==r) return l;
push1(nd*2), push1(nd*2+1);
int md = (l + r) / 2;
if(t1[nd*2] < t1[nd*2+1]) return qry1(l, md, nd*2);
return qry1(md + 1, r, nd * 2 + 1);
}
int t[4*N], flg[4*N];
void push(int nd)
{
flg[nd*2]+=flg[nd];
flg[nd*2+1]+=flg[nd];
t[nd]+=flg[nd];
flg[nd] = 0;
}
void upd(int l, int r, int v, int nl = 0, int nr = n - 1, int nd = 1)
{
push(nd);
if(l > nr || r < nl) return;
if(l == nl && r == nr)
{
flg[nd] += v;
push(nd);
return;
}
int md = (nl + nr)/2;
upd(l,min(md, r), v, nl, md, nd*2);
upd(max(md + 1, l), r, v, md + 1, nr, nd*2+1);
t[nd]=min(t[nd*2], t[nd*2+1]);
}
int qry(int l = 0, int r = n - 1, int nd = 1)
{
if(l==r) return l;
push(nd*2), push(nd*2+1);
int md = (l + r) / 2;
if(t[nd*2] < t[nd*2+1]) return qry(l, md, nd*2);
return qry(md + 1, r, nd * 2 + 1);
}
int qu(int i, int l = 0, int r = n - 1, int nd = 1)
{
push(nd);
if(l > i || r < i) return 0;
if(l == r) return t[nd];
int md = (l + r) / 2;
return qu(i, l, md, nd*2) + qu(i, md+1, r, nd*2+1);
}
void init(int k, std::vector<int> r)
{
k--;
n = r.size();
for (int i = 0; i < n; i++)
{
upd(i,i,r[i]);
upd1(i,i,r[i]);
}
for (int i = n - 1; i >= 0; i--)
{
push1(1);
vector <int> fp;
while(t1[1] == 0)
{
fp.ad(qry1());
upd1(fp.back(), fp.back(), n + n);
push1(1);
}
for(auto p : fp)
{
//cout << p << " ";
int r = p + k;
if(2*k+1<n)
{
upd1(p + 1, min(n-1,r), 1); upd(p + 1, min(n-1,r), 1);
upd1(0, r-n, 1); upd(0, r-n, 1);
}
else
{
int l = p - k;
upd(max(0, l), p, -1); upd1(max(0, l), p, -1);
upd(n+l, n-1, -1); upd1(n+l, n-1, -1);
upd(0,n-1,1), upd1(0,n-1,1);
}
}
//cout << endl;
push(1);
int i1 = qry();
a[i1] = i;
int l = i1-k, r = i1+k;
if(r-l>=n) upd(0,n-1,-1), upd1(0,n-1,-1);
else
{
upd(max(0, l), i1, -1); upd1(max(0, l), i1, -1);
upd(n+l, n-1, -1); upd1(n+l, n-1, -1);
upd(i1, min(n-1,r), -1); upd1(i1, min(n-1,r), -1);
upd(0, r-n, -1); upd1(0, r-n, -1);
}
upd(i1,i1,n+n), upd1(i1,i1,n+1);
//cout << i1 << endl;
//for (int i = 0; i < n; i++) cout << qu(i) << " ";
//cout << endl;
}
//for (int i = 0; i < n; i++) cout << a[i] << " ";
//cout << endl;
return;
}
int compare_plants(int x, int y)
{
if(a[x] > a[y]) return 1;
return -1;
}
# | 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... |