codeforces 603B (数学)

B. Moodular Arithmetic
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

As behooves any intelligent schoolboy, Kevin Sun is studying psycowlogy, cowculus, and cryptcowgraphy at the Bovinia State University (BGU) under Farmer Ivan. During his Mathematics of Olympiads (MoO) class, Kevin was confronted with a weird functional equation and needs your help. For two fixed integers k and p, where p is an odd prime number, the functional equation states that

for some function . (This equation should hold for any integer x in the range0 to p - 1, inclusive.)

It turns out that f can actually be many different functions. Instead of finding a solution, Kevin wants you to count the number of distinct functions f that satisfy this equation. Since the answer may be very large, you should print your result modulo 109 + 7.

Input

The input consists of two space-separated integers p and k (3 ≤ p ≤ 1 000 0000 ≤ k ≤ p - 1) on a single line. It is guaranteed thatp is an odd prime number.

Output

Print a single integer, the number of distinct functions f modulo 109 + 7.

Sample test(s)
input
3 2
output
3
input
5 4
output
25
Note

In the first sample, p = 3 and k = 2. The following functions work:

  1. f(0) = 0f(1) = 1f(2) = 2.
  2. f(0) = 0f(1) = 2f(2) = 1.
  3. f(0) = f(1) = f(2) = 0.

题意是给你一个奇质数p和小于p的数k,求满足题目所给方程的所有映射的种数.

因为p是质数,显然x*k属于不同的模p剩余系,也就是把x=0...p-1每一个都带进去以后左边的必然是f(0) f(1) ... f(p-1)的一个排列,右边本身是f(0)...f (p-1)的一个排列,这样就可以对于

f(x1) = k*f(x2)%p,找到对应的f(x2) = k*f(x3)%p,一直迭代下去,知道发现f(xl) = k*f(x1)%p,如此就可以把这一个环路转化为 f(x1) = k^l * f(x1)%p,把右边前面的系数先模p,发现当且仅当k^l%p==1时,f(x1)的值可以任取,也就是可以有p种取法,否则f(x1)的值只能为1.

这样就很简单了,建个图,搞个环,判断系数模p.

注意特判和long long.

#include <bits/stdc++.h>
using namespace std;
#define maxn 1111111
#define mod 1000000007

long long p, k;
long long ans;
int head[maxn], cnt;
struct node {
    long long from, to, next;
}edge[maxn];

long long qpow (long long a, long long b, long long m) {
    if (b == 0)
        return 1;
    long long ans = qpow (a, b>>1, m);
    ans = ans*ans%m;
    if (b&1)
        ans = ans*a%m;
    return ans;
}

void add_edge (int from, int to) {
    edge[cnt].from = from, edge[cnt].to = to, edge[cnt].next = head[from], head[from] = cnt++;
}

bool vis[maxn]; long long cur;

void dfs (int u) {
    cur++;
    vis[u] = 1;
    for (int i = head[u]; i != -1; i = edge[i].next) {
        int v = edge[i].to;
        if (!vis[v]) {
            dfs (v);
        }
    }
    return ;
}

long long find_loop () {
    memset (vis, 0, sizeof vis);
    long long ans = 1;
    for (int i = 0; i < p; i++) {
        if (!vis[i]) {
            cur = 0;
            dfs (i); 
            if (qpow (k, cur, p) == 1)
                ans = ans*p%mod;
        }
    }
    return ans;
}

int main () {
    while (cin >> p >> k) {
        if (k == 0) {
            ans = qpow (p, p-1, mod);
        }
        else if (k == 1) {
            ans = qpow (p, p, mod);
        }
        else {
            memset (head, -1, sizeof head);
            cnt = 0;
            for (int i = 0; i < p; i++) {
                add_edge (k*i%p, i);
            }
            ans = find_loop ();
        }
        cout << ans << endl;
    }
    return 0;
}






  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值