M M 是NN的一个因数。对于每一个ai(1≤i≤N)"r..." />
当前位置: 代码迷 >> 综合 >> 【CodeForces】【贪心】【技巧】999D-Equalize the Remainders
  详细解决方案

【CodeForces】【贪心】【技巧】999D-Equalize the Remainders

热度:73   发布时间:2023-11-21 07:15:11.0

CodeForces 999D Equalize the Remainders

题目

◇题目传送门◆

题目大意

给定一个数列a1,a2,...,aNa1,a2,...,aN,及一个数MM,保证 M NN的一个因数。
对于每一个 a i ( 1 i N ) ,记模MM的余数为 r 。记cr(0rM?1)cr(0≤r≤M?1)aiaiMM的出现次数,现可对每一个元素进行 + 1 操作,求最少的操作数及最终序列,使得c1=c2=...=cM?1=NMc1=c2=...=cM?1=NM,若有多解则任意输出一个。

思路

一道非常标准的贪心题。

我们可以先预处理一下:使用vector记录下aiaiMM的所有下标。

使用贪心的思想,当我们找到一个大于 N M 的一个值,记为ii,则我们向后找一个小于 N M 的值,记它为rr,尽可能多地从 i rr移动,即:我们将 i 中的尽可能多的数加上|i?r||i?r|。最后记录下答案,输出即可。

实现细节

注意:数据过大,请使用long long

注意:由于余数能够形成一个环,故在找rr时,范围是从 1 2×M2×M

提示:我们在删除vector中的首尾元素时,可以使用成员函数pop_front()pop_back()。其中,pop_front()时间复杂度为O(n)O(n)pop_back()时间复杂度为O(1)O(1)

正解代码

#include<cstdio>
#include<vector>
#include<algorithm>
using namespace std;
typedef long long ll;
const int Maxn=2*1e5;
ll A[Maxn+5];
int N,M,T;
vector<int> s[Maxn+5];
ll sum;int main() {#ifdef LOACLfreopen("in.txt","r",stdin);freopen("out.txt","w",stdout);#endifscanf("%d %d",&N,&M);for(int i=1;i<=N;i++) {scanf("%lld",&A[i]);s[A[i]%M].push_back(i);}ll r=0;T=N/M;for(int i=0;i<M;i++) {while(s[i].size()>T) {r=max(1LL*i,r);while(s[r%M].size()>=T)r++;ll tmp=min(s[i].size()-T,T-s[r%M].size());for(int j=1;j<=tmp;j++) {ll x=(r%M-i+M)%M;sum+=x;A[s[i].back()]+=x;s[i].pop_back();s[r%M].push_back(A[s[i].size()]);}}}printf("%lld\n",sum);for(int i=1;i<=N;i++)printf("%lld ",A[i]);return 0;
}

Thanks For Reading!

如有不妥之处请在评论中指出。