Palindromic Sum

3.5

2 votes
Linear Algebra, Fast Fourier transform, Medium-Hard, Mathematics
Problem

Given an array A of length N, find the number of non empty sub-arrays such that sum of all the elements in the sub-array is a palindrome. In other words, you have to find number of pairs (i,j) such that jx=iAx is a palindrome where (1ijN).

Input Format:
First line contains an integer, N (1N5105). Second line contains N space separated integers, Ai (1Ai2106), elements of the array A. The sum of all the elements in the array is in the range [1,2106].

Output Format:
Print an integer, number of non empty sub-arrays such that sum of all the elements in the sub-array is a palindrome.

Sample Input
4
10 1 12 3

Sample Output
3
Time Limit: 2
Memory Limit: 256
Source Limit:
Explanation

The 3 sub-arrays are (10,1), 1 and 3.

Editor Image

?