Angry Professor


Problem Statement :


A Discrete Mathematics professor has a class of students. Frustrated with their lack of discipline, the professor decides to cancel class if fewer than some number of students are present when class starts. Arrival times go from on time (arrivalTime < 0) to arrived late (arrivalTime > 0).

Given the arrival time of each student and a threshhold number of attendees, determine if the class is cancelled.

Example
n = 5
k = 3
a = [-2, -1, 0, 1, 2]

The first 3 students arrived on. The last 2 were late. The threshold is 3 students, so class will go on. Return YES.

Note: Non-positive arrival times (a[i] <= 0) indicate the student arrived early or on time; positive arrival times (a[i] > 0) indicate the student arrived a[i] minutes late.


Function Description

Complete the angryProfessor function in the editor below. It must return YES if class is cancelled, or NO otherwise.

angryProfessor has the following parameter(s):

int k: the threshold number of students
int a[n]: the arrival times of the n students

Returns
string: either YES or NO


Input Format

The first line of input contains t, the number of test cases.

Each test case consists of two lines.

The first line has two space-separated integers, n and k, the number of students (size of a) and the cancellation threshold.
The second line contains n space-separated integers (a[1], a[2],......., a[n]) that describe the arrival times for each student.

Constraints
1 <= t <= 10
1 <= n <= 1000
1 <= k <= n
-100 <= a[i] <= 100 where i belongs to [1, ....., n]



Solution :



title-img


                            Solution in C :

python 3  :

t = int(input())

for _ in range(t):
	n, k = map(int, input().split())
	arr = list(map(int, input().split()))

	cnt = 0
	for x in arr:
		if x <= 0:
			cnt += 1
	if cnt >= k:
		print("NO")
	else:
		print("YES")










Java  :


import java.util.Scanner;

public class AngryProfessor {
    public static void main(String[] args) {
    	int numberOfTests = 0;
    	Scanner sc =  new Scanner(System.in);
    	numberOfTests = sc.nextInt();
    	
    	for (int i = 0;i < numberOfTests;i++) {
    		int N = sc.nextInt();
    		int K = sc.nextInt();
    		int arrived = 0;
    		for (int j = 0;j < N;j++) {
    			int currentStudent = sc.nextInt();
    			if (currentStudent <= 0) {
    				arrived++;
    			}
    		}
    		if (arrived>=K) {
    			System.out.println("NO");
    		} else {
    			System.out.println("YES");
    		}
    	}
    	
    	sc.close();
    }
}










C ++  :

#include <bits/stdc++.h>
using namespace std;
int main()
{
	int a; cin >> a;
	for (int g=0; g<a; g++)
	{
		int b,c; cin >> b >> c;
		int num=0; 
		for (int g=0; g<b; g++)
		{
			int d; cin >> d;
			if (d<=0) num++; 
		}
		if (num>=c)
		{
			cout << "NO" << '\n'; 
		}
		else cout << "YES" << '\n';
	}
	return 0; 
}










C  :

/*Angry Professor*/

#include<stdio.h>

int main()
{
	int count, i, K, N, T, time;
	scanf("%d", &T);
	while (T--)
	{
		scanf("%d %d", &N, &K);
		count = 0;
		for (i = 0; i < N; i++)
		{
			scanf("%d", &time);
			if (time <= 0)
				count++;
		}
		puts((count < K) ? "YES" : "NO");
	}
	return 0;
}
                        








View More Similar Problems

Print in Reverse

Given a pointer to the head of a singly-linked list, print each data value from the reversed list. If the given list is empty, do not print anything. Example head* refers to the linked list with data values 1->2->3->Null Print the following: 3 2 1 Function Description: Complete the reversePrint function in the editor below. reversePrint has the following parameters: Sing

View Solution →

Reverse a linked list

Given the pointer to the head node of a linked list, change the next pointers of the nodes so that their order is reversed. The head pointer given may be null meaning that the initial list is empty. Example: head references the list 1->2->3->Null. Manipulate the next pointers of each node in place and return head, now referencing the head of the list 3->2->1->Null. Function Descriptio

View Solution →

Compare two linked lists

You’re given the pointer to the head nodes of two linked lists. Compare the data in the nodes of the linked lists to check if they are equal. If all data attributes are equal and the lists are the same length, return 1. Otherwise, return 0. Example: list1=1->2->3->Null list2=1->2->3->4->Null The two lists have equal data attributes for the first 3 nodes. list2 is longer, though, so the lis

View Solution →

Merge two sorted linked lists

This challenge is part of a tutorial track by MyCodeSchool Given pointers to the heads of two sorted linked lists, merge them into a single, sorted linked list. Either head pointer may be null meaning that the corresponding list is empty. Example headA refers to 1 -> 3 -> 7 -> NULL headB refers to 1 -> 2 -> NULL The new list is 1 -> 1 -> 2 -> 3 -> 7 -> NULL. Function Description C

View Solution →

Get Node Value

This challenge is part of a tutorial track by MyCodeSchool Given a pointer to the head of a linked list and a specific position, determine the data value at that position. Count backwards from the tail node. The tail is at postion 0, its parent is at 1 and so on. Example head refers to 3 -> 2 -> 1 -> 0 -> NULL positionFromTail = 2 Each of the data values matches its distance from the t

View Solution →

Delete duplicate-value nodes from a sorted linked list

This challenge is part of a tutorial track by MyCodeSchool You are given the pointer to the head node of a sorted linked list, where the data in the nodes is in ascending order. Delete nodes and return a sorted list with each distinct value in the original list. The given head pointer may be null indicating that the list is empty. Example head refers to the first node in the list 1 -> 2 -

View Solution →