A.线性判断。

#include<bits/stdc++.h>
using namespace std; int n,a[] = {}; int main()
{
ios::sync_with_stdio();
cin >> n;
for(int i = ;i <= n;i++) cin >> a[i];
int t = ;
while(a[t] > a[t-]) t++;
while(a[t] == a[t-]) t++;
while(a[t] < a[t-]) t++;
if(t > n) cout << "YES" << endl;
else cout << "NO" << endl;
return ;
}

B.map转换一下。

#include<bits/stdc++.h>
using namespace std; map<char,char> mp;
string s,s1,s2;
int main()
{
ios::sync_with_stdio();
cin >> s1 >> s2 >> s;
for(int i = ;i < ;i++)
{
mp[s1[i]] = s2[i];
mp[s1[i]+'A'-'a'] = s2[i]+'A'-'a';
}
for(int i = ;i < s.length();i++)
{
if(mp.count(s[i])) cout << mp[s[i]];
else cout << s[i];
}
cout << endl;
return ;
}

C.先求评委前缀和,若要某方案符合,则必须所有n个点在k个评委的评分间隔内,枚举每个评委,对应一个点,判断是否符合要求即可,注意重复的情况。

#include<bits/stdc++.h>
using namespace std; int n,k,a[],b[];
map<int,int> mp,ok; int main()
{
ios::sync_with_stdio();
cin >> k >> n;
for(int i = ;i <= k;i++) cin >> a[i];
for(int i = ;i <= k;i++) a[i] += a[i-];
for(int i = ;i <= k;i++) mp[a[i]] = ;
for(int i = ;i <= n;i++) cin >> b[i];
for(int i = n;i >= ;i--) b[i] -= b[];
int ans = ;
for(int i = ;i <= k;i++)
{
int flag = ;
for(int j = ;j <= n;j++)
{
if(!mp.count(a[i]+b[j]))
{
flag = ;
break;
}
}
if(flag && !ok.count(a[i]))
{
ans++;
ok[a[i]] = ;
}
}
cout << ans << endl;
return ;
}

D.先对人和钥匙排序,最优的结果肯定是人在钥匙中连续的某一段,暴力枚举每一段就可以了。

#include<bits/stdc++.h>
using namespace std; int n,k,p,a[],b[]; int main()
{
ios::sync_with_stdio();
cin >> n >> k >> p;
for(int i = ;i <= n;i++) cin >> a[i];
for(int i = ;i <= k;i++) cin >> b[i];
sort(a+,a++n);
sort(b+,b++k);
int ans = INT_MAX;
for(int i = ;i+n- <= k;i++)
{
int maxx = ;
for(int j = ;j <= n;j++)
{
int t = i+j-;
maxx = max(maxx,abs(a[j]-b[t])+abs(b[t]-p));
}
ans = min(ans,maxx);
}
cout << ans << endl;
return ;
}

E.给每个数字开个set,储存每个数字下标,原数组排序一下,从小到大开始操作,用树状数组计数。

#include<bits/stdc++.h>
using namespace std; int n,a[],tree[] = {};
set<int> s[]; inline int lowbit(int x)
{
return x&-x;
} void update(int pos,int x)
{
while(pos <= n)
{
tree[pos] += x;
pos += lowbit(pos);
}
} int getsum(int pos)
{
int sum = ;
while(pos > )
{
sum += tree[pos];
pos -= lowbit(pos);
}
return sum;
} int main()
{
ios::sync_with_stdio();
cin >> n;
for(int i = ;i <= n;i++)
{
cin >> a[i];
s[a[i]].insert(i);
update(i,);
}
sort(a+,a++n);
int now = ;
long long ans = ;
for(int i = ;i <= n;i++)
{
int t = a[i];
auto it = s[t].lower_bound(now);
if(it == s[t].end())
{
ans += getsum(n)-getsum(now);
it = s[t].lower_bound();
now = ;
}
ans += getsum(*it)-getsum(now);
now = *it;
update(*it,-);
s[t].erase(it);
}
cout << ans << endl;
return ;
}

F.要求最大的d,使得 

枚举每一个可能的 中d的值,对每一个可能的值计算d再判断。

#include<bits/stdc++.h>
using namespace std; long long n,k,a[],b[]; int main()
{
ios::sync_with_stdio();
cin >> n >> k;
int cnt = ;
long long sum = k;
for(int i = ;i <= n;i++)
{
cin >> a[i];
sum += a[i];
for(int j = ;j*j <= a[i];j++)
{
b[++cnt] = j;
b[++cnt] = (a[i]+j-)/j;
}
}
sort(b+,b++cnt);
cnt = unique(b,b++cnt)-b-;
long long ans = ;
for(int i = ;i <= cnt;i++)
{
long long now = ;
for(int j = ;j <= n;j++) now += (a[j]+b[i]-)/b[i];
if(sum/now >= b[i]) ans = max(ans,sum/now);
}
cout << ans << endl;
return ;
}

Codeforces_831的更多相关文章

随机推荐

  1. 6.6 hadoop作业调优

    提高速度和性能.可以从下面几个点去优化 可以在本地运行调试来优化性能,但是本地和集群是完全不同的环境,数据流模式也截然不同,性能优化要在集群上测试.有些问题如(内存溢出)只能在集群上重现. HPROF ...

  2. Magicodes.IE编写多框架版本支持和执行单元测试

    背景 很多情况下,我们编写了一些工具库之后,往往在某些框架版本中会出现一些问题,比如本人最近写的一个导入导出的工具库Magicodes.IE(GitHub:https://github.com/xin ...

  3. 用ES5实现ES6的数组方法map

    先举个常见的栗子: var arr = [1,2,3,4,6,7,8,9,12,3,25,63,100] var arr2 = arr.map(item => item += 1) consol ...

  4. Java AOP的底层实现原理

    Java AOP的底层实现原理 一.什么是AOP 1.AOP:Aspect Oriented Programming(面向切面编程),OOP是面向对象编程,AOP是在OOP基础之上的一种更高级的设计思 ...

  5. python防止字符串转义

    部分转自:https://www.cnblogs.com/hellofengying/p/10183057.html 今天再打开文件名时,出现了错误,如下: In []: path='D:\Code\ ...

  6. 初始 Kafka Consumer 消费者

    温馨提示:整个 Kafka 专栏基于 kafka-2.2.1 版本. 1.KafkaConsumer 概述 根据 KafkaConsumer 类上的注释上来看 KafkaConsumer 具有如下特征 ...

  7. VUE CLI环境搭建文档

    VUE CLI环境搭建文档 1.安装Node.js 下载地址 https://nodejs.org/zh-cn/download/ 2.全局安装VUE CLI win+R键打开运行cmd窗口输入一下代 ...

  8. 悄摸直播(三)—— 搭建rtmp服务器(smart_rtmpd - rtmp服务器搭建)

    悄摸直播 -- javaCV实现本机摄像头画面远程直播 搭建rtmp服务器 一.素材 rtmp服务器:smart_rtmpd ffmpeg工具:ffmpeg.exe 二.搭建 1.下载smart_rt ...

  9. springboot2 整合mongodb

    在springboot2中使用MongoDB 1.引入依赖 <dependency> <groupId>org.springframework.boot</groupId ...

  10. BFC 是什么东西?

    以下是本人理解的 BFC  和 官方文档BFC资料 . BFC 是页面元素的隐藏属性,全称 : Block Formatting Context 作用: 可以清除子元素浮动后不良效果在线效果地址:ht ...