思维+贪心,CF 1210B - Marcin and Training Camp

目录

一、题目

1、题目描述

2、输入输出

2.1输入

2.2输出

3、原题链接

二、解题报告

1、思路分析

2、复杂度

3、代码详解


一、题目

1、题目描述

2、输入输出

2.1输入
2.2输出

3、原题链接

1210B - Marcin and Training Camp


二、解题报告

1、思路分析

考虑一个数 x 不会比集合内所有数都强,可以注意到什么?

一定有一个数 y 满足 x & y = x

否则,x 和 每个数相比总有对方没有的,那么就没办法了

所以,我们先将所有 出现次数大于1 的数拿进集合(升序排序,去重即可)

然后遍历剩下的数字 x,如果集合中存在某个数字y 满足 x & y = x,我们就把x 拿进集合

2、复杂度

时间复杂度: O(nlogn)空间复杂度:O(n)

3、代码详解

复制代码
 ​
cpp 复制代码
#include <bits/stdc++.h>

// #define DEBUG

using u32 = unsigned;
using i64 = long long;
using u64 = unsigned long long;

constexpr int P = 1E9 + 7;
constexpr int inf32 = 1E9 + 7;
constexpr i64 inf64 = 1E18 + 7;

void solve() {
    int n;
    std::cin >> n;
    
    std::vector<i64> a(n);
    std::vector<int> b(n);
    for (int i = 0; i < n; ++ i) 
        std::cin >> a[i];    
    for (int i = 0; i < n; ++ i)
        std::cin >> b[i];

    i64 sum = 0;
    std::vector<int> id(n);
    std::iota(id.begin(), id.end(), 0);

    std::ranges::sort(id, [&a](int i, int j) -> bool {
        return a[i] < a[j];
    });

    std::vector<int> st, buf;

    for (int i = 0, j = 0; i < n; ) {
        i64 tot = 0;
        while (j < n && a[id[i]] == a[id[j]])
            tot += b[id[j ++]];
        if (j - i > 1) {
            sum += tot;
            st.insert(st.end(), id.begin() + i, id.begin() + j);
        }
        else {
            buf.insert(buf.end(), id.begin() + i, id.begin() + j);
        }
        i = j;
    }

    for (int i : buf) {
        bool ok = false;
        for (int j : st) {
            if ((a[i] & a[j]) == a[i]) {
                ok = true;
                break;
            }
        }
        if (ok) {
            st.push_back(i);
            sum += b[i];
        }
    }

    std::cout << sum;
}

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);

#ifdef DEBUG
    int cur = clock();
    freopen("in.txt", "r", stdin);
    freopen("out.txt", "w", stdout);
#endif

    int t = 1;
    // std::cin >> t;

    while (t--) {
        solve();
    }
#ifdef DEBUG
    std::cerr << "run-time: " << clock() - cur << '\n';
#endif
    return 0;
}
相关推荐
ylfhpy2 小时前
Java面试黄金宝典30
java·数据库·算法·面试·职场和发展
明.2442 小时前
DFS 洛谷P1123 取数游戏
算法·深度优先
简简单单做算法4 小时前
基于mediapipe深度学习和限定半径最近邻分类树算法的人体摔倒检测系统python源码
人工智能·python·深度学习·算法·分类·mediapipe·限定半径最近邻分类树
Tisfy5 小时前
LeetCode 2360.图中的最长环:一步一打卡(不撞南墙不回头) - 通过故事讲道理
算法·leetcode··题解
Espresso Macchiato5 小时前
Leetcode 3500. Minimum Cost to Divide Array Into Subarrays
leetcode·动态规划·leetcode hard·leetcode 3500·leetcode双周赛153
LuckyAnJo5 小时前
Leetcode-100 链表常见操作
算法·leetcode·链表
双叶8366 小时前
(C语言)虚数运算(结构体教程)(指针解法)(C语言教程)
c语言·开发语言·数据结构·c++·算法·microsoft
工一木子6 小时前
大厂算法面试 7 天冲刺:第5天- 递归与动态规划深度解析 - 高频面试算法 & Java 实战
算法·面试·动态规划
invincible_Tang8 小时前
R格式 (15届B) 高精度
开发语言·算法·r语言
独好紫罗兰9 小时前
洛谷题单2-P5715 【深基3.例8】三位数排序-python-流程图重构
开发语言·python·算法