# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
299462 | XmtosX | Rope (JOI17_rope) | C++17 | 1771 ms | 78072 KiB |
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 <bits/stdc++.h>
using namespace std;
const int N=1e6+5;
int n,m,a[N],cnt[N],ans[N],cnt1[N],here[N],maxx;
bool yes;
vector <int> v[N],V;
set<pair<int,int> > s;
int main()
{
scanf("%d%d",&n,&m);
for (int i=0;i<n;i++)
{
scanf("%d",&a[i]);
cnt[a[i]]++;
cnt1[a[i]]++;
ans[a[i]]=n-cnt[i];
maxx=max(maxx,cnt[a[i]]);
}
for (int i=1;i<=m;i++)
here[cnt[i]]++;
for (int o=0;o<2;o++)
{
for (int i=1;i<=m;i++)
v[i].clear();
if ((n-o)%2)
yes=true;
else
yes=false;
for (int i=o;i+1<n;i+=2)
{
v[a[i]].push_back(i);
if (a[i]!=a[i+1])
v[a[i+1]].push_back(i);
}
for (int i=1;i<=m;i++)
{
V.clear();
int tot=n;
if (o&&a[0]==i)
{
if (here[cnt1[i]]==1&&cnt1[i]==maxx)
maxx--;
here[cnt1[i]]--;
cnt1[i]--;
here[cnt1[i]]++;
V.push_back(i);
tot--;
}
for (int j=0;j<v[i].size();j++)
{
int idx= v[i][j];
V.push_back(a[idx]);
if (here[cnt1[a[idx]]]==1&&cnt1[a[idx]]==maxx)
maxx--;
here[cnt1[a[idx]]]--;
cnt1[a[idx]]--;
here[cnt1[a[idx]]]++;
tot-=(a[idx]==i);
idx++;
V.push_back(a[idx]);
if (here[cnt1[a[idx]]]==1&&cnt1[a[idx]]==maxx)
maxx--;
here[cnt1[a[idx]]]--;
cnt1[a[idx]]--;
here[cnt1[a[idx]]]++;
tot-=(a[idx]==i);
}
if (yes&&a[n-1]==i)
{
if (here[cnt1[i]]==1&&cnt1[i]==maxx)
maxx--;
here[cnt1[i]]--;
cnt1[i]--;
here[cnt1[i]]++;
V.push_back(i);
tot--;
}
ans[i]=min(ans[i],tot-maxx);
for (int j=0;j<V.size();j++)
{
here[cnt1[V[j]]]--;
here[cnt[V[j]]]++;
cnt1[V[j]]=cnt[V[j]];
maxx=max(maxx,cnt[V[j]]);
}
}
}
for (int i=1;i<=m;i++)
printf("%d\n",ans[i]);
return 0;
}
/*
5 3
1 2 3 3 2
7 3
1 2 2 1 3 3 3
10 3
2 2 1 1 3 3 2 1 1 2
*/
Compilation message (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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |