博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
排列组合lucas模板
阅读量:4919 次
发布时间:2019-06-11

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

1 //codeforces 559C|51nod1486 Gerald and Giant Chess(组合数学+逆元) 2  3 #include 
4 using namespace std; 5 #define LL long long 6 typedef pair
pii; 7 const int inf = 0x3f3f3f3f; 8 const int N =2e5+10; 9 #define clc(a,b) memset(a,b,sizeof(a))10 const double eps = 1e-8;11 const int MOD = 1e9+7;12 void fre() {freopen("in.txt","r",stdin);}13 void freout() {freopen("out.txt","w",stdout);}14 inline int read() {
int x=0,f=1;char ch=getchar();while(ch>'9'||ch<'0') {
if(ch=='-') f=-1;ch=getchar();}while(ch>='0'&&ch<='9') {x=x*10+ch-'0';ch=getchar();}return x*f;}15 16 struct Point{17 int x,y;18 Point(){}19 Point(int _x,int _y):x(_x),y(_y){}20 bool operator <(const Point &rhs) const{21 if(x==rhs.x) return y
>=1;x=1ll*x*x%MOD;33 }34 return ret; 35 }36 int C(int n,int m){37 if(n

 

转载于:https://www.cnblogs.com/ITUPC/p/5992432.html

你可能感兴趣的文章
C#。总结
查看>>
修改服务器的3389端口
查看>>
greedy算法(python版)
查看>>
编码(4)
查看>>
How to Transfer Audio Output from Mac OS X to Ubuntu via a Network?
查看>>
Hibernate Annotation笔记
查看>>
spring学习-ApplicationContext-spring上下文深入理解
查看>>
日、周、月活跃用户数,用户流失率
查看>>
java学习-消息队列rabbitmq的组成
查看>>
hdu 4611 Balls Rearrangement
查看>>
在同一iphone项目添加lite版
查看>>
jsp实现仿QQ空间新建多个相册名称,向相册中添加照片
查看>>
NSOperation、NSOperationQueue(III)
查看>>
DB120连接TTL--OpenWRT
查看>>
20155234 2016-2017-2 《Java程序设计》第8周学习总结
查看>>
自定义复选框 checkbox 样式
查看>>
jQuery选择器
查看>>
Day2:字符串常用方法
查看>>
正则表达式不匹配括号
查看>>
HBase相关
查看>>