Typesetting math: 100%

Kth Minimum Clique(2019年牛客多校第二场D题+k小团+bitset)

题目链接

传送门

题意

找第k小团。

思路

bitset来标记每个结点与哪些结点直接有边,然后进行bfs,在判断新加入的点与现在有的点是否都有边则直接用bitset与一下即可,记得去重。

代码

#include <set>
#include <map>
#include <deque>
#include <queue>
#include <stack>
#include <cmath>
#include <ctime>
#include <bitset>
#include <cstdio>
#include <string>
#include <vector>
#include <cassert>
#include <cstdlib>
#include <cstring>
#include <iostream>
#include <algorithm>
using namespace std;

typedef long long LL;
typedef pair<LL, LL> pLL;
typedef pair<LL, int> pLi;
typedef pair<int, LL> pil;;
typedef pair<int, int> pii;
typedef unsigned long long uLL;

#define lson (rt<<1),L,mid
#define rson (rt<<1|1),mid + 1,R
#define lowbit(x) x&(-x)
#define name2str(name) (#name)
#define bug printf("*********\n")
#define debug(x) cout<<#x"=["<<x<<"]" <<endl
#define FIN freopen("/home/dillonh/CLionProjects/Dillonh/in.txt","r",stdin)
#define IO ios::sync_with_stdio(false),cin.tie(0)

const double eps = 1e-8;
const int mod = 1000000007;
const int maxn = 100 + 7;
const double pi = acos(-1);
const int inf = 0x3f3f3f3f;
const LL INF = 0x3f3f3f3f3f3f3f3fLL;

int n, k;
bitset<101> vis[105];
int w[maxn], mp[maxn][maxn];
struct node {
    LL val;
    bitset<101> has;
    bool operator < (const node& x) const {
        return val > x.val;
    }
}nw;

priority_queue<node> q;

int main() {
#ifndef ONLINE_JUDGE
    FIN;
#endif
    scanf("%d%d", &n, &k);
    for(int i = 1; i <= n; ++i) {
        scanf("%d", &w[i]);
        nw.has.set(i), nw.val = w[i];
        q.push(nw);
        nw.has.reset(i);
    }
    for(int i = 1; i <= n; ++i) {
        for(int j = 1; j <= n; ++j) {
            scanf("%1d", &mp[i][j]);
            if(mp[i][j]) vis[i].set(j);
        }
    }
    LL ans = -1;
    if(k == 1) {
        printf("0\n");
        return 0;
    }
    --k;
    while(!q.empty()) {
        nw = q.top(), q.pop();
        if(--k == 0) {
            ans = nw.val;
            break;
        }
        int idx = 1;
        for(int i = 1; i <= n; ++i) if(nw.has.test(i)) idx = i + 1;
        for(int i = idx; i <= n; ++i) {
            if(nw.has.test(i)) continue;
            if((vis[i] & nw.has) != nw.has) continue;
            nw.val += w[i];
            nw.has.set(i);
            q.push(nw);
            nw.val -= w[i];
            nw.has.reset(i);
        }
    }
    printf("%lld\n", ans);
    return 0;
}

posted @   Dillonh  阅读(168)  评论(0编辑  收藏  举报
编辑推荐:
· 深入理解 Mybatis 分库分表执行原理
· 如何打造一个高并发系统?
· .NET Core GC压缩(compact_phase)底层原理浅谈
· 现代计算机视觉入门之:什么是图片特征编码
· .NET 9 new features-C#13新的锁类型和语义
阅读排行:
· Sdcb Chats 技术博客:数据库 ID 选型的曲折之路 - 从 Guid 到自增 ID,再到
· 语音处理 开源项目 EchoSharp
· 《HelloGitHub》第 106 期
· Spring AI + Ollama 实现 deepseek-r1 的API服务和调用
· 使用 Dify + LLM 构建精确任务处理应用
历史上的今天:
2018-08-22 2016CCPC东北地区大学生程序设计竞赛 (2018年8月22日组队训练赛)
2018-08-22 1030 大数进制转换(51Nod + JAVA)
点击右上角即可分享
微信分享提示