BZOJ1965: [Ahoi2005]SHUFFLE 洗牌(exgcd 找规律…
2018-07-11 03:30:38来源:博客园 阅读 ()
Submit: 989 Solved: 660
[Submit][Status][Discuss]
Description
Input
Output
Sample Input
Sample Output
HINT
Source
非常巧妙的一道题、
通过找规律不难发现,第$i$个位置下一轮的位置为$2i \pmod {n + 1}$
那么下$m$轮的位置为$2^m i \pmod {n + 1}$
我们需要找到一个位置$x$,使得$2^m x \equiv L \pmod {n + 1}$
那么$x \equiv L * 2^{-x} \pmod {n + 1}$
做完了。。
#include<cstdio> #include<algorithm> #include<cmath> #include<map> #include<iostream> #define int long long inline int read() { char c = getchar(); int x = 0, f = 1; while(c < '0' || c > '9') {if(c == '-') f = -1; c = getchar();} while(c >= '0' && c <= '9') x = x * 10 + c - '0', c = getchar(); return x * f; } int x, y, N, M, L, mod; int fastpow(int a, int p) { int base = 1; while(p) { if(p & 1) base = (base * a) % mod; a = (a * a) % mod; p >>= 1; } return base % mod; } int exgcd(int a, int b, int &x, int &y) { if(b == 0) {x =1; y = 0; return a;} int r = exgcd(b, a % b, x, y); int t = x; x = y; y = t -(a / b) * y; return r; } int inv(int a, int b) { exgcd(a, b, x, y); while(x < 0) x += b; return x % b; } main() { N = read(); M = read(); L = read(); mod = N + 1; printf("%lld", L % mod * inv(fastpow(2, M), mod) % mod); }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- POJ 3087 Shuffle'm Up 模拟,看着不像搜索啊 2018-06-17
- P1403 [AHOI2005]约数研究 2018-06-17
- BZOJ1969: [Ahoi2005]LANE 航线规划(LCT) 2018-06-17
- c#的random shuffle_c#应用 2008-02-23
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash