Round 1
Questions:
Problem Definition
Availability Array: Let A be an array where each element
A[i] represents the availability of the i-th component.
Reliability Array: Let R be another array where each element R[i] represents the reliability of the i-th component.
Stability Condition: The stability of a subset can be defined as:
S = min(A[i]) * ∑(R[i]) where S is the stability score of the subset formed by selected indices set (think of subset need not be contiguous)
Objective: The goal is to find the maximum stability score S by selecting an optimal subset of indices from both availability and reliability arrays.
Candidate's Approach
No approach provided.
Interviewer's Feedback
No feedback provided.