SSC CHSL तर्कशक्ति — क्रम एवं रैंकिंग (Ranking and Order) सम्पूर्ण अध्ययन सामग्री

beginner 18 min read

अवधारणा

क्रम एवं रैंकिंग (Ranking and Order) — यह reasoning का वह topic है जिसमें किसी पंक्ति, कक्षा, या queue में खड़े लोगों की स्थिति के आधार पर प्रश्न पूछे जाते हैं। SSC CHSL में यह topic लगभग हर tier में आता है क्योंकि इसमें calculation कम और logic ज़्यादा है।

सोचो — तुम एक cinema line में खड़े हो। तुम्हारे आगे 9 लोग हैं और पीछे 15 लोग हैं। तो line में कुल लोग हुए: 9 + 1 (तुम) + 15 = 25। यही इस पूरे topic की जड़ है।

इस topic में मुख्यतः तीन प्रकार के प्रश्न आते हैं:

प्रकार 1 — कुल संख्या निकालना: जब किसी का बाईं/दाईं तरफ से या ऊपर/नीचे से स्थान दिया हो, तो कुल संख्या निकालना।

प्रकार 2 — दूसरी तरफ से रैंक निकालना: जब कुल संख्या और एक तरफ से रैंक दी हो, तो दूसरी तरफ से रैंक निकालना।

प्रकार 3 — दो लोगों के बीच की संख्या: जब दो लोगों की position और उनके बीच के लोगों की संख्या दी हो।

प्रकार 4 — Vertical arrangement (boxes/floors): जब कोई चीज़ें ऊपर-नीचे सजाई हों और conditions दी गई हों।

इन सभी में एक ही बात काम करती है — गिनती का systematic तरीका। न कोई जटिल algebra, न कोई lengthy calculation। सिर्फ़ एक या दो formulas और ध्यान से conditions पढ़ना।


गहन विश्लेषण

मूल सूत्र — इन्हें रटो नहीं, समझो

सूत्र 1: कुल संख्या निकालना

जब किसी व्यक्ति की बाईं तरफ से position = L और दाईं तरफ से position = R हो:

कुल=L+R1\text{कुल} = L + R - 1

क्यों minus 1? क्योंकि वह व्यक्ति खुद दोनों तरफ से गिना जाता है। L में वह शामिल है, R में भी वह शामिल है — इसलिए एक बार घटाते हैं।

उदाहरण: Naresh बाईं तरफ से 17वाँ और दाईं तरफ से 22वाँ है। कुल=17+221=38\text{कुल} = 17 + 22 - 1 = 38

सूत्र 2: दूसरी तरफ से रैंक निकालना

जब कुल = N और एक तरफ से rank = R हो:

दूसरी तरफ से rank=NR+1\text{दूसरी तरफ से rank} = N - R + 1

क्यों +1? वही logic — खुद को एक बार जोड़ना है।

उदाहरण: 45 विद्यार्थियों में Neha की rank पहले से 15वीं है। अंत से rank=4515+1=31\text{अंत से rank} = 45 - 15 + 1 = 31

सूत्र 3: दो लोगों के बीच की संख्या

यह SSC CHSL में कम आता है, पर समझना ज़रूरी है। मान लो A बाईं तरफ से aaवें स्थान पर है और B बाईं तरफ से bbवें स्थान पर है (a<ba < b)। तो उनके बीच लोगों की संख्या:

बीच में=ba1\text{बीच में} = b - a - 1

Vertical Arrangement — Box/Floor Problems

SSC CHSL 2022 से इस प्रकार के प्रश्न बढ़े हैं। इनमें कुछ boxes या floors होते हैं और conditions दी जाती हैं। Strategy:

Step 1: सबसे strong condition (exact position) से शुरू करो।

Step 2: "immediately above/below" वाली conditions बाद में लगाओ।

Step 3: "between" वाली conditions सबसे अंत में verify करो।

उदाहरण के लिए — 6 boxes A, B, C, D, E, F हैं:

Final: C(1), A(2), D(3), F(4), E(5), B(6)

Dictionary Order — एक अलग प्रकार

SSC CHSL 2022 में dictionary order का भी प्रश्न आया। इसमें शब्दों को alphabetical order में सजाना होता है। Strategy:

  1. सभी शब्दों के पहले अलग अक्षर को देखो।
  2. जहाँ पहला अक्षर same हो, वहाँ दूसरा अक्षर देखो।
  3. कभी भी पूरा शब्द एक साथ compare मत करो — letter by letter जाओ।

शॉर्टकट और युक्तियाँ

patternL+R−1 का Visual Trick

जब भी "बाईं से X, दाईं से Y" दिखे — तुरंत X + Y − 1 लिखो, calculation खत्म। दिमाग़ में picture बनाओ: X लोग बाईं तरफ (खुद सहित), Y लोग दाईं तरफ (खुद सहित)। खुद एक बार extra गिना — इसलिए −1।

Micro-example: बाईं से 12, दाईं से 18 → 12 + 18 − 1 = 29। Standard method (सोचकर गिनना): ~30 seconds। यह formula: ~5 seconds।

patternN−R+1 का Mirror Trick

"दूसरी तरफ से rank" निकालने के लिए — total में से rank घटाओ, फिर 1 जोड़ो। इसे mirror की तरह सोचो: अगर तुम एक कतार में सामने से 10वें हो और कुल 30 लोग हैं, तो पीछे से: 30 − 10 = 20, फिर +1 = 21वें। वह +1 तुम्हें represent करता है।

Micro-example: 45 में से 15वीं → 45 − 15 + 1 = 31। बिना formula के trial-and-error: ~45 seconds। Formula से: ~8 seconds।

eliminationVertical Box — 'Anchor' पहले ढूंढो

Box problems में जो condition exact position देती है ("E दूसरे-अंतिम पर है") — वही तुम्हारा anchor है। इसे पहले रखो। बाकी सब conditions इस anchor के आसपास fit करो। कभी भी "between" वाली condition से शुरू मत करो — वह last में verify होती है।

Micro-example: 6 positions में E=5 दिया है → F=4 (immediately above), C=1 (E से 3 बीच में), A=2, B=6, D=3। अगर "between" से शुरू करते तो 3-4 possible cases बनते। Anchor से: सीधे unique solution। Step count: Anchor method = 4 steps, random trial = 8-10 steps।

eliminationDictionary Order — पहला अलग Letter देखो

जब 4-5 शब्दों को dictionary order में सजाना हो और सभी के पहले 2-3 अक्षर same हों — सीधे उस letter पर जाओ जहाँ पहला अंतर है। बाकी letters skip करो।

Micro-example: Tangential vs Tantalizing — पहले 3 letters "Tan" same। चौथा: "g" vs "t"। g < t alphabetically → Tangential पहले। इस तरह एक-एक letter देखने से 5 words को 15-20 seconds में sort कर सकते हो। पूरा शब्द compare करने में 40-50 seconds लगते।

patternQueue से बाहर निकलने पर — Overlap मत भूलो

जब कोई queue से बाहर निकलता है और positions बदलती हैं — नई total = old total − 1। नई positions calculate करते समय यह −1 ignore करना सबसे common mistake है।

Micro-example: 38 लोगों की line में 10वाँ व्यक्ति निकल जाता है। अब 17वें व्यक्ति की नई position: वह अब 16वाँ हो गया (क्योंकि उससे पहले एक कम हुआ)। बिना इस trick के: candidates wrong position calculate करते हैं।


तेज़-समाधान रूपरेखा

परीक्षा-हॉल में इस decision tree को follow करो:

क्या प्रश्न में "बाईं/दाईं से" या "ऊपर/नीचे से" दोनों positions दी हैं? → हाँ → कुल = L + R − 1 लगाओ। Done।

क्या कुल संख्या और एक तरफ से rank दी है? → हाँ → दूसरी तरफ से = N − R + 1 लगाओ। Done।

क्या multiple objects/boxes को conditions के साथ arrange करना है? → Exact position वाली condition (anchor) पहले रखो → "immediately" वाली conditions लगाओ → "between" से verify करो।

क्या words को dictionary order में सजाना है? → पहला अलग letter ढूंढो → alphabetically sort करो → options से match करो।

अगर answer दोनों formulas से नहीं मिल रहा: → रुको, एक बार check करो — क्या "between" का मतलब "including" तो नहीं? SSC कभी-कभी "between A and B" में A और B को भी शामिल कर लेता है।

एक normal ranking question को 30-40 seconds में solve करना चाहिए। अगर 60 seconds से ज़्यादा लग रहे हैं, उस question को mark करो और आगे बढ़ो।


हल किए गए PYQs

क्यों यह प्रश्न: यह SSC CHSL 2015 का classic प्रश्न है जो L+R−1 formula का सीधा application है। यह pattern हर साल repeat होता है।

Previous Year Questionपिछले वर्ष का प्रश्न2015
In a line, Naresh is 17th from the left & 22nd from the right. How many students are there in the line?
  1. 39
  2. 40
  3. 37
  4. 38
Solutionसमाधान
Total students = (position from left) + (position from right) – 1 = 17 + 22 – 1 = 38.

समाधान का रास्ता: बाईं से = 17, दाईं से = 22। Formula लगाओ: 17 + 22 − 1 = 38। Options देखे बिना यह answer confirm है। 10 seconds।


क्यों यह प्रश्न: यह N−R+1 formula का textbook उदाहरण है। SSC CHSL में यह formula 2-3 questions में हर tier में आता है।

Previous Year Questionपिछले वर्ष का प्रश्न2015
In a class of 45, Neha's rank is 15th from first, what is her rank from the last?
  1. 32
  2. 30
  3. 31
  4. 33
Solutionसमाधान
Rank from last = Total students – Rank from first + 1 = 45 – 15 + 1 = 31.

समाधान का रास्ता: कुल = 45, पहले से rank = 15। Formula: 45 − 15 + 1 = 31। Answer: 31वीं। 8 seconds।


क्यों यह प्रश्न: SSC CHSL 2022 का यह प्रश्न queue problem का exact repeat type है। नया pattern नहीं — same formula, नया context।

Previous Year Questionपिछले वर्ष का प्रश्न2022
If you are the 27th person in a queue from one end and 38th from the other end, what is the total number of persons in the queue?
  1. 66
  2. 63
  3. 64
  4. 65
Solutionसमाधान
Total persons = 27 + 38 - 1 = 64.

समाधान का रास्ता: एक end से = 27, दूसरे end से = 38। Formula: 27 + 38 − 1 = 64। Answer: 64 लोग। Notice करो — "queue" शब्द है, "line" नहीं, पर formula same है। 10 seconds।


क्यों यह प्रश्न: SSC CHSL 2022 का यह Box Arrangement प्रश्न नए pattern को represent करता है। Anchor method के बिना इसे 3-4 minutes लग सकते हैं।

Previous Year Questionपिछले वर्ष का प्रश्न2022
Six boxes, labelled A, B, C, D, E and F, are arranged vertically from top to bottom. The top position is considered as the 1st position, whereas the bottom position is the last position. Box F is placed immediately above box E. There are three boxes between A and B. Box A is above box B. There is one box between A and D. There are three boxes between E and C. Box E is placed at the second-last position. Which of the following boxes is placed immediately above box D?
  1. A
  2. B
  3. C
  4. F
Solutionसमाधान
Working through the constraints: position 1=C, 2=A, 3=D, 4=F, 5=E, 6=B. Box A is at position 2, immediately above D at position 3, so A is placed immediately above box D.

समाधान का रास्ता:

  1. Anchor: E = position 5 (दूसरा-अंतिम, कुल 6 boxes)
  2. F, E के immediately ऊपर → F = position 4
  3. E और C के बीच 3 boxes → C = position 1 (5 − 3 − 1 = 1)
  4. A और B के बीच 3 boxes, A ऊपर → A=2, B=6
  5. A और D के बीच 1 box → D = position 3

Final order: C(1), A(2), D(3), F(4), E(5), B(6) D के ठीक ऊपर = A। Answer: A। 90 seconds (anchor method से)।


आम गलतियाँ


संबंधित विषय

SarkariRise पर अभ्यास

Sign up + get 3 free mocks →