首页 > 编程语言 >C++ 算法竞赛、01 周赛篇 | AcWing 第1场周赛

C++ 算法竞赛、01 周赛篇 | AcWing 第1场周赛

时间:2023-09-05 14:44:15浏览次数:47  
标签:周赛 01 int max cin C++ ++ include AcWing

AcWing 第1场周赛

竞赛 - AcWing

3577 选择数字

3577. 选择数字 - AcWing题库

朴素

暴力两层循环

#include <cstdio>
#include <iostream>
#include <unordered_set>

using namespace std;

const int N = 101;
int a[N], b[N];

int main() {
    int n, m;
    cin >> n;
    unordered_set<int> s;
    for (int i = 0; i < n; i++) {
        cin >> a[i];
        s.insert(a[i]);
    }
    cin >> m;
    for (int i = 0; i < m; i++) {
        cin >> b[i];
        s.insert(b[i]);
    }
    // ^ 两层遍历
    for (int i = 0; i < n; i++)
        for (int k = 0; k < m; k++) {
            if (!s.count(a[i] + b[k])) {
                cout << a[i] << " " << b[k] << endl;
                return 0;
            }
        }

    return 0;
}

优美

两个数组的最大值相加一定是新数

#include <algorithm>
#include <cstdio>
#include <iostream>

using namespace std;

const int N = 101;
int a[N], b[N];

int main() {
    int n, m, a_max = 0, b_max = 0;
    cin >> n;
    for (int i = 0; i < n; i++) {
        cin >> a[i];
        a_max = max(a[i], a_max);
    }
    cin >> m;
    for (int i = 0; i < m; i++) {
        cin >> b[i];
        b_max = max(b[i], b_max);
    }
    cout << a_max << " " << b_max;
    return 0;
}

3578 ⭐最大中位数

3578. 最大中位数 - AcWing题库

整数二分问题。求中位数,并依次递增,计算所需的操作次数。求最后一个操作次数总和 <= k 的中位数值

  • 如果 mid - a[i] < 0 ,意味着该数比中位数大,不需要操作
  • int 范围 2.174e9,二分过程中计算 (l+r) 可能超过 2.174e9,改用 long 存储
#include <algorithm>
#include <iostream>

using namespace std;

const int N = 2e5 + 10;
int a[N], n;
long k;

long check(long mid) {
    long res = 0;
    for (int i = n >> 1; i < n; i++) {
        res += (mid - a[i] > 0 ? mid - a[i] : 0);
    }
    return res;
}

int main() {
    cin >> n >> k;
    for (int i = 0; i < n; i++) scanf("%d", &a[i]);
    sort(a, a + n);
    long l = a[n >> 1], r = 2e9;
    while (l < r) {
        long mid = l + r + 1 >> 1;
        if (check(mid) <= k)
            l = mid;
        else
            r = mid - 1;
    }
    cout << l;
    return 0;
}

2579 ⭐⭐数字移动

AcWing 3579. 数字移动 - AcWing

image-20230905142720931

每个点的出度和入度都为 1,每组交换都会形成一个闭环。每个环的节点数就是每个元素回到原来位置需要经过的交换次数

采用并查集维护各个连通块(环)的连通性,然后在并查集的根节点额外维护该并查集的节点个数

难点

  • 合并两个根节点的时候,把其中一个根节点维护的并查集元素数量s[pu]累加到另一个并查集的根节点中
  • 最后输出包含 i 的连通块数量,也就是 s[find(i)]
#include <algorithm>
#include <cstring>
#include <iostream>

using namespace std;
const int N = 2e5 + 10;
int p[N], s[N];  // s 记录每个连通块的数量
int t, n;

int find(int u) {
    if (p[u] != u) p[u] = find(p[u]);
    return p[u];
}

int main() {
    cin.tie(0);
    cin >> t;
    while (t--) {
        cin >> n;
        for (int i = 1; i <= n; i++) {
            p[i] = i;
            s[i] = 1;
        }
        for (int u = 1; u <= n; u++) {
            int x;
            cin >> x;
            int px = find(x), pu = find(u); 
            if (px != pu) { // 使px跟pu在同一个连通块
                s[px] += s[pu];
                p[pu] = px;
            }
        }
        for (int i = 1; i <= n; i++) {
            cout << s[find(i)] << " ";
        }
        cout << endl;
    }

    return 0;
}

标签:周赛,01,int,max,cin,C++,++,include,AcWing
From: https://www.cnblogs.com/linxiaoxu/p/17679490.html

相关文章

  • ORA-01501: CREATE DATABASE 失败ORA-01100: 数据库已装载(已解决)
    相信可能有很多用oracle数据库做项目数据库的同学们都多多少少有遇到这个错误。上网搜索的时候,大部分的答案都是需要在建库时加前缀“C##”,或者是修改可插拔数据库PDB的状态等。这些答案可能解决了大多数人的问题,但像我们本身使用多种类型数据库的人来说,习惯就容易让我们与正确答......
  • 将Python深度神经网络转换成C++
     项目方案:将Python深度神经网络转换成C++项目概述本项目旨在将使用Python编写的深度神经网络模型转换为C代码,以便在C环境中部署和运行。通过将模型从Python转换为C++,可以提高模型的性能和效率,并扩展模型在不同平台和设备上的应用。技术方案1.选择转换工具我们可以使用以下两种......
  • C和C++动态库区别
    1.C语言导出动态库需要在返回值和函数之间加上__declspec(dllexport)2.C语言导出动态库需要在class和类名之间加上__declspec(dllexport)3.C++由于支持函数重载,所以在编译时要给每个函数名重新改名字(加上参数信息),而C不支持,所以C语言无法使用C++的动态库4.在C++里导出dll时,使......
  • P5812 [IOI2019] 天桥
    优化建图,首先分几种情况讨论。假设当前的桥\(l,r,h\)。起点和终点是\(S,T\)。第一种情况:\(S\leql<r\leqT\)。容易发现如果要从这条天桥中间上这条天桥,一定经过\(l\)或\(r\),不如直接走上去。所以只用保留\((l,h),(r,h)\)和他们往下的一个其他天桥与该楼的交点,这个交......
  • Java JDK安装 - OracleJDK(CentOS 7 + OracleJDK 8u201)
    Linux系统-部署-运维系列导航 关于JVM、JRE与JDK  1.JVM(JavaVirtualMechinal)Java虚拟机,是整个java实现跨平台的最核心的部分,负责解释执行字节码文件,是可运行java字节码文件的虚拟计算机。当使用Java编译器编译Java程序时,生成的是与平台无关的字节码,这些字节码只......
  • 【ToolChains】CLion(VS2019) + CMake + Vcpkg 的使用
    参考博客:https://blog.51cto.com/u_15075510/4201238http://t.csdn.cn/pADDUhttps://zhuanlan.zhihu.com/p/454233496https://blog.csdn.net/weixin_43803955/article/details/123544106Vcpkg概述Vcpkg是微软社区开发的一个跨平台的C++包管理工具。它旨在解决C++......
  • C/C++地铁线路查询系统[2023-09-05]
    C/C++地铁线路查询系统[2023-09-05]地铁线路查询问题描述:当一个用户从甲地到乙地时,由于不同需求,就有不同的交通路线,有人希望以最短距离到达,有人希望用最少的换乘次数等。请编写一北京地铁线路查询系统,通过输入起始站、终点站,为用户提供两种或以上决策的交通咨询。设计要求:......
  • Visual Studio 2019快捷键
    Ctrl+J/Ctrl+K,L:列出成员Ctrl+Shift+空格键/Ctrl+K,P:参数信息Ctrl+K,I:快速信息Ctrl+E,C/Ctrl+K,C:注释选定内容Ctrl+E,U/Ctrl+K,U:取消选定注释内容Ctrl+K,M:生成方法存根Ctrl+K,X:插入代码段Ctrl+K,S:插入外侧代码F12:转到所调用过程或变量的定义C......
  • C/C++《程序设计(上机)》选题[2023-09-05]
    C/C++《程序设计(上机)》选题[2023-09-05]2023-2024-1《程序设计(上机)》授课计划开发工具:TurboC/Visualstudio等等具体要求:用上述系统平台和开发工具完成所分配题目的程序,并撰写报告。一、课程任务概述本课程是学生在学习了C或C++等编程语言之后进行的一次实践性学习,通过......
  • 【C++】 bind examples
    SimpleExample#include<algorithm>#include<vector>#include<iostream>voidprint(std::stringprefix,intnumber){std::cout<<prefix<<"-"<<number<<std::endl;}intmain(intargc,char......