CodeForces round 967 div2 题解(A~E)
本来准备比完赛就写题解的, 但是一拖拖了一星期, 唉
最后一题没搞懂怎么做,恳请大神指教
欢迎大家在评论区提问.
A |
稳定版题面 https://cn.vjudge.net/problem/CodeForces-967A
水题, 不写题解了, 浪费空间
细节处理见代码
#include<bits/stdc++.h>
#define int long long
using namespace std;
struct tim{
int h, m;
}t[1001];
int gap(int i, int j){
return (t[j].h - t[i].h)*60 + t[j].m - t[i].m;
}
void print(int i, int dur){ //自动把分钟的延迟进位到小时
t[i].m += dur;
while(t[i].m >= 60){
t[i].m -= 60;
t[i].h ++;
}
cout<<t[i].h<<' '<<t[i].m<<endl;
}
int n, s;
signed main(){
cin>>n>>s;
t[0].h = t[0].m = 0;
for(int i = 1; i <= n; i++)
cin>>t[i].h>>t[i].m;
t[n+1].h = t[n+1].m = 1000001;
if(gap(0,1) >= s+1){
cout<<0<<' '<<0<<endl;
return 0;
}
for(int i = 1; i <= n; i++)
if(gap(i,i+1) >= 2*s+2) {
print(i,s+1);
break;
}
return 0;
}
B |
我没看官方题解, 我的做法是二分答案.
二分答案判定还是很方便的. 只需要贪心堵上出水量最大的孔(特判第一个孔)
#include<bits/stdc++.h>
#define int long long
using namespace std;
const int maxn = 1e5+5;
int s[maxn],a[maxn],n,A,B;
bool cmp(int a, int b){return a>b;}
bool check(int pos){
return a[1]*A/(s[pos]) >= B;
}
signed main(){
cin>>n>>A>>B>>a[1];
for(int i = 2; i <= n; i++) cin>>a[i];
sort(a+2,a+n+1);//特判a[1]
s[0] = 0;
for(int i = 1; i <= n; i++) s[i] = s[i-1] + a[i];
//l意为最多不堵多少个孔(区间左闭右开)
int l = 1, r = n+1, mid = (l+r)>>1;
while(r - l > 1){
mid = (l+r)>>1;
if(check(mid)) l = mid;
else r = mid;
}
cout<<n-l<<endl;
return 0;
}
C |
因为电梯和楼梯在所有楼层都有, 而且所有电梯速度一样,所以不用换电梯/楼梯, 直达最优
所以易知: 距离任意一个端点的水平距离最近的电梯/楼梯最优. 我们可以用lower_bound查找最近的电梯/楼梯
画一下图, 分类讨论一下很容易理解.
有一个小技巧: 把不合法的状态(找不到)设成inf,这样就不要特判了
再算一下坐电题和走楼梯哪种更优.
注意考虑不需要坐电梯/楼梯的情况!!! 我因为没考虑这种情况被hack了, 伤心...
代码
#include<bits/stdc++.h>
#define int long long
using namespace std;
const int maxn = 1e5+5;
int n,m, l[maxn], e[maxn] ,v, q, cl, ce;
inline int divis(int a, int b){
if(a % b == 0) return a / b;
else return a/b + 1;
}
signed main(){
cin>>n>>m>>cl>>ce>>v;
memset(l, 0x3f, sizeof l);
memset(e, 0x3f, sizeof e);
for(int i = 1; i <= cl; i++)
cin>>l[i];
for(int i = 1; i <= ce; i++)
cin>>e[i];
cin>>q;
while(q--){
int ans = 1e15+5, x1, y1, x2, y2;
cin>>x1>>y1>>x2>>y2;
if(x1 > x2){
swap(x1,x2);
swap(y1,y2);
}
if(x1 == x2){
cout<<abs(y1 - y2)<<endl;
continue;
}
//by walk(no stairs or elevators needed)
int pos1 = lower_bound(l+1, l+cl+1, y1) - l, ans1 = 1e15+5, pos2, ans2;
if(pos1 > 1) pos2 =upper_bound(l+1, l+cl+1, y1) - l - 1,
ans1 = min(abs(y1 - l[pos1])+abs(y2 - l[pos1]), abs(y1 - l[pos2])+abs(y2 - l[pos2]))
+ abs(x1 - x2);
else ans1 = abs(y1 - l[pos1])+abs(y2 - l[pos1])+ abs(x1 - x2);
//by stairs
pos1 = lower_bound(e+1, e+ce+1, y1) - e, ans2 = 1e15+5;
if(pos1 > 1) pos2 =upper_bound(e+1, e+ce+1, y1) - e - 1,
ans2 = min(abs(y1 - e[pos1])+abs(y2 - e[pos1]), abs(y1 - e[pos2])+abs(y2 - e[pos2]))
+ divis(abs(x1 - x2), v);
else ans2 = abs(y1 - e[pos1])+abs(y2 - e[pos1])+ divis(abs(x1 - x2),v);
//by elevator
ans = min(ans1, ans2);
cout<<ans<<endl;
}
return 0;
}
D |
想出了正解, 没时间写了...
先把所有服务器排个序
可以发现每个service最优的选择策略 选择的server 在排序后的序列中都是连续的
预处理出对于一个service, 以第 i 个server (或之后的server)开头, 最少选几个server
然后暴力枚举即可
#include<bits/stdc++.h>
using namespace std;
#define int long long
template<typename T>
void read(T &ans){T f = 1; char c = getchar();ans = 0;while(!isdigit(c)){if(c == '-')f = -1;c = getchar();}while( isdigit(c)){ans = ans*10 + c - '0';c = getchar();}ans *= f;}
const int maxn = 3e5 + 5, inf = 1e15;
struct server{
int c, ord;
inline bool operator <(const server &rhs) const{
return c < rhs.c;
}
}s[maxn];
int x1, x2, cnt1[maxn], cnt2[maxn], p1, p2, n;
inline int divis(int a, int b){
if(a % b == 0) return a / b;
else return a/b + 1;
}
signed main(){
read(n), read(x1), read(x2);
for(int i = 1; i <= n; i++){
read(s[i].c); s[i].ord = i;
}
sort(s + 1, s + n + 1);
memset(cnt1, 0x3f, sizeof cnt1);
memset(cnt2, 0x3f, sizeof cnt2);
for(int i = 1; i <= n; i++){
cnt1[i] = divis(x1, s[i].c);
cnt2[i] = divis(x2, s[i].c);
}
p1 = p2 = inf;
for(int i = 1; i <= n; i++){
if(i + cnt1[i] <= n && cnt1[i] + cnt2[i + cnt1[i]] + i - 1 <= n){
p1 = i, p2 = i + cnt1[i];
break;
}
if(i + cnt2[i] <= n && cnt2[i] + cnt1[i + cnt2[i]] + i - 1 <= n){
p1 = i + cnt2[i], p2 = i;
break;
}
}
if(p1 == inf){
puts("No");
}
else {
puts("Yes");
printf("%lld %lld\n", cnt1[p1], cnt2[p2]);
for(int i = p1; i < p1 + cnt1[p1]; i++){
printf("%lld ", s[i].ord);
}
puts("");
for(int i = p2; i < p2 + cnt2[p2]; i++){
printf("%lld ", s[i].ord);
}
puts("");
}
return 0;
}
未完待续.....
CodeForces round 967 div2 题解(A~E)的更多相关文章
- [Codeforces Round #461 (Div2)] 题解
[比赛链接] http://codeforces.com/contest/922 [题解] Problem A. Cloning Toys [算法] 当y = 0 , 不可以 当 ...
- Codeforces Round #407 div2 题解【ABCDE】
Anastasia and pebbles 题意:你有两种框,每个框可以最多装k重量的物品,但是你每个框不能装不一样的物品.现在地面上有n个物品,问你最少多少次,可以把这n个物品全部装回去. 题解:其 ...
- Codeforces Round #467(Div2)题解
凌晨起来打CF,0:05,也是我第一次codeforces 第一题: 我刚开始怀疑自己读错题了,怎么会辣么水. 判除了0的数字种类 #include <cstdio> ; ]; int m ...
- Codeforces Round#704 Div2 题解(A,B,C,D,E)
FST ROUND !!1 A Three swimmers: 直接整除一下向上取整就好了: #include <bits/stdc++.h> using namespace std; t ...
- Codeforces Round#687 Div2 题解
打这场的时候迷迷糊糊的,然后掉分了( A Prison Break: 题面很复杂,但是题意很简单,仅需求出从这个点到四个角的最大的曼哈顿距离即可 #include <bits/stdc++.h& ...
- CodeForces Round #516 Div2 题解
A. Make a triangle! 暴力... 就是给你三个数,你每次可以选一个加1,问最少加多少次能构成三角形 #include <bits/stdc++.h> #define ll ...
- Codeforces Round #539 div2
Codeforces Round #539 div2 abstract I 离散化三连 sort(pos.begin(), pos.end()); pos.erase(unique(pos.begin ...
- Codeforces Round #543 Div1题解(并不全)
Codeforces Round #543 Div1题解 Codeforces A. Diana and Liana 给定一个长度为\(m\)的序列,你可以从中删去不超过\(m-n*k\)个元素,剩下 ...
- Codeforces Round #545 Div1 题解
Codeforces Round #545 Div1 题解 来写题解啦QwQ 本来想上红的,结果没做出D.... A. Skyscrapers CF1137A 题意 给定一个\(n*m\)的网格,每个 ...
随机推荐
- JS实现继承的几种方式(转)
转自:幻天芒的博客 前言 JS作为面向对象的弱类型语言,继承也是其非常强大的特性之一.那么如何在JS中实现继承呢?让我们拭目以待. JS继承的实现方式 既然要实现继承,那么首先我们得有一个父类,代码如 ...
- Eclipse编写ExtJS5卡死问题
本篇以eclipse为例,导入后在编译时很容易出现eclipse的卡死现象,这主要是js文件的校验引起的. 我们可通过如下方法进行配置: 打开该项目的.project文件,删除如下配置即可: < ...
- 发布WebApi项目时,提示未包含bin\yourDocumentationFile.xml文档文件
Open your publishprofile (*.pubxml) and include this code into "Project" element: <Item ...
- Caused by: java.net.ConnectException: Connection refused: master/192.168.3.129:7077
1:启动Spark Shell,spark-shell是Spark自带的交互式Shell程序,方便用户进行交互式编程,用户可以在该命令行下用scala编写spark程序. 启动Spark Shell, ...
- 一脸懵逼学习Linux的Shell编程
1:什么是Shell??? (1)Shell是用户与内核进行交互操作的一种接口,目前最流行的Shell称为bash Shell(2)Shell也是一门编程语言<解释型的编程语言>,即she ...
- [转]PyCharm安装及使用
https://www.jianshu.com/p/042324342bf4 PyCharm 搭建环境 1.win10_X64,其他Win版本也可以. 2.PyCharm版本:Professional ...
- 从oracle导出数据成csv,将csv导入mongodb问题
- C# 之 4个访问修饰符和8个声明修饰符详解
一.4个访问修饰符(是添加到类.结构或成员声明的关键字) [1] Public:公有的,是类型和类型成员的访问修饰符.对其访问没有限制. [2] Internal:内部的,是类型和类型成员的访问修饰符 ...
- postgresql 查询某一个表中的所有字段
select * from information_schema.columns where table_schema='public' and table_name='表名称 ';
- TopCoder SRM502 Div1 500 贪心 01背包
原文链接https://www.cnblogs.com/zhouzhendong/p/SRM502-500.html SRM502 Div1 500 好题. 首先,如果已经确定了解决所有问题的优先级, ...