来自FallDream的博客,未经允许,请勿转载,谢谢。


晚上去clj博客逛来逛去很开心,突然同学提醒了一下,发现cf已经开始40分钟了,慌的一B,从B题开始写,写完了B到E最后收掉了A,结果太着急B题忘记写一个等号挂掉了。。。。D题瞎dp也挂了很难受。F题还剩5分钟的时候想出来了,如果没迟应该能写完。

A.

你要做n道题 每道题要花费时间ti,有m个可以提交的时间段,你在同一时刻可以交很多代码并且不耗时间,求最早什么时候可以把代码全部交完。

发现只要管最后一道题啥时候交就行了,扫一遍区间。

#include<iostream>
#include<cstdio>
#define MN 1000
#define INF 1000000000
using namespace std;
inline int read()
{
int x = , f = ; char ch = getchar();
while(ch < '' || ch > ''){ if(ch == '-') f = -; ch = getchar();}
while(ch >= '' && ch <= ''){x = x * + ch - '';ch = getchar();}
return x * f;
}
int n,m,mn=INF,tot=;
int main()
{
n=read();
for(int i=;i<=n;++i) tot+=read();
m=read();
for(int i=;i<=m;++i)
{
int l=read(),r=read();
if(r>=tot) mn=min(mn,max(,l-tot));
}
printf("%d",mn==INF?-:mn+tot);
return ;
}

B.给定一个区间[l,r]和x,y,定义特殊数字是可以被表示成x^a+y^b(a,b是非负整数)的数,求[l,r]中最长的连续的一段数字,满足这段数字区间内全是非特殊的数字。

l,r<=10^18 2<=x,y<=10^19

显然x^a和y^b只有log种,都拿出来排个序就行了。

#include<iostream>
#include<cstdio>
#include<algorithm>
#define ll long long
#define MN (ll)1e18
using namespace std;
ll s[],s2[],mx=,a[];int top1=,top2=,top=;
int main()
{
ll x,y,l,r;
scanf("%lld%lld%lld%lld",&x,&y,&l,&r);
s[++top1]=;s2[++top2]=;
for(ll i=x;;i*=x)
{
s[++top1]=i;
if(i>MN/x)break;
}
for(ll i=y;;i*=y)
{
s2[++top2]=i;
if(i>MN/y)break;
}
for(int i=;i<=top1;++i)
for(int j=;j<=top2;++j)
if(s[i]+s2[j]>=l&&s[i]+s2[j]<=r)
a[++top]=s[i]+s2[j];
if(!top) return *printf("%lld",r-l+);
sort(a+,a+top+);
mx=max(mx,a[]-l);
mx=max(mx,r-a[top]);
for(int i=;i<=top;++i)
mx=max(mx,a[i]-a[i-]-);
cout<<mx;
return ;
}

C.

给定一棵树,一个人在x(x!=1)号点,另一个在1号点,每次行动每个人可以移动到一个相邻节点或者不动,第一个人希望回合最多,第二个人希望最少,求最多有多少个回合。

n<=2*10^5

枚举目标点,一个点可行当且仅当x到它和x的lca的距离小于1号点到lca的距离。

#include<iostream>
#include<cstdio>
#include<algorithm>
#define MD 18
#define MN 200000
using namespace std;
inline int read()
{
int x = , f = ; char ch = getchar();
while(ch < '' || ch > ''){ if(ch == '-') f = -; ch = getchar();}
while(ch >= '' && ch <= ''){x = x * + ch - '';ch = getchar();}
return x * f;
}
pair<int,int> p[MN+];
int cnt=,head[MN+],fa[MD+][MN+],dep[MN+],f[MN+],n;
struct edge{int to,next;}e[MN*+];
inline void ins(int f,int t)
{
e[++cnt]=(edge){t,head[f]};head[f]=cnt;
e[++cnt]=(edge){f,head[t]};head[t]=cnt;
}
bool cmp(pair<int,int> x,pair<int,int> y){return x.first>y.first;}
void Dfs(int x,int f)
{
fa[][x]=f;p[x]=make_pair(dep[x],x);
for(int i=head[x];i;i=e[i].next)
if(e[i].to!=f)
dep[e[i].to]=dep[x]+,Dfs(e[i].to,x);
} inline int lca(int x,int y)
{
if(dep[x]<dep[y]) swap(x,y);
for(int k=dep[x]-dep[y],j=;k;k>>=,++j)
if(k&)x=fa[j][x];
if(x==y) return x;
for(int i=MD;~i;--i)
if(fa[i][x]!=fa[i][y])
x=fa[i][x],y=fa[i][y];
return fa[][x];
} int main()
{
n=read();int x=read();
for(int i=;i<n;++i) ins(read(),read());
Dfs(,);
for(int i=;i<=MD;++i)
for(int j=;j<=n;++j)
fa[i][j]=fa[i-][fa[i-][j]];
sort(p+,p+n+,cmp);
for(int i=;i<=n;++i)
{
int z=lca(x,p[i].second);
if(dep[x]-dep[z]>=dep[z]) continue;
return *printf("%d\n",p[i].first*);
}
return ;
}

D.

给定一个长度为n(<=5000)的序列ai,定义优秀的序列是满足相邻元素相差1或者在膜7意义下相等的序列,求这个序列的两个不相交的优秀子序列满足长度之和最大。

f[i][j]表示两个序列结尾分别在i,j的最长长度

枚举i,j,对于每个i,开两个数组分别表示最后一个数是k和最后一个数膜7等于k的最长长度,然后分别转移。

#include<iostream>
#include<cstdio>
#include<cstring>
#define MN 5000
using namespace std;
inline int read()
{
int x = ,f = ; char ch = getchar();
while(ch < '' || ch > ''){if(ch == '-') f = ;ch = getchar();}
while(ch >= '' && ch <= ''){x = x * + ch - '';ch = getchar();}
return f?x:-x;
}
int n,a[MN+],f[MN+],F[],D[MN+][MN+],ans=,ha[],cnt=;
inline void R(int&x,int y){y>x?x=y:;}
int main()
{
n=read();
for(int i=;i<=n;++i)!ha[a[i]=read()]?ha[a[i]]=++cnt:;
for(int i=;i<=n;++i)
{
memset(F,,sizeof(F));
memset(f,,sizeof(f));
int Mx=D[i][];
for(int j=;j<i;++j)
R(F[a[j]%],D[i][j]),
R(f[ha[a[j]]],D[i][j]);
for(int j=i+;j<=n;++j)
{
R(D[i][j],Mx+);
R(D[i][j],max(f[ha[a[j]]],F[a[j]%])+);
if(ha[a[j]-]) R(D[i][j],f[ha[a[j]-]]+);
if(ha[a[j]+]) R(D[i][j],f[ha[a[j]+]]+);
R(F[a[j]%],D[i][j]);R(f[ha[a[j]]],D[i][j]);
R(D[j][i],D[i][j]);R(ans,D[i][j]);
}
}
cout<<ans;
return ;
}

E. Army Creation

给定一个长度为n(<=100000)的序列ai,每次询问一段区间,满足每个数字出现次数不超过k(预先给定)次的情况下最多能保留几个数字。

从前往后扫一遍,找到每个数字前面的第k个相同的数字的位置pos,右区间>=i且左区间<=pos的时候答案减1,可持久化线段树维护即可。

复杂度nlogn

#include<iostream>
#include<cstdio>
#include<vector>
#define MN 100000
using namespace std;
inline int read()
{
int x = , f = ; char ch = getchar();
while(ch < '' || ch > ''){ if(ch == '-') f = -; ch = getchar();}
while(ch >= '' && ch <= ''){x = x * + ch - '';ch = getchar();}
return x * f;
}
vector<int> v[MN+];
int n,k,num[MN+],rt[MN+],cnt=,last=,a[MN+];
struct Tree{int l,r,x;}T[]; void Modify(int x,int nx,int k)
{
int l=,r=n,mid;T[nx].x=T[x].x+;
while(l<r)
{
mid=l+r>>;
if(k<=mid)T[nx].r=T[x].r,T[nx].l=++cnt,x=T[x].l,nx=T[nx].l,r=mid;
else T[nx].l=T[x].l,T[nx].r=++cnt,x=T[x].r,nx=T[nx].r,l=mid+;
T[nx].x=T[x].x+;
}
} int Query(int x,int k)
{
int sum=,l=,r=n,mid;
while(l<r)
{
mid=l+r>>;
if(k<=mid) sum+=T[T[x].r].x,x=T[x].l,r=mid;
else x=T[x].r,l=mid+;
}
return sum+T[x].x;
} int main()
{
n=read();k=read();
for(int i=;i<=n;++i)
v[a[i]=read()].push_back(i);
for(int i=;i<=n;++i)
if(++num[a[i]]>k)
Modify(rt[i-],rt[i]=++cnt,v[a[i]][num[a[i]]-k-]);
else rt[i]=rt[i-];
for(int q=read();q;--q)
{
int l=(read()+last)%n+,r=(read()+last)%n+;
if(l>r) swap(l,r);
printf("%d\n",last=(r-l+)-Query(rt[r],l));
}
return ;
}

F.

给你n个点,支持删边,加边,询问是否是二分图。

n,q<=10^5

考虑线段树分治避免删除操作,然后带权并差集+启发式合并维护答案即可。

复杂度nlog^2n

#include<iostream>
#include<cstdio>
#include<map>
#include<vector>
#define pa pair<int,int>
#define mp(x,y) make_pair(x,y)
#define MN 100000
using namespace std;
inline int read()
{
int x = ,f = ; char ch = getchar();
while(ch < '' || ch > ''){if(ch == '-') f = ;ch = getchar();}
while(ch >= '' && ch <= ''){x = x * + ch - '';ch = getchar();}
return f?x:-x;
}
bool Ans[MN+];
map<long long,int> mp;
int n,q,cnt=,fa[MN+],W[MN+],val[MN+],size[MN+],A[MN+],B[MN+];
struct Tree{int l,r;vector<pa> x;vector<int> v;}T[MN*+]; void Ins(int x,int l,int r,pa v)
{
if(T[x].l==l&&T[x].r==r) {T[x].x.push_back(v);return;}
int mid=T[x].l+T[x].r>>;
if(r<=mid) Ins(x<<,l,r,v);
else if(l>mid) Ins(x<<|,l,r,v);
else Ins(x<<,l,mid,v),Ins(x<<|,mid+,r,v);
} void build(int x,int l,int r)
{
if((T[x].l=l)==(T[x].r=r))return;
int mid=l+r>>;
build(x<<,l,mid);
build(x<<|,mid+,r);
}
inline int getfa(int x)
{
if(fa[x]==x) return x;
int F=getfa(fa[x]);
return val[x]=val[fa[x]]^W[x],F;
}
void Solve(int k,bool flag)
{
for(int i=;i<T[k].x.size();++i)
{
int x=T[k].x[i].first,y=T[k].x[i].second;
int f1=getfa(x),f2=getfa(y);
if(size[f1]>size[f2]) swap(f1,f2);
if(f1==f2) flag|=(val[x]==val[y]);
else
{
size[f2]+=size[f1];fa[f1]=f2;
W[f1]=val[x]==val[y];
T[k].v.push_back(f1);
}
}
if(T[k].l==T[k].r) Ans[T[k].l]=flag;
else Solve(k<<,flag),Solve(k<<|,flag);
for(int i=;i<T[k].v.size();++i)
{
int x=T[k].v[i];fa[x]=x;
size[fa[x]]-=size[x];W[x]=val[x]=;
}
} int main()
{
n=read();q=read();build(,,q);
for(int i=;i<=n;++i) fa[i]=i,size[i]=,val[i]=W[i]=;
for(int i=;i<=q;++i)
{
int x=read(),y=read();
if(mp[1LL*x*MN+y])
{
Ins(,mp[1LL*x*MN+y],i-,mp(x,y));
mp[1LL*x*MN+y]=;
}
else mp[1LL*x*MN+y]=i;
A[i]=x;B[i]=y;
}
for(int i=;i<=q;++i)
{
int x=mp[1LL*A[i]*MN+B[i]];
if(x) mp[1LL*A[i]*MN+B[i]]=,Ins(,x,q,mp(A[i],B[i]));
}
Solve(,);
for(int i=;i<=q;++i) puts(Ans[i]?"NO":"YES");
return ;
}

[Educational Codeforces Round#22]的更多相关文章

  1. Educational Codeforces Round 22 E. Army Creation

    Educational Codeforces Round 22 E. Army Creation 题意:求区间[L,R]内数字次数不超过k次的这些数字的数量的和 思路:和求区间内不同数字的数量类似,由 ...

  2. Educational Codeforces Round 22.B 暴力

    B. The Golden Age time limit per test 1 second memory limit per test 256 megabytes input standard in ...

  3. Educational Codeforces Round 22 E. Army Creation 主席树 或 分块

    http://codeforces.com/contest/813/problem/E 题目大意: 给出长度为n的数组和k,  大小是1e5级别. 要求在线询问区间[l, r]权值,  权值定义为对于 ...

  4. Educational Codeforces Round 22 B. The Golden Age(暴力)

    题目链接:http://codeforces.com/contest/813/problem/B 题意:就是有一个数叫做不幸运数,满足题目的 n = x^a + y^b,现在给你一个区间[l,r],让 ...

  5. 【Educational Codeforces Round 22】

    又打了一场EDU,感觉这场比23难多了啊…… 艹还是我太弱了. A. 随便贪心一下. #include<bits/stdc++.h> using namespace std; ,ans=- ...

  6. Educational Codeforces Round 22 E. Army Creation(分块好题)

    E. Army Creation time limit per test 2 seconds memory limit per test 256 megabytes input standard in ...

  7. Educational Codeforces Round 22 补题 CF 813 A-F

    A The Contest 直接粗暴贪心 略过 #include<bits/stdc++.h> using namespace std; int main() {//freopen(&qu ...

  8. Educational Codeforces Round 40千名记

    人生第二场codeforces.然而遇上了Education场这种东西 Educational Codeforces Round 40 下午先在家里睡了波觉,起来离开场还有10分钟. 但是突然想起来还 ...

  9. [Educational Codeforces Round 63 ] D. Beautiful Array (思维+DP)

    Educational Codeforces Round 63 (Rated for Div. 2) D. Beautiful Array time limit per test 2 seconds ...

随机推荐

  1. 使用 PHP 来做 Vue.js 的 SSR 服务端渲染

    对于客户端应用来说,服务端渲染是一个热门话题.然而不幸的是,这并不是一件容易的事,尤其是对于不用 Node.js 环境开发的人来说. 我发布了两个库让 PHP 从服务端渲染成为可能.spatie/se ...

  2. HTML5 canvas绘制雪花飘落

    Canvas是HTML5新增的组件,它就像一块幕布,可以用JavaScript在上面绘制各种图表.动画等. 没有Canvas的年代,绘图只能借助Flash插件实现,页面不得不用JavaScript和F ...

  3. java的socket通信

    本文讲解如何用java实现网络通信,是一个非常简单的例子,我比较喜欢能够立马看到结果,所以先上代码再讲解具体细节. 服务端: import java.io.BufferedReader; import ...

  4. 优化从 App.config 读取配置文件

    public class AppSettingsConfig { /// <summary> ////// </summary> public static int Query ...

  5. 从PRISM开始学WPF(九)交互(完结)

    0x07交互 Notification xaml: <Window x:Class="UsingPopupWindowAction.Views.MainWindow" xml ...

  6. java double相加

    public class DoubleUtil { private static final int DEF_DIV_SCALE = 10; /** * 相加 * * @param d1 * @par ...

  7. 新概念英语(1-17)How do you do ?

    Is there a problem wtih the Customers officer? What are Michael Baker and Jeremy Short's jobs? A:Com ...

  8. tornado框架源码分析---Application类之debug参数

    先贴上Application这个类的源码. class Application(httputil.HTTPServerConnectionDelegate): """A ...

  9. SpringMVC(一):搭建一个SpringMVC helloword项目

    操作步骤: 1)下载spring framework开发包,给eclipse安装spring开发插件,如何安装开发插件&下载开发包请参考我的博文:<Spring(一):eclipse上安 ...

  10. Struts(十八):通过CURD来学习PrepareInterceptor拦截器

    PrepareInterceptor拦截器的用法: 1.若Action实现了Preparable接口,则Action方法需实现prepare()方法: 2.PrepareInterceptor拦截器S ...