Jurassic Remains,NEERC 2003,中途相遇法

给定n个大写字母组成的字符串,选择尽量多的串,使的每个大写字母都出现偶数次。原题:http://neerc.ifmo.ru/past/2003.html。

参考文献:《算法竞赛入门经典训练指南》P57,刘汝佳

package ProgrammingContest;

import java.util.TreeMap;

public class Jurassic_NEERC_2003 {
	
	public static int count(int X) {
		int cnt = 0;
		while ( X > 0 ) {
			if ( ( X & 0x01 ) != 0 ) cnt++;
			X = X >> 1;
		}
		return cnt;
	}
	
	public static int solve(String[] S) {
		
		int N = S.length;
		int[] A = new int[N];
		
		// first convert strings to integer
		for ( int i=0; i<N; i++ ) {
			A[i] = 0;
			for ( int j=0; j<S[i].length(); j++ ) {
				int digit = S[i].charAt(j) - 'A';
				A[i] ^= ( 1 << digit );
			}
		}

		// calculate xor result for all combinations 
		int M = N / 2;
		int C = 1 << M;
		TreeMap<Integer, Integer> tables = new TreeMap<Integer,Integer>();
		
		for ( int i=0; i<C; i++ ) {
			int sum = 0;
			for ( int j=0; j<M; j++ ) {
				if ( ( i & ( 1 << j ) ) != 0 ) {
					sum ^= A[j];
				}
			}
			if ( ! tables.containsKey(sum) || count(tables.get(sum)) < count(i) ) {
				tables.put(sum, i);
			}
		}
		
		int C2 = 1 << ( N - M );
		int ans = 0;
		for ( int i=0; i<C2; i++ ) {
			int sum = 0;
			for ( int j=M; j<N; j++ ) {
				if ( ( i & ( 1 << (j-M) ) ) != 0 ) {
					sum ^= A[j];
				}
			}
			if ( tables.containsKey(sum) && count(tables.get(sum)) + count(i) > count(ans) ) {
				ans = ( i << M ) ^ tables.get(sum);
			}
		}
		
		return ans;
	}
	
	public static void printResult(String[] S, int ans) {
		System.out.println(count(ans));
		int line = 0;
		while ( ans != 0 ) {
			if ( ( ans & 0x01 ) != 0 ) System.out.printf("%d ",line+1);
			line++;
			ans >>= 1;
		}
		System.out.println();
	}

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		
		String[] S = {"ABD","EG","GE","ABE","AC","BCD"};
		int ans = solve(S);
		printResult(S,ans);
		
	}

}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值