Jurassic Remains

Paleontologists in Siberia have recently found a number of fragments of Jurassic period dinosaur skeleton. The paleontologists have decided to forward them to the paleontology museum. Unfortunately, the dinosaur was so huge, that there was no box that the fragments would fit into. Therefore it was decided to split the skeleton fragments into separate bones and forward them to the museum where they would be reassembled. To make reassembling easier, the joints where the bones were detached from each other were marked with special labels. Meanwhile, after packing the fragments, the new bones were found and it was decided to send them together with the main fragments. So the new bones were added to the package and it was sent to the museum.

However, when the package arrived to the museum some problems have shown up. First of all, not all labels marking the joints were distinct. That is, labels with letters `A' to `Z' were used, and each two joints that had to be connected were marked with the same letter, but there could be several pairs of joints marked with the same letter.

Moreover, the same type of labels was used to make some marks on the new bones added to the box. Therefore, there could be bones with marked joints that need not be connected to the other bones. The problem is slightly alleviated by the fact that each bone has at most one joint marked with some particular letter.

Your task is to help the museum workers to restore some possible dinosaur skeleton fragments. That is, you have to find such set of bones, that they can be connected to each other, so that the following conditions are true:

  • If some joint is connected to the other joint, they are marked with the same label.
  • For each bone from the set each joint marked with some label is connected to some other joint.
  • The number of bones used is maximal possible.

Note that two bones may be connected using several joints.

Input 

Input consists of several datasets. The first line of each dataset contains N - the number of bones (1N24). Next N lines contain bones descriptions: each line contains a non-empty sequence of different capital letters, representing labels marking the joints of the corresponding bone.

Output 

For each dataset, on the first line of the output print L - the maximal possible number of bones that could be used to reassemble skeleton fragments. After that output L integer numbers in ascending order - the bones to be used. Bones are numbered starting from one, as they are given in the input file.

Sample Input 

  1. 6
  2. ABD
  3. EG
  4. GE
  5. ABE
  6. AC
  7. BCD

Sample Output 

  1. 5
  2. 1 2 3 5 6
  3.  
  4. 题目大意:侏罗纪。给定n个大写字母组成的字符串。选择尽量多的串,使得每个大写字母都能出现偶数次。
  5.  
  6. 分析:在一个字符串中,每个字符出现的次数无关紧要,重要的是这些次数的奇偶性,因此想到用一个二进制的位表示一个字母(1表示出现奇数次,0表示出现偶数次)。
      样例写成二进制后为
        A B C D E F G H
        1 1 0 1 0 0 0 0 A B D
        0 0 0 0 1 0 1 0 E G
        0 0 0 0 1 0 1 0 G E
        1 1 0 0 1 0 0 0 A B E
        1 0 1 0 0 0 0 0 A C
        0 1 1 1 0 0 0 0 B C D
  7.  
  8.     问题转化为求尽量多的数,使得它们的xor值为0
      穷举法会超时。注意到xor值为0的两个整数必须完全相等,可以把字符串分成两个部分:首先计算前n/2个字符串所能得到的所有xor值,并将其保存到一个映射Sxor n/2个字符串的一个子集)中;然后枚举后n/2个字符串所能得到的所有xor值,并每次都在S中查找。
      如果映射用STLmap实现,总时间复杂度为O(2n/2logn),这种方法称为中途相遇法。
  9.  
  10. 代码如下:
  1. #include<cstdio>
  2. #include<map>
  3. using namespace std;
  4.  
  5. const int maxn = ;
  6. map<int,int> table;
  7.  
  8. int bitcount(int x) { return x == ? : bitcount(x/) + (x&); }
  9.  
  10. int main() {
  11. int n, A[maxn];
  12. char s[];
  13.  
  14. while(scanf("%d", &n) == && n) {
  15. // 输入并计算每个字符串对应的位向量
  16. for(int i = ; i < n; i++) {
  17. scanf("%s", s);
  18. A[i] = ;
  19. for(int j = ; s[j] != '\0'; j++) A[i] ^= (<<(s[j]-'A'));
  20. }
  21. // 计算前n1个元素的所有子集的xor值
  22. // table[x]保存的是xor值为x的,bitcount尽量大的子集
  23. table.clear();
  24. int n1 = n/, n2 = n-n1;
  25. for(int i = ; i < (<<n1); i++) {
  26. int x = ;
  27. for(int j = ; j < n1; j++) if(i & (<<j)) x ^= A[j];
  28. if(!table.count(x) || bitcount(table[x]) < bitcount(i)) table[x] = i;
  29. }
  30. // 枚举后n2个元素的所有子集,并在table中查找
  31. int ans = ;
  32. for(int i = ; i < (<<n2); i++) {
  33. int x = ;
  34. for(int j = ; j < n2; j++) if(i & (<<j)) x ^= A[n1+j];
  35. if(table.count(x)&&bitcount(ans)<bitcount(table[x])+bitcount(i)) ans = (i<<n1)^table[x];
  36. }
  37. // 输出结果
  38. printf("%d\n", bitcount(ans));
  39. for(int i = ; i < n; i++) if(ans & (<<i)) printf("%d ", i+);
  40. printf("\n");
  41. }
  42. return ;
  43. }
  1.  

LA 2965 Jurassic Remains (中途相遇法)的更多相关文章

  1. UVa LA 2965 - Jurassic Remains 中间相遇,状态简化 难度: 2

    题目 https://icpcarchive.ecs.baylor.edu/index.php?option=com_onlinejudge&Itemid=8&page=show_pr ...

  2. LA 2965 Jurassic Remains

    这是我做的第一道状态压缩的题目,而且我自己居然看懂了,理解得还算透彻. 题意:给出若干个大写字母组成的字符串,然后选取尽量多的字符串使得这些字母出现偶数次. 最朴素的想法,穷举法:每个字符串只有选和不 ...

  3. 【UVALive】2965 Jurassic Remains(中途相遇法)

    题目 传送门:QWQ 分析 太喵了~~~~~ 还有中途相遇法这种东西的. 嗯 以后可以优化一些暴力 详情左转蓝书P58 (但可能我OI生涯中都遇不到正解是这个的题把...... 代码 #include ...

  4. LA 2965 中途相遇法

    题目链接:https://vjudge.net/problem/UVALive-2965 题意: 有很多字符串(24),选出一些字符串,要求这些字符串的字母都是偶数次: 分析: 暴力2^24也很大了, ...

  5. UVALive - 2965 Jurassic Remains (LA)

    Jurassic Remains Time Limit: 18000MS   Memory Limit: Unknown   64bit IO Format: %lld & %llu [Sub ...

  6. uva 6757 Cup of Cowards(中途相遇法,貌似)

    uva 6757 Cup of CowardsCup of Cowards (CoC) is a role playing game that has 5 different characters (M ...

  7. HDU 5936 Difference 【中途相遇法】(2016年中国大学生程序设计竞赛(杭州))

    Difference Time Limit: 6000/3000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)Total ...

  8. 【中途相遇法】【STL】BAPC2014 K Key to Knowledge (Codeforces GYM 100526)

    题目链接: http://codeforces.com/gym/100526 http://acm.hunnu.edu.cn/online/?action=problem&type=show& ...

  9. 高效算法——J 中途相遇法,求和

    ---恢复内容开始--- J - 中途相遇法 Time Limit:9000MS     Memory Limit:0KB     64bit IO Format:%lld & %llu Su ...

随机推荐

  1. CMD-NET命令详解(转载)

    本文转自http://www.cnblogs.com/chenjq0717/archive/2010/05/09/1730934.html net命令大全,net命令用法,net网络命令,net命令使 ...

  2. 教你50招提升ASP.NET性能(四):精选的技巧

    (4)A selection of tips 招数4: 精选的技巧 Make sure HTTP compression is turned on for any uncompressed conte ...

  3. Aizu 2305 Beautiful Currency DP

    Beautiful Currency Time Limit: 1 Sec Memory Limit: 256 MB 题目连接 http://acm.hust.edu.cn/vjudge/contest ...

  4. Codeforces Round #321 (Div. 2) B. Kefa and Company 二分

    B. Kefa and Company Time Limit: 1 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/contest/580/pr ...

  5. Android选择系统相册或拍照上传

    PhotoUtils.rar

  6. send,recv,sendto,recvfrom

    send函数 int send( SOCKET s,    const char FAR *buf,    int len,    int flags ); 不论是客户还是server应用程序都用se ...

  7. Android Sqlite 导入CSV文件 .

    http://blog.csdn.net/johnnycode/article/details/7413111 今天遇到 Oracle 导出的12万条CSV格式数据导入 Android Sqlite ...

  8. springMVC项目在jboss7中配置应用自己的log4j--转载

    原文地址:http://www.xuebuyuan.com/1954635.html Jboss7默认采用容器自己的log4j module,应用自己配置的log4j不起作用,需要应用做一些设置: 以 ...

  9. GPS(Global Positioning System)全球定位系统

    GPS构成: 1.空间部分 GPS的空间部分是由24 颗工作卫星组成,它位于距地表20 200km的上空,均匀分布在6 个轨道面上(每个轨道面4 颗) ,轨道倾角为55°.此外,还有4 颗有源备份卫星 ...

  10. IIS 之 启用日志记录

    如何为网站启用日志记录或 在 Microsoft Internet Information Services (IIS) 6.0 中,在 IIS 5.0 中,并在 IIS 4.0 中的FTP 站点.可 ...