Codeforces Round #280 (Div. 2) 解题报告 A.B.C.D.E.

2024-08-24 21:32

本文主要是介绍Codeforces Round #280 (Div. 2) 解题报告 A.B.C.D.E.,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

不知道到底是我的水平提高了还是CF的题目变水了。。。。。。

A - Vanya and Cubes

水题。。暴力枚举就可以。。

代码如下:

#include <iostream>
#include <cstdio>
#include <string>
#include <cstring>
#include <stdlib.h>
#include <math.h>
#include <ctype.h>
#include <queue>
#include <map>
#include <set>
#include <algorithm>using namespace std;
#define LL __int64
const int INF=0x3f3f3f3f;
int s[100], sum[100];
int main()
{int n, i;s[1]=1;sum[i]=1;scanf("%d",&n);for(i=2;i<=10000;i++){s[i]=s[i-1]+i;sum[i]=sum[i-1]+s[i];if(sum[i]>=n)break;}printf("%d\n",i-1);return 0;
}

B - Vanya and Lanterns

水题。。暴力找两个相邻之间的最短距离/2,然后再与边界的比较找最长距离。

代码如下:

#include <iostream>
#include <cstdio>
#include <string>
#include <cstring>
#include <stdlib.h>
#include <math.h>
#include <ctype.h>
#include <queue>
#include <map>
#include <set>
#include <algorithm>using namespace std;
#define LL __int64
const int INF=0x3f3f3f3f;
int a[2000];
int main()
{int n, l, i, j;double d, max1=-1;scanf("%d%d",&n,&l);a[0]=0;a[n+1]=l;for(i=1;i<=n;i++){scanf("%d",&a[i]);}sort(a,a+n+2);for(i=2;i<=n;i++){max1=max(max1,(a[i]-a[i-1])/2.0);}max1=max(max1,a[1]-0.0);max1=max(max1,l*1.0-a[n]);printf("%.10lf\n",max1);return 0;
}

C - Vanya and Exams

贪心。

从所需论文少的开始累加。

代码如下:

#include <iostream>
#include <cstdio>
#include <string>
#include <cstring>
#include <stdlib.h>
#include <math.h>
#include <ctype.h>
#include <queue>
#include <map>
#include <set>
#include <algorithm>using namespace std;
#define LL __int64
const int INF=0x3f3f3f3f;
struct node
{LL f, e;
}fei[110000];
int cmp(node x, node y)
{return x.e<y.e;
}
int main()
{int i;LL n, r, ave, s, sum, ss, ans=0;scanf("%I64d%I64d%I64d",&n,&r,&ave);sum=n*ave;s=0;for(i=0;i<n;i++){scanf("%I64d%I64d",&fei[i].f,&fei[i].e);s+=fei[i].f;}ss=sum-s;if(ss<=0){printf("0\n");return 0;}sort(fei,fei+n,cmp);//printf("%d\n",ss);for(i=0;i<n;i++){if(fei[i].f>=r) continue ;if(ss-(r-fei[i].f)<=0){ans+=ss*fei[i].e;break;}else{ss-=r-fei[i].f;ans+=fei[i].e*(r-fei[i].f);}//printf("%d\n",ss);}printf("%I64d\n",ans);return 0;
}

D - Vanya and Computer Game

比赛的时候想到了二分时间,找到时间后怎么判断是谁的一直没想出来。。第二天才恍然大悟。。只要判断是否整除就可以了。。。。当时为啥没想到呢。。。郁闷。。

先放大时间轴,1/x和1/y秒放大到y和x,然后二分时间,找到时间后,判断是否整除即可。

代码如下:

#include <iostream>
#include <cstdio>
#include <string>
#include <cstring>
#include <stdlib.h>
#include <math.h>
#include <ctype.h>
#include <queue>
#include <map>
#include <set>
#include <algorithm>using namespace std;
#define LL __int64
const int INF=0x3f3f3f3f;int main()
{LL n, x, y, i, z, low, high, mid, ans;scanf("%I64d%I64d%I64d",&n, &x, &y);while(n--) {scanf("%I64d",&z);low=1;high=1e16;while(low<=high) {mid=low+high>>1;if(mid/x+mid/y>=z) {high=mid-1;ans=mid;}else low=mid+1;}if(ans%x==0&&ans%y==0) puts("Both");else if(ans%x==0) puts("Vova");else puts("Vanya");}return 0;
}

E - Vanya and Field

感觉这次的E题好水。。。首先因为gcd为1,所以可以保证n个数都可以访问到而且不会重复。所以可以默认让他从横坐标为0的某点出发的。然后当纵坐标为0时,可以找到x坐标与y坐标的一个映射关系,保存下来。然后每输入一个坐标,就可以用公式来判断出是从哪个点出发的。然后找到最多的那个出发点就可以了。

代码如下:

#include <iostream>
#include <cstdio>
#include <string>
#include <cstring>
#include <stdlib.h>
#include <math.h>
#include <ctype.h>
#include <queue>
#include <map>
#include <set>
#include <algorithm>using namespace std;
#define LL __int64
const int INF=0x3f3f3f3f;
int _hash[1100000], a[1100000];
int main()
{int n, m, dx, dy, i, j, x, y, pos, max1;scanf("%d%d%d%d",&n,&m,&dx,&dy);x=y=0;for(i=0;i<n;i++){a[x]=y;x=(x+dx)%n;y=(y+dy)%n;}memset(_hash,0,sizeof(_hash));while(m--){scanf("%d%d",&x,&y);_hash[(y+n-a[x])%n]++;}max1=-1;for(i=0;i<n;i++){if(max1<_hash[i]){max1=_hash[i];pos=i;}}printf("0 %d\n",pos);return 0;
}


这篇关于Codeforces Round #280 (Div. 2) 解题报告 A.B.C.D.E.的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1103657

相关文章

【专题】2024飞行汽车技术全景报告合集PDF分享(附原数据表)

原文链接: https://tecdat.cn/?p=37628 6月16日,小鹏汇天旅航者X2在北京大兴国际机场临空经济区完成首飞,这也是小鹏汇天的产品在京津冀地区进行的首次飞行。小鹏汇天方面还表示,公司准备量产,并计划今年四季度开启预售小鹏汇天分体式飞行汽车,探索分体式飞行汽车城际通勤。阅读原文,获取专题报告合集全文,解锁文末271份飞行汽车相关行业研究报告。 据悉,业内人士对飞行汽车行业

计算机毕业设计 大学志愿填报系统 Java+SpringBoot+Vue 前后端分离 文档报告 代码讲解 安装调试

🍊作者:计算机编程-吉哥 🍊简介:专业从事JavaWeb程序开发,微信小程序开发,定制化项目、 源码、代码讲解、文档撰写、ppt制作。做自己喜欢的事,生活就是快乐的。 🍊心愿:点赞 👍 收藏 ⭐评论 📝 🍅 文末获取源码联系 👇🏻 精彩专栏推荐订阅 👇🏻 不然下次找不到哟~Java毕业设计项目~热门选题推荐《1000套》 目录 1.技术选型 2.开发工具 3.功能

Codeforces Round #240 (Div. 2) E分治算法探究1

Codeforces Round #240 (Div. 2) E  http://codeforces.com/contest/415/problem/E 2^n个数,每次操作将其分成2^q份,对于每一份内部的数进行翻转(逆序),每次操作完后输出操作后新序列的逆序对数。 图一:  划分子问题。 图二: 分而治之,=>  合并 。 图三: 回溯:

Codeforces Round #261 (Div. 2)小记

A  XX注意最后输出满足条件,我也不知道为什么写的这么长。 #define X first#define Y secondvector<pair<int , int> > a ;int can(pair<int , int> c){return -1000 <= c.X && c.X <= 1000&& -1000 <= c.Y && c.Y <= 1000 ;}int m

Codeforces Beta Round #47 C凸包 (最终写法)

题意慢慢看。 typedef long long LL ;int cmp(double x){if(fabs(x) < 1e-8) return 0 ;return x > 0 ? 1 : -1 ;}struct point{double x , y ;point(){}point(double _x , double _y):x(_x) , y(_y){}point op

Codeforces Round #113 (Div. 2) B 判断多边形是否在凸包内

题目点击打开链接 凸多边形A, 多边形B, 判断B是否严格在A内。  注意AB有重点 。  将A,B上的点合在一起求凸包,如果凸包上的点是B的某个点,则B肯定不在A内。 或者说B上的某点在凸包的边上则也说明B不严格在A里面。 这个处理有个巧妙的方法,只需在求凸包的时候, <=  改成< 也就是说凸包一条边上的所有点都重复点都记录在凸包里面了。 另外不能去重点。 int

Codeforces 482B 线段树

求是否存在这样的n个数; m次操作,每次操作就是三个数 l ,r,val          a[l] & a[l+1] &......&a[r] = val 就是区间l---r上的与的值为val 。 也就是意味着区间[L , R] 每个数要执行 | val 操作  最后判断  a[l] & a[l+1] &......&a[r] 是否= val import ja

Python:豆瓣电影商业数据分析-爬取全数据【附带爬虫豆瓣,数据处理过程,数据分析,可视化,以及完整PPT报告】

**爬取豆瓣电影信息,分析近年电影行业的发展情况** 本文是完整的数据分析展现,代码有完整版,包含豆瓣电影爬取的具体方式【附带爬虫豆瓣,数据处理过程,数据分析,可视化,以及完整PPT报告】   最近MBA在学习《商业数据分析》,大实训作业给了数据要进行数据分析,所以先拿豆瓣电影练练手,网络上爬取豆瓣电影TOP250较多,但对于豆瓣电影全数据的爬取教程很少,所以我自己做一版。 目

开题报告中的研究方法设计:AI能帮你做什么?

AIPaperGPT,论文写作神器~ https://www.aipapergpt.com/ 大家都准备开题报告了吗?研究方法部分是不是已经让你头疼到抓狂? 别急,这可是大多数人都会遇到的难题!尤其是研究方法设计这一块,选定性还是定量,怎么搞才能符合老师的要求? 每次到这儿,头脑一片空白。 好消息是,现在AI工具火得一塌糊涂,比如ChatGPT,居然能帮你在研究方法这块儿上出点主意。是不

CSS实现DIV三角形

本文内容收集来自网络 #triangle-up {width: 0;height: 0;border-left: 50px solid transparent;border-right: 50px solid transparent;border-bottom: 100px solid red;} #triangle-down {width: 0;height: 0;bor