【NOIP模拟赛】随
题目链接:
172.18.111.252:800/problem.php?cid=1001&pid=0
题解:
膜达神……(NOIP考这个就等爆零吧……)
显然我们得到一个结论:$ans=\sum_{i=0}^{mod-1}i*f_{i}$,其中$f_{i}$表示结果为i的概率。
那么问题就是求$f_{i}$。
最初我们可以想到用暴力枚举所有状态,显然超时,怎么优化,矩阵dp。可以开一个$n^{2}$的矩阵来递推。但这样时间$n^{3}\log(n)$还是过不去。深入探讨,我们发现,给的mod是很小的,也就意味着可以把许多$a_{i}$合并概率,同时我们发现(题目下面提示),这原根似乎没用到。(⊙v⊙)嗯。
我们设$g$为原根,那么对于所有的$a_{i}$我们都可以用$g^{x}$来表示,然后结合欧拉定理,我们就可以到到一个新的递推式:$f_{i,j}=\sum_{x=0}^{mod-2}f_{i-1,x}*f_{i-1,j-x}$其中$f_{i,j}$表示i次选取后,结果为原根的j次幂的概率,$j-x$为其在mod-1意义下的剩余系。这个式子显然可以矩阵优化,同时我们发现这个矩阵是一个循环矩阵,然后我们就可以在$O(mod^{2}log(m))$的时间内求出答案。
#include <cstdio>
#include <cstring>
using namespace std;
const int mod=int(1e9)+,N=;
inline int read(){
int s=;char ch=getchar();
while(ch<''||ch>'') ch=getchar();
while(ch>=''&&ch<='') s=s*+(ch^),ch=getchar();
return s;
}
int n,m,P,P2;
int yuan(){
for(int i=;i<P;i++){
int x=;
bool flag=true;
for(int j=;j<P2;j++){
x=x*i%P;
if(x==){
flag=false;break;
}
}
if(flag) return i;
}
}
inline int powmod(int a,int b){
int ans=;
while(b){
if(b&) ans=1LL*ans*a%mod;
b>>=;
a=1LL*a*a%mod;
}return ans;
}
struct Matrix{
int a[N];
Matrix (){memset(a,,sizeof(a));}
}now,a;
Matrix t;
int pi[N],logs[N];
int cnt[N];
int main(){
n=read(),m=read(),P=read();P2=P-;
int rt=yuan(); int x=;
logs[]=;
pi[]=;
for(int i=;i<P2;i++){
x=1LL*x*rt%P;
pi[i]=x;
logs[x]=i;
}
for(int i=;i<=n;i++)
cnt[logs[read()]]++; int re=powmod(n,mod-);
for(int i=;i<P2;i++)
cnt[i]=1LL*cnt[i]*re%mod;
now.a[]=;
for(int i=;i<P2;i++)
a.a[i]=cnt[(P2-i)%P2];
while(m){
if(m&) {
for(int i=;i<P2;i++){
t.a[i]=;
for(int j=;j<P2;j++)
t.a[i]=(1LL*t.a[i]+1LL*now.a[j]*a.a[(i-j+P2)%P2])%mod;
}
now=t;
}
m>>=;
for(int i=;i<P2;i++){
t.a[i]=;
for(int j=;j<P2;j++)
t.a[i]=(1LL*t.a[i]+1LL*a.a[j]*a.a[(i-j+P2)%P2])%mod;
}
a=t;
}
int ans=;
for(int i=;i<P2;i++){
ans=(ans*1LL+pi[i]*1LL*now.a[(P2-i)%P2]%mod)%mod;
}
printf("%d\n",ans);
}
【NOIP模拟赛】随的更多相关文章
- NOIP模拟赛20161022
NOIP模拟赛2016-10-22 题目名 东风谷早苗 西行寺幽幽子 琪露诺 上白泽慧音 源文件 robot.cpp/c/pas spring.cpp/c/pas iceroad.cpp/c/pas ...
- contesthunter暑假NOIP模拟赛第一场题解
contesthunter暑假NOIP模拟赛#1题解: 第一题:杯具大派送 水题.枚举A,B的公约数即可. #include <algorithm> #include <cmath& ...
- NOIP模拟赛 by hzwer
2015年10月04日NOIP模拟赛 by hzwer (这是小奇=> 小奇挖矿2(mining) [题目背景] 小奇飞船的钻头开启了无限耐久+精准采集模式!这次它要将原矿运到泛光之源的矿 ...
- 大家AK杯 灰天飞雁NOIP模拟赛题解/数据/标程
数据 http://files.cnblogs.com/htfy/data.zip 简要题解 桌球碰撞 纯模拟,注意一开始就在袋口和v=0的情况.v和坐标可以是小数.为保险起见最好用extended/ ...
- 队爷的讲学计划 CH Round #59 - OrzCC杯NOIP模拟赛day1
题目:http://ch.ezoj.tk/contest/CH%20Round%20%2359%20-%20OrzCC杯NOIP模拟赛day1/队爷的讲学计划 题解:刚开始理解题意理解了好半天,然后发 ...
- 队爷的Au Plan CH Round #59 - OrzCC杯NOIP模拟赛day1
题目:http://ch.ezoj.tk/contest/CH%20Round%20%2359%20-%20OrzCC杯NOIP模拟赛day1/队爷的Au%20Plan 题解:看了题之后觉得肯定是DP ...
- 队爷的新书 CH Round #59 - OrzCC杯NOIP模拟赛day1
题目:http://ch.ezoj.tk/contest/CH%20Round%20%2359%20-%20OrzCC杯NOIP模拟赛day1/队爷的新书 题解:看到这题就想到了 poetize 的封 ...
- CH Round #58 - OrzCC杯noip模拟赛day2
A:颜色问题 题目:http://ch.ezoj.tk/contest/CH%20Round%20%2358%20-%20OrzCC杯noip模拟赛day2/颜色问题 题解:算一下每个仆人到它的目的地 ...
- CH Round #52 - Thinking Bear #1 (NOIP模拟赛)
A.拆地毯 题目:http://www.contesthunter.org/contest/CH%20Round%20%2352%20-%20Thinking%20Bear%20%231%20(NOI ...
- CH Round #49 - Streaming #4 (NOIP模拟赛Day2)
A.二叉树的的根 题目:http://www.contesthunter.org/contest/CH%20Round%20%2349%20-%20Streaming%20%234%20(NOIP 模 ...
随机推荐
- MOOS学习笔记——多线程
/* * A simple example showing how to use a comms client */ #include "MOOS/libMOOS/Comms/MOOSAsy ...
- webpack基础
首先我们需要手动创建webpack.config.js文件 然后在文件中配置选项 //webpack的配置选项 //__dirname:当前文件所在的目录路径 const config ={ //入口 ...
- iframe实现局部刷新和回调(转)
今天做项目遇到一个问题.就是提交表单的时候,要在后台验证用户名是否存在和验证码是否正确. 当验证码或者用户名存在的时候.在后台弹窗提示.可页面原本file里面符合要求的值刷新没了.用户体验不好.因为用 ...
- Redis的Java使用入门
因项目需要,最近简单学习了redis的使用 redis在服务器centos环境下安装比较简单. 如果要在windows上安装,可以参考别人的文章 http://blog.csdn.net/renfuf ...
- string to int
problem describe: given a string , first find the first word which is not white space;then there wil ...
- Flex 对Xml对象操作
一.读取.xml文件() import flash.events.Event; import flash.net.URLLoader; import flash.net.URLRequest; ...
- (一)SpringBoot基础篇- 介绍及HelloWorld初体验
1.SpringBoot介绍: 根据官方SpringBoot文档描述,BUILD ANYTHING WITH SPRING BOOT (用SPRING BOOT构建任何东西,很牛X呀!),下面是官方文 ...
- SSM博客 前端页面样式不显示
<!-- 由于在web.xml中定义的url拦截形式为“/”表示拦截所有的url请求, 包括静态资源例如css.js等.所以需要在springmvc.xml中添加资源映射标 --> < ...
- Java并发之ReentrantReadWriteLock
上篇文章简单的介绍了ReentrantLock可重入锁.事实上我们可以理解可重入锁是一种排他锁,排他锁在同一个时刻只能够由一个线程进行访问.这就与我们实际使用过程中有点不想符合了,比如说当我们进行读写 ...
- python_日历
>>> import datetime>>> Today=datetime.date.today()>>> Todaydatetime.date( ...