-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAngry_Professor.py
97 lines (63 loc) · 2.56 KB
/
Angry_Professor.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# 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 () to arrived late ().
# Given the arrival time of each student and a threshhold number of attendees, determine if the class is cancelled.
# Example
# The first students arrived on. The last were late. The threshold is students, so class will go on. Return YES.
# Note: Non-positive arrival times () indicate the student arrived early or on time; positive arrival times () indicate the student arrived 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 students
# Returns
# string: either YES or NO
# Input Format
# The first line of input contains , the number of test cases.
# Each test case consists of two lines.
# The first line has two space-separated integers, and , the number of students (size of ) and the cancellation threshold.
# The second line contains space-separated integers () that describe the arrival times for each student.
# Constraints
# Sample Input
# 2
# 4 3
# -1 -3 4 2
# 4 2
# 0 -1 2 1
# Sample Output
# YES
# NO
# Explanation
# For the first test case, . The professor wants at least students in attendance, but only have arrived on time ( and ) so the class is cancelled.
# For the second test case, . The professor wants at least students in attendance, and there are who arrived on time ( and ). The class is not cancelled.
#!/bin/python3
import math
import os
import random
import re
import sys
#
# Complete the 'angryProfessor' function below.
#
# The function is expected to return a STRING.
# The function accepts following parameters:
# 1. INTEGER k
# 2. INTEGER_ARRAY a
#
def angryProfessor(k, a):
# Write your code here
a.sort()
for i in reversed(a):
if i>0:a.pop()
else:break
if len(a)>=k:return "NO"
else:return "YES"
if __name__ == '__main__':
fptr = open(os.environ['OUTPUT_PATH'], 'w')
t = int(input().strip())
for t_itr in range(t):
first_multiple_input = input().rstrip().split()
n = int(first_multiple_input[0])
k = int(first_multiple_input[1])
a = list(map(int, input().rstrip().split()))
result = angryProfessor(k, a)
fptr.write(result + '\n')
fptr.close()