前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >HDU2837 Calculation(扩展欧拉定理)

HDU2837 Calculation(扩展欧拉定理)

作者头像
attack
发布2018-07-27 15:12:20
2450
发布2018-07-27 15:12:20
举报

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 3121    Accepted Submission(s): 778

Problem Description

Assume that f(0) = 1 and 0^0=1. f(n) = (n%10)^f(n/10) for all n bigger than zero. Please calculate f(n)%m. (2 ≤ n , m ≤ 10^9, x^y means the y th power of x).

Input

The first line contains a single positive integer T. which is the number of test cases. T lines follows.Each case consists of one line containing two positive integers n and m.

Output

One integer indicating the value of f(n)%m.

Sample Input

2 24 20 25 20

Sample Output

16 5

Source

2009 Multi-University Training Contest 3 - Host by WHU

Recommend

gaojie   |   We have carefully selected several similar problems for you:  2841 2839 2838 2840 2836

$a^x \equiv a^{x \  \% \  phi(m) + phi(m)} \pmod m$

然后直接上就行了。

有很多奇怪的边界问题,比如求$f(n)$的时候一模就炸。。

代码语言:javascript
复制
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cmath>
#define int long long 
using namespace std;
const int MAXN = 1e5 + 10, INF = 1e9 + 10;
inline int read() {
    char c = getchar(); int x = 0, f = 1;
    while(c < '0' || c > '9') {if(c == '-') f = -1; c = getchar();}
    while(c >= '0' && c <= '9') x = x * 10 + c - '0', c = getchar();
    return x * f;
}
int N, M, PhiM;
int fastpow(int a, int p, int mod) {
    if(a == 0) return p == 0;
    int base = 1;
    while(p) {
        if(p & 1) base = (base * a) % mod;
        p >>= 1; a = (a * a) % mod;
    }
    return base == 0 ? mod : (base + mod)% mod;
}
int GetPhi(int x) {
    int limit = sqrt(x), ans = x;
    for(int i = 2; i <= limit; i++) {
        if(!(x % i)) ans = ans / i * (i - 1) ;
        while(!(x % i)) x /= i;
    }
    if(x > 1) ans = ans / x * (x - 1);
    return ans;
}
int F(int N, int mod) {
    if(N < 10) return N;
    return fastpow((N % 10), F(N / 10, GetPhi(mod)), mod);
}
main() { 
    int QwQ = read();
    while(QwQ--) {
        N = read(); M = read();
        printf("%I64d\n", F(N, M));
    }
    return 0;
}
/*
4
24 20
37 25
123456 321654
123456789 456789321
*/
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2018-07-08 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档