博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu 4609 3-idiots——FFT
阅读量:4948 次
发布时间:2019-06-11

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

题目:

答案就是随便选三条边的方案 - 不合法的方案。

不合法的方案就是算出 x+y = k 的方案数 g[ k ],对于每个长度 z ,不合法方案+=\( \sum\limits_{k=0}^{z}g[k] \)

注意 FFT 之后偶数项 k 算上了取长度为 k/2 的同一条边两遍的方案,要去重。

随便选三条边的 n*(n-1)*(n-2) 会把同一个 x , y , z 算6遍,而枚举 z 会把同一个 x , y , z 算两遍,所以要乘3。

注意减去的时候乘上长度为 z 的边的个数。

#include
#include
#include
#include
#define db double#define ll long longusing namespace std;const int N=1e5+5,M=(1<<18)+5;const db pi=acos(-1);int T,n,len,r[M],f[N];struct cpl{db x,y;}a[M],I;cpl operator+ (cpl a,cpl b){
return (cpl){a.x+b.x,a.y+b.y};}cpl operator- (cpl a,cpl b){
return (cpl){a.x-b.x,a.y-b.y};}cpl operator* (cpl a,cpl b){
return (cpl){a.x*b.x-a.y*b.y,a.x*b.y+a.y*b.x};}int Mx(int a,int b){
return a>b?a:b;}int rdn(){ int ret=0;bool fx=1;char ch=getchar(); while(ch>'9'||ch<'0'){
if(ch=='-')fx=0;ch=getchar();} while(ch>='0'&&ch<='9')ret=ret*10+ch-'0',ch=getchar(); return fx?ret:-ret;}void fft(cpl *a,bool fx){ for(int i=0;i
>1; cpl wn=(cpl){ cos(pi/m),fx?-sin(pi/m):sin(pi/m) }; for(int i=0;i
>1;i
>1]>>1)+((i&1)?j:0); fft(a,0); for(int i=0;i
>1]:0) )*3; ans-=lj*f[i];//*f[i]!! } printf("%.7f\n",(db)ans/sm); } return 0;}

 

转载于:https://www.cnblogs.com/Narh/p/10099775.html

你可能感兴趣的文章
WCF(二) 使用配置文件实现WCF应用程序
查看>>
【CodeForces 803 C】Maximal GCD(GCD+思维)
查看>>
python 去掉换行符或者改为其他方式结尾的方法(end='')
查看>>
数据模型(LP32 ILP32 LP64 LLP64 ILP64 )
查看>>
REST构架风格介绍:状态表述转移
查看>>
struct {0}初始化
查看>>
c++ operator
查看>>
apache 添加 ssl_module
查看>>
java小技巧
查看>>
POJ 3204 Ikki's Story I - Road Reconstruction
查看>>
getQueryString
查看>>
Servlet文件上传和下载的复习
查看>>
JavaScript笔记——正则表达式
查看>>
iOS PushMebaby
查看>>
网页消息类
查看>>
【BZOJ】2959: 长跑(lct+缩点)(暂时弃坑)
查看>>
日常一些出现bug的问题
查看>>
同时启动多个tomcat服务器
查看>>
怎么将iphone上的照片导出到本地文件
查看>>
Repeater+DataPagerSource分页
查看>>