比赛链接:Dashboard - Codeforces Round #792 (Div. 1 + Div. 2) - Codeforces

C. Column Swapping

题意:

给定一个n*m大小的二维数组,要求只进行一次两列交换,使得得到的新数组的每行都是不减的。特别的,允许交换的两列是相同列。

思路:构造

可以考虑复制一份数组,并将其排序,那么两个数组中出现数字大小不同的列就是需要进行交换的列。

设需要交换的列的数量为num:

◇ 当num=0,无需交换,可以直接选择交换1 1。
◇ 当num=2时,尝试交换两列,并判断交换后,每行的这两列位置的数字是否已与排序后的该位置的数字相等。
◇ 当num>2时,那么需要交换的次数是大于1的,故无法满足要求。

参考代码:

#include <bits/stdc++.h>
#define LL long long
using namespace std; const int N = 200010; int n, m;
vector<int> v[N], nv[N]; bool check(int c1, int c2)
{
for(int i = 0; i < n; i++)
if(v[i][c1] != nv[i][c2] || v[i][c2] != nv[i][c1]) return false;
return true;
} void solve()
{
cin >> n >> m;
for(int i = 0; i < n; i++) v[i].clear(); for(int i = 0; i < n; i++) {
for(int j = 0; j < m; j++) {
int x;
scanf("%d", &x);
v[i].push_back(x);
}
nv[i] = v[i];
sort(nv[i].begin(), nv[i].end());
} int pos1 = -1, pos2 = -1;
bool ok = true;
for(int i = 0; i < n; i++) {
for(int j = 0; j < m; j++) {
if(v[i][j] != nv[i][j]) {
if(pos1 == -1 || pos1 == j) pos1 = j;
else if(pos2 == -1 || pos2 == j) pos2 = j;
else ok = false;
}
}
} if(!ok) puts("-1");
else {
if(pos1 == -1 && pos2 == -1) puts("1 1");
else if(check(pos1, pos2)) printf("%d %d\n", pos1 + 1, pos2 + 1);
else puts("-1");
}
} int main()
{
int test;
cin >> test;
while(test--) solve(); return 0;
}

D. Traps

题意:

给定一个大小为n的数组a[]为基础花费,以及最大跳过次数k:每次跳过可直接越过一格,但同时,后续走的每一格都增加1的附加花费。当从 i-1 走到 i 且已进行 cnt 次跳过操作时,此次花费为ai + cnt。求从0走到n所需的最小花费。

思路:贪心 构造

取 ai + i 最大的 min(n, k) 个格子跳过,然后模拟一下求总花费即可。

证明:

☆ 跳过次数应为min(n,k):

  假设当前跳过次数为K,且仍有可跳过的格子且还有跳过次数,那么考虑跳过最后一个未跳过的格子,最终的花费必定只减不增。因此,跳过次数越多,结果越优。

☆ 取 ai + i 较大的格子跳过:

  假设有ax + x > ay + y,若只跳过x和y其中某一格,有两种情况,其中二者出现差异的部分仅在区间 [x,y]内,若假设此前跳过了cnt步,则有:

  ① 跳过x:cost1 = sum[x + 1,y] + (cnt + 1) * (y - x).

  ② 跳过y:cost2 = sum[x,y - 1] + cnt * (y - x).

  进而,cost1 - cost2 = ay - ax + y - x = ay + y - (ax + x) < 0 ,即跳过x的花费比跳过y更小。

  因此,应考虑优先跳过 ai + i 较大的格子。

参考代码:

#include <bits/stdc++.h>
#define LL long long
#define PII pair<int,int>
using namespace std; const int N = 200010; int n, k, a[N], id[N];
PII p[N]; void solve()
{
cin >> n >> k;
for(int i = 1; i <= n; i++) {
scanf("%d", &a[i]);
p[i] = { a[i] + i, i };
}
sort(p + 1, p + 1 + n, greater<PII>());
for(int i = 1; i <= n && i <= k; i++) id[i] = p[i].second;
sort(id + 1, id + 1 + min(n, k)); int cnt = 0;
LL res = 0;
for(int i = 1; i <= n; i++) {
if(cnt < k && i == id[cnt + 1]) ++ cnt;
else res += a[i] + cnt;
}
cout << res << endl;
} int main()
{
int test;
cin >> test;
while(test--) solve(); return 0;
}

E. MEX vs DIFF

题意:

给一个大小为n的非负数组a,以及k次操作,每次操作可以将a中任意一个数变成任意数。

有mex为不包含与a中的最小的非负整数,dif为a中不同数的数量,求dif - mex的最小值。

思路:贪心 构造

可以发现dif必然不小于mex,dif - mex的值实际上等于:大于mex的不同数的个数。所以最终答案应该令mex尽量大,同时,让大于mex的不同数的个数尽量小。

令mex尽量大:先求mex的最大值。

令大于mex的不同数的个数尽量小:muitiset维护一下,让大于mex的数中,数量较少的数优先进行改变操作。

参考代码:

#include <bits/stdc++.h>
using namespace std; const int N = 100010; int n, k, a[N];
map<int,int> num, dnum; void solve()
{
num.clear();
cin >> n >> k;
for(int i = 1; i <= n; i++) scanf("%d", &a[i]), ++ num[a[i]];
dnum = num; // 求mex最大值
sort(a + 1, a + 1 + n);
int mex = 0;
while(num[mex]) ++ mex;
for(int i = n, j = k; i && j; i--, j--) {
if(a[i] < mex) break;
num[mex] = 1, -- num[a[i]];
while(num[mex]) ++ mex;
} // 求mex最大时,dif最小值
multiset<int> S;
for(auto i : dnum) {
if(i.first > mex) S.insert(i.second);
}
int dif = mex;
for(auto i : S) {
if(k >= i) k -= i;
else ++ dif;
} cout << dif - mex << endl;
} int main()
{
int test;
cin >> test;
while(test--) solve(); return 0;
}

Codeforces Round #792 (Div. 1 + Div. 2) // C ~ E的更多相关文章

  1. Codeforces Round #792 (Div. 1 + Div. 2) A-E

    Codeforces Round #792 (Div. 1 + Div. 2) A-E A 题目 https://codeforces.com/contest/1684/problem/A 题解 思路 ...

  2. Educational Codeforces Round 60 (Rated for Div. 2) - C. Magic Ship

    Problem   Educational Codeforces Round 60 (Rated for Div. 2) - C. Magic Ship Time Limit: 2000 mSec P ...

  3. Educational Codeforces Round 60 (Rated for Div. 2) - D. Magic Gems(动态规划+矩阵快速幂)

    Problem   Educational Codeforces Round 60 (Rated for Div. 2) - D. Magic Gems Time Limit: 3000 mSec P ...

  4. Educational Codeforces Round 43 (Rated for Div. 2)

    Educational Codeforces Round 43 (Rated for Div. 2) https://codeforces.com/contest/976 A #include< ...

  5. Educational Codeforces Round 35 (Rated for Div. 2)

    Educational Codeforces Round 35 (Rated for Div. 2) https://codeforces.com/contest/911 A 模拟 #include& ...

  6. Codeforces Educational Codeforces Round 44 (Rated for Div. 2) F. Isomorphic Strings

    Codeforces Educational Codeforces Round 44 (Rated for Div. 2) F. Isomorphic Strings 题目连接: http://cod ...

  7. Codeforces Educational Codeforces Round 44 (Rated for Div. 2) E. Pencils and Boxes

    Codeforces Educational Codeforces Round 44 (Rated for Div. 2) E. Pencils and Boxes 题目连接: http://code ...

  8. Educational Codeforces Round 63 (Rated for Div. 2) 题解

    Educational Codeforces Round 63 (Rated for Div. 2)题解 题目链接 A. Reverse a Substring 给出一个字符串,现在可以对这个字符串进 ...

  9. Educational Codeforces Round 39 (Rated for Div. 2) G

    Educational Codeforces Round 39 (Rated for Div. 2) G 题意: 给一个序列\(a_i(1 <= a_i <= 10^{9}),2 < ...

随机推荐

  1. keepalived安装及配置文件详解

    一个执着于技术的公众号 在上一篇文章中,我们对Keepalived进行了简单入门学习: Keepalived入门学习 今天我们继续学习Keepalived服务. 一.安装Keepalived服务 两种 ...

  2. OpenHarmony 3GPP协议开发深度剖析——一文读懂RIL

    (以下内容来自开发者分享,不代表 OpenHarmony 项目群工作委员会观点)本文转载自:https://harmonyos.51cto.com/posts/10608 夏德旺 软通动力信息技术(集 ...

  3. AQS源码三视-JUC系列

    AQS源码三视-JUC系列 前两篇文章介绍了AQS的核心同步机制,使用CHL同步队列实现线程等待和唤醒,一个int值记录资源量.为上层各式各样的同步器实现画好了模版,像已经介绍到的ReentrantL ...

  4. CentOS下Python管理

    一.升级Python 查看系统版本 cat /etc/redhat-release CentOS Linux release 7.4.1708 (Core) 查看Python版本 python -V ...

  5. 浅析kubernetes中client-go structure01

    Prepare Introduction 从2016年8月起,Kubernetes官方提取了与Kubernetes相关的核心源代码,形成了一个独立的项目,即client-go,作为官方提供的go客户端 ...

  6. 类型安全的 Go HTTP 请求

    前言 对 Gopher 来说,虽然我们基本都是在写代码让别人来请求,但是有时候,我们也需要去请求第三方提供的 RESTful 接口,这个时候,我们才能感受到前端同学拼接 HTTP 请求参数的痛苦. 比 ...

  7. 论文解读(GCC)《GCC: Graph Contrastive Coding for Graph Neural Network Pre-Training》

    论文信息 论文标题:GCC: Graph Contrastive Coding for Graph Neural Network Pre-Training论文作者:Jiezhong Qiu, Qibi ...

  8. Docker安装Mycat和Mysql进行水平分库分表实战【图文教学】

    一.前言 小编最近公司有个新的需求,数据量比较大,要涉及到分库分表.大概了解了一些主流的中间件,使用和网上资料比较多的是Mycat和sharding-jdbc,小编比较倾向于Mycat.原因很简单就是 ...

  9. 我的第一篇随笔-Test

    用于测试 中文字符 English character

  10. java提前工作、第一个程序

    java提前工作 我们学习编程肯定会 运用到相应的软件 在这里 我个人推荐 eclipse.idea 这里的软件呢 都是用我们的java编程出来的,那它也需要用java来支持他的开发环境 这里就运用到 ...