LA 2965 - Jurassic Remains 中途相遇法

简介:

https://icpcarchive.ecs.baylor.edu/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&category=12&problem=966

题意:

   给定n个字符串,求最多选几个并保证所有字母出现偶数次

  n最大为24,直接枚举2^24,对于18s的实现貌似也是可以接受的,但必然不好。想了很久降复杂度的方法都没想到好的,用中途相遇发只能降到(2^n/2)log(n),对于n很大还是无力

  中途相遇法指把原问题化为两个独立的子问题,一半通过枚举暴力完成,另一半枚举时利用map等结构查询前一半的结果,合并得出最终结果


/*
author:jxy
lang:C/C++
university:China,Xidian University
**If you need to reprint,please indicate the source**
*/
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <algorithm>
#include <map>
using namespace std;
int count_one(int x)//分治计数
{
    x=(x&0x55555555)+(x>>1&0x55555555);
    x=(x&0x33333333)+(x>>2&0x33333333);
    x=(x&0x0F0F0F0F)+(x>>4&0x0F0F0F0F);
    x=(x&0x00FF00FF)+(x>>8&0x00FF00FF);
    x=(x&0x0000FFFF)+(x>>16&0x0000FFFF);
    return x;
}
int org[26],n;
map<int,int> table;
int main()
{
    while(~scanf("%d",&n))
    {
        char s[50];
        int i,j,len;
        for(i=0;i<n;i++)
        {
            scanf("%s",s);
            len=strlen(s);
            org[i]=0;
            for(j=0;j<len;j++)
            {
                org[i]^=1<<(s[j]-'A');
            }
        }
        int n1=n>>1,n2=n-n1,tmp,t,now;
        tmp=1<<n1;now=0;
        table.clear();
        for(i=0;i<tmp;i++)//枚举一半
        {
            t=i;j=0;
            now=0;
            while(t)
            {
                if(t&1)now^=org[j];
                j++; t>>=1;
            }
            if(count_one(table[now])<count_one(i))table[now]=i;//记录最大值
        }
        tmp=1<<n2;
        int ans=0;
        for(i=0;i<tmp;i++)
        {
            t=i;j=0;
            now=0;
            while(t)
            {
                if(t&1)now^=org[j+n1];
                j++; t>>=1;
            }
            if(table[now]!=0&&count_one(ans)<(count_one((i<<n1)^table[now])))//题目没说多组情况,用<可以过
            {
                ans=(i<<n1)^table[now];
            }
        }
        printf("%d\n",count_one(ans));

        for(i=0;ans;i++,ans>>=1)
            if(ans&1) printf("%d%c",i+1,ans>>1?' ':'\n');
    }

}


目录
相关文章
UVa11958 - Coming Home
UVa11958 - Coming Home
52 0
|
算法
light oj 1258 - Making Huge Palindromes(KMP)
ight oj里这个题目是属于KMP分类的,但乍看好像不是kmp,因为只有一个字符串。要想的到一个回文串,把该字符串翻转接到原串后面必然是一个回文串,但并不一定是最短的。我们必须考虑怎么把两个串尽量融合在一起,这就要看翻转串的前段与原串的后段有多少是匹配的了,这里就用到了KMP算法。
38 1
hdoj 1520 Anniversary party(树形dp)
我们可以把一个节点当做一个人,每个节点都有一个权重。按照题目意思,如果我们取了某个节点,那么他的父节点和子节点都是不能取的。按要求选取节点,使得选取节点的权重和最大。
40 0
LeetCode 241. Different Ways to Add Parentheses
给定一个含有数字和运算符的字符串,为表达式添加括号,改变其运算优先级以求出不同的结果。你需要给出所有可能的组合的结果。有效的运算符号包含 +, - 以及 * 。
84 0
LeetCode 241. Different Ways to Add Parentheses
|
算法 Java BI
【论文阅读】(2013)A goal-driven approach to the 2D bin packing and variable-sized bin packing problems
【论文阅读】(2013)A goal-driven approach to the 2D bin packing and variable-sized bin packing problems
172 0
【论文阅读】(2013)A goal-driven approach to the 2D bin packing and variable-sized bin packing problems
Delivery Automatic Creation for Inter-company STO
Delivery Automatic Creation for Inter-company STO
Delivery Automatic Creation for Inter-company STO
|
SQL 算法 关系型数据库
Optimizing Queries over Partitioned Tables in MPP Systems
随着互联网数据的爆炸性增长,传统数据库系统在单表数据容量方面承受了越来越大的压力。以前公司内部的数据库,存放的主要是来自公司业务或内部管理系统的信息,中小型公司甚至一个MySQL实例就搞定了。但现在数据源不仅更丰富,数据量也在指数级增长,从业务的角度,基于hash/range的分区表变得越来越有吸引力。
261 0
Optimizing Queries over Partitioned Tables in MPP Systems
|
数据库
When Tech Meets Love – Smarter Ways to NOT be Single
It’s that time of year again. Single’s Day (a.k.a Double 11) is just around the corner, people buying gifts for loved ones.
1634 0
When Tech Meets Love – Smarter Ways to NOT be Single