博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu 1402 FFT(模板)
阅读量:5878 次
发布时间:2019-06-19

本文共 2665 字,大约阅读时间需要 8 分钟。

 

A * B Problem Plus

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)

Total Submission(s): 16111    Accepted Submission(s): 3261

Problem Description
Calculate A * B.
 

 

Input
Each line will contain two integers A and B. Process to end of file.
Note: the length of each integer will not exceed 50000.
 

 

Output
For each case, output A * B in one line.
 

 

Sample Input
1 2 1000 2
 

 

Sample Output
2 2000
 

 

Author
DOOM III
 

 

Recommend

 

 

题意:求高精度a*b                                  --代码参考kuangbin大神

思路: 

通过FFT我们可以快速求出多项式的卷积,从而解决数相乘。                 

求卷积大致如下图,至于FFT具体原理看不太懂- -

 

#include 
#include
#include
#include
#include
#include
using namespace std;typedef long long ll;typedef long double ld;const ld eps=1e-10;const int inf = 0x3f3f3f;const int MOD = 1e9+7;const double PI = acos(-1.0);struct Complex{ double x,y; Complex(double _x = 0.0,double _y = 0.0) { x = _x; y = _y; } Complex operator-(const Complex &b)const { return Complex(x-b.x,y-b.y); } Complex operator+(const Complex &b)const { return Complex(x+b.x,y+b.y); } Complex operator*(const Complex &b)const { return Complex(x*b.x-y*b.y,x*b.y+y*b.x); }};void change(Complex y[],int len){ int i,j,k; for(i = 1,j = len/2; i < len-1; i++) { if(i < j) swap(y[i],y[j]); k = len/2; while(j >= k) { j-=k; k/=2; } if(j < k) j+=k; }}void fft(Complex y[],int len,int on){ change(y,len); for(int h = 2; h <= len; h <<= 1) { Complex wn(cos(-on*2*PI/h),sin(-on*2*PI/h)); for(int j = 0; j < len; j+=h) { Complex w(1,0); for(int k = j; k < j+h/2; k++) { Complex u = y[k]; Complex t = w*y[k+h/2]; y[k] = u+ t; y[k+h/2] = u-t; w = w*wn; } } } if(on == -1) { for(int i = 0; i < len; i++) y[i].x /= len; }}const int maxn = 200100;Complex x1[maxn],x2[maxn];char str1[maxn],str2[maxn];int sum[maxn];int main(){ while(scanf("%s%s",str1,str2) != EOF) { int len1 = strlen(str1); int len2 = strlen(str2); int len = 1; while(len < len1*2 || len < len2*2) len <<= 1; for(int i = 0; i < len1; i++) x1[i] = Complex(str1[len1-i-1]-'0',0); for(int i = len1; i < len; i++) x1[i] = Complex(0,0); for(int i = 0; i < len2; i++) x2[i] = Complex(str2[len2-1-i]-'0',0); for(int i = len2; i < len; i++) x2[i] = Complex(0,0); fft(x1,len,1); fft(x2,len,1); for(int i = 0; i < len; i++) { x1[i] =x1[i]*x2[i]; //cout << x1[i].x << " "<< x1[i].y <
< len;i++){ sum[i] = (int)(x1[i].x+0.5); //cout << sum[i] << endl; } for(int i = 0; i < len; i++) { sum[i+1] += sum[i]/10; sum[i] %= 10; } len= len1+len2-1; while(sum[len] <= 0 && len > 0) len--; for(int i = len; i >= 0; i--) printf("%c",sum[i]+'0'); printf("\n"); } return 0;}

  

转载于:https://www.cnblogs.com/Przz/p/5409649.html

你可能感兴趣的文章
CentOS图形界面和命令行切换
查看>>
HTML5通信机制与html5地理信息定位(gps)
查看>>
Mind_Manager_2
查看>>
手动升级 Confluence - 规划你的升级
查看>>
汽车常识全面介绍 - 悬挂系统
查看>>
电子政务方向:We7.Cloud政府云门户
查看>>
ansible 基本操作(初试)
查看>>
更改tomcat的根目录路径
查看>>
51nod 1292 字符串中的最大值V2(后缀自动机)
查看>>
加快ALTER TABLE 操作速度
查看>>
学习笔记之软考数据库系统工程师教程(第一版)
查看>>
PHP 程序员的技术成长规划
查看>>
memcached 分布式聚类算法
查看>>
jquery css3问卷答题卡翻页动画效果
查看>>
$digest already in progress 解决办法——续
查看>>
虚拟机 centos设置代理上网
查看>>
Struts2中Date日期转换的问题
查看>>
mysql 数据类型
查看>>
Ubuntu 设置当前用户sudo免密码
查看>>
设置tomcat远程debug
查看>>