没打,简单补档

C.Edgy Trees

容斥,把黑边断掉数联通块,每个联通块贡献$siz^k$

 #include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
const int N=,mod=1e9+;
int n,k,t1,t2,t3,tot,aset[N],siz[N];
int Finda(int x)
{
return x==aset[x]?x:aset[x]=Finda(aset[x]);
}
int Qpow(int x,int k)
{
if(k<=) return k?x:;
int tmp=Qpow(x,k>>);
return 1ll*tmp*tmp%mod*((k&)?x:)%mod;
}
int main()
{
scanf("%d%d",&n,&k);
for(int i=;i<=n;i++) aset[i]=i,siz[i]=;
for(int i=;i<n;i++)
{
scanf("%d%d%d",&t1,&t2,&t3);
if(!t3)
{
int nx=Finda(t1),ny=Finda(t2);
aset[nx]=ny,siz[ny]+=siz[nx];
}
}
for(int i=;i<=n;i++)
if(aset[i]==i) (tot+=Qpow(siz[i],k))%=mod;
printf("%d",(Qpow(n,k)-tot+mod)%mod);
return ;
}

D.Steps to One

我写的辣鸡的$O(n\log n\sqrt n)$(并跑不满),太菜了

设dp[i]表示当前为i的期望步数,暴力DP即枚举1->m从gcd转移,改为枚举gcd(指所有因子),然后莫比乌斯函数统计1->n中和某个数互质的数的个数

 #include<cstdio>
#include<vector>
#include<cstring>
#include<algorithm>
#define vint vector<int>
#define vit vector<int>::iterator
using namespace std;
const int N=,mod=1e9+;
int dp[N],pri[N],npr[N],mul[N];
int n,t,in,cnt,ans; vint fac[N];
void Add(int &x,int y)
{
x+=y;
if(x>=mod) x-=mod;
}
int Qpow(int x,int k)
{
if(k<=) return k?x:;
int tmp=Qpow(x,k>>);
return 1ll*tmp*tmp%mod*((k&)?x:)%mod;
}
void Pre()
{
in=Qpow(n,mod-);
for(int i=;i<=n;i++)
for(int j=*i;j<=n;j+=i)
fac[j].push_back(i);
npr[]=true,mul[]=;
for(int i=;i<=n;i++)
{
if(!npr[i]) pri[++cnt]=i,mul[i]=-;
for(int j=;j<=cnt&&(t=i*pri[j])<=n;j++)
{
npr[t]=true;
if(i%pri[j]==) break;
else mul[t]=-mul[i];
}
}
}
int Count(int x,int y)//Count:for i=1 to n,gcd(i,x)==y
{
int N=n/y,X=x/y,ret=;
for(int i=;i*i<=X;i++)
if(X%i==)
{
ret+=N/i*mul[i];
if(i*i!=X) ret+=N/(X/i)*mul[X/i];
}
return ret;
}
int main()
{
scanf("%d",&n),Pre(),dp[]=;
for(int i=;i<=n;i++)
{
int tmp=n/i;
for(vit it=fac[i].begin();it!=fac[i].end();it++)
t=*it,Add(dp[i],1ll*dp[t]*Count(i,t)%mod*in%mod);
dp[i]=1ll*(dp[i]+)*Qpow(n-tmp,mod-)%mod*n%mod;
}
for(int i=;i<=n;i++) Add(ans,dp[i]);
printf("%lld",1ll*ans*in%mod);
return ;
}

呃,发现题解也不怎么快,他是用2^质因子个数容斥算的,$2^6*6$怕不是跟非常跑不满的根号差不多

E.Maximize Mex

显然答案单调不升,把每种潜力值和每个club看做左右部点,倒着加边,每次在上次的基础上继续二分图匹配到没有增广路为止

注意潜力值是从零开始的,还有每次跑完记得更新dfn

 #include<cstdio>
#include<vector>
#include<cstring>
#include<algorithm>
#define vint vector<int>
#define vit vector<int>::iterator
using namespace std;
const int N=;
int n,m,q,t1,t2,dfn;
int val[N],bel[N],lft[N];
int del[N],vis[N],mth[N],ans[N]; vint ve[N];
bool DFS(int nde)
{
int t;
for(vit it=ve[nde].begin();it!=ve[nde].end();it++)
if(vis[t=*it]!=dfn)
{
vis[t]=dfn;
if(mth[t]==-||DFS(mth[t]))
{mth[t]=nde; return true;}
}
return false;
}
int main()
{
scanf("%d%d",&n,&m);
for(int i=;i<=n;i++) scanf("%d",&val[i]);
for(int i=;i<=n;i++) scanf("%d",&bel[i]);
for(int i=;i<=m;i++) mth[i]=-; dfn=;
scanf("%d",&q);
for(int i=;i<=q;i++)
scanf("%d",&lft[i]),del[lft[i]]=true;
for(int i=;i<=n;i++)
if(!del[i]) ve[val[i]].push_back(bel[i]);
for(int i=q,mex=-;i;i--)
{
while(DFS(mex+)) mex++,dfn++; ans[i]=mex+,dfn++;
ve[val[lft[i]]].push_back(bel[lft[i]]);
}
for(int i=;i<=q;i++) printf("%d\n",ans[i]);
return ;
}

F.Dish Shopping

Codeforces Round #548的更多相关文章

  1. Codeforces Round 548 (Div. 2)

    layout: post title: Codeforces Round 548 (Div. 2) author: "luowentaoaa" catalog: true tags ...

  2. Codeforces Round #548 (Div. 2) F splay(新坑) + 思维

    https://codeforces.com/contest/1139/problem/F 题意 有m个人,n道菜,每道菜有\(p_i\),\(s_i\),\(b_i\),每个人有\(inc_j\), ...

  3. Codeforces Round #548 (Div. 2) E 二分图匹配(新坑) or 网络流 + 反向处理

    https://codeforces.com/contest/1139/problem/E 题意 有n个学生,m个社团,每个学生有一个\(p_i\)值,然后每个学生属于\(c_i\)社团, 有d天,每 ...

  4. CodeForces Round #548 Div2

    http://codeforces.com/contest/1139 A. Even Substrings You are given a string s=s1s2…sns=s1s2…sn of l ...

  5. Codeforces Round #548 (Div. 2) C dp or 排列组合

    https://codeforces.com/contest/1139/problem/C 题意 一颗有n个点的树,需要挑选出k个点组成序列(可重复),按照序列的顺序遍历树,假如经过黑色的边,那么这个 ...

  6. C. Edgy Trees Codeforces Round #548 (Div. 2) 并查集求连通块

    C. Edgy Trees time limit per test 2 seconds memory limit per test 256 megabytes input standard input ...

  7. Codeforces Round #548 (Div. 2) D 期望dp + 莫比乌斯反演

    https://codeforces.com/contest/1139/problem/D 题意 每次从1,m中选一个数加入队列,假如队列的gcd==1停止,问队列长度的期望 题解 概率正着推,期望反 ...

  8. C. Edgy Trees Codeforces Round #548 (Div. 2) 【连通块】

    一.题面 here 二.分析 这题刚开始没读懂题意,后来明白了,原来就是一个数连通块里点数的问题.首先在建图的时候,只考虑红色路径上的点.为什么呢,因为为了不走红色的快,那么我们可以反着想只走红色的路 ...

  9. Codeforces Round #548 (Div. 2) C. Edgy Trees

    You are given a tree (a connected undirected graph without cycles) of 

随机推荐

  1. Spring+SpringMVC+MyBatis+easyUI整合进阶篇(八)线上Mysql数据库崩溃事故的原因和处理

    前文提要 承接前文<一次线上Mysql数据库崩溃事故的记录>,在文章中讲到了一次线上数据库崩溃的事件记录,建议两篇文章结合在一起看,不至于摸不着头脑. 由于时间原因,其中只讲了当时的一些经 ...

  2. TCP服务端开发为例--web开发不同url请求为何会走不同方法

    拿java的web开发为例子,相信有很多小伙伴是做j2EE开发的,htpp请求,json数据传输都是工作中经常用的,查询请求,添加请求,修改请求前端配个url,例如https://localhost/ ...

  3. Nginx SSL+tomcat集群,request.getScheme() 取到https正确的协议

    最近在做一个项目, 架构上使用了 Nginx +tomcat 集群, 且nginx下配置了SSL,tomcat no SSL,项目使用https协议 但是,明明是https url请求,发现 log里 ...

  4. SpringBoot日记——任务处理 之 异步、定时、邮件

    ---恢复内容开始--- 直接步入正题. 异步任务 异步任务比较简单,只需要两个注解就可以搞定,我们直接来看如何使用: 1.创建一个service,带上@EnableAsync,就是开启异步任务的注解 ...

  5. Bash : IO 重定向

    标准输入/输出(standard I/O)可能是软件设计原则里最重要的概念了.这个概念就是:程序应该有数据的来源端.数据的目的端(输出结果的地方)已经报告问题的地方,它们分别被称为标准输入(stand ...

  6. Bash 笔记

    获取当前工作目录 basepath=$(cd `dirname $0`; pwd) 源文 : https://sexywp.com/bash-how-to-get-the-basepath-of-cu ...

  7. Nginx反向代理中使用proxy_redirect重定向url

    在使用Nginx做反向代理功能时,有时会出现重定向的url不是我们想要的url,这时候就可以使用proxy_redirect进行url重定向设置了.proxy_redirect功能比较强大,其作用是对 ...

  8. Proxy 示例

    package cn.proxy03; import java.lang.reflect.InvocationHandler; import java.lang.reflect.Method; imp ...

  9. idea 设置注释

    idea和eclipse的注释还是有一些差别的. idea: 类头注释:打开file->setting->Editor->Filr and Code Templates->In ...

  10. MyEclipse项目里面出现红叉的解决方案?

    一般出现在从别处import的项目上,只有项目文件夹上有红叉,其他地方都正常,现总结个人的几个解决方案:   有几种可能: 1,编码设置是否一致,也即是你项目原来的编码和现在eclipse用的默认编码 ...