2019年8月1日

概率的一些练习

摘要: #define Mod 1000000007 class Ants { public: vector collision(int n) { int down=pow(2.0,n),up=down-2; int temp=gcd(up,down); vector res; res.push_back(up/temp... 阅读全文

posted @ 2019-08-01 23:08 tianzeng 阅读(140) 评论(0) 推荐(0) 编辑

排列组合的一些练习

摘要: #define Mod 1000000007 class CombineByMistake { public: int countWays(int n) { if(n==0||n==1) return 0; if(n==2) return 1; int pre=0,last=1,t... 阅读全文

posted @ 2019-08-01 22:13 tianzeng 阅读(238) 评论(0) 推荐(0) 编辑

导航