SDITSBST - Binary Search Tree

no tags 

In this problem you are given two type of query

  1. Insert an integer to the list.
  2. Given an integer x, you're about to find an integer k which represent x's index if the list is sorted in descending order. Note that in this problem we will use 1-based indexing.

As the problem title suggest, this problem intended to be solved using Binary Search Tree.

Input

The first line contains an integer Q, which denotes how many queries that follows.
The next Q lines will be one of the type queries which follow this format:
1 x means insert x to the list
2 x means find x's index if the list is sorted in descending order.

Output

For each query type 2, print a line containing an integer as the answer or print "Data tidak ada" no quotes if the requested number does not exist in the current lis.

Example

Input:
10
10 1 100 1 74 2 100 2 70 1 152 1 21 1 33 2 100 2 21 2 1 Output: 1 Data tidak ada 2 5 Data tidak ada

Explanation

Until the third query, the current list is {100, 74}. Therefore you must print 1 as 100 is on the first index.

Arriving at the fourth query we haven't add any other number so the list still consists of {100, 74}. Since 70 is not in the list you must print "Data tidak ada" remember no quotes.

For the last three queries the list looks like this {152, 100, 74, 33, 21}
So the answer for the eighth, ninth, and tenth query respectively are 2, 5, and "Data tidak ada".

Constraints 

1 ≤ Q ≤ 200000

1 ≤ x ≤ 1018

It is guaranteed that all integer that inserted in the list will be distinct.

Notes

Since the inteneded solution is using BST data structure. The testcases have been designed to be balanced i.e. you will never encounter such cases where the tree is skewed.


hide comments
phuff: 2019-11-16 14:01:09

This will return a NZEC in Python 3. I had to rewrite in C++

Kholan: 2016-06-04 12:19:45

@tieuchanlong NZEC means non zero exit code. Problems on SPOJ need to return 0 on exit.

tieuchanlong: 2016-06-03 16:56:02

Why I get a NZEC??

Last edit: 2016-06-03 17:46:56
stcsteven: 2016-04-08 15:45:25

Is using In-Order recurrence can be counted as TLE?

Arianto Wibowo: 2016-04-08 02:22:25

There was a mistake in the testcases, however rejudge has been disabled by SPOJ. Please re-submit your solution to get the new verdict. Thanks and sorry for the inconvenience.

Last edit: 2016-04-08 06:05:48

Added by:Louis Arianto
Date:2016-03-23
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ASM64 GOSU JS-MONKEY
Resource:Praktikum Struktur Data D 2015 - Institut Teknologi Sepuluh Nopember