博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Codeforces Round #525 (Div. 2)
阅读量:6259 次
发布时间:2019-06-22

本文共 5086 字,大约阅读时间需要 16 分钟。

A Ehab and another construction problem

水题,不解释。

#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;typedef long long ll;const int Maxn=110000;int main() { int n; scanf("%d",&n); for(int i=1;i<=n;i++) for(int j=1;j<=n;j++) if(i%j==0&&i*j>n) { printf("%d %d",i,j); return 0; } printf("-1"); return 0;}

B Ehab and subtraction

排个序扫一遍就好了。

#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;typedef long long ll;const int Maxn=110000;int n,k,a[Maxn];int main() { scanf("%d%d",&n,&k); for(int i=1;i<=n;i++) scanf("%d",&a[i]); sort(a+1,a+n+1); int temp=0,now=1; for(int i=1;i<=k;i++) { while(now!=n&&a[now]==temp) now++; printf("%d\n",a[now]-temp); temp=a[now]; } return 0;}

C Ehab and a 2-operation task

先用n次操作变成模n递增,然后直接模n即可。

#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;typedef long long ll;const int Maxn=110000;int n,k,a[Maxn];int main() { scanf("%d",&n); for(int i=1;i<=n;i++) scanf("%d",&a[i]); for(int i=1;i<=n;i++) a[i]%=n; int temp=0; printf("%d\n",n+1); for(int i=n;i;i--) { a[i]+=temp;a[i]%=n; int zhy=(i-1-a[i]+n)%n; printf("1 %d %d\n",i,zhy); temp+=zhy; } printf("2 %d %d\n",n,n); return 0;}

D Ehab and another another xor problem

这道题我的做法是这样的。

从高到低来枚举,先判断a,b从当前位开始的大小关系,如果a==b,那么直接计算每一位是什么即可。

否则,假设a<b,判断a和b异或当前位的大小关系,如果异或后a>b,那么说明a这一位为0,b这一位为1,然后再用一次判断来再次确定ab的大小关系。

如果异或后a<b,那么再判断a异或当前位与b的大小关系,如果异或后a>b,那么a,b这一位都是0,否则都是1。

如果a>b,反之即可。

#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;typedef long long ll;const int Maxn=110000;int main() { int flag,x; printf("? 0 0\n"); fflush(stdout); scanf("%d",&flag); int tempa=0,tempb=0; for(int i=1<<29;i;i>>=1) { if(flag==0) { printf("? %d %d\n",tempa|i,tempb); fflush(stdout); scanf("%d",&x); if(x==-1) tempa|=i,tempb|=i; } else if(flag==-1) { printf("? %d %d\n",tempa|i,tempb|i); fflush(stdout); scanf("%d",&x); if(x==1) { tempb|=i; printf("? %d %d\n",tempa,tempb); fflush(stdout); scanf("%d",&flag); } else { printf("? %d %d\n",tempa|i,tempb); fflush(stdout); scanf("%d",&x); if(x==-1) tempa|=i,tempb|=i; } } else { printf("? %d %d\n",tempa|i,tempb|i); fflush(stdout); scanf("%d",&x); if(x==-1) { tempa|=i; printf("? %d %d\n",tempa,tempb); fflush(stdout); scanf("%d",&flag); } else { printf("? %d %d\n",tempa,tempb|i); fflush(stdout); scanf("%d",&x); if(x==1) tempa|=i,tempb|=i; } } } printf("! %d %d\n",tempa,tempb); fflush(stdout); return 0;}

E Ehab and a component choosing problem

读错题了。。尴尬。我看成了选一个联通块,最大化点权和与点数的比值,还以为是01分数规划的板子,而且我还不会。。

实际上是让你选若干个联通块,最大化联通块点权和与联通块个数的比值。

那就先求出最大的联通块大小,然后贪心选就好了。。

#include
#include
#include
using namespace std;typedef long long ll;const int Maxn=610000;int to[Maxn],nxt[Maxn],first[Maxn],tot=1;int ans,a[Maxn],n,u,v;ll sxz=0x8000000000000000;inline void add(int u,int v) { to[tot]=v; nxt[tot]=first[u]; first[u]=tot++; to[tot]=u; nxt[tot]=first[v]; first[v]=tot++;}ll dp1(int root,int fa) { ll zhy=a[root]; for(int i=first[root];i;i=nxt[i]) if(to[i]!=fa) zhy+=max(dp1(to[i],root),0ll); sxz=max(sxz,zhy); return zhy;}ll dp2(int root,int fa) { ll zhy=a[root]; for(int i=first[root];i;i=nxt[i]) if(to[i]!=fa) zhy+=max(dp2(to[i],root),0ll); if(zhy==sxz) { ans++; return 0; } return zhy;}int main() {// freopen("test.in","r",stdin); scanf("%d",&n); for(int i=1;i<=n;i++) scanf("%d",&a[i]); for(int i=1;i

F Ehab and a weird weight formula

大概就是有一个结论,就是如果把最小的点作为根,那么越往下点权越大,那就可以倍增一下,越往上要比没有跑到最上面要更优,那就dfs,依次更新所有的点,具体可以参考代码。

#include
#include
#include
using namespace std;typedef long long ll;const int Maxn=1100000;int to[Maxn],nxt[Maxn],first[Maxn],tot=1;int f[Maxn][21],a[Maxn],n,u,v;ll ans;inline void add(int u,int v) { to[tot]=v; nxt[tot]=first[u]; first[u]=tot++; to[tot]=u; nxt[tot]=first[v]; first[v]=tot++;}void dfs(int root,int fa) { ll temp=0x7fffffffffffffff; for(int i=1;i<=20;i++) { temp=min(temp,1ll*i*a[f[root][i-1]]); f[root][i]=f[f[root][i-1]][i-1]; } temp+=a[root];if(root!=fa) ans+=temp; for(int i=first[root];i;i=nxt[i]) if(to[i]!=fa) { f[to[i]][0]=root; dfs(to[i],root); }}int main() {// freopen("test.in","r",stdin); scanf("%d",&n); a[0]=0x7fffffff;int root=0; for(int i=1;i<=n;i++) { scanf("%d",&a[i]); if(a[root]>a[i]) root=i; } for(int i=1;i

看来还是自己太菜了啊,每次就能做4道题,每次都是第五题当时不会做一考完就想出来了,看来以后还是要多练习,一定要相信自己能做出来,冷静思考。

转载于:https://www.cnblogs.com/shanxieng/p/10069032.html

你可能感兴趣的文章
从分类,排序,top-k多个方面对推荐算法稳定性的评价
查看>>
006_ssl监测及评分
查看>>
ES6中的模块
查看>>
ubuntu16.04 登录密码破解方法
查看>>
Retrofit2.0+OkHttp打印Request URL(请求地址参数)
查看>>
19-hadoop-fof好友推荐
查看>>
自己定义View学习之12/7(进度条之混合模式)
查看>>
Android零基础入门第5节:善用ADT Bundle,轻松邂逅女神
查看>>
momentum公式
查看>>
Git合并最近的commit
查看>>
面向对象高级——Object类、包装类以及匿名内部类
查看>>
(转)Mybatis insert后返回主键给实体对象(Mysql数据库)
查看>>
SFTP环境搭建及客户代码调用公共方法封装
查看>>
功能的权衡——推荐功能做不做?
查看>>
用oradebug short_stack及strace -p分析oracle进程是否dead或出现故障
查看>>
Tensorflow 之 TensorBoard可视化Graph和Embeddings
查看>>
jquery easyui里datagrid用法记录
查看>>
【转】C++标准转换运算符const_cast
查看>>
ssh密码
查看>>
常用的HTML富文本编译器UEditor、CKEditor、TinyMCE、HTMLArea、eWebEditor、KindEditor简介...
查看>>