結果

問題 No.464 PPAP
ユーザー uwiuwi
提出日時 2016-12-10 02:50:36
言語 Java
(openjdk 23)
結果
AC  
実行時間 202 ms / 2,000 ms
コード長 2,129 bytes
コンパイル時間 6,131 ms
コンパイル使用メモリ 82,752 KB
実行使用メモリ 54,628 KB
最終ジャッジ日時 2024-11-28 22:39:30
合計ジャッジ時間 11,141 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
53,824 KB
testcase_01 AC 130 ms
53,924 KB
testcase_02 AC 134 ms
54,212 KB
testcase_03 AC 133 ms
54,040 KB
testcase_04 AC 133 ms
53,840 KB
testcase_05 AC 132 ms
54,228 KB
testcase_06 AC 138 ms
53,912 KB
testcase_07 AC 160 ms
54,020 KB
testcase_08 AC 152 ms
54,236 KB
testcase_09 AC 135 ms
54,032 KB
testcase_10 AC 202 ms
54,628 KB
testcase_11 AC 181 ms
54,336 KB
testcase_12 AC 190 ms
54,212 KB
testcase_13 AC 146 ms
54,212 KB
testcase_14 AC 167 ms
53,984 KB
testcase_15 AC 132 ms
53,776 KB
testcase_16 AC 131 ms
54,064 KB
testcase_17 AC 132 ms
53,916 KB
testcase_18 AC 134 ms
53,864 KB
testcase_19 AC 130 ms
53,704 KB
testcase_20 AC 134 ms
54,004 KB
testcase_21 AC 131 ms
53,988 KB
testcase_22 AC 131 ms
54,164 KB
testcase_23 AC 147 ms
53,828 KB
testcase_24 AC 146 ms
54,116 KB
testcase_25 AC 145 ms
54,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package adv2016;
import java.io.PrintWriter;
import java.util.Arrays;
import java.util.Scanner;

public class N464N2 {
	static Scanner in;
	static PrintWriter out;
	
	static String INPUT = "";

	static void solve() {
		char[] s = in.next().toCharArray();
		if(!(s.length >= 4))throw new AssertionError();
		if(!(s.length <= 5000))throw new AssertionError();
		for(char c : s){
			if(!(c >= 'a' && c <= 'z'))throw new AssertionError();
		}
		
		long B = 1000000009;
		int n = s.length;
		long[] hs = new long[n+1];
		for(int i = 0;i < n;i++){
			hs[i+1] = hs[i] * B + s[i];
		}
		long[] rhs = new long[n+1];
		for(int i = 0;i < n;i++){
			rhs[n-i-1] = rhs[n-i] * B + s[n-1-i];
		}
		long[] pows = new long[n+1];
		pows[0] = 1;
		for(int i = 1;i <= n;i++)pows[i] = pows[i-1] * B;
		
		long[] p3 = new long[n+1];
		for(int k = n-1;k >= 0;k--){
			p3[k] = p3[k+1];
			if(hs[n] - hs[k] * pows[n-k] == rhs[k] - rhs[n] * pows[n-k]){
				p3[k]++;
			}
		}
		
		long ct = 0;
		for(int i = 1;i < n;i++){
			if(hs[i] == rhs[0] - rhs[i]*pows[i]){
				for(int j = i+1;j < n;j++){
					if(hs[j] - hs[i] * pows[j-i] == rhs[i] - rhs[j] * pows[j-i]){
						ct += p3[j+1];
					}
				}
			}
		}
		out.println(ct);
	}
	
	public static int[] palindrome(char[] str)
	{
		int n = str.length;
		int[] r = new int[2*n];
		int k = 0;
		for(int i = 0, j = 0;i < 2*n;i += k, j = Math.max(j-k, 0)){
			// normally
			while(i-j >= 0 && i+j+1 < 2*n && str[(i-j)/2] == str[(i+j+1)/2])j++;
			r[i] = j;
			
			// skip based on the theorem
			for(k = 1;i-k >= 0 && r[i]-k >= 0 && r[i-k] != r[i]-k;k++){
				r[i+k] = Math.min(r[i-k], r[i]-k);
			}
		}
		return r;
	}


	public static void main(String[] args) throws Exception {
		in = INPUT.isEmpty() ? new Scanner(System.in) : new Scanner(INPUT);
		out = new PrintWriter(System.out);

		solve();
		out.flush();
	}

	static int ni() {
		return Integer.parseInt(in.next());
	}

	static long nl() {
		return Long.parseLong(in.next());
	}

	static double nd() {
		return Double.parseDouble(in.next());
	}

	static void tr(Object... o) {
		if (INPUT.length() != 0)
			System.out.println(Arrays.deepToString(o));
	}
}
0