长沙学院2022蓝桥杯选拔赛第一场
Posted CCSU_Cola
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了长沙学院2022蓝桥杯选拔赛第一场相关的知识,希望对你有一定的参考价值。
A.楼下是签到题
B.新物种
思路:需要考虑三种情况,第一种为本身要走的长度小于2H,那么要走的路程为2H,第二种情况为本身要走的距离大于2H且模H不为0,那么需要走实际距离/H+1个H,第三种情况为本身要走的距离模H为0,直接输出1,因为两个距离相等。
代码:
#include<bits/stdc++.h>
using namespace std;
int main()
{
int t;
scanf("%d",&t);
while(t--)
{
int a,b,c,d,h;
scanf("%d%d%d%d%d",&a,&b,&c,&d,&h);
double dis=sqrt((a-c)*(a-c)+(b-d)*(b-d));
int z=dis;
int x=2*h/dis;
if(z%h==0)printf("1\\n");
else if(2*h<dis)printf("%d\\n",(int)(((z/h)+1)*h/dis));
else printf("%d\\n",x);
}
}
C.报数游戏
D.星星序列
思路:用到了一个标记数组cnt[i],记录下每个元素出现的次数,后指针从第一位开始往后移动,
遇到重复出现次数超过k次的前指针就开始向后移动直到消除重复,遍历完整个序列即可,因为数字很大,所以需要采用map进行标记,时间复杂度为O(n)。
#include<bits/stdc++.h>
#define ll long long
using namespace std;
const int N = 1e7 + 10;
inline int read() {
int f = 1, x = 0; char ch;
do { ch = getchar(); if (ch == '-')f = -1; } while (ch < '0' || ch>'9');
do { x = x * 10 + ch - '0'; ch = getchar(); } while (ch >= '0' && ch <= '9');
return f * x;
}
ll a[N], n,k;
map<ll,ll>cnt;
int main()
{
n=read();k=read();
for (int i = 0; i < n; i++)a[i]=read();
int res = 1;
for (int i = 0, j = 0; i < n && j < n; i++)
{
cnt[a[i]]++;
while (cnt[a[i]]>k)cnt[a[j++]]--;
res = max(res, i - j + 1);
}
printf("%d\\n",res);
return 0;
}
E.大小即数量
思路:本题共有两个情况需要考虑,一种为数字的数量本身就小于数字,需要全部删除,另一种是大于数字,则删除大于部分。同样采用map进行标记。由于本身只有1e5个数,也可直接采用数组标记,但需将大于1e5的数直接删除。
代码:
#include<bits/stdc++.h>
using namespace std;
#define ll long long
const int maxn=1e5+10;
ll a[maxn];
int n;
map<ll,ll>mm;
int main()
{
scanf("%d",&n);
for(int i=1;i<=n;i++)
{
scanf("%lld",&a[i]);
mm[a[i]]++;
}
sort(a+1,a+1+n);
int m=unique(a+1,a+1+n)-a-1;
ll ans=0;
for(int i=1;i<=m;i++)
{
if(mm[a[i]]<a[i])ans+=mm[a[i]];
else
{
ans+=mm[a[i]]-a[i];
}
}
printf("%lld\\n",ans);
}
F.排队
G.蚌埠住了
H.有毒的数学公式
I.Mine Craft
以上是关于长沙学院2022蓝桥杯选拔赛第一场的主要内容,如果未能解决你的问题,请参考以下文章
《蓝桥杯真题》:2022年单片机省赛(第十三 / 13届第一场)