Arithmetic Sequence Queries ☃️ - Google Top Interview Questions


Problem Statement :


You are given a list of integers nums and a two-dimensional list of integers queries. 
Each element in queries contains [i, j] and asks whether the sublist of nums from [i, j], inclusive, is an arithmetic sequence. 
Return the number of queries that are true.

Constraints

0 ≤ n ≤ 100,000 where n is the length of nums

0 ≤ m ≤ 100,000 where m is the length of queries

Example 1

Input

nums = [1, 3, 5, 7, 6, 5, 4, 1]

queries = [

    [0, 3],

    [3, 4],

    [2, 4]

]

Output

2

Explanation

[1, 3, 5, 7] is an arithmetic sequence, so query [0, 3] is true.

[7, 6] is an arithmetic sequence, so query [3, 4] is true.

[5, 7, 6] is not an arithmetic sequence, so query [2, 4] is false.

Example 2

Input

nums = [1, 2]

queries = [

    [0, 0],

    [0, 1],

    [0, 1]

]

Output

3

Explanation

Any list with length less than or equal to 2 is an arithmetic sequence.



Solution :



title-img




                        Solution in C++ :

int dp[100005];
int solve(vector<int>& nums, vector<vector<int>>& queries) {
    int n = nums.size();
    for (int i = 0; i + 1 < n;) {
        int j = i + 1;
        while (j + 1 < n && nums[j + 1] - nums[j] == nums[i + 1] - nums[i]) j++;
        for (int k = i; k < j; k++) dp[k] = j - k;
        i = j;
    }
    int ret = 0;
    for (auto& q : queries) {
        if (dp[q[0]] >= q[1] - q[0]) ret++;
    }
    return ret;
}
                    


                        Solution in Java :

import java.util.*;

class Solution {
    public int solve(int[] nums, int[][] queries) {
        HashMap<Integer, Integer> hm = new HashMap();

        // length of arithmetic subsequence dp

        int n = nums.length;

        hm.put(n - 1, 1);
        hm.put(n - 2, 2);

        for (int i = n - 3; i >= 0; i--) {
            int this_diff = nums[i] - nums[i + 1];
            int next_diff = nums[i + 1] - nums[i + 2];

            if (this_diff == next_diff) {
                hm.put(i, 1 + hm.get(i + 1));
            } else {
                hm.put(i, 2);
            }
        }

        int res = 0;
        for (int[] q : queries) {
            int left = q[0];
            int right = q[1];
            if (hm.get(left) >= (right - left + 1)) {
                res++;
            }
        }
        return res;
    }
}
                    


                        Solution in Python : 
                            
class Solution:
    def solve(self, nums, queries):
        if not nums:
            return 0

        # preprocessing

        n = len(nums)
        # compute pairwise differences
        diff = [nums[i + 1] - nums[i] for i in range(n - 1)]
        # "run-length encoding": `rle[i]` is length of the longest constant sublist
        # of `diff` ending at (and including) `i`)
        rle = [0] * (n - 1)
        for i in range(n - 1):
            if i > 0 and diff[i] == diff[i - 1]:
                rle[i] = rle[i - 1] + 1
            else:
                rle[i] = 1

        # answer queries

        ans = 0
        for i, j in queries:
            # `nums[i:j+1]` is an arithmetic sequence iff `diff[i:j]` is constant
            if i == j:
                ans += 1
            else:
                ans += rle[j - 1] >= (j - i)
        return ans
                    


View More Similar Problems

Self-Driving Bus

Treeland is a country with n cities and n - 1 roads. There is exactly one path between any two cities. The ruler of Treeland wants to implement a self-driving bus system and asks tree-loving Alex to plan the bus routes. Alex decides that each route must contain a subset of connected cities; a subset of cities is connected if the following two conditions are true: There is a path between ever

View Solution →

Unique Colors

You are given an unrooted tree of n nodes numbered from 1 to n . Each node i has a color, ci. Let d( i , j ) be the number of different colors in the path between node i and node j. For each node i, calculate the value of sum, defined as follows: Your task is to print the value of sumi for each node 1 <= i <= n. Input Format The first line contains a single integer, n, denoti

View Solution →

Fibonacci Numbers Tree

Shashank loves trees and math. He has a rooted tree, T , consisting of N nodes uniquely labeled with integers in the inclusive range [1 , N ]. The node labeled as 1 is the root node of tree , and each node in is associated with some positive integer value (all values are initially ). Let's define Fk as the Kth Fibonacci number. Shashank wants to perform 22 types of operations over his tree, T

View Solution →

Pair Sums

Given an array, we define its value to be the value obtained by following these instructions: Write down all pairs of numbers from this array. Compute the product of each pair. Find the sum of all the products. For example, for a given array, for a given array [7,2 ,-1 ,2 ] Note that ( 7 , 2 ) is listed twice, one for each occurrence of 2. Given an array of integers, find the largest v

View Solution →

Lazy White Falcon

White Falcon just solved the data structure problem below using heavy-light decomposition. Can you help her find a new solution that doesn't require implementing any fancy techniques? There are 2 types of query operations that can be performed on a tree: 1 u x: Assign x as the value of node u. 2 u v: Print the sum of the node values in the unique path from node u to node v. Given a tree wi

View Solution →

Ticket to Ride

Simon received the board game Ticket to Ride as a birthday present. After playing it with his friends, he decides to come up with a strategy for the game. There are n cities on the map and n - 1 road plans. Each road plan consists of the following: Two cities which can be directly connected by a road. The length of the proposed road. The entire road plan is designed in such a way that if o

View Solution →