Split Digits to Sum Closest To Target - Google Top Interview Questions
Problem Statement :
You are given a string s and an integer target. s represents a decimal number containing digits from 0 to 9. You can partition s into as many parts as you want and take the sum of its parts. Afterwards, return the minimum possible absolute difference to target. Constraints 1 ≤ n, target ≤ 1,000 where n is the length of s Example 1 Input s = "112" target = 10 Output 3 Explanation We can partition s into "1" + "12" which sums to 13 and abs(13 - 10) = 3. Example 2 Input s = "500" target = 300 Output 200 Explanation The best we can do is split s into just "500" and abs(300 - 500) = 200 Example 3 Input s = "1" target = 9 Output 8 Explanation We can only split s into just "1".
Solution :
Solution in C++ :
int help(string& s, int target, int i, vector<vector<int>>& dp) {
if (target < 0) {
int ret = 0;
for (int k = i; k < s.length(); k++) {
ret += (s[k] - '0');
}
return ret - target;
}
if (i == s.length()) return target;
if (dp[i][target] != -1) return dp[i][target];
int ret = 1e6, curr = 0;
for (int t = i; t < i + 4 and t < s.length(); t++) {
curr = curr * 10 + s[t] - '0';
ret = min(ret, help(s, target - curr, t + 1, dp));
}
return dp[i][target] = ret;
}
int solve(string s, int target) {
int n = s.length();
vector<vector<int>> dp(n, vector<int>(target + 1, -1));
return help(s, target, 0, dp);
}
Solution in Java :
import java.util.*;
class Solution {
public int solve(String s, int target) {
Set<Integer>[] sets = new HashSet[s.length() + 1];
for (int i = 0; i <= s.length(); i++) sets[i] = new HashSet<>();
sets[0].add(0);
for (int i = 0, i2 = 1; i != s.length(); i++, i2++) { // i2 is my index
Set<Integer> seti = sets[i2];
for (int j = 1; j <= 4; j++) {
int start = i + 1 - j;
if (start < 0)
break;
final int val = Integer.parseInt(s.substring(start, i + 1));
for (Integer prev : sets[start]) {
int nextval = prev + val;
if (nextval <= 2000)
seti.add(nextval);
}
}
}
int res = Integer.MAX_VALUE;
for (int v : sets[s.length()]) res = Math.min(res, Math.abs(target - v));
return res;
}
}
Solution in Python :
class Solution:
def solve(self, s, target):
n = len(s)
s = [int(c) for c in s]
# For each index, precompute the index of the next nonzero digit.
last = n
next_nonzero = [0] * n
for i in reversed(range(n)):
if s[i] != 0:
last = i
next_nonzero[i] = last
# Pick an arbitrary "bad" solution. We won't consider any solution worse than this one.
baseline = abs(target - sum(s))
@cache
def dp(i, t):
if i == n:
# base case
return abs(t)
if s[i] == 0:
# Skip leading zeroes, as they always contribute nothing.
return dp(next_nonzero[i], t)
ans = baseline
cur = 0
for j in range(i, n):
cur = cur * 10 + s[j]
if cur >= t + baseline:
break
if j == n - 1 or cur != 0:
ans = min(ans, dp(j + 1, t - cur))
return ans
return dp(0, target)
View More Similar Problems
AND xor OR
Given an array of distinct elements. Let and be the smallest and the next smallest element in the interval where . . where , are the bitwise operators , and respectively. Your task is to find the maximum possible value of . Input Format First line contains integer N. Second line contains N integers, representing elements of the array A[] . Output Format Print the value
View Solution →Waiter
You are a waiter at a party. There is a pile of numbered plates. Create an empty answers array. At each iteration, i, remove each plate from the top of the stack in order. Determine if the number on the plate is evenly divisible ith the prime number. If it is, stack it in pile Bi. Otherwise, stack it in stack Ai. Store the values Bi in from top to bottom in answers. In the next iteration, do the
View Solution →Queue using Two Stacks
A queue is an abstract data type that maintains the order in which elements were added to it, allowing the oldest elements to be removed from the front and new elements to be added to the rear. This is called a First-In-First-Out (FIFO) data structure because the first element added to the queue (i.e., the one that has been waiting the longest) is always the first one to be removed. A basic que
View Solution →Castle on the Grid
You are given a square grid with some cells open (.) and some blocked (X). Your playing piece can move along any row or column until it reaches the edge of the grid or a blocked cell. Given a grid, a start and a goal, determine the minmum number of moves to get to the goal. Function Description Complete the minimumMoves function in the editor. minimumMoves has the following parameter(s):
View Solution →Down to Zero II
You are given Q queries. Each query consists of a single number N. You can perform any of the 2 operations N on in each move: 1: If we take 2 integers a and b where , N = a * b , then we can change N = max( a, b ) 2: Decrease the value of N by 1. Determine the minimum number of moves required to reduce the value of N to 0. Input Format The first line contains the integer Q.
View Solution →Truck Tour
Suppose there is a circle. There are N petrol pumps on that circle. Petrol pumps are numbered 0 to (N-1) (both inclusive). You have two pieces of information corresponding to each of the petrol pump: (1) the amount of petrol that particular petrol pump will give, and (2) the distance from that petrol pump to the next petrol pump. Initially, you have a tank of infinite capacity carrying no petr
View Solution →