博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Codeforces 1174E Ehab and the Expected GCD Problem
阅读量:5094 次
发布时间:2019-06-13

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

首先我们能推出最优的开始一定是2 ^ n 或者 3 * 2 ^ n 的形式, 对于每一种形式我们将所有数字分类, 从后往前用组合数算出答案。

#include
#define LL long long#define LD long double#define ull unsigned long long#define fi first#define se second#define mk make_pair#define PLL pair
#define PLI pair
#define PII pair
#define SZ(x) ((int)x.size())#define ALL(x) (x).begin(), (x).end()#define fio ios::sync_with_stdio(false); cin.tie(0);using namespace std;const int N = 1e6 + 7;const int inf = 0x3f3f3f3f;const LL INF = 0x3f3f3f3f3f3f3f3f;const int mod = 1e9 + 7;const double eps = 1e-8;const double PI = acos(-1);template
inline void add(T& a, S b) {a += b; if(a >= mod) a -= mod;}template
inline void sub(T& a, S b) {a -= b; if(a < 0) a += mod;}template
inline bool chkmax(T& a, S b) { return a < b ? a = b, true : false;}template
inline bool chkmin(T& a, S b) { return a > b ? a = b, true : false;}int n;int a[N], tota;int b[N], totb;int F[N], Finv[N], inv[N];int ans;int cnt[21];inline int C(int n, int m) { if(n < m || m < 0) return 0; return 1LL * F[n] * Finv[m] % mod * Finv[n - m] % mod;}void calc(int n, int m) { int ret = F[cnt[0]], tmp = 0, sum = cnt[0]; for(int i = 1; i < m; i++) { tmp = ret; ret = 1LL * ret * cnt[i] % mod; ret = 1LL * ret * C(sum + cnt[i] - 1, cnt[i] - 1) % mod * F[cnt[i] - 1] % mod; sum += cnt[i]; } add(ans, ret);}void init() { F[0] = Finv[0] = inv[1] = 1; for(int i = 2; i < N; i++) inv[i] = 1LL * (mod - mod / i) * inv[mod % i] % mod; for(int i = 1; i < N; i++) F[i] = 1LL * F[i - 1] * i % mod; for(int i = 1; i < N; i++) Finv[i] = 1LL * Finv[i - 1] * inv[i] % mod;}int main() { init(); a[++tota] = 2; for(int i = 2; ;i++) { a[i] = a[i - 1] * 2; tota++; if(a[i] > 1000000) break; } b[++totb] = 3; for(int i = 2; ;i++) { b[i] = b[i - 1] * 2; totb++; if(b[i] > 1000000) break; } scanf("%d", &n); int pa = upper_bound(a + 1, a + 1 + tota, n) - a - 1; int pb = upper_bound(b + 1, b + 1 + totb, n) - b - 1; int num = 0; for(int i = pa - 1; i >= 0; i--) { if(i) cnt[i] = n / (1 << i) - n / (1 << (i + 1)); else cnt[i] = n - n / 2; } calc(n, pa); if(pb == pa) { for(int o = pb - 1; o >= 0; o--) { int bit = pb - 1; for(int i = pb - 1; i >= 0; i--) { if(i > o) { cnt[i] = n / 3 / (1 << (bit - 1)) - n / 3 / (1 << bit); bit--; } else if(i < o) { if(i) { cnt[i] = n / (1 << (bit - 1)) - n / (1 << bit); bit--; } else cnt[i] = n - n / 2; } else { if(i) { cnt[i] = n / (1 << bit) - n / (1 << bit) / 3; } else cnt[i] = n - n / 3; } } calc(n, pb); } } printf("%d\n", ans); return 0;}/**/

 

转载于:https://www.cnblogs.com/CJLHY/p/10975494.html

你可能感兴趣的文章
剑指offer-二叉树
查看>>
leecode第二百九十二题(Nim游戏)
查看>>
【BZOJ 2957】 2957: 楼房重建 (线段树)
查看>>
Hdoj 1064 Financial Management
查看>>
win7 下安装ubuntu14.04 本人实测撰写
查看>>
django迁移数据库错误
查看>>
epoll学习01
查看>>
java基础-排序
查看>>
自己写Tiny6410的Bootloader总结!
查看>>
redis的配置文件解释
查看>>
yii 跳转页面
查看>>
闭包问题
查看>>
C++:指针
查看>>
C++字符串使用sizeof时注意
查看>>
【转载】WebService到底是什么?
查看>>
windows下安装nodejs
查看>>
[LeetCode] Trapping Rain Water II 题解
查看>>
对排名前3000位博主进行数据分析
查看>>
Python设计模式之单例模式
查看>>
eclipse中server location为灰色,不能修改
查看>>