ACM HDOJ 1867 (A + B for you again)

12 篇文章 0 订阅
4 篇文章 0 订阅

题目链接 http://acm.hdu.edu.cn/showproblem.php?pid=1867

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner scn = new Scanner(System.in);
		while (scn.hasNext()) {
			String str1 = scn.next();
			String str2 = scn.next();
			Kmp kmp1 = new Kmp(str1.toCharArray(), str2.toCharArray());
			Kmp kmp2 = new Kmp(str2.toCharArray(), str1.toCharArray());
			int position1 = kmp1.match();
			int position2 = kmp2.match();
			if (position1 == position2) {
				if (0 > str1.compareTo(str2)) {
					System.out.print(str1);
					System.out.println(str2.substring(position1));
				} else {
					System.out.print(str2);
					System.out.println(str1.substring(position2));
				}
			} else if (position1 > position2) {
				System.out.print(str1);
				System.out.println(str2.substring(position1));
			} else {
				System.out.print(str2);
				System.out.println(str1.substring(position2));
			}
		}
		scn.close();
	}

}

class Kmp {

	private int modelLength;
	private int patternLength;
	private char[] model;
	private char[] pattern;
	private int[] next;

	private void calculateNext() {
		int i = 0, j = -1;
		next[0] = -1;
		while (i < patternLength - 1) {
			if (-1 == j || pattern[i] == pattern[j]) {
				++i;
				++j;
				if (pattern[i] != pattern[j]) {
					next[i] = j;
				} else {
					next[i] = next[j];
				}
			} else {
				j = next[j];
			}
		}
	}

	public Kmp(char[] model, char[] pattern) {
		modelLength = model.length;
		patternLength = pattern.length;
		this.model = model;
		this.pattern = pattern;
		next = new int[patternLength];
	}

	public int match() {
		calculateNext();
		int i = 0, j = 0;
		while (i < modelLength && j < patternLength) {
			if (-1 == j || model[i] == pattern[j]) {
				++i;
				++j;
			} else {
				j = next[j];
			}
		}
		if (i < modelLength) {
			j = 0;
		}
		return j;
	}

}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值