# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
748035 | Dan4Life | 코끼리 (Dancing Elephants) (IOI11_elephants) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define fi first
#define se second
const int mxN = (int)1.5e5+10;
const int INF = (int)1e9+10;
const int B = 300;
const int nmB = INF/B+2;
unordered_map<int,set<int>> pos; //sz = nmB
int n, L, p[mxN/B];
unordered_map<int,int> b;
unordered_map<int,set<array<int,3>>> block;
void reUpd(int ind){
block[ind].clear();
auto itr = end(pos[ind]);
while(itr!=begin(pos[ind])){
itr--;
auto itr2 = block[ind].lower_bound({*itr+L+1,-1,-1});
if(itr2!=block[ind].end()){
auto obj = *itr2;
block[ind].insert({*itr,1+obj[1],obj[2]});
}
else block[ind].insert({*itr,1,*itr+L+1});
}
}
void ins(int x){
b[x]++; if(b[x]!=1) return;
int ind = x/B; pos[ind].insert(x); reUpd(ind);
}
void del(int x){
b[x]--; if(b[x]) return;
int ind = x/B; pos[ind].erase(x); reUpd(ind);
}
void init(int N, int l, int X[])
{
n = N; L = l;
for(int i = 0; i < n; i++)
p[i]=X[i], ins(p[i]);
}
int update(int i, int y)
{
del(p[i]); p[i]=y; ins(y);
int ans = 0, cur = 0;
for(int i = 0; i < nmB; i++){
auto itr = block[i].lower_bound({cur,-1,-1});
if(itr!=block[i].end()) ans+=(*itr)[1], cur = (*itr)[2];
}
return ans;
}
#define MAX_N 1000000
#define MAX_M 1000000
static int N,LL,M;
static int X[MAX_N];
static int ii[MAX_M];
static int yy[MAX_M];
static int sol[MAX_M];
inline void my_assert(int e) {if (!e) abort();}
void read_input()
{
int i;
my_assert(3==scanf("%d %d %d",&N,&LL,&M));
for(i=0; i<N; i++)
my_assert(1==scanf("%d",&X[i]));
for(i=0; i<M; i++)
my_assert(3==scanf("%d %d %d",&ii[i],&yy[i],&sol[i]));
}
int main()
{
int i, ans;
read_input();
init(N,LL,X);
for(i=0; i<M; i++) {
ans = update(ii[i],yy[i]);
if(ans==sol[i])continue;
printf("Incorrect. In %d-th move, answered %d (%d expected).\n",
i+1, ans, sol[i]);
return 0;
}
printf("Correct.\n");
return 0;
}