BestCoder Round #61 (div.2)

2024-06-12 17:38
文章标签 round bestcoder 61 div.2

本文主要是介绍BestCoder Round #61 (div.2),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

比赛的时候过了两道,第三道超时20分钟过得

A题简单,我用了17分钟才写出来,看了界面熊大大的status,四分钟,直接把我吓傻,看了他的代码才知道,与大大之间的差距有多大:

#include <iostream>
#include <cstdio>
#include <cmath>
#include <cstring>#define LL long long#define pir pir <int,int>#define m_p make_pair#define mod 1000000007using namespace std;int n,a[1005],f[5005];int main()
{//ios::sync_with_stdio(false);//cin.tie(0);//int T;scanf("%d",&T);while(scanf("%d",&n)==1){memset(f,0,sizeof(f));for(int i=0;i<n;++i){scanf("%d",a+i);f[a[i]]++;}bool flag=false;for(int i=0;i<n;++i){for(int j=i+1;j<n;++j){f[a[i]]--;f[a[j]]--;if(f[a[i]+a[j]]>=1){flag=true;break;}f[a[i]]++;f[a[j]]++;}if(flag)break;}if(flag)puts("YES");else puts("NO");}return 0;
}
思路和代码风格都很巧妙,恩,感觉我的代码就是屌丝代码
以下是我的版本(跟大大的代码放在一起简直是献丑了TT):

#include<cstdio>
#include<cstring>
#include<algorithm>
#include<iostream>
#define MAXN 110
#define MAXM 1100
using namespace std;int n;struct node{int value,index;bool operator<(node other)const{return value<other.value;}
}s[MAXN];int bsearch(int front,int rear,int value){int mid;while(front<rear){mid=(front+rear)>>1;if(s[mid].value>=value)rear=mid;elsefront=mid+1;}return front;
}int main(){while(cin>>n){for(int i=1;i<=n;i++){cin>>s[i].value;s[i].index=i;}sort(s+1,s+n+1);for(int i=1;i<n;i++){for(int j=i+1;j<=n;j++){int sub=s[j].value-s[i].value;int pos=bsearch(1,n,sub);while(pos<=n&&s[pos].value==sub){if(s[pos].index!=s[i].index&&s[pos].index!=s[j].index){cout<<"YES"<<endl;goto next;}pos++;}}}cout<<"NO"<<endl;
next:{}}return 0;
}
B题我一次AC,一方面是运气比较好,一开始思路就是对的。另一方面不得不说,前几天的组合数学不是白看的。虽然只看了第一章的排列组合,但做这些题的时候明显感觉自己思路清晰了很多。还记得汉舟学长说过的话“要与数学这位老大哥做好朋友”。现在才有点领会到学长的意境了。

具体分类的方法见代码里的注释:

#include<iostream>
#include<algorithm>
#include<cmath>
#include<cstdio>
using namespace std;int main(){int n,s,t;while(cin>>n>>s>>t){if(s==t){if(n==1)cout<<0;elsecout<<-1;}else{if(s>1&&s<n&&t>1&&t<n&&abs(s-t)>1){//中间不挨着cout<<2;}else if(s>1&&s<n&&t>1&&t<n&&abs(s-t)==1){//中间挨着cout<<1;}else if(s>1&s<n&&(t==1||t==n)&&abs(s-t)>1){//我中间他边上不挨着cout<<2;}else if(s>1&s<n&&(t==1||t==n)&&abs(s-t)==1){//我中间他边上挨着cout<<1;}else if(t>1&t<n&&(s==1||s==n)){//他中间我边上cout<<1;}else if((s==1||s==n)&&(t==1||t==n)){//都在边上cout<<0;}}cout<<endl;}return 0;
}

C题是完全二叉树,complete binary tree 应该是程序员最喜欢的数据结构之一了吧。看见二叉树,而且是完全的,就应该兴奋起来。可惜我手速慢了。而且,代码写的不够清晰,所以导致最后debug的时候很困难,还有对stl不熟,一边写代码一边还要查资料简直不能再这样了。凡是遇到自己都觉得不清晰的代码,就应该重写吧

#include<cstdio>
#include<iostream>
#include<set>
#include<map>
#include<algorithm>
#define LL long long
using namespace std;set<LL>table;
map<LL,LL>mapp;
set<LL>ans;
LL maxvis;void init(){for(LL i=0;i<63;i++){table.insert(1LL<<i);mapp[1LL<i]=i;}
}void add(LL n){//cout<<"add"<<n<<endl;while(n>=0){ans.insert(n);n=(n+2)/2-2;}
}LL get(LL n){LL ret=0;while(n>1){ret++;n/=2;}return ret;
}void bfind(LL n){if(n<0)return ;if(n==0LL){ans.insert(0LL);return ;}if(table.count(n+2)>0){LL layer=mapp[n+2];if(layer>=maxvis){add(n);maxvis=layer;}}else{ans.insert(n);LL cengshu=get(n+1);LL shangmian=(1LL<<cengshu)-1;//这个地方写成了小于号,调了半天没发现LL left=(((1LL<<(cengshu-1))<=(n+1-shangmian))?(1LL<<(cengshu-1)):(n+1-shangmian));LL leftshangmian=shangmian/2+left;LL right=n-leftshangmian;bfind(leftshangmian-1);bfind(right-1);}
}int main(){LL n;init();//for(set<LL>::iterator i=table.begin();i!=table.end();i++)//	cout<<*i<<' ';while(cin>>n){maxvis=-1;bfind(n-1);cout<<ans.size()<<endl;//	for(set<LL>::iterator i=ans.begin();i!=ans.end();i++)//		cout<<*i<<' ';ans.clear();}return 0;
}


这篇关于BestCoder Round #61 (div.2)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



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

相关文章

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

34465A-61/2 数字万用表(六位半)

34465A-61/2 数字万用表(六位半) 文章目录 34465A-61/2 数字万用表(六位半)前言一、测DC/AC电压二、测DC/AC电流四、测电阻五、测电容六、测二极管七、保存截图流程 前言 1、6位半数字万用表通常具有200,000个计数器,可以显示最大为199999的数值。相比普通数字万用表,6位半万用表具有更高的测量分辨率和更高的测量准确度,适用于精度比较高的测

61.以太网数据回环实验(4)以太网数据收发器发送模块

(1)状态转移图: (2)IP数据包格式: (3)UDP数据包格式: (4)以太网发送模块代码: module udp_tx(input wire gmii_txc ,input wire reset_n ,input wire tx_start_en , //以太网开始发送信

Codeforces Round 971 (Div. 4) (A~G1)

A、B题太简单,不做解释 C 对于 x y 两个方向,每一个方向至少需要 x / k 向上取整的步数,取最大值。 由于 x 方向先移动,假如 x 方向需要的步数多于 y 方向的步数,那么最后 y 方向的那一步就不需要了,答案减 1 代码 #include <iostream>#include <algorithm>#include <vector>#include <string>

Codeforces#295(Div.2)A、B(模拟+BFS)

解题报告链接:点击打开链接 C. 题目链接:点击打开链接 解题思路: 对于给定的字符串,取出现次数最多的字母(可以同时有多个)。由这些字母组成长度为n的字符串,求有多少种组合。最后用数学知识即可。 完整代码: #include <algorithm>#include <iostream>#include <cstring>#include <climits>

MemSQL Start[c]UP 2.0 - Round 1A(构造)

题目链接:http://codeforces.com/problemset/problem/452/A 解题思路: 打个表暴力查找匹配。 完整代码: #include <algorithm>#include <iostream>#include <cstring>#include <complex>#include <cstdio>#include <strin

Codeforces Round #281 (Div. 2)A(构造+暴力模拟)

题目链接:http://codeforces.com/problemset/problem/493/A 解题思路: 暴力的判断,分三种情况去判断即可。注意如果之前已经被罚下场后,那么在后面的罚下情况不应该算在输出结果内。 完整代码: #include <algorithm>#include <iostream>#include <cstring>#include <co