文章

82

粉丝

344

获赞

28

访问

695.8k

头像
二进制状态枚举
P1123 中国科学技术大学机试题
发布于2021年2月20日 13:34
阅读数 7.6k

#include <iostream>
#include <algorithm>
#include <math.h>
using namespace std;

const int maxn=1e5;

int s[maxn];
int v,n;
int main(){
        scanf("%d %d",&v,&n);
        for(int i=0;i<n;i++){
            cin>>s[i];
        }
        long long index=pow(2,n);
        int flag=0;
        for(int i=0;i<index;i++){
            int x=i;
            int weight=0;
            int k=0;
            while(x){
                if(x%2==1){
     &n...

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发