Codeforces Round #848 (Div. 2)(A~D)

news2024/11/24 10:04:46

A. Flip Flop Sum

给出一个只有1和-1的数组,修改一对相邻的数,将它们变为对应的相反数,修改完后数组的和最大是多少。

思路:最优的情况是修改一对-1,其次是一个1一个-1,否则修改两个1。

AC Code:

#include <bits/stdc++.h>

typedef long long ll;
const int N = 1e5 + 5;
int t, n;
int a[N];

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(0);
    std::cout.tie(0);
    std::cin >> t;
    while(t --) {
        std::cin >> n;
        for(int i = 1; i <= n; i ++) {
            std::cin >> a[i];
        }
        bool flag = false;
        int ans = 0;
        for(int i = 1; i < n; i ++) {
            if(a[i] == -1 && a[i + 1] == -1) {
                a[i] = 1, a[i + 1] = 1;
                flag = true;
                break;
            }
        }
        if(flag) {
            for(int i = 1; i <= n; i ++) {
                ans += a[i];
            }
            std::cout << ans << '\n';
            continue;
        }
        for(int i = 1; i < n; i ++) {
            if(a[i] + a[i + 1] == 0) {
                flag = true;
                break;
            }
        }
        if(flag) {
            for(int i = 1; i <= n; i ++) {
                ans += a[i];
            }
            std::cout << ans << '\n';
            continue;
        }
        a[1] = -a[1], a[2] = -a[2];
        for(int i = 1; i <= n; i ++) {
            ans += a[i];
        }
        std::cout << ans << '\n';
    }
    return 0;
}

B. The Forbidden Permutation

给出一个permutation p,给出一个数组a和一个数字d,定义pos(a[i]) = x (a[i] - p[x]),定义一个not good数组满足pos(a[i]) < pos(a[i + 1]) <= pos(a[i]) + d,每次修改可以选择p内两个相邻的数,交换两数位置。求想要达到一个good数组,最少需要修改几次。

思路:贪心求解即可。对于满足条件的相邻两数,不需要操作;对于不满足条件的两个数,可以有两种修改操作:(1)两数位置交换;(2)移动两数使得距离大于等于d,每次在满足条件的情况下采用最小值即可。

AC Code:

#include <bits/stdc++.h>

typedef long long ll;
const int N = 1e5 + 5;
int t, n, m, d;
int a[N], p[N];

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(0);
    std::cout.tie(0);
    std::cin >> t;
    while(t --) {
        std::cin >> n >> m >> d;
        d ++;
        std::map<int, int> mp;
        for(int i = 1; i <= n; i ++) {
            std::cin >> p[i];
            mp[p[i]] = i;
        }
        for(int i = 1; i <= m; i ++) {
            std::cin >> a[i];
        }
        int ans = n;
        for(int i = 2; i <= m; i ++) {
            int fir = mp[a[i - 1]];
            int sec = mp[a[i]];
            if(fir > sec) ans = std::min(0, ans);
            else {
                int cnt = std::max(0, (d - (sec - fir)));
                if(fir - 1 + n - sec >= cnt)
                    ans = std::min(ans, cnt);
                ans = std::min(ans, sec - fir);
            }
        }
        std::cout << ans << '\n';
     }
    return 0;
}

C. Flexible String

给出长度为n的两个字符串a和b,对a进行修改,每次可以将其中一个字符替换为任意的字符,最多修改k种不同的字符,问修改完后最多有多少区间[l, r]满足a[l, r] = b[l, r]。

思路:因为a中最多有10中字符,可以想到采用二进制枚举,枚举修改k种字符,然后对于修改的区间计算即可,具体细节看代码。

AC Code:

#include <bits/stdc++.h>

typedef long long ll;
#define int long long
const int N = 1e5 + 5;
int t, n, k;
std::string a, b;

signed main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(0);
    std::cout.tie(0);
    std::cin >> t;
    while(t --) {
        std::cin >> n >> k;
        std::cin >> a >> b;
        a = ' ' + a, b = ' ' + b;
        std::map<char, int> mp;
        int cnt = 0;
        for(int i = 1; i <= n; i ++) {
            if(!mp[a[i]])
                mp[a[i]] = ++ cnt;
        }
        int ans = 0;
        for(int o = 0; o < (1 << cnt); o ++) {
            int cnt1 = __builtin_popcount(o);
            if(cnt1 > k) continue;
            int res = 0;
            for(int i = 1; i <= n; i ++) {
                int j = i;
                while(j <= n && (a[j] == b[j] || mp[a[j]] && (o >> (mp[a[j]] - 1) & 1)))
                    j ++;
                res += (j - i) * (j - i + 1) / 2;
                i = j;
            }
            ans = std::max(res, ans);
        }
        std::cout << ans << '\n';
     }
    return 0;
}

os:距离1600还差点啊,,这个二进制枚举没想到QAQ

D. Flexible String Revisit

给出a和b两个01串,随机修改a中的0和1为相反的数,问使得a等于b的期望修改次数是多少。

思路:严格鸽!

AC Code:

#include <bits/stdc++.h>

typedef long long ll;
const int mod = 998244353;
const int N = 1e6 + 5;
int t, n;
std::string a, b;

struct ModInt {
    int MD = mod;
    int x;
    ModInt(ll x = 0) : x(x % MD) {}
    int get() { return x; }
    ModInt operator + (const ModInt& that) const { int x0 = x + that.x; return ModInt(x0 < MD ? x0 : x0 - MD); }
    ModInt operator - (const ModInt& that) const { int x0 = x - that.x; return ModInt(x0 < MD ? x0 + MD : x0); }
    ModInt operator * (const ModInt& that) const { return ModInt((long long)x * that.x % MD); }
    ModInt operator / (const ModInt& that) const { return *this * that.inverse(); }
    void operator += (const ModInt& that) { x += that.x; if (x >= MD) x -= MD; }
    void operator -= (const ModInt& that) { x -= that.x; if (x < 0) x += MD; }
    void operator *= (const ModInt& that) { x = (long long)x * that.x % MD; }
    void operator /= (const ModInt& that) { *this = *this / that; }
    ModInt inverse() const {
        int a = x, b = MD, u = 1, v = 0;
        while(b) {
            int t = a / b;
            a -= t * b; std::swap(a, b);
            u -= t * v; std::swap(u, v);
        }
        if(u < 0) u += MD;
        return u;
    }
};

using mint = ModInt;

struct node {
    mint a, b;
} f[N];

node operator + (node L, node R) {
    return {L.a + R.a, L.b + R.b};
}

node operator + (node L, mint R) {
    return {L.a, L.b + R};
}

node operator - (node L, node R) {
    return {L.a - R.a, L.b - R.b};
}

node operator - (node L, mint R) {
    return {L.a, L.b - R};
}

node operator / (node L, mint R) {
    return {L.a / R, L.b / R};
}

node operator * (node L, mint R) {
    return {L.a * R, L.b * R};
}

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(0);
    std::cout.tie(0);
    std::cin >> t;
    while(t --) {
        std::cin >> n >> a >> b;
        int cnt = 0;
        for(int i = 0; i < n; i ++) {
            cnt += (a[i] != b[i]);
        }
        f[0] = {0, 0};
        f[1] = {1, 0};
        for(int i = 2; i <= n; i ++) {
            f[i] = (f[i - 1] - mint{1} - f[i - 2] * mint{i - 1} / n) /
                   ((mint{n} - (i - 1)) / n);
        }
        node xx = f[n] - f[n - 1];
        mint x = (mint{1} - xx.b) / xx.a;
        std::cout << (f[cnt].a * x + f[cnt].b).get() << '\n';
     }
    return 0;
}

os:第一次用这个取模板子欸!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/365710.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

订单超时自动取消的 3 种解决方案,yyds!

大家对电商购物应该都比较熟悉了&#xff0c;我们应该注意到&#xff0c;在下单之后&#xff0c;通常会有一个倒计时&#xff0c;如果超过支付时间&#xff0c;订单就会被自动取消。下单今天&#xff0c;我们来聊聊订单超时未支付自动取消的几种方案。1.定时任务这是最容易想到…

啥是原神?女友说想要全角色语音+表情包,顺手用python把高清图也整下来了

原神全角色中日语音表情包高清图人生苦短 我用python表情包部分&#xff1a;1. 素材来自&#xff1a;2. 准备模块3. 调用浏览器驱动4. 页面滚动5. 保存数据5. 效果全角色语音高清彩图部分1.准备工具2. 准备模块3. 请求链接4. 本次目标5. 分析数据来源6. 开始代码7. 执行结果8. …

云原生丨一文教你基于Debezium与Kafka构建数据同步迁移(建议收藏)

文章目录前言一、安装部署Debezium架构部署示意图安装部署二、数据迁移Postgres迁移到PostgresMySQL迁移到PostgresSQL前言 在项目中&#xff0c;我们遇到已有数据库现存有大量数据&#xff0c;但需要将全部现存数据同步迁移到新的数据库中&#xff0c;我们应该如何处理呢&…

基于追踪标记的WAF设计思路

一 相关背景 目前&#xff0c;市面上的WAF产品通常采用”发现即阻断“的策略&#xff0c;以防护针对业务系统的Web攻击行为。虽然该策略可及时阻断攻击&#xff0c;但形式上过于简单&#xff0c;并不能有效掌握攻击者进一步的攻击意图&#xff0c;也不能有效提高攻击者的成本投…

【数据结构】时间复杂度

&#x1f680;write in front&#x1f680; &#x1f4dc;所属专栏&#xff1a;初阶数据结构 &#x1f6f0;️博客主页&#xff1a;睿睿的博客主页 &#x1f6f0;️代码仓库&#xff1a;&#x1f389;VS2022_C语言仓库 &#x1f3a1;您的点赞、关注、收藏、评论&#xff0c;是对…

关于数据分析和数据指标,企业还需要做什么?

数据虽然已经成为了各行各业对未来的共识&#xff0c;也切实成为了各领域企业的重要资产。但真正谈到发挥数据的价值&#xff0c;就必须从规模庞大的数据中找出需求的数据&#xff0c;然后进行利用。这个过程光是想想就知道很麻烦&#xff0c;更别提很多数据都是经常会用到的&a…

【STL】模拟实现vector

目录 1、基本成员变量 2、默认成员函数 构造函数 析构函数 拷贝构造函数 赋值运算符重载函数 3、容器访问相关函数接口 operator [ ]运算符重载 迭代器 范围for 4、vector容量和大小相关函数 size和capacity reserve扩容 resize swap交换数据 empty 5、修…

leaflet 设置右键菜单,配置相应的功能(090)

第090个 点击查看专栏目录 本示例的目的是介绍如何在vue+leaflet中设置右键菜单,配置相应的功能。 直接复制下面的 vue+openlayers源代码,操作2分钟即可运行实现效果. 文章目录 示例效果配置方式示例源代码(共109行)安装插件相关API参考:专栏目标示例效果 配置方式 1)…

华为OD机试 C++ 实现 - 租车骑绿岛

最近更新的博客 华为OD机试 - 入栈出栈(C++) | 附带编码思路 【2023】 华为OD机试 - 箱子之形摆放(C++) | 附带编码思路 【2023】 华为OD机试 - 简易内存池 2(C++) | 附带编码思路 【2023】 华为OD机试 - 第 N 个排列(C++) | 附带编码思路 【2023】 华为OD机试 - 考古…

SpringMVC——基本操作

获取url中的参数 一般来说get请求中参数是这样的 127.0.0.1:8080/login?usernamesan&password123可以获取到下面两个参数 keyvalueusernamesanpassword123 但是事实上&#xff0c;还有一种url的参数的写法 127.0.0.1:8080/login/san/123这样的写法更像是一个直接获取网…

【蓝桥杯集训·每日一题】AcWing 2058. 笨拙的手指

文章目录一、题目1、原题链接2、题目描述二、解题报告1、思路分析2、时间复杂度3、代码详解三、知识风暴哈希表秦九韶算法一、题目 1、原题链接 2058. 笨拙的手指 2、题目描述 奶牛贝茜正在学习如何在不同进制之间转换数字。 但是她总是犯错误&#xff0c;因为她无法轻易的用两…

求职一个月,收割12家offer,想给大家总结一下面试软件测试岗,一般问什么问题?

前言 下面是我根据工作这几年来的面试经验&#xff0c;加上之前收集的资料&#xff0c;整理出来350道软件测试工程师 常考的面试题。字节跳动、阿里、腾讯、百度、快手、美团等大厂常考的面试题&#xff0c;在文章里面都有 提到。 虽然这篇文章很长&#xff0c;但是绝对值得你…

【2023】Prometheus-相关知识点(面试点)

目录1.Prometheus1.1.什么是Prometheus1.2.Prometheus的工作流程1.3.Prometheus的组件有哪些1.4.Prometheus有什么特点1.5.Metric的几种类型&#xff1f;分别是什么&#xff1f;1.6.Prometheus的优点和缺点1.7.Prometheus怎么采集数据1.8.Prometheus怎么获取采集对象1.9.Promet…

产业安全公开课:2023年DDoS攻击趋势研判与企业防护新思路

2023年&#xff0c;全球数字化正在加速发展&#xff0c;网络安全是数字化发展的重要保障。与此同时&#xff0c;网络威胁日益加剧。其中&#xff0c;DDoS攻击作为网络安全的主要威胁之一&#xff0c;呈现出连年增长的态势&#xff0c;给企业业务稳定带来巨大挑战。2月21日&…

【数据结构与算法】顺序表增删查改的实现(动态版本+文件操作)附源码

目录 一.前言 二.顺序表 1.概念及结构 2.顺序表结构体的定义 3.初始化顺序表&#xff0c;销毁顺序表和打印 3.接口 a.尾插 SepListpushback 头插 SepListpushfront b.尾删 SepListpopback 头删 SepListpopfront c.查询 SepListsearch d.修改 SepListmodify 三…

搜索引擎 Elasticsearch 的三大坑

搜索引擎的坑 ES 搜索引擎系列文章汇总&#xff1a; 一、别只会搜日志了&#xff0c;求你懂点原理吧 二、ES 终于可以搜到”悟空哥“了&#xff01; 三、1W字&#xff5c;40 图&#xff5c;硬核 ES 实战 本文主要内容如下&#xff1a; 搜索引擎现在是用得越来越多了&#…

赛宁网安“网络安全卓越中心”:立足科技创新 推动网安产业高质量发展

​​2月22日上午&#xff0c;网络安全卓越中心CPCOE——圆桌论坛活动在南京召开。本次论坛由南京未来科技城主办&#xff0c;南京赛宁信息技术有限公司承办。论坛上&#xff0c;江苏省科协副主席、南京理工大学教授李千目&#xff0c;江苏省互联网协会副理事长兼秘书长刘湘生&a…

【Pytorch学习】获取当前的学习率Learning Rate(lr)

optimizer.state_dict()[param_groups][0][lr]from&#xff1a; https://blog.csdn.net/ftimes/article/details/120975402 PyTorch可视化动态调整学习率lr_scheduler&#xff1a;https://blog.csdn.net/ayiya_Oese/article/details/120704261 或者&#xff1a;scheduler.get_…

谷歌留痕代发技术指南_谷歌留痕怎么霸屏的?

本文主要分享谷歌留痕技术的一些常见问题&#xff0c;霸屏的原理是什么。 本文由光算创作&#xff0c;有可能会被修改和剽窃&#xff0c;我们佛系对待这种行为吧。 谷歌留痕也叫谷歌搜索留痕&#xff0c;那么谷歌搜索留痕的霸屏原理是什么&#xff1f; 答案是&#xff1a;利…

如何做好APP性能测试?

随着智能化生活的推进&#xff0c;我们生活中不可避免的要用到很多程序app。有的APP性能使用感很好&#xff0c;用户都愿意下载使用&#xff0c;而有的APP总是出现卡顿或网络延迟的情况&#xff0c;那必然就降低了用户的好感。所以APP性能测试对于软件开发方来说至关重要&#…