CodeForces 763C. Timofey and remoduling

Little Timofey likes integers a lot. Unfortunately, he is very young and can't work with very big integers, so he does all the operations modulo his favorite prime m. Also, Timofey likes to look for arithmetical progressions everywhere.

One of his birthday presents was a sequence of distinct integers a1, a2, ..., an. Timofey wants to know whether he can rearrange the elements of the sequence so that is will be an arithmetical progression modulo m, or not.

Arithmetical progression modulo m of length n with first element x and difference d is sequence of integersx, x + d, x + 2d, ..., x + (n - 1)·d, each taken modulo m.

Input
The first line contains two integers m and n (2 ≤ m ≤ 109 + 7, 1 ≤ n ≤ 105, m is prime) — Timofey's favorite prime module and the length of the sequence.

The second line contains n distinct integers a1, a2, ..., an (0 ≤ ai < m) — the elements of the sequence.

Output
Print -1 if it is not possible to rearrange the elements of the sequence so that is will be an arithmetical progression modulo m.

Otherwise, print two integers — the first element of the obtained progression x (0 ≤ x < m) and its difference d (0 ≤ d < m).

If there are multiple answers, print any of them.

Examples
input
17 5
0 2 4 13 15
output
13 2
input
17 5
0 2 4 13 14
output
-1
input
5 3
1 2 3
output
3 4

题意:给定n,m和序列a,构造一个等差数列,使得它所有元素%m之后重排能够变成a,输出首项和公差
题解:

先考虑2*n<=m的情况

考虑a中的两个元素之差,假设它们在最后序列的位置为i,i+k,那么它们之差为k*d%m

由于保证2*n<=m所以这样的差只会出现n-k次,nlogn统计这个差出现的次数,于是我们就求出了k,从而求出了d,然后check即可

因为差最大的两组数是(s[1],s[n]),(s[1],s[n-1]) 差之和为(2n-3)*d 如果2n-3溢出了m,那么就会存在两个差,它们之和%m=0,就会多统计 否则没有两个差%m=0,就能保证之前的性质了

如果2*n>m

之前提到的差不会只出现n-k次,因为可能经过多遍,

那么把m内a的补集做一次,然后首项加上公差*项数即可(保证m是质数)

因为d与m互质,m个以内的等差数不会相同,所以只要给出的能等差,接上补集也能是等差(因为都不会相同),

反过来,如果补集是等差,那么剩下的也能是

#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<queue>
#include<vector>

using namespace std;

long long m;
long long n;

long long a[100005];
long long b[100005];

long long ans,ansd;

long long powd(long long aa,long long bb)
{
    long long anss=1;
    while(bb>0)
    {
        if(bb%2==1)
        {
            anss=anss*aa%m;
        }
        aa=aa*aa%m;
        bb/=2;
    }
    return anss;
}

bool fd(long long* c,long long tar,int len)
{
    int id=lower_bound(c+1,c+len+1,tar)-c;
    return c[id]==tar;
}

void solve(long long* c,int len,long long dis)
{
    int cnt=0;
    for(int i=1;i<=len;i++)
    {
        cnt+=fd(c,(c[i]+dis)%m,len);
    }
    long long k=len-cnt;

    ansd=dis*powd(k,m-2)%m;

    //cout<<ansd<<" : "<<k<<endl;
    ans=-1;
    for(int i=1;i<=len;i++)
    {
        if(fd(c,(c[i]-ansd+m)%m,len)==0)
        {
            if(ans==-1)
            {
                ans=c[i];
            }
            else
            {
                ans=-1;
                return;
            }
        }
    }
    return;
}

int main()
{
    while(~scanf("%lld%lld",&m,&n))
    {
        for(int i=1;i<=n;i++)
        {
            scanf("%lld",&a[i]);
        }

        sort(a+1,a+1+n);

        if(n==1)
        {
            printf("%lld 0\n",a[1]);
            return 0;
        }
        else if(n==2 || n==m)
        {
            printf("%lld %lld\n",a[1],(a[2]-a[1]+m)%m);
            return 0;
        }
        else
        {
            if(2*n < m)
            {
                long long dis=(a[2]-a[1]+m)%m;
                solve(a,n,dis);
                if(ans!=-1)
                {
                    printf("%lld %lld\n",ans,ansd);
                }
                else
                {
                    printf("-1\n");
                }
            }
            else
            {
                int t=1;
                for(long long i=0;i<m;i++)
                {
                    if(fd(a,i,n)==0)
                    {
                        b[t]=i;
                        t++;
                    }
                }
                t--;
                sort(b+1,b+1+t);
                if(t==1)
                {
                    printf("%lld %lld\n",a[1],(a[1]-b[1]+m)%m);
                    return 0;
                }
                else if(t==2)
                {
                    ansd=(b[2]-b[1]+m)%m;
                    printf("%lld %lld\n",(b[2]+ansd)%m,ansd);
                    return 0;
                }
                else
                {
                    solve(b,t,(b[2]-b[1]+m)%m);
                    if(ans!=-1)
                    {
                        printf("%lld %lld\n",(ans+ansd*t%m)%m,ansd);
                    }
                    else
                    {
                        printf("-1\n");
                    }
                }
            }
        }
    }
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Codeforces Round 894 (Div. 3) 是一个Codeforces举办的比赛,是第894轮的Div. 3级别比赛。它包含了一系列题目,其中包括题目E. Kolya and Movie Theatre。 根据题目描述,E. Kolya and Movie Theatre问题要求我们给定两个字符串,通过三种操作来让字符串a等于字符串b。这三种操作分别为:交换a中相同位置的字符、交换a中对称位置的字符、交换b中对称位置的字符。我们需要先进行一次预处理,替换a中的字符,然后进行上述三种操作,最终得到a等于b的结果。我们需要计算预处理操作的次数。 根据引用的讨论,当且仅当b[i]==b[n-i-1]时,如果a[i]!=a[n-i-1],需要进行一次操作;否则不需要操作。所以我们可以遍历字符串b的前半部分,判断对应位置的字符是否与后半部分对称,并统计需要进行操作的次数。 以上就是Codeforces Round 894 (Div. 3)的简要说明和题目E. Kolya and Movie Theatre的要求。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* *2* [Codeforces Round #498 (Div. 3) (A+B+C+D+E+F)](https://blog.csdn.net/qq_46030630/article/details/108804114)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"] - *3* [Codeforces Round 894 (Div. 3)A~E题解](https://blog.csdn.net/gyeolhada/article/details/132491891)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"] [ .reference_list ]

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值