Skip to main content

FAILED RANGES HackerEarth Question

 Failed ranges

Max. score: 114

You are given two sorted arrays A and B of sizes N and M respectively. C is the following:

  • An array of size NM such that C[k]=(A[i]+B[j]) for all possible i and j.
  • C is a sorted array.

Example

  • A = {1,2,3}, B = {1,3,6} then C = {2,3,4,4,5,6,7,8,9}

  • 2 is first largest

  • 3 is second largest

  • 4 is third largest

  • 4 is fifth largest

  • 5 is sixth largest

Task

You are given two integers X and Y. Determine all the possible pairs of i,j such that A[i]+B[j] is:

  • Greater than the  Xth  greatest element of array C 
  • Less than the  Yth  greatest element of array C

This means that you have to determine all possible i and j such that Xth greatest<A[i]+B[j]< Yth greatest

Input format

  • The first line contains two space-separated integers N and M as described in the problem statement.
  • The second line contains N space-separated integers denoting the elements of array A.
  • The third line contains M space-separated integers denoting the elements of array B.
  • The fourth line contains two space-separated integers X and Y as described in the problem statement.

Output format

Print the output in two lines as follows:

  • First line: Print the number of pairs of i and j that satisfy the input that is provided.
  • Second line: Print all such pairs as described in the output format in sorted order.

 Constraints

  • 1≤N, M≤100000
  • 1≤X<YNM
  • 1≤A[i],B[j]≤10^8
  • 1≤YX≤100000
SAMPLE INPUT
 
2 4
1 4
2 3 5 7
2 6
SAMPLE OUTPUT
 
3
(1,3) (2,1) (2,2) 
Explanation

For given arrays A and B, all possible combinations of A*B in sorted order (sorted by sum value)

(Sum, A's index, B's index) ->

(3,1,1) (4,1,2) (6,1,3) (6,2,1) (7,2,2) (8,1,4) (9,2,3) (11,2,4) 

Solution for given X and Y will be ->

(Number of Pairs)

(1,3) (2,1) (2,2) (All pairs in form (A's index, B's index))

 

Output

3

(1,3) (2,1) (2,2)

 

 

Time Limit:5.0 sec(s) for each input file.
Memory Limit:256 MB
Source Limit:1024 KB
Marking Scheme:Score is assigned if any testcase passes.
Allowed Languages:Bash, C, C++, C++14, C++17, Clojure, C#, D, Erlang, F#, Go, Groovy, Haskell, Java, Java 8, Java 14, JavaScript(Rhino), JavaScript(Node.js), Julia, Kotlin, Lisp, Lisp (SBCL), Lua, Objective-C, OCaml, Octave, Pascal, Perl, PHP, Python, Python 3, Python 3.8, Racket, Ruby, Rust, Scala, Swift-4.1, Swift, TypeScript, Visual Basic

Comments

Popular posts from this blog

How to learn Database Management System

 What is DBMS ? DBMS stand for Database Management System and it is a software designed to Define, Manipulate, Retrive, Manage data in a Database. What are the application of DBMS ? It is needed where ever data is stored. Also it is a computerized record keeping system. Example of DBMS :- 1) E-Commerce website like Amazon, Flipkart, Shopcules, eBay, etc.             2) Online Television streaming or OTT Platform like ALT Balaji, Amazon                   Prime,Hotstar, Netflix, MX, etc.             3) It is used in Government Organisation like Bank, University, Police station,              Hospital, Railway, Airline, Human resource Department. 4) Social Media Platform like Whatsapp, Facebook, Instagram, Twitter, Linkedin,      etc.                    THATS ALL FOR TODAY !...

“Maintaining the Work from Home culture among employees for your startup”

  “Maintaining the Work from Home culture among employees for your startup”   While many of us are used to swanky offices in tony districts of our cities and whether we are ready or not, COVID-19 has transitioned many companies to enable remote work at scale. So, how can organizations seize the opportunity and think long-term? Thankfully, most organizations are equipping and have equipped themselves to continue business-as-usual by suddenly shifting gears and adopting work-from-home practices.   But working-from-home comes with its own set of unique challenges—both for the employees and employers. So how to make sure employees are engaged and motivated even when they are away from their traditional work environment? Some of the ways that can maximise the effectiveness of your new Work-From-Home setting: Community Building When employees suddenly start working away from their regular setting, they ar...

Infinix Hot 9 specs leaked

Infinix Hot 9 One of the most awaited smartphone brand Infinix is all set for it's another bid device launch "Infinix Hot 9" series which will be the successor of Infinix hot 8 will be launching soon. It was said on by the officials that it will be launched after 18 days which will be on 17th of april But we are here with it's specs before it's actual launch. Here is the image of it's back panel showing a quad camera in a circular housing featuring 48 MP primary Sensor. The other cameras in the setup could include a wide-angle lens, a macro lens and a depth sensor, going by current trends. The rear of the phone does not feature a fingerprint sensor, suggesting that it may either feature a power button-mounted fingerprint scanner on the side, or an in-display fingerprint sensor. However, given that in-display fingerprint sensors depend on local pixel dimming, and the same is largely possible with OLED-based display panels, it is likelier that...