没打,简单补档

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. [UWP 自定义控件]了解模板化控件(5.2):UserControl vs. TemplatedControl

    1. UserControl vs. TemplatedControl 在UWP中自定义控件常常会遇到这个问题:使用UserControl还是TemplatedControl来自定义控件. 1.1 使 ...

  2. Visual Studio2017 Remote Debugger

    前言 大家在使用vs打包后的文件部署到服务器后,有时候我们需要对线网的后台进行调试.但是它不像在VS中.这个时候我们该怎么调试呢? 微软想到了这一点,他们在 VS 中给我们提供了一个功能: Remot ...

  3. Oracle_忘记密码

    1.运行到C盘根目录 2.输入:SET ORACLE_SID = 你的SID名称 3.输入:sqlplus/nolog 4.输入:connect/as sysdba 5.输入:altre user s ...

  4. [个人博客作业Week7]软件工程团队项目感想与反思

    在阅读了推荐阅读的材料之后,我想了很多东西.最终还是决定,以团队项目的经历为主线,叙述我关于软件工程的一些思考与体会. 凤凰涅槃,浴火重生 如果要我来概况这几周团队项目的经历的话,那么句话是我所能想到 ...

  5. Week 3 有求必应

    [引] 必应词典已经伴我很久了,但那并不意味着我天天都用它查来查去,它总是静静地蹲在我E盘的一角. 从前的它特别任性,总喜欢开机自己冒出头来看我.后来我嫌它每天都播报新闻,于是就把它关进了冷宫.直到不 ...

  6. Linux内核分析第二周:操作系统是如何工作的

    第一讲 函数调用堆栈 计算机是如何工作的? (总结)——三个法宝 1,存储程序计算机工作模型,计算机系统最最基础性的逻辑结构: 2,函数调用堆栈,高级语言得以运行的基础,只有机器语言和汇编语言的时候堆 ...

  7. Github链接及git学习心得总结

    众所周知GitHub已经是当下非常流行的代码托管库了,全世界有无数的程序员把他们的代码放在GitHub里.那比起云盘之类的工具,用GitHub有什么好处呢:1. 以后在帖子里只需要扔一个链接,大家就能 ...

  8. java感想

    Java学起来很有趣,通过学习Java可以提高自己的逻辑能力.在学习Java期间我们做了一些程序,我们班的同学也都积极准备,完成的还不错!在做程序时,我遇到了一些难题,有时也会出现错误,时间长了弄得我 ...

  9. 异常 try – finally 注意的地方

    finally 异常机制中还有一个重要的部分,就是finally, catch后面可以跟finally语句,语法如下所示:   try{ //可能抛出异常 }catch(Exception e){ / ...

  10. 圆桌的项目Alpha冲刺(团队)

    (a) 项目课堂演示 (b) 10篇冲刺随笔 冲刺之一 冲刺之二 冲刺之三 冲刺之四 冲刺之五 冲刺之六 冲刺之七 冲刺之八 冲刺之⑨ 冲刺之十 (c) 1篇测试随笔 测试随笔 (d) 1篇冲刺总结随 ...