码迷,mamicode.com
首页 > 其他好文 > 详细

HDU6440 Dream 2018CCPC网络赛-费马小定理

时间:2018-08-25 23:03:05      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:esc   names   pac   cat   port   因此   acm   一个   mem   

目录

(有任何问题欢迎留言或私聊 && 欢迎交流讨论哦

Catalog

Problem:Portal传送门

?原题目描述在最下面。
?给定一个素数p,要求定义一个加法运算表和乘法运算表,使的\((m+n)^p=m^p+n^p(0≤m, n<p)\)成立。

Solution:

?费马小定理:\(a^{p-1} = 1 mod p(p是素数)\)
?所以 \(a^p \;mod\; p = a^{p-1} \times a \;mod \;p = a \;mod \;p\)
?所以有 \((a+b)^p \; mod\;p= a + b \; mod\; p = a^p + b ^p \;mod\;p\)
?因此上式子成立。

AC_Code:

#include<bits/stdc++.h>
#define mme(a,b) memset((a),(b),sizeof((a))) 
using namespace std;
typedef unsigned long long LL;
const int N = 2e5 + 7;
const int M = 1e5 + 7;
const int MOD = 1e9 + 7;
const int INF = 0x3f3f3f3f;

int add(int x, int y, int mod) {
    int ret = x + y;
    if(ret >= mod) ret -= mod;
    return ret;
}
int multiply(int x, int y, int mod) {
    int ret = x * y;
    if(ret >= mod) ret %= mod;
    return ret;
}
int main() {
    int tim, n;
    scanf("%d", &tim);
    while(tim--) {
        scanf("%d", &n);
        for (int i = 0; i < n; i++) {
            printf("%d", i);
            for (int j = 1; j < n; j++) printf(" %d", add(i, j, n));
            puts("");
        }
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < n; j++){
              printf("%d%c", multiply(i, j, n), j == n - 1 ? '\n' : ' ');
            }
        }
    }
    return 0;
}


Problem Description:

技术分享图片

HDU6440 Dream 2018CCPC网络赛-费马小定理

标签:esc   names   pac   cat   port   因此   acm   一个   mem   

原文地址:https://www.cnblogs.com/Cwolf9/p/9535607.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!