0
0

Multi-Level Ranking (Dual Criteria)

Introduction

Multi-level ranking problems ask you to rank the same set of items (people, students, players) using two different criteria - for example, marks in two subjects, height and weight, or speed and accuracy. You must combine these criteria using a clear rule (sum of ranks, weighted score, tie-break rules) to produce a final ordering.

This pattern is important because real-world decisions often consider multiple attributes simultaneously. Practicing these problems builds the ability to merge information, apply tie-breakers, and explain why one item outranks another.

Pattern: Multi-Level Ranking (Dual Criteria)

Pattern

Key concept: Convert each criterion to a comparable numeric score (rank or normalized score), combine the scores using a defined rule, then sort to get final ranks.

Common combination rules:

  • Sum of ranks - add ranks from both criteria (lower sum = better).
  • Weighted score - if one criterion matters more, compute weight × score and sum.
  • Tie-break rule - when combined scores tie, use a pre-decided rule (e.g., better in subject A wins).

Step-by-Step Example

Question

Six students A, B, C, D, E and F have the following ranks in Maths and English (1 = best):
Maths ranks: A = 2, B = 4, C = 1, D = 5, E = 3, F = 6.
English ranks: A = 3, B = 1, C = 4, D = 2, E = 5, F = 6.
Combine ranks by summing Maths + English (lower sum is better). If two students have the same sum, the student with the better Maths rank (lower number) is placed higher. Who is ranked second overall?

Solution

  1. Step 1: Compute combined score (sum of ranks)

    Add Maths and English ranks for each student:
    A → 2 + 3 = 5.
    B → 4 + 1 = 5.
    C → 1 + 4 = 5.
    D → 5 + 2 = 7.
    E → 3 + 5 = 8.
    F → 6 + 6 = 12.
  2. Step 2: Sort by combined score (ascending)

    Lower sum = better rank. Preliminary order by sum: A(5), B(5), C(5) → tie group; then D(7), E(8), F(12).
  3. Step 3: Apply tie-break rule within tied group

    Tie-break: better Maths rank (lower number) wins. Maths ranks among tied students: C=1, A=2, B=4. So the tie-group final order is: C (best), A (next), B (third among ties).
  4. Step 4: Final overall order

    Combine tie-group result with the rest: C (1st), A (2nd), B (3rd), D (4th), E (5th), F (6th).
  5. Final Answer:

    A (second overall)
  6. Quick Check:

    Sums: C=5, A=5, B=5 - tie resolved by Maths ranks C(1) > A(2) > B(4); D=7, E=8, F=12 - all consistent ✅

Quick Variations

1. Weighted ranks: give Maths weight 0.6 and English weight 0.4, compute weighted sums, then sort.

2. Use scores (marks) instead of ranks: normalize each subject (e.g., convert to percentile) before combining.

3. Multi-criteria elimination: first filter by one criterion (top k), then rank that subset by the second criterion.

4. Tie-break alternatives: use English rank, total marks, or earlier exam performance as tie-breakers.

Trick to Always Use

  • Step 1 → Convert each criterion to the same direction (higher = better or lower = better).
  • Step 2 → Choose a clear combining rule (sum, weighted sum) before you start.
  • Step 3 → Compute combined scores for all items, then sort once (don’t re-evaluate pairwise repeatedly).
  • Step 4 → Predefine tie-break rules and apply them systematically to tied groups.

Summary

Summary

  • Convert each attribute to comparable numeric ranks or scores.
  • Decide on a combining rule (sum, weighted sum) and apply it to all items.
  • Sort by combined score; lower or higher depending on rule determines final rank.
  • Use a clear tie-breaker (preference order) to resolve equal combined scores.

Example to remember:
If students’ combined sums are equal, use the pre-decided tie-break (for example, better Maths rank) to order them - this gives a unique final ranking.

Practice

(1/5)
1. Five students A, B, C, D, and E are ranked in Maths and Science as follows: Maths ranks → A=2, B=3, C=1, D=5, E=4; Science ranks → A=3, B=2, C=4, D=1, E=5. Using the rule (Total Rank = Maths + Science), who ranks first overall?
easy
A. C
B. B
C. A
D. D

Solution

  1. Step 1: Add ranks

    A=5, B=5, C=5, D=6, E=9.
  2. Step 2: Handle tie (A, B, C all 5)

    Better Maths rank breaks tie → C(1), A(2), B(3).
  3. Step 3: Final order

    C (1st), A (2nd), B (3rd), D (4th), E (5th).
  4. Step 4: First overall

    C has the best total and tie-break.
  5. Final Answer:

    C → Option A
  6. Quick Check:

    All ranks verified ✅
Hint: Add ranks, then apply tie-break using Maths rank.
Common Mistakes: Ignoring ties or mixing up which subject is the tie-breaker.
2. Five athletes A, B, C, D, and E are ranked by Speed and Strength. Speed ranks → A=3, B=2, C=5, D=1, E=4; Strength ranks → A=2, B=1, C=4, D=5, E=3. Who is second overall (sum of ranks)?
easy
A. B
B. A
C. E
D. D

Solution

  1. Step 1: Add ranks

    A=5, B=3, C=9, D=6, E=7.
  2. Step 2: Sort ascending

    B(3), A(5), D(6), E(7), C(9).
  3. Step 3: Identify second

    Second lowest sum = A(5).
  4. Final Answer:

    A → Option B
  5. Quick Check:

    Lowest sums: B(3), A(5) ✅
Hint: Smaller total rank = better performance.
Common Mistakes: Mixing direction (thinking higher = better).
3. Four employees P, Q, R, and S are ranked by Sales and Efficiency. Sales → P=2, Q=4, R=3, S=1; Efficiency → P=3, Q=2, R=4, S=1. Using total = Sales + Efficiency, who ranks last overall?
easy
A. P
B. Q
C. R
D. S

Solution

  1. Step 1: Compute totals

    P=5, Q=6, R=7, S=2.
  2. Step 2: Sort ascending

    S(2), P(5), Q(6), R(7).
  3. Step 3: Identify last

    Highest total = R(7).
  4. Final Answer:

    R → Option C
  5. Quick Check:

    R highest sum → last ✅
Hint: High combined total means lower overall rank.
Common Mistakes: Forgetting that lower totals mean better ranks.
4. Five candidates A, B, C, D, and E have ranks in Aptitude and Reasoning as follows: Aptitude → A=1, B=3, C=5, D=2, E=4; Reasoning → A=3, B=2, C=1, D=4, E=5. If total = Aptitude + Reasoning, who is third overall?
medium
A. A
B. B
C. C
D. D

Solution

  1. Step 1: Add ranks

    A=4, B=5, C=6, D=6, E=9.
  2. Step 2: Sort ascending

    A(4), B(5), D(6), C(6), E(9).
  3. Step 3: Tie between D and C

    Better Aptitude rank wins → D(2) < C(5).
  4. Step 4: Final order

    A(1st), B(2nd), D(3rd), C(4th), E(5th).
  5. Final Answer:

    D → Option D
  6. Quick Check:

    All combined totals verified ✅
Hint: Break ties using a specified subject rank.
Common Mistakes: Ignoring tie-breaking rule.
5. Five students W, X, Y, Z, and V are ranked in Maths and English. Maths → W=2, X=3, Y=1, Z=5, V=4; English → W=4, X=2, Y=3, Z=1, V=5. Find who is second overall based on total rank (lower is better).
medium
A. W
B. Y
C. X
D. Z

Solution

  1. Step 1: Add total ranks

    W=6, X=5, Y=4, Z=6, V=9.
  2. Step 2: Sort ascending

    Y(4), X(5), W(6), Z(6), V(9).
  3. Step 3: Handle tie (W, Z)

    Better Maths rank → W(2) < Z(5).
  4. Step 4: Final order

    Y(1st), X(2nd), W(3rd), Z(4th), V(5th).
  5. Final Answer:

    X → Option C
  6. Quick Check:

    Ranks and tie-break verified ✅
Hint: When two totals are equal, compare primary subject ranks.
Common Mistakes: Not checking for ties before finalizing the order.

Mock Test

Ready for a challenge?

Take a 10-minute AI-powered test with 10 questions (Easy-Medium-Hard mix) and get instant SWOT analysis of your performance!

10 Questions
5 Minutes