LA 2965 Jurassic Remains

这是我做的第一道状态压缩的题目,而且我自己居然看懂了,理解得还算透彻。

题意:给出若干个大写字母组成的字符串,然后选取尽量多的字符串使得这些字母出现偶数次。

最朴素的想法,穷举法:每个字符串只有选和不选两种情况,那么穷举的时间复杂度是O(2n)

优化:将这n个字符串分成两半,先后枚举前n1个字符串所有可能的情况,计算xor值并保存在table中

再枚举后半部分的xor值并在table中查找(因为如果两者的异或值相同,则进行异或运算后的值为0),如果找到,将ans更新为bitcount较大的那种方案。

 1 //#define LOCAL
 2 #include <cstdio>
 3 #include <map>
 4 using namespace std;
 5
 6 const int maxn = 24;
 7 map<int, int> table;
 8
 9 int bitcount(int x)
10 {//求x对应二进制中1的个数
11     return (x == 0 ? 0 : (x&1) + bitcount(x>>1));
12 }
13
14 int main(void)
15 {
16     #ifdef LOCAL
17         freopen("2965in.txt", "r", stdin);
18     #endif
19
20     int n, a[maxn];
21     char s[1000];
22     while(scanf("%d", &n) == 1 && n)
23     {
24         for(int i = 0; i < n; ++i)
25         {
26             scanf("%s", s);
27             a[i] = 0;
28             for(int j = 0; s[j] !=‘\0‘; ++j)    //a[i]为字符串对应的二进制向量
29                 a[i] ^= (1 << (s[j] - ‘A‘));
30         }
31         int n1 = n / 2, n2 = n - n1;
32
33         //枚举前n1个字符串所有可能组成的异或值
34         table.clear();
35         for(int i = 0; i < (1 << n1); ++i)
36         {
37             int x = 0;
38             for(int j = 0; j < n1; ++j)
39                 if(i & (1 << j))
40                     x ^= a[j];
41             if(!table.count(x) || bitcount(table[x]) < bitcount(i))
42                 //如果x没有重复或者xor值相同在第i中情况下选择的字符串更多
43                 table[x] = i;
44         }
45         //枚举后n2个元素所有组合情况并在table中查找
46         int ans = 0;
47         for(int i = 0; i < (1 << n2); ++i)
48         {
49             int x = 0;
50             for(int j = 0; j < n2; ++j)
51                 if(i & (1 << j))
52                     x ^= a[n1 + j];
53             if(table.count(x) && bitcount(ans) < (bitcount(table[x]) + bitcount(i)))
54                 //x值存在 且 该方案下所选的字符串更多,更新ans的值
55                 ans = (i << n1) ^ table[x];
56         }
57         //输出结果
58         printf("%d\n", bitcount(ans));
59         for(int i = 0; i < n; ++i)
60         {
61             if(ans & (1 << i))
62                 printf("%d ", i + 1);
63         }
64         printf("\n");
65     }
66     return 0;
67 }

代码君

这里顺便还模糊地学习了一下map的用法。。

LA 2965 Jurassic Remains,布布扣,bubuko.com

时间: 2024-10-24 10:47:44

LA 2965 Jurassic Remains的相关文章

la 2965 Jurassic Remains (中途相遇法)

把串分成前后两半,前面的做暴力枚举,并把结果丢到集合里去, 后面的也暴力枚举,并且每次的结果去集合里看有无出现过相同的. 如果有那么异或后为0,就是符合题目要求的,选出包含字符串个数最多的! 这样一优化,前后两个2^12+2^12,瞬间时间复杂度开方了! #include <algorithm> #include <iostream> #include <cstring> #include <cstdio> #include <string> #

UVALive - 2965 Jurassic Remains

Jurassic Remains Time Limit: 18000MS   Memory Limit: Unknown   64bit IO Format: %lld & %llu [Submit]   [Go Back]   [Status] Description Paleontologists in Siberia have recently found a number of fragments of Jurassic period dinosaur skeleton. The pal

LA2965 Jurassic Remains

Jurassic Remains https://vjudge.net/problem/UVALive-2965 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. Unfortuna

[UVa 1326]Jurassic Remains

题解 在一个字符串中,每个字符出现的次数本身是无关紧要的,重要的只是这些次数的奇偶性,因此想到用一个二进制的位表示一个字母($1$表示出现奇数次,$0$表示出现偶数次).比如样例的$6$个数,写成二进制后如图所示. 此时,问题转化为求尽量多的数,使得它们的$xor$值为$0$. 最容易想到的方法是直接穷举,时间复杂度为$O(2^n)$,有些偏大.注意到$xor$值为$0$的两个整数必须完全相等,我们可以把字符串分成两个部分:首先计算前$n \over 2$个字符串所能得到的所有$xor$值,并将

I - Jurassic Remains

Uva 1326 Sample Input 1 ABC 6 ABD EG GE ABE AC BCD Sample Output 0 5 1 2 3 5 6 给出n个字符串,每个字符串都是由大写字母组成,要求你选择尽可能多的字符串结合成一个字符串,而且这个字符串的每个字母出现的次数都为偶数 这道题可以直接使用暴搜的方法做,但其中的难点在于如何判断,应该使用二进制表示,每个数开始都为0,那么这个数默认它有26位,每一位代表一个字母,出现偶数次即为0(出现0次也算),出现奇数次就为1,那么一个字符串

UVA 1326 Jurassic Remains 中途相遇法

题目链接:点击打开链接 题意:给定n个字符串,选尽可能多的字符串使得每种字母出现的次数为偶数次 思路: 中途相遇法 import java.io.PrintWriter; import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; import java.util.Comparator; import java.util.Iterator; import java.util.LinkedLi

poj练习题的方法

poj1010--邮票问题 DFSpoj1011--Sticks dfs + 剪枝poj1020--拼蛋糕poj1054--The Troublesome Frogpoj1062--昂贵的聘礼poj1077--Eightpoj1084--Square Destroyerpoj1085--Triangle War(博弈,極大極小搜索+alpha_beta剪枝)poj1088--滑雪poj1129--Channel Allocation 着色问题 dfspoj1154--letters (dfs)p

POJ 搜索题集

poj1010--邮票问题 DFS poj1011--Sticks dfs + 剪枝 poj1020--拼蛋糕 poj1054--The Troublesome Frog poj1062--昂贵的聘礼 poj1077--Eight poj1084--Square Destroyer poj1085--Triangle War(博弈,極大極小搜索+alpha_beta剪枝) poj1088--滑雪 poj1129--Channel Allocation 着色问题 dfs poj1154--lett

The Pilots Brothers&#39; refrigerator - poj 2965

Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 20325   Accepted: 7830   Special Judge Description The game “The Pilots Brothers: following the stripy elephant” has a quest where a player needs to open a refrigerator. There are 16 handle