Skip to content

Instantly share code, notes, and snippets.

@jianminchen
Created September 27, 2016 21:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jianminchen/0d9326dc4ac91f8045ad23001e43c774 to your computer and use it in GitHub Desktop.
Save jianminchen/0d9326dc4ac91f8045ad23001e43c774 to your computer and use it in GitHub Desktop.
HackerRank - summing pieces - step 4 score 13.9
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SummingPieces
{
class Program
{
/*
*
* start: 11:09
* read problem statement
* https://www.hackerrank.com/contests/world-codesprint-7/challenges/summing-pieces
* work on DP formula
* from 11:00 -> 12:46pm
* work on two test cases
* Fully understand the fomula, let us give it a try using code
*
* put code to run: 1:37pm
* debugging more 50+ minutes
* put int testing on 3:02pm
*
* Start: 3:06pm
* work on wrong answer, timeout issue
* Add memorization into the code
* Continue to more code more readable, less complicate
*
* start: 7:36pm
* work on bug fix using module -> 11 point out of 40
* continue to work on timeout 3 second issue
*/
static void Main(string[] args)
{
//test();
program();
}
private static void test()
{
int n = 3;
string[] arr = new string[3] { "1", "3", "6" };
Console.WriteLine(calculateUsingDP(n, arr));
}
/*
* start: 1:39pm
*
*/
private static void program()
{
int n = Convert.ToInt32(Console.ReadLine());
string[] arr = Console.ReadLine().Split(' ');
Console.WriteLine(calculateUsingDP(n, arr));
}
/*
* work on: 1:20pm
* continue: 1:20pm - ?
* IMPORTANT FIX:
* bug fix NO1: this fix -> point 4 -> point 11
*/
private static long calculateUsingDP(int n, string[] arr)
{
long module = 1000 * 1000 * 1000 + 7;
int[] input = convertInt(arr);
int[] kCount = new int[n];
int[] kSum = new int[n];
long[] sumA = new long[n];
kCount[0] = 1;
kSum[0] = 1;
sumA[0] = input[0];
for (int i = 1; i < n; i++)
{
long[] tmp = new long[i + 1];
//string[] log = new string[i + 1];
long memo = 0;
for (int j = i; j >= 0; j--)
{
int start = j;
int end = i;
int count = end - start + 1;
int leftEnd = j - 1;
if (leftEnd >= 0)
{
long tmpSum = (memo + input[start]) % module;
count = count % (int)module; // ? bug
long prod = multiplicationWithCare(tmpSum, count);
long v1 = sumA[leftEnd];
long v2 = kCount[leftEnd];
//tmp[start] = (v1 + v2 * prod) % module;
long v3 = multiplicationWithCare(v2, prod);
tmp[start] = (v1 + v3) % module;
//log[start] = v1 + " " + v2 + "*" + prod;
memo = tmpSum;
}
else
{
int start1 = 0;
int end1 = i;
int count1 = i + 1;
long tmpSum = (memo + input[start1]) % module;
//long v1 = calcProduction(input, 0, i);
count1 = count % (int)module;
long v1 = multiplicationWithCare(tmpSum, count1);
tmp[0] = v1 % module;
//log[0] = v1 + "";
}
}
//sumA[i] = tmp.Sum() % module;
sumA[i] = arraySum(tmp, module);
kCount[i] = (kSum[i - 1] + 1) % (int)module; // bug fix NO1
kSum[i] = (kSum[i - 1] + kCount[i]) % (int)module; //bug fix NO1
}
return sumA[n - 1];
}
/*
* start: 6:44pm
* exit: 6:46pm
*/
private static long arraySum(long[] tmp, long module)
{
long result = 0;
foreach (long item in tmp)
{
result = (result + item) % module;
}
return result;
}
/*
* start: 3:26pm
* Test case:
* sum * count
* Need to figure out how to shorten the time to do calculation
* Test the funnction
*/
private static long multiplicationWithCare(long sum, long count)
{
long module = 1000 * 1000 * 1000 + 7;
long MAX = long.MaxValue;
int step = (int)(MAX / sum);
long result = 0;
if (sum * count < MAX)
result = (sum * count) % module;
else
{
long no = count / step;
long small = count - (no * step);
result = (sum * step) % module;
result = (result * no) % module;
result += (sum * small);
result = result % module;
}
return result;
}
private static long multiplication(long sum, int count)
{
long module = 1000 * 1000 * 1000 + 7;
long MAX = long.MaxValue;
int step = (int)(MAX / sum);
long result = 0;
result = (sum * count) % module;
return result;
}
private static int[] convertInt(string[] arr)
{
int n = arr.Length;
int[] res = new int[n];
for (int i = 0; i < n; i++)
res[i] = Convert.ToInt32(arr[i]);
return res;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment