Submit | All submissions | Best solutions | Back to list |
WEIRDFN - Weird Function |
Let us define:
- F[1] = 1
- F[i] = (a*M[i] + b*i + c)%1000000007 for i > 1
where M[i] is the median of the array {F[1], F[2] ... F[i-1]}.
The median of an array is the middle element of that array when it is sorted. If there are an even number of elements in the array, we choose the first of the middle two elements to be the median.
Given a, b, c and n, calculate the sum F[1] + F[2] + ... + F[n].
Input
The first line contains T the number of test cases. Each of the next T lines contain 4 integers : a, b, c and n.
Output
Output T lines, one for each test case, containing the required sum.
Constraints
1 <= T <= 100
0 <= a, b, c < 1000000007
1 <= n <= 200000
Example
Sample Input:
2 1 0 0 3 3 1 2 6
Sample Output:
3 103
Added by: | Varun Jalan |
Date: | 2010-01-25 |
Time limit: | 1.116s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: NODEJS OBJC PERL6 SQLITE VB.NET |
Resource: | own problem used for Codechef Snackdown Onsite |
hide comments
|
||||||||
2012-11-19 06:26:53 Paul Draper
This problems "allows" for languages other than C/C++, but the time limit does not. |
||||||||
2012-08-15 03:19:05 Anand
Very nice problem I am getting TLE |
||||||||
2012-08-13 06:18:37 BOND
My inference after several TLE's - sets are slower than queues... |
||||||||
2012-07-12 14:58:56 nishchay
There is no JAVA submission for this problem, I am trying in JAVA getting TLE, Used inbuilt min/max priority queue. Any help ? |
||||||||
2012-05-06 21:13:55 Michael T
unsigned long long works just fine and despite what some people write on the forum stl's priority queue works great as well. |
||||||||
2012-03-28 17:53:03 Yashodhan S. Katte
TLE TLE TLE any hint? |
||||||||
2011-10-31 21:10:43 Gurpreet Singh
Please help. In which case my code fails? id=5941347 |
||||||||
2011-03-03 17:28:27 .::Manish Kumar::.
Finally Got AC. Why did unsigned long long not work while long long did ... ? |