Given an array arr[] of size N and a set Q[][] containing M queries, the task is to execute the queries on the given array such that there can be two types of queries:
- Type 1: [i, x] – Update the element at ith index to x.
- Type 2: [k] – Find the kth smallest element in the array.
Examples:
Input: arr[] = {4, 3, 6, 2}, Q[][] = {{1, 2, 5}, {2, 3}, {1, 1, 7}, {2, 1}} Output: 5 2 Explanation: For the 1st query: arr[] = {4, 5, 6, 2} For the 2nd query: 3rd smallest element would be 5. For the 3rd query: arr[] = {7, 5, 6, 2} For the 4th query: 1st smallest element would be 2. Input: arr[] = {1, 0, 4, 2, 0}, Q[][] = {{1, 2, 1}, {2, 2}, {1, 4, 5}, {1, 3, 7}, {2, 1}, {2, 5}} Output: 1 0 7
Naive Approach: The naive approach for this problem is to update the ith element in an array in constant time and use sorting to find the Kth smallest element.
Below is the implementation of the approach:
C++
#include <bits/stdc++.h>
using namespace std;
int main()
{
int n = 5, m = 6;
int arr[] = { 1, 0, 4, 2, 0 };
vector<vector< int > > query
= { { 1, 2, 1 }, { 2, 2 }, { 1, 4, 5 },
{ 1, 3, 7 }, { 2, 1 }, { 2, 5 } };
for ( auto q : query) {
if (q[0] == 1) {
int i = q[1] - 1;
int x = q[2];
arr[i] = x;
}
else if (q[0] == 2) {
int k = q[1];
sort(arr, arr + n);
cout << arr[k - 1] << endl;
}
}
return 0;
}
|
Java
import java.util.*;
public class GFG {
public static void main(String[] args)
{
int n = 5 , m = 6 ;
int [] arr = { 1 , 0 , 4 , 2 , 0 };
List<List<Integer> > query = new ArrayList<>();
query.add(Arrays.asList( 1 , 2 , 1 ));
query.add(Arrays.asList( 2 , 2 ));
query.add(Arrays.asList( 1 , 4 , 5 ));
query.add(Arrays.asList( 1 , 3 , 7 ));
query.add(Arrays.asList( 2 , 1 ));
query.add(Arrays.asList( 2 , 5 ));
for (List<Integer> q : query) {
if (q.get( 0 ) == 1 ) {
int i = q.get( 1 ) - 1 ;
int x = q.get( 2 );
arr[i] = x;
}
else if (q.get( 0 ) == 2 ) {
int k = q.get( 1 );
Arrays.sort(arr);
System.out.println(arr[k - 1 ]);
}
}
}
}
|
Time Complexity: O(M * (N * log(N))) where M is the number of queries and N is the size of the array.
Auxiliary Space: O(1) as no extra space has been used.
Efficient Approach: The idea is to use a policy-based data structure similar to a set. Here, a tree based container is used to store the array in the form of a sorted tree such that all the nodes to the left are smaller than the root and all the nodes to the right are greater than the root. The following are the properties of the data structure:
- It is indexed by maintaining node invariant where each node contains a count of nodes in its subtree.
- Every time we insert a new node or delete a node, we can maintain the invariant in O(logN) time by bubbling up to the root.
- So the count of the node in its left subtree gives the index of that node in sorted order because the value of every node of the left subtree is smaller than the parent node.
Therefore, the idea is to follow the following approach for each query:
- Type 1: For this query, we update the ith element of the array. Therefore, we need to update the element both in the array and the data structure. In order to update the value in the tree container, the value arr[i] is found in the tree, deleted from the tree and the updated value is inserted back into the tree.
- Type 2: In order to find the Kth smallest element, find_by_order(K – 1) is used on the tree as the data is a sorted data. This is similar to Binary Search operation on the sorted array.
Below is the implementation of the above approach:
CPP
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace std;
using namespace __gnu_pbds;
typedef tree<pair< int , int >,
null_type,
less<pair< int , int > >,
rb_tree_tag,
tree_order_statistics_node_update>
indexed_set;
int cnt = 0;
indexed_set mySet;
void insert( int n, int arr[])
{
for ( int i = 0; i < n; i++) {
mySet.insert({ arr[i], cnt });
cnt++;
}
}
void update( int x, int y)
{
auto it = mySet.lower_bound({ y, 0 });
mySet.erase(it);
mySet.insert({ x, cnt });
cnt++;
}
int get( int k)
{
auto it = mySet.find_by_order(k - 1);
return (it->first);
}
void operations( int arr[], int n,
vector<vector< int > > query, int m)
{
insert(n, arr);
for ( int i = 0; i < m; i++) {
if (query[i][0] == 1) {
int j = query[i][1] - 1;
int x = query[i][2];
update(x, arr[j]);
arr[j] = x;
}
else {
int K = query[i][1];
cout << get(K) << endl;
}
}
}
int main()
{
int n = 5, m = 6, arr[] = { 1, 0, 4, 2, 0 };
vector<vector< int > > query = { { 1, 2, 1 },
{ 2, 2 },
{ 1, 4, 5 },
{ 1, 3, 7 },
{ 2, 1 },
{ 2, 5 } };
operations(arr, n, query, m);
return 0;
}
|
Time Complexity: Since every operation takes O(Log(N)) time and there are M queries, the overall time complexity is O(M * Log(N)).
Feeling lost in the world of random DSA topics, wasting time without progress? It's time for a change! Join our DSA course, where we'll guide you on an exciting journey to master DSA efficiently and on schedule.
Ready to dive in? Explore our Free Demo Content and join our DSA course, trusted by over 100,000 geeks!