Codeforces Global Round 2

题目链接:https://codeforces.com/contest/1119

A. Ilya and a Colorful Walk

题意:

给出n个数,问从一个数到另外一个不同数的最长距离是多少。

题解:

从前往后,从后往前扫两遍即可。证明可用反证法,这里略去。

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N = 3e5 + ;
int n;
int c[N];
int main() {
ios::sync_with_stdio(false);cin.tie();
cin >> n;
for(int i = ; i <= n ;i++) {
cin >> c[i] ;
}
int ans = ;
for(int i = ; i <= n ;i++) {
if(c[i] != c[]) ans=max(i - , ans);
}
for(int i = n - ; i >= ; i--) {
if(c[i] != c[n]) ans=max(n - i, ans);
}
cout << ans;
return ;
}

B. Alyona and a Narrow Fridge

题意:

给一个冰箱n行2列,然后n个瓶子,每个瓶子都有一个高度。现在要把最多的前k个瓶子放进冰箱里面去,最后会形成若干个隔层,每个隔层中最多两个瓶子。现在要求确定这个k最大为多少。

题解:

放瓶子的话肯定是贪心放的,将最高的尽可能放入一个隔层中。最后二分判断一下就行了。

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N = 1e3 + ;
int n, h;
int a[N], b[N];
bool check(int x) {
for(int i = ; i <= x ; i++) b[i] = a[i];
sort(b + , b + x + ) ;
int tmp = h;
for(int i = x; i >= ; i -= ) {
int j = max(, i - ) ;
tmp -= max(b[i], b[j]) ;
if(tmp < ) break ;
}
return tmp >= ;
}
int main() {
ios::sync_with_stdio(false);cin.tie();
cin >> n >> h;
for(int i = ; i <= n ;i++)
cin >> a[i] ;
int l = , r = n + , mid ;
while(l < r) {
mid = (l + r) >> ;
if(check(mid)) l = mid + ;
else r = mid;
}
cout << l - ;
return ;
}

C. Ramesses and Corner Inversion

题意:

给出两个n*m的01矩阵,现在每次可以选择任意一个有四个角的子矩阵(不存在为长度为1的边),并且将四个角取反,问最后是否能将第一个矩阵变为第二个矩阵。

题解:

考虑每次选择(1,1),(1,y),(x,1),(x,y)这样的四个点,那么我们就能够让所有除开第一行第一列的值都与第二个矩阵相等。

现在就只剩下第一行第一列了,如果每行、每列的奇偶性两个矩阵相等,那么剩下的第一行第一列必然也与第二个矩阵相等的。所以就这么判断一下就好了。

代码如下:

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N = ;
int a[N][N], b[N][N] ;
int n, m ;
int main() {
ios::sync_with_stdio(false);cin.tie();
cin >> n >> m ;
for(int i = ; i <= n ; i++) {
for(int j = ; j <= m ; j++) {
cin >> a[i][j] ;
}
}
for(int i = ; i <= n ; i++) {
for(int j = ; j <= m ; j++) {
cin >> b[i][j] ;
}
}
int f = ;
for(int i = ; i <= n ; i++) {
int cnt1 = , cnt2 = ;
for(int j = ; j <= m ; j++) {
if(a[i][j]) cnt1++;
if(b[i][j]) cnt2++;
}
if((cnt1 & ) != (cnt2 & )) f = ;
}
for(int i = ; i <= m ; i++) {
int cnt1 = , cnt2 = ;
for(int j = ; j <= n ; j++) {
if(a[j][i]) cnt1++;
if(b[j][i]) cnt2++;
}
if((cnt1 & ) != (cnt2 & )) f = ;
}
if(f) cout << "No" ;
else cout << "Yes" ;
return ;
}

D. Frets On Fire

题意:

给出n个数字,然后有多个询问,每次询问一个区间[L,R],回答这n个数字从L起加到R中所有数的集合中有多少个元素。

题解:

首先可以发现这题中数的位置顺序不影响答案,那么我们可以对其排序。接下来就考虑每一个数的贡献。

假设我们现在考虑ai的贡献,设di = ai+1 - ai,D = R - L,如果di <= D,那么很显然贡献就为di;如果di > D,此时贡献就为D,因为多出的那一部分必然会被ai+1给遍历到,我们之后考虑ai+1的时候计算就行了,这样就可以不重复也不遗漏了。

具体做法的话就需要维护差值前缀和,然后对于每次询问二分查找位置,计算就行了。

代码如下:

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N = 2e5 + ;
int n;
ll a[N], s[N], sum[N]; int main() {
ios::sync_with_stdio(false);cin.tie() ;
cin >> n;
for(int i = ; i <= n; i++) {
cin >> a[i] ;
}
sort(a + , a + n + );
int l = unique(a + , a + n + ) - a - ;
for(int i = ; i < l ; i++) s[i] = a[i + ] - a[i] ;
sort(s + , s + l) ;
for(int i = ; i < l ; i++) sum[i] =sum[i - ] + s[i] ;
int q;
ll x, y;
cin >> q;
while(q--) {
cin >> x >> y ;
ll d = y - x + ;
int p = upper_bound(s + , s + l, d) - s - ;
ll ans = sum[p] ;
ans += 1ll * (l - p) * d;
cout << ans << ' ' ;
}
return ;
}

E. Pavel and Triangles

题意:

给出a0,a1...an-1,分别表示有a1个20长度的木棍,有a2个21长度的木棍...有an-1个2n-1长度的木棍。现在问怎么选取木棍,使得拼出三角形的数量最多(每个三角形由三根木棍拼成)。

题解:

通过分析就会发现,木棍的组合方式就只有(i,i,i)或者(i,j,j),其中i < j。这两种方式都是需要3根木棍,我们考虑贪心的方法来选取:

从后往前遍历,统计当前对数pairs,如果当前有奇数个并且pairs > 0,那么我们就用这剩下的一个随便与后面的一个pair配对,这样肯定是最优的。最后利用pairs统计答案即可。

代码如下:

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N = ;
int n;
int a[N];
int main() {
ios::sync_with_stdio(false);cin.tie();
cin >> n;
for(int i = ; i <= n ; i++) cin >> a[i] ;
ll pairs = ;
ll ans = ;
for(int i = n ; i >= ;i--) {
pairs += a[i] / ;
if(a[i] & && pairs > ) {
ans++;
pairs--;
}
}
ans += pairs * / ;
cout << ans ;
return ;
}

Codeforces Global Round 2 题解的更多相关文章

  1. Codeforces Global Round 3 题解

    这场比赛让我上橙了. 前三题都是大水题,不说了. 第四题有点难想,即使想到了也不能保证是对的.(所以说下面D的做法可能是错的) E的难度是 $2300$,但是感觉很简单啊???说好的歪果仁擅长构造的呢 ...

  2. Codeforces Global Round 4 题解

    技不如人,肝败吓疯…… 开场差点被 A 题意杀了,幸好仔细再仔细看,终于在第 7 分钟过掉了. 跟榜.wtf 怎么一群人跳题/倒序开题? 立刻紧张,把 BC 迅速切掉,翻到了 100+. 开 D.感觉 ...

  3. Codeforces Global Round 16题解

    E. Buds Re-hanging 对于这个题该开始还是没想法的,但这显然是个思维题,还是要多多动手推样例,实践一下. 简化题意:给定一个有根树,规定某个点为树干,当且仅当这个点不是根,且这个点至少 ...

  4. Codeforces Global Round 1 (A-E题解)

    Codeforces Global Round 1 题目链接:https://codeforces.com/contest/1110 A. Parity 题意: 给出{ak},b,k,判断a1*b^( ...

  5. Codeforces Global Round 11 个人题解(B题)

    Codeforces Global Round 11 1427A. Avoiding Zero 题目链接:click here 待补 1427B. Chess Cheater 题目链接:click h ...

  6. CodeForces Global Round 1

    CodeForces Global Round 1 CF新的比赛呢(虽然没啥区别)!这种报名的人多的比赛涨分是真的快.... 所以就写下题解吧. A. Parity 太简单了,随便模拟一下就完了. B ...

  7. Codeforces Global Round 1 - D. Jongmah(动态规划)

    Problem   Codeforces Global Round 1 - D. Jongmah Time Limit: 3000 mSec Problem Description Input Out ...

  8. Codeforces Global Round1 简要题解

    Codeforces Global Round 1 A 模拟即可 # include <bits/stdc++.h> using namespace std; typedef long l ...

  9. Codeforces Global Round 1 (CF1110) (未完结,只有 A-F)

    Codeforces Global Round 1 (CF1110) 继续补题.因为看见同学打了这场,而且涨分还不错,所以觉得这套题目可能会比较有意思. 因为下午要开学了,所以恐怕暂时不能把这套题目补 ...

随机推荐

  1. Oracle集合

    --union 并集 select * from emp where ename like '%A%' union select * from emp where ename like '%M%'; ...

  2. win7下配置spark

    1.安装jdk(配置JAVA_HOME,CLASSPATH,path) 2.安装scala(配置SCALA_HOME,path) 3.安装spark Spark的安装非常简单,直接去Download ...

  3. CsvHelper文档-6类型转换

    CsvHelper文档-6类型转换 CsvHelper使用类型转换器来转换string到对象,或者对象到string: ITypeConverter 类型转换器的结构,必须实现: public int ...

  4. Linux学习——操作文件与目录

    1. ls:列出文件及目录信息. 命令格式:ls [选项] ... 常用选项: -a 显示指定目录下所有子目录与文件,包括隐藏文件. -A 显示指定目录下所有子目录与文件,包括隐藏文件.但不列出“.” ...

  5. scrum立会报告+燃尽图(第三周第一次)

    此作业要求参见:https://edu.cnblogs.com/campus/nenu/2018fall/homework/2284 项目地址:https://coding.net/u/wuyy694 ...

  6. C#高级编程 (第六版) 学习 第四章:继承

    第四章 继承 1,继承的类型 实现继承: 一个类派生于一个基类型,拥有该基类型所有成员字段和函数. 接口继承 一个类型只继承了函数的签名,没有继承任何实现代码.   2,实现继承 class MyDe ...

  7. nodejs 中on 和 emit

    首先测试用例: var EventEmitter = require('events').EventEmitter var life = new EventEmitter(); // life.on( ...

  8. PAT L1-034 点赞

    https://pintia.cn/problem-sets/994805046380707840/problems/994805098188750848 微博上有个“点赞”功能,你可以为你喜欢的博文 ...

  9. laraven安装记录

    版本4.2.11 下载地址:https://codeload.github.com/laravel/laravel/zip/v4.2.11 步骤: 1.解压到目录 2.下载composer,并放到/u ...

  10. c语言基础笔记

    一 :数据类型 1.float类型,在输出的时候可以使用 .数字  来把浮点数精确到小数点后几位,比如 printf("%.3f",float)精确到小数点后三位,不足补0 2.字 ...