[UVa 1326]Jurassic Remains

题解

在一个字符串中,每个字符出现的次数本身是无关紧要的,重要的只是这些次数的奇偶性,因此想到用一个二进制的位表示一个字母($1$表示出现奇数次,$0$表示出现偶数次)。比如样例的$6$个数,写成二进制后如图所示。

此时,问题转化为求尽量多的数,使得它们的$xor$值为$0$。

最容易想到的方法是直接穷举,时间复杂度为$O(2^n)$,有些偏大。注意到$xor$值为$0$的两个整数必须完全相等,我们可以把字符串分成两个部分:首先计算前$n \over 2$个字符串所能得到的所有$xor$值,并将其保存到一个映射$S$($xor$值->前$n \over 2$个字符串的一个子集)中;然后枚举后$n \over 2$个字符串所能得到的所有$xor$值,并每次都在$S$中查找。

如果映射用$STL$的$map$实现,总时间复杂度为$O(2^{n \over 2}log_2 n)$,即$O(1.44^n log_2 n)$,比第一种方法好了很多。

 1 //It is made by Awson on 2017.9.20
 2 #include <set>
 3 #include <map>
 4 #include <cmath>
 5 #include <ctime>
 6 #include <queue>
 7 #include <stack>
 8 #include <string>
 9 #include <cstdio>
10 #include <vector>
11 #include <cstdlib>
12 #include <cstring>
13 #include <iostream>
14 #include <algorithm>
15 #define Min(a, b) ((a) < (b) ? (a) : (b))
16 #define Max(a, b) ((a) > (b) ? (a) : (b))
17 #define lowbit(x) ((x)&(-(x)))
18 #define LL long long
19 using namespace std;
20
21 int n;
22 char ch[1000];
23 int a[30];
24 map<int, int> mp;
25
26 int bitcount(int x) {
27     int cnt = 0;
28     for (; x; x -= lowbit(x)) cnt++;
29     return cnt;
30 }
31
32 void work() {
33     for (int i = 0; i < n; i++) {
34         scanf("%s", ch);
35         a[i] = 0;
36         for (int j = 0; j < strlen(ch); j++) a[i] ^= 1<<ch[j]-‘A‘;
37     }
38     mp.clear();
39     int mid = n/2;
40     int lim = 1<<mid;
41     for (int i = 0; i < lim; i++) {
42         int tmp = 0;
43         for (int j = 0; j < mid; j++)
44             if (i&(1<<j)) tmp ^= a[j];
45         if (!mp.count(tmp) || bitcount(mp[tmp]) < bitcount(i))
46             mp[tmp] = i;
47     }
48     int ans = 0;
49     lim = 1<<(n-mid);
50     for (int i = 0; i < lim; i++) {
51         int tmp = 0;
52         for (int j = mid; j < n; j++)
53             if (i&(1<<j-mid)) tmp ^= a[j];
54         if (mp.count(tmp) && bitcount(ans) < bitcount(mp[tmp])+bitcount(i)) ans = (i<<mid)|mp[tmp];
55     }
56     printf("%d\n", bitcount(ans));
57     for (int i = 0; i < n; i++)
58         if (ans&(1<<i)) printf("%d ", i+1);
59     putchar(‘\n‘);
60 }
61 int main() {
62     while (~scanf("%d", &n))
63         work();
64     return 0;
65 }
时间: 2024-10-10 20:55:21

[UVa 1326]Jurassic Remains的相关文章

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

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

LA 2965 Jurassic Remains

这是我做的第一道状态压缩的题目,而且我自己居然看懂了,理解得还算透彻. 题意:给出若干个大写字母组成的字符串,然后选取尽量多的字符串使得这些字母出现偶数次. 最朴素的想法,穷举法:每个字符串只有选和不选两种情况,那么穷举的时间复杂度是O(2n) 优化:将这n个字符串分成两半,先后枚举前n1个字符串所有可能的情况,计算xor值并保存在table中 再枚举后半部分的xor值并在table中查找(因为如果两者的异或值相同,则进行异或运算后的值为0),如果找到,将ans更新为bitcount较大的那种方

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,那么一个字符串

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 10586 - Polynomial Remains

Problem F: Polynomial Remains Given the polynomial a(x) = an xn + ... + a1 x + a0, compute the remainder r(x) when a(x) is divided by xk+1. The input consists of a number of cases. The first line of each case specifies the two integers n and k (0 ≤ n

la 2965 Jurassic Remains (中途相遇法)

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

UVa 10551 - Basic Remains

题目:给你两个b进制数p,m,求p mod m的余数的b进制表示. 分析:数论,大整数.可以转成10进制在转回去,这里直接处理b进制. 处理过程和10进制相同,移位减法即可(借位是+b). 说明:写的有点复杂╮(╯▽╰)╭. #include <cstdlib> #include <cstring> #include <cstdio> #include <cmath> typedef struct _bn { int length; int data[111

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