In C language please! You are given an integer array banned and two integers n and maxSum. You are choosing some number of integers following the below rules: ● The chosen integers have to be in the range [1, n]. ● Each integer can be chosen at most once. ● The chosen integers should not be in the array banned. ● The sum of the chosen integers should not exceed maxSum. Return the maximum number of integers you can choose following the mentioned rules Constraint: ● 1 <= banned.length <= 10^4 ● 1 <= banned [i], n <= 10^4 ● 1 <= maxSum <= 10^9 Example 1: Input: banned = [1,2,3,4,5,6,7], n = 8, maxSum = 1 Output: 0 Reason: You cannot choose any integer while following the mentioned conditions. Example 2: Input: banned = [1,6,5], n = 5, maxSum = 6 Output: 2 Reason:.You can choose the integers 2 and 4. 2 and 4 are from the range [1, 5], both did not appear in banned, and their sum is 6, which did not exceed maxSum. Example 3: Input: banned = [11], n = 7, maxSum = 50 Output: -7 Reason: You can choose the integers 1, 2, 3, 4, 5, 6, and 7. They are from the range [1, 7], all did not appear in banned, and their sum is 28, which did not exceed maxSum.

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

In C language please! You are given an integer array banned and two integers n and maxSum. You are choosing some number of integers following the below rules:

● The chosen integers have to be in the range [1, n].

● Each integer can be chosen at most once.

● The chosen integers should not be in the array banned.

● The sum of the chosen integers should not exceed maxSum.

Return the maximum number of integers you can choose following the mentioned rules Constraint:

● 1 <= banned.length <= 10^4

● 1 <= banned [i], n <= 10^4

● 1 <= maxSum <= 10^9

Example 1:

Input: banned = [1,2,3,4,5,6,7], n = 8, maxSum = 1

Output: 0

Reason: You cannot choose any integer while following the mentioned conditions.

Example 2:

Input: banned = [1,6,5], n = 5, maxSum = 6

Output: 2

Reason:.You can choose the integers 2 and 4. 2 and 4 are from the range [1, 5], both did not appear in banned, and their sum is 6, which did not exceed maxSum.

Example 3:

Input: banned = [11], n = 7, maxSum = 50

Output: -7

Reason: You can choose the integers 1, 2, 3, 4, 5, 6, and 7. They are from the range [1, 7], all did not appear in banned, and their sum is 28, which did not exceed maxSum.

 

Expert Solution
steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Knowledge Booster
Array
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-engineering and related others by exploring similar questions and additional content below.
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY