Power and Modulo(思维)

Power and Modulo

[Link](Problem - E - Codeforces)

题意

给你一个序列,第 i i i个的值是 2 i − 1 m o d M 2^{i-1}modM 2i1modM,问你是否存在一个唯一的M使得该序列成立。

题解

找到第一个 a i ! = a i − 1 ∗ 2 a_{i}!= a_{i-1}*2 ai!=ai12的位置,则 M = 2 ∗ a i − 1 − a i M=2*a_{i-1}-a_i M=2ai1ai,如果没有这样的位置就无解。然后从前往后暴力判断一下是否符合即可,记得特判一下首项是否为0。

Code

#include <iostream>
#include <algorithm>
#include <cstring>
#include <cstdio>
#include <set>
#include <queue>
#include <vector>
#include <map>
#include <bitset>
#include <unordered_map>
#include <cmath> 
#include <stack>
#include <iomanip>
#include <deque> 
#include <sstream>
#define x first
#define y second
#define debug(x) cout<<#x<<":"<<x<<endl;
using namespace std;
typedef long double ld;
typedef long long LL;
typedef pair<int, int> PII;
typedef pair<double, double> PDD;
typedef unsigned long long ULL;
const int N = 2e5 + 10, M = 2 * N, INF = 0x3f3f3f3f, mod = 1e9 + 7;
const double eps = 1e-8, pi = acos(-1), inf = 1e20;
#define tpyeinput int
inline char nc() {static char buf[1000000],*p1=buf,*p2=buf;return p1==p2&&(p2=(p1=buf)+fread(buf,1,1000000,stdin),p1==p2)?EOF:*p1++;}
inline void read(tpyeinput &sum) {char ch=nc();sum=0;while(!(ch>='0'&&ch<='9')) ch=nc();while(ch>='0'&&ch<='9') sum=(sum<<3)+(sum<<1)+(ch-48),ch=nc();}
int dx[] = {-1, 0, 1, 0}, dy[] = {0, 1, 0, -1};
int h[N], e[M], ne[M], w[M], idx;
void add(int a, int b, int v = 0) {
    e[idx] = b, w[idx] = v, ne[idx] = h[a], h[a] = idx ++;
}
int n, m, k;
int a[N];
int main() {
    ios::sync_with_stdio(false), cin.tie(0);
    int T;
    cin >> T;
    while (T -- ) {
        cin >> n;
        for (int i = 1; i <= n; i ++ ) cin >> a[i];
        if (!a[1]) {
            bool ok = true;
            for (int i = 1; i <= n; i ++ )
                if (a[i]) {
                    ok = false;
                    break;
                }
            cout << (ok ? 1 : -1) << endl;
            continue ;
        }
        int M = 1;
        bool ok = false;
        for (int i = 2; i <= n; i ++ ) 
            if (a[i] != a[i - 1] * 2) {                
                M = a[i - 1] * 2 - a[i];
                ok = true;
                break;
            }
        if (!ok) {
            cout << -1 << endl;
            continue ;
        }
        for (int i = 2; i <= n; i ++ ) 
            if (a[i] != (a[i - 1] * 2 % M)) {
                ok = false;
                break;
            }
        cout << (ok ? M : -1) << endl;
    }
    return 0;
}
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值