本月博客排行
-
第1名
龙儿筝 -
第2名
zysnba -
第3名
johnsmith9th - wy_19921005
- sgqt
年度博客排行
-
第1名
宏天软件 -
第2名
青否云后端云 -
第3名
龙儿筝 - gashero
- wallimn
- vipbooks
- wy_19921005
- benladeng5225
- fantaxy025025
- javashop
- qepwqnp
- e_e
- 解宜然
- zysnba
- ssydxa219
- sam123456gz
- ranbuijj
- arpenker
- tanling8334
- kaizi1992
- sichunli_030
- xpenxpen
- gaojingsong
- wiseboyloves
- xiangjie88
- ganxueyun
- xyuma
- wangchen.ily
- jh108020
- zxq_2017
- jbosscn
- lemonhandsome
- luxurioust
- Xeden
- lzyfn123
- forestqqqq
- zhanjia
- nychen2000
- ajinn
- wjianwei666
- johnsmith9th
- hanbaohong
- daizj
- 喧嚣求静
- silverend
- mwhgJava
- kingwell.leng
- lchb139128
- lich0079
- kristy_yy
最新文章列表
HDU 4746 Mophues
莫比乌斯函数完整定义的通俗表达:
1)莫比乌斯函数μ(n)的定义域是N
2)μ(1)=1
3)当n存在平方因子时,μ(n)=0
4)当n是素数或奇数个不同素数之积时,μ(n)=-1
5)当n是偶数个不同素数之积时,μ(n)=1
/*
* [题意]
* 给出n, m, p,求有多少对a, b满足gcd(a, b)的素因子个数<=p
* (其中1<=a< ...
poj2453------An Easy Problem 进制转换 水题
An Easy Problem
Time Limit: 1000MS
Memory Limit: 65536K
Total Submissions: 7161
Accepted: 4236
Description
As we known, data stored in ...
poj2379 Sum of Consecutive Prime Numbers(水)
/*
* File: main.cpp
* Author: ssslpk
*
* Created on August 28, 2012, 3:08 PM
*
* 题目意思: 给出一个数,求这个数有几种方法是由一至多个连续的素数之和
* 解题: 暴力水过
*/
#include <cstdlib>
#include<iostream>
#include ...
hdu1973 || poj3126 Prime Path
/*
* File: hdu1973.cpp
* Author: ssslpk
* Created on August 28, 2012, 4:34 PM
* 题意:给出两个四位数,现要改变第一个数中的个,十,百,千位当中的一个数
* 使它最终变成第二个数,要求这过程中形成的数是素数,问最少的步骤
*
* 题解:素数筛选+bfs
*/
#include <cstdlib ...
hdu4259 Double Dealing----置换群
Double Dealing
Time Limit: 50000/20000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 290 Accepted Submission(s): 132
Problem Description
Take a deck ...
hdu 1788 Chinese remainder theorem again 披着中国剩余定理的皮
Chinese remainder theorem again
Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 912 Accepted Submission(s): 329
Problem Description ...
中国剩余定理 模板
http://blog.csdn.net/xiaotaoqibao/article/details/5781131
参考网址
一个小知识点 也记下来
如果整数 a 除以整数 b 的余数是 1,那么 a 的 2 倍,3 倍,4 倍……b-1 倍除以 b 的余数 分别是 1*1,2*1,3*1,4*1,......和(b-1)*1。 例如:15÷7=2……余1,那么: 2*15÷7=4…… ...
hdu 1370 Biorhythms 中国剩余定理的应用
Biorhythms
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 1050 Accepted Submission(s): 455
Problem Description
Some people beli ...
hdu 1788 Chinese remainder theorem again 披着中国剩余定理的皮
Chinese remainder theorem again
Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 912 Accepted Submission(s): 329
Problem Description ...
hdu 1370 Biorhythms 中国剩余定理的应用
Biorhythms
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 1050 Accepted Submission(s): 455
Problem Description
Some people beli ...
中国剩余定理 模板
http://blog.csdn.net/xiaotaoqibao/article/details/5781131
参考网址
一个小知识点 也记下来
如果整数 a 除以整数 b 的余数是 1,那么 a 的 2 倍,3 倍,4 倍……b-1 倍除以 b 的余数 分别是 1*1,2*1,3*1,4*1,......和(b-1)*1。 例如:15÷7=2……余1,那么: 2*15÷7=4…… ...
Calculation 2 欧拉函数的应用
/*题意是求和n不互质的数的总和。可用总和1-(n-1)减去互质的数的总和。课用欧拉函数求1-n的互质的数的个数num。
则若a和n互质,n-a必定也和n互质(a<n)。也就是说num必定为偶数。其中互质的数成对存在。其和为n。则总和为num*n/2 */
#include <stdio.h>
int phi(long long n)
{
int rea=n;
...
hdu 1695 综合数论 欧拉函数 分解质因子 容斥原理 打印素数表 帅呆了的一个题目 详解
GCD
Time Limit: 6000/3000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 3112 Accepted Submission(s): 1095
Problem Description
Given 5 integers: a, b ...
Calculation 2 欧拉函数的应用
/*题意是求和n不互质的数的总和。可用总和1-(n-1)减去互质的数的总和。课用欧拉函数求1-n的互质的数的个数num。
则若a和n互质,n-a必定也和n互质(a<n)。也就是说num必定为偶数。其中互质的数成对存在。其和为n。则总和为num*n/2 */
#include <stdio.h>
int phi(long long n)
{
int rea=n;
...
hdu 1211 2种解法 求逆元 水题
RSA
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 853 Accepted Submission(s): 632
Problem Description
RSA is one of the most p ...
我个人的大数相乘模板
******************************************************************************************************************************
正确的带解释的代码
#include<stdio.h> #include<st ...
Relatives 欧拉函数基础
#include <stdio.h>
int phi(int n)
{
int rea=n;
for(int i=2;i*i<=n;i++)
if(n%i==0)
{
rea=rea-rea/i;
do
n/=i;
while(n%i==0);
}
if(n>1)
...
多校联合赛 第九场 X mod f(x) 数论
X mod f(x)
Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 174 Accepted Submission(s): 42
Problem Description
Here i ...