SPOJ 74. Divisor Summation 分解数字的因子
本题有两个难点:
1 大量的数据输入。没处理好就超时 - 这里使用buffer解决
2 因子分解的算法 a)暴力法超时 b)使用sieve(筛子),只是当中的算法逻辑也挺不easy搞对的。
数值N因子分解逻辑:
1 保存全部能够sqrt(N)范围内的质素
2 找到能够被N除尽的质素d, 然后用d去除N。使用deg变量,保存度。即有多少个d能够被N除尽
3 用d去乘全部已经找到的因子(包含1),假设度deg大于1。那么循环i从1到deg, 用d*i去乘全部找到的因子
找到全部因子相加,减去N,就是答案。
原题:http://www.spoj.com/problems/DIVSUM/
本题是tutorial题,能够说不是非常难的题目,只是看了下提交的记录,超时的2.5万左右,AC的1万左右。
当中包括数学思想的:
-- by Rosen
THE FUNDAMENTAL THEOREM OF ARITHMETIC:
Every integer greater than 1 can be written uniquely as a prime or as the product of two or more primes where the prime factors are written in order of nondecreasing size.
The prime factorizations of 100, 641, 999, and 1024 are given by
100 = 2 · 2 · 5 · 5 = 2 2 5 2 ,
641 = 641,
999 = 3 · 3 · 3 · 37 = 3 3 · 37,
1024 = 2 · 2 · 2 · 2 · 2 · 2 · 2 · 2 · 2 · 2 = 2 10
-- 本题因式分解的基本数学思想
只是本题不单须要质数,而是须要全部能除尽的数,那么就是这些质数组合起来了。
If n is a composite integer, then n has a prime divisor less than or equal to√ n.
it follows that an integer is prime if it is not divisible by any prime less than or equal to its square root. This leads to the brute-force algorithm known as trial division.
-- 这个是半暴力法用来找素数(也叫质数)的数学思想
- class DivisorSummation47
- {
- const static int MAX_BUF = 5120;
- int st, len;
- char inBuf[MAX_BUF];
- const static int FLASH_P = MAX_BUF - 12;
- int oSt;
- char outBuf[MAX_BUF];
- const static int MAX_NUM = 500000;
- bool *sieve;
- char getFromBuf()
- {
- if (st >= len)
- {
- len = fread(inBuf, sizeof(char), MAX_BUF, stdin);
- st = 0;
- }
- return inBuf[st++];
- }
- int intFromBuf()
- {
- char c = getFromBuf();
- while (c < '0' || '9' < c && len)
- {
- c = getFromBuf();
- }
- int num = 0;
- while ('0' <= c && c <= '9' && len)
- {
- num = (num<<3) + (num<<1) + (c - '0');
- c = getFromBuf();
- }
- return num;
- }
- void wrToBuf(int num, char sep)
- {
- if (oSt > FLASH_P)
- {
- fwrite(outBuf, sizeof(char), oSt, stdout);
- oSt = 0;
- }
- if (0 == num)
- {
- outBuf[oSt++] = '0';
- outBuf[oSt++] = sep;//漏了这句错误
- return;
- }
- char chs[12];
- int i = 0;
- while (num)
- {
- chs[i++] = num % 10 + '0';//这里竟然忘记步进i错误
- num /= 10;
- }
- for (i--; i >= 0; i--)
- {
- outBuf[oSt++] = chs[i];
- }
- outBuf[oSt++] = sep;
- }
- inline void flashLeft()
- {
- if (oSt) fwrite(outBuf, sizeof(char), oSt, stdout);
- }
- public:
- DivisorSummation47() : st(0), len(0), oSt(0)
- {
- int sq = (int)sqrt(double(MAX_NUM));
- sieve = (bool *) calloc(sizeof(bool), sq+1);
- //fill(sieve, sieve+sq+1, false);
- vector<int> primes;
- for (int i = 2; i <= sq; i++)
- {
- if (!sieve[i])
- {
- for (int j = (i<<1); j <= sq; j += i)
- {
- sieve[j] = true;
- }
- primes.push_back(i);
- }
- }
- int T = 0;
- T = intFromBuf();
- while (T--)
- {
- int num = intFromBuf();
- int N = num;
- vector<int> divs(1, 1);
- for (int i = 0; i < (int)primes.size() && num > 1; i++)
- {
- int d = primes[i];
- if (d*d > num) d = num;
- if (num % d == 0)
- {
- int deg = 0;
- for ( ; num % d == 0; num /= d) deg++;
- for (int j = (int)divs.size() - 1; j >= 0 ; j--)
- {
- int t = divs[j];
- for (int k = 0; k < deg; k++)
- {
- t *= d;
- divs.push_back(t);
- }
- }
- }
- }
- int ans = -N;
- for (int i = 0; i < (int)divs.size(); i++)
- {
- ans += divs[i];
- }
- wrToBuf(ans, '\n');
- }//while(T--)
- flashLeft();
- }
- };
SPOJ 74. Divisor Summation 分解数字的因子的更多相关文章
- SPOJ DIVSUM - Divisor Summation
DIVSUM - Divisor Summation #number-theory Given a natural number n (1 <= n <= 500000), please ...
- HDU6623 思维题(n分解成质因子的形式,问最小的幂是多少)
题目大意:给你一个数n,把它分解为素数的幂次的乘积的形式:n=p1^e1 * p2^e2 * .......pk^ek 求最小的幂次是多少 n=le18 分析: 首先我们肯定是不可以枚举1e18的因 ...
- spoj 1029 Matrix Summation
题意: 对一个矩阵有2种操作: 1.把某个元素设为x. 2.查询以(x1,y1)为左上角 以(x2,y2)为右上角的矩阵中的数字的和. 思路: 二维树状数组入门题,同时对横坐标和纵坐标做前缀和就行了. ...
- zoj 2095 Divisor Summation
和 hdu 1215 一个意思// 只是我 1坑了 1 时应该为0 #include <iostream> #include <math.h> #include <map ...
- 【C/C++】任意大于1的整数分解成素数因子乘积的形式
// #include<stdio.h> #include<math.h> #include<malloc.h> int isprime(long n); void ...
- SPOJ 1029 Matrix Summation【 二维树状数组 】
题意:二维树状数组,更改值的时候有一点不一样, 是将a[x][y]设置为一个值,所以add的时候要将它和以前的值作差一下 #include<iostream> #include<cs ...
- codeforces 1025B Weakened Common Divisor(质因数分解)
题意: 给你n对数,求一个数,可以让他整除每一对数的其中一个 思路: 枚举第一对数的质因数,然后暴力 代码: #include<iostream> #include<cstdio&g ...
- uva 993 Product of digits (贪心 + 分解因子)
Product of digits For a given non-negative integer number N , find the minimal natural Q such tha ...
- R语言基础:数组&列表&向量&矩阵&因子&数据框
R语言基础:数组和列表 数组(array) 一维数据是向量,二维数据是矩阵,数组是向量和矩阵的直接推广,是由三维或三维以上的数据构成的. 数组函数是array(),语法是:array(dadta, d ...
随机推荐
- 在WPF中使用全局快捷键
今天写一个小程序中使用到了全局快捷键,找到了我之前写的文章在c#中使用全局快捷键翻了一下,发现它是WinForm版本的,而我现在大部分写WPF程序了,便将其翻译了为WPF版本的了. static cl ...
- eclipse and systemtap
http://wiki.eclipse.org/Linux_Tools_Project/Systemtap/User_Guide
- 自定义MVC视图引擎ViewEngine 创建Model的专属视图
MVC内置的视图引擎有WebForm view engine和Razor view engine,当然也可以自定义视图引擎ViewEngine.本文想针对某个Model,自定义该Model的专属视图. ...
- MVC无限级分类02,增删改查
继上一篇"MVC无限级分类01,分层架构,引入缓存,完成领域模型与视图模型的映射",本篇开始MVC无限级分类的增删改查部分,源码在github. 显示和查询 使用datagrid显 ...
- POJ--2570--Fiber Network【floyd+位运算】
题意:一些公司决定搭建一些光纤网络.单向的,假设从第一点到第二点,有ab两个公司能够搭建,第二点到第三点有ac两个公司能够搭建,第一点到第三点有d公司能够搭建,则第一点到第三点有a.d两个公司能够搭建 ...
- 关于OpenLDAPAdmin管理页面提示“This base cannot be created with PLA“问题. Strong Authentication Required问题
经过查询,最终总结和处理如下: 1.首先需要在/etc/openldap/目录下,创建一个base.ldif文件,如下所示: 2.在base.ldif文件中,写入如下信息,为创建初始化根节点做准备工作 ...
- [Git] Git fetch和git pull的区别
reference : http://blog.csdn.net/hudashi/article/details/7664457 Git中从远程的分支获取最新的版本到本地有这样2个命令:1. git ...
- 操作系统Day1地址空间与地址生成
1.地址空间分成(1)物理地址空间 (2)逻辑地址空间二者之间的关系:*逻辑地址空间的生成:程序——>汇编-->linker——>loader*物理地址的生成:内存的逻辑地址空间会有 ...
- 第四章 四种List实现类的对比总结
1.ArrayList 非线程安全 基于对象数组 get(int index)不需要遍历数组,速度快: iterator()方法中调用了get(int index),所以速度也快 set(int in ...
- 再谈javascript图片预加载技术
图片预加载技术的典型应用: 如lightbox方式展现照片,无疑需要提前获得大图的尺寸,这样才能居中定位,由于javascript无法获取img文件头数据,必须等待其加载完毕后才能获取真实的大小然后展 ...