Files
python.softwareshinobi.com/docs/.recycle/chapter-04-complex-conditions-exam-problems.md
Software Shinobi 0e4be2e42c
Some checks reported warnings
learn org at code.softwareshinobi.com/python.softwareshinobi.com/pipeline/head This commit was not built
automated terminal push
2025-06-05 20:40:34 -04:00

513 lines
28 KiB
Markdown
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Chapter 4.2. More Complex Conditions Exam Problems
The previous chapter introduced you to **nested conditions** in **Python**. Via nested conditions, the program logic in a particular application can be represented using **`if` conditional statements** that are nested inside each other. We also explained the more complex **`if-elif-else`** conditional statement that allows selecting from a number of options. Now we are going to solve some practical exercises and make sure we have an in-depth understanding of the material, by discussing a set of more complex problems that had been given to students on exams. Before moving to the problems, let's first recall what nested conditions are:
## Nested Conditions
```python
if condition1:
if condition2:
# body
else:
# body
```
<table><tr><td><img src="/assets/alert-icon.png" style="max-width:50px" /></td>
<td>Remember that it is not a good practice to write <strong>deeply nested conditional statements</strong> (with more than three levels of nesting). Avoid nesting of more than three conditional statements inside one another. This complicates the code and makes its reading and understanding difficult.</td>
</tr></table>
## If-Elif-Else Conditions
When the program operation depends on the value of a variable, we can do consecutive checks with multiple **`if-elif-else`** blocks:
```python
if condition1:
# body
elif condition2:
# body
elif condition3:
# body
else:
# body
```
The body can consist of any code, as long as it corresponds to the syntactic particularity of the language and is indented one tab-press in.
## Exam Problems
Now, after we refreshed our knowledge on how to use nested conditional statements to implement more complex conditions and program logic, let's solve some exam problems.
## Problem: On Time for The Exam
A student has to attend **an exam at a particular time** (for example at 9:30 am). They arrive in the exam room at a particular **time of arrival** (for example 9:40 am). It is considered that the student has arrived **on time** if they have arrived **at the time when the exam starts or up to half an hour earlier**. If the student has arrived **more than 30 minutes earlier**, the student has come **too early**. If they have arrived **after the time when the exam starts**, they are **late**.
Write a program that inputs the exam starting time and the time of student's arrival, and prints if the student has arrived **on time**, if they have arrived **early** or if they are **late**, as well as **how many hours or minutes** the student is early or late.
### Input Data
**Four integers** are read from the console (each on a new line):
- The first line contains the **exam starting time (hours)** an integer from 0 to 23
- The second line contains the **exam starting time (minutes)** an integer from 0 to 59.
- The third line contains the **hour of arrival** an integer from 0 to 23.
- The fourth line contains **minutes of arrival** an integer from 0 to 59.
### Output Data
Print the following on the first line on the console:
- "**Late**", if the student arrives **later** compared to the exam starting time.
- "**On time**", if the student arrives **exactly** at the exam starting time or up to 30 minutes earlier.
- "**Early**", if the student arrives more than 30 minutes **before** the exam starting time.
If the student arrives with more than one minute difference compared to the exam starting time, print on the next line:
- "**mm minutes before the start**" for arriving less than an hour earlier.
- "**hh:mm hours before the start**" for arriving 1 hour or earlier. Always print minutes using 2 digits, for example "1:05".
- "**mm minutes after the start**" for arriving less than an hour late.
- "**hh:mm hours after the start**" for arriving late with 1 hour or more. Always print minutes using 2 digits, for example "1:03".
### Sample Input and Output
| Input | Output | Input | Output |
|---|---|---|---|
|9<br>30<br>9<br>50|Late<br>20 minutes after the start|16<br>00<br>15<br>00|Early<br>1:00 hours before the start|
|9<br>00<br>8<br>30|On time<br>30 minutes before the start|9<br>00<br>10<br>30|Late<br>1:30 hours after the start|
|14<br>00<br>13<br>55|On time<br>5 minutes before the start|11<br>30<br>8<br>12|Early<br>3:18 hours before the start|
| Input | Output |
|---|---|
|10<br>00<br>10<br>00|On time|
|11<br>30<br>10<br>55|Early<br>35 minutes before the start|
|11<br>30<br>12<br>29|Late<br>59 minutes after the start|
### Hints and Guidelines
<table><tr><td><img src="/assets/alert-icon.png" style="max-width:50px" /></td>
<td>It is recommended <strong>to read the assignment a few times,</strong> take notes and sketch the examples while thinking before you start writing code.</td></tr></table>
#### Processing The Input Data
According to the assignment, we expect **four** lines containing different **integers** to be passed. Examining the provided parameters, we can use the **`int`** type, as it is suitable for the expected values. We simultaneously **read** the input data and **parse** the string value to the selected data type for the **intege**r.
![](/assets/chapter-4-2-images/01.On-time-for-the-exam-01.png)
Examining the expected output, we can create variables that contain the different output data types, to avoid using the so-called **"magic strings"** in the code.
![](/assets/chapter-4-2-images/01.On-time-for-the-exam-02.png)
#### Calculations
After reading the input data, we can now start writing the logic for calculating the result. Let's first calculate the **start time** of the exam **in minutes** for easier and more accurate comparison:
![](/assets/chapter-4-2-images/01.On-time-for-the-exam-03.png)
Let's also calculate the **student arrival time** using the same logic:
![](/assets/chapter-4-2-images/01.On-time-for-the-exam-04.png)
What remains is to calculate the difference between the two times, to determine **when** and **what time compared to the exam time** the student arrived at:
![](/assets/chapter-4-2-images/01.On-time-for-the-exam-05.png)
Our next step is to do the required **checks and calculations**, and finally, we are going to print the output. Let's separate the code into **two** parts.
- First, let's show when the student arrived were they early, late or on time. To do that, we will use an **`if-else`** statement.
- After that, we're going to show the **time difference**, if the student arrives at a **different time** compared to the **exam starting time**.
To spare one additional check (**`else`**), we can, by default, assume that the student was late.
After that, according to the condition, we will check whether the difference in times is **more than 30 minutes**. If this is true, we assume that the student is **early**. If we do not match the first condition, we need to check if **the difference is less than or equal to zero (**`<= 0`**)**, by which we are checking the condition whether the student arrived within the range of **0 to 30 minutes** before the exam.
In all other cases, we assume that the student **was late**, which we set as **default**, and no additional check is needed:
![](/assets/chapter-4-2-images/01.On-time-for-the-exam-06.png)
Finally, we need to print **what is the time difference between exam start time and student arrival time**, as well as whether this time difference indicates the time of arrival **before or after the exam start**.
We check whether the time difference is **more than** one hour, to print hours and minutes in the required **format**, or **less than** one hour, to print **only minutes** as a format and description. We also need to do one more check whether the time of student's arrival is **before** or **after** the exam start time.
![](/assets/chapter-4-2-images/01.On-time-for-the-exam-07.png)
#### Printing The Result
Finally, what remains is to print the result on the console. According to the requirements, if the student arrived right on time **(not even a minute difference)**, we do not need to print a second result. This is why we apply the following **condition**:
![](/assets/chapter-4-2-images/01.On-time-for-the-exam-08.png)
Actually, for the task, printing the result **on the console** can be done at a much earlier stage during the calculations. This, however, is not a very good practice. **Why?**
Let's examine the idea that our code is not 10 lines, but 100 or 1000! One day, printing the result will not be done on the console, but will be written in a **file** or displayed as a **web application**. Then, how many places in the code you will make changes at, due to such a correction? Are you sure you won't miss some places?
<table><tr><td><img src="/assets/alert-icon.png" style="max-width:50px" /></td>
<td>Always consider the code that contains logical calculations as a separate piece, different from the part that processes the input and output data. It has to be able to work regardless of how the data is passed to it and where the result will be displayed.</td></tr></table>
### Testing in The Judge System
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/1052#0](https://judge.softuni.org/Contests/Practice/Index/1052#0).
## Problem: Trip
It is strange, but most people start planning their vacations well in advance. A young programmer from Bulgaria has a **certain budget** and spare time in a particular **season**.
Write a program that accepts **as input the budget and season** and **as output** displays programmer's **vacation place** and **the amount of money they will spend**.
**The budget determines the destination, and the season determines what amount of the budget will be spent**. If the season is summer, the programmer will go camping, if it is winter he will stay in a hotel. If it is in Europe, regardless of the season, the programmer will stay in a hotel. Each camp or hotel, according to the destination, has its price, which corresponds to a particular **percentage of the budget**:
- If **100 BGN or less** somewhere in **Bulgaria**.
- **Summer** **30%** of the budget
- **Winter** **70%** of the budget.
- If **1000 BGN or less** somewhere in the **Balkans**.
- **Summer** **40%** of the budget.
- **Winter** **80%** of the budget.
- If **more than 1000 BGN** somewhere in **Europe**.
- Upon traveling in Europe, regardless of the season, the programmer will spend **90% of the budget**.
### Input Data
The input data will be read from the console and will consist of **two lines**:
- The **first** line holds **the budget** a **floating-point(double) number** in the range [**10.00 … 5000.00**].
- The **second** line holds one of two possible seasons that are "**summer**" or "**winter**".
### Output Data
**Two lines** must be printed on the console.
- On the **first** line "**Somewhere in {destination}**" among "**Bulgaria**", "**Balkans**" and "**Europe**".
- On the **second** line "{**Vacation type**} {**Amount spent**}".
- The **Vacation** can be in a "**Camp**" or "**Hotel**".
- The **Amount** must be **rounded up to the second digit after the decimal point**.
### Sample Input and Output
| Input | Output |
|---|---|
|50<br>summer|Somewhere in Bulgaria<br>Camp - 15.00|
|75<br>winter|Somewhere in Bulgaria<br>Hotel - 52.50|
|312<br>summer|Somewhere in Balkans<br>Camp - 124.80|
|678.53<br>winter|Somewhere in Balkans<br>Hotel - 542.82|
|1500<br>summer|Somewhere in Europe<br>Hotel - 1350.00|
### Hints and Guidelines
Typically, as for the other tasks, we can separate the solution into the following parts:
* Reading the input data
* Doing calculations
* Printing the result
#### Processing The Input Data
While reading the requirements carefully, we understand that we expect **two** lines of input data. Our first parameter is a **real number**, for which we need to pick an appropriate variable type. We can pick **`float`** as a variable for the budget and **`string`** for the season:
![](/assets/chapter-4-2-images/02.Trip-01.png)
<table><tr><td><img src="/assets/alert-icon.png" style="max-width:50px" /></td>
<td>Always take into consideration what <strong>value type</strong> is passed in the input data, as well as what type these need to be converted to, for the program conditions to work properly!</td>
</tr></table>
#### Calculations
Let's create and initialize the variables needed for applying the logic and calculations:
![](/assets/chapter-4-2-images/02.Trip-02.png)
Similar to the example in the previous task, we can initialize variables with some of the output results, to spare additional initialization.
When examining the problem requirements once again, we notice that the main distribution of where the vacation will take place is determined by the **value of the budget**, i.e. our main logic is divided into two cases:
* If the budget is **less than** a particular value.
* If it is **less than** another value or is **more than** the specified border value.
Based on the way we arrange the logical scheme (the order in which we will check the border values), we will have more or fewer conditions in the solution. **Think why!**
After that, we need to apply a condition to check the value of the **season**. Based on it, we will determine what percentage of the budget will be spent, as well as where the programmer will stay in a **hotel** or a **camp**. This is a sample code that may be used to implement the above idea:
![](/assets/chapter-4-2-images/02.Trip-03.png)
We can optimize the conditional check by assigning a **default value** and then checking one variant less. **This saves one logical step**. For example, this block:
![](/assets/chapter-4-2-images/02.Trip-04.png)
can be shortened like so:
![](/assets/chapter-4-2-images/02.Trip-05.png)
#### Printing The Result
What remains is to display the calculated result on the console:
![](/assets/chapter-4-2-images/02.Trip-06.png)
### Testing in The Judge System
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/1052#1](https://judge.softuni.org/Contests/Practice/Index/1052#1).
## Problem: Operations
Write a program that reads **two integers (n1 and n2)** and an **operator** that performs a particular mathematical operation with them. Possible operations are: **summing up** (**`+`**), **subtraction** (**`-`**), **multiplying** (**`*`**), **division** (**`/`**) and **modular division** (**`%`**). Upon summing up, subtracting and multiplying, the console must print the result and display whether it is an **even** or an **odd** number. Upon regular division **just the result**, and upon modular division **the remainder**. You need to take into consideration the fact that **the divisor can be equal to zero** (**`= 0`**), and dividing by zero is not possible. In this case, a **special notification** must be printed.
### Input Data
**3 lines** are read from the console:
- **N1** **integer** within the range [**0 … 40 000**].
- **N2** **integer** within the range [**0 … 40 000**].
- **Operator** **one character** among: "+", "-", "*", "/", "%"."**+**", "**-**", "**\***", "**/**", "**%**".
### Output Data
Print the output as a **single line** on the console:
- If the operation is **summing up**, **subtraction** or **multiplying**:
- **"{N1} {operator} {N2} = {output} {even/odd}"**.
- If the operation is **division**:
- **"{N1} / {N2} = {output}"** the result is **formatted** up **to the second digit after the decimal point**.
- If the operation is **modular division**:
- **"{N1} % {N2} = {remainder}"**.
- In case of **dividing by 0** (zero):
- **"Cannot divide {N1} by zero"**.
### Sample Input and Output
| Input | Output | Input | Output |
|---|---|---|---|
|123<br>12<br>/|123 / 12 = 10.25|112<br>0<br>/|Cannot divide 112 by zero|
|10<br>3<br>%|10 % 3 = 1|10<br>0<br>%|Cannot divide 10 by zero|
| Input | Output |
|---|---|
|10<br>12<br>+|10 + 12 = 22 - even|
|10<br>1<br>-|10 - 1 = 9 - odd|
|7<br>3<br>\*|7 * 3 = 21 - odd|
### Hints and Guidelines
The problem is not complex, but there are a lot of lines of code to write.
#### Processing The Input Data
Upon reading the requirements, we understand that we expect **three** lines of input data. The first two lines are **integers** (within the specified range), and the third one **an arithmetical symbol**.
![](/assets/chapter-4-2-images/03.Operations-01.png)
#### Calculations
Let's create and initialize the variables needed for the logic and calculations. In one variable we will store **the calculations output**, and in the other one, we will use it for the **final output** of the program.
![](/assets/chapter-4-2-images/03.Operations-02.png)
When carefully reading the requirements, we understand that there are cases where we don't need to do **any** calculations, and simply display a result. Therefore, we can first check if the second number is **`0`** (zero), as well as whether the operation is a **division** or a **modular division**, and then initialize the output.
![](/assets/chapter-4-2-images/03.Operations-03.png)
Let's place the output as a value upon initializing the **`output`** parameter. This way we can apply only **one condition** whether it is needed to **recalculate** or **replace** this output.
Based on the approach that we choose, our next condition will be either a simple **`elif`** or a single **`if`**. In the body of this condition, using additional conditions regarding the manner of calculating the output based on the passed operator, we can separate the logic based on the **structure** of the expected **output**.
From the requirements we can see that for **summing up** (**`+`**), **subtraction** (**`-`**) or **multiplying** (**`*`**) the expected output has the same structure: **"{n1} {operator} {n2} = {output} {even/odd}"**, whereas for **division** (**`/`**) and **modular division** (**`%`**) the output has a different structure:
![](/assets/chapter-4-2-images/03.Operations-04.png)
We finish the solution by applying conditions for summing up, subtraction and multiplying:
![](/assets/chapter-4-2-images/03.Operations-05.png)
For short and clear conditions, such as the above example for even and odd numbers, you can use a **ternary operator**. Let's examine the possibility to apply a condition **with** or **without** a ternary operator.
**Without using a ternary operator** the code is longer but easier to read:
![](/assets/chapter-4-2-images/03.Operations-06.png)
**Upon using a ternary operator** the code is much shorter, but may require additional efforts to read and understand the logic:
![](/assets/chapter-4-2-images/03.Operations-07.png)
#### Printing The Output
Finally, what remains is to print the calculated result on the console:
![](/assets/chapter-4-2-images/03.Operations-08.png)
### Testing in The Judge System
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/1052#2](https://judge.softuni.org/Contests/Practice/Index/1052#2).
## Problem: Match Tickets
**A group of football** fans decided to buy **tickets for Euro Cup 2016**. The tickets are sold in **two** price categories:
- **VIP** **499.99** BGN (Bulgarian leva).
- **Normal** **249.99** BGN (Bulgarian leva).
The football fans **have a shared budget**, and the **number of people** in the group determines what percentage of the budget will be **spent on transportation**:
- **1 to 4** 75% of the budget.
- **5 to 9** 60% of the budget.
- **10 to 24** 50% of the budget.
- **25 to 49** 40% of the budget.
- **50 or more** 25% of the budget.
**Write a program** that **calculates whether the money left in the budget** will be enough for the football fans to **buy tickets in the selected category**, as well as **how much money** they will **have left or be insufficient**.
### Input Data
The input data will be read from the **console** and contains **exactly 3 lines**:
- The **first** line contains the budget a real number within the range [**1 000.00 … 1 000 000.00**].
- The **second** line contains the **category** "**VIP**" or "**Normal**".
- The **third** line contains the **number of people in the group** an integer within the range [**1 … 200**].
### Output Data
**Print the following** on the console as **one line**:
- If the **budget is sufficient**:
- "**Yes! You have {N} leva left.**" where **N is the amount of remaining money** for the group.
- If the **budget is NOT sufficient**:
- "**Not enough money! You need {M} leva.**" where **M is the insufficient amount**.
**The amounts** must be **formatted up to the second digit after the decimal point**.
### Sample Input and Output
| Input | Output | Explanations |
|---|---|---|
|1000<br>Normal<br>1|Yes! You have 0.01 leva left.|**1 person : 75%** of the budget is spent on **transportation**.<br>**Remaining amount:** 1000 750 = **250**.<br>Category **Normal**: the ticket **price is 249.99 * 1 = 249.99**<br>249.99 < 250: **the person will have** 250 249.99 = **0.01** money left|
| Input | Output | Explanations |
|---|---|---|
|30000<br>VIP<br>49|Not enough money! You need 6499.51 leva.|**49 people: 40%** of the budget are spent on **transportation**.<br>Remaining amount: 30000 12000 = 18000.<br>Category **VIP**: the ticket **costs** 499.99 * 49.<br>**24499.510000000002** < 18000.<br>**The amount is not enough** 24499.51 - 18000 = **6499.51**|
### Hints and Guidelines
We will read the input data and perform the calculations described in the task requirements, to check if the money will be sufficient.
#### Processing The Input Data
Let's read the requirements carefully and examine what we expect to take as **input data**, what is expected to **return as a result**, as well as what the **main steps** for solving the problem are. For a start, let's process and save the input data in **appropriate variables**:
![](/assets/chapter-4-2-images/04.Match-tickets-01.png)
#### Calculations
Let's create and initialize the variables needed for doing the calculations:
![](/assets/chapter-4-2-images/04.Match-tickets-02.png)
Let's review the requirements once again. We need to perform **two** different block calculations. By the first set of calculations, we must understand what part of the budget has to be spent on **transportation**. You will notice that the logic for doing these calculations only depends on the **number of people in the group**. Therefore, we will do a logical breakdown according to the number of football fans. We will use a conditional statement a sequence of **`if-elif`** blocks:
![](/assets/chapter-4-2-images/04.Match-tickets-03.png)
By the second set of calculations, we need to find out what amount will be needed to **purchase tickets** for the group. According to the requirements, this only depends on the type of tickets that we need to buy. Let's use **`if-elif`** conditional statement:
![](/assets/chapter-4-2-images/04.Match-tickets-04.png)
Once we have calculated the **transportation costs** and **ticket costs**, what remains is to calculate the final result and understand if the group of football fans will **attend** Euro Cup 2016 or **not**, by the provided available parameters.
For the output, to spare one **condition** in the construction, we will assume that the group can, by default, attend Euro Cup 2016:
![](/assets/chapter-4-2-images/04.Match-tickets-05.png)
#### Printing The Result
Finally, we need to display the calculated result on the console.
### Testing in The Judge System
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/1052#3](https://judge.softuni.org/Contests/Practice/Index/1052#3).
## Problem: Hotel Room
A hotel offers **two types of rooms: studio and apartment**.
Write a program that calculates **the price of the whole stay for a studio and apartment**. **Prices** depend on the **month** of the stay:
| **May and October** | **June and September** | **July and August** |
|---|---|---|
|Studio **50** BGN/night|Studio **75.20** BGN/night|Studio **76** BGN/night|
|Apartment **65** BGN/night|Apartment **68.70** BGN/night|Apartment **77** BGN/night|
The following **discounts** are also offered:
- For a **studio**, in the case of **more than 7** nights stayed in **May and October: 5% discount**.
- For a **studio**, in the case of **more than 14** nights stayed in **May and October: 30% discount**.
- For a **studio**, in the case of **more than 14** nights stayed in **June and September: 20% discount**.
- For an **apartment**, in the case of **more than 14 nights stayed**, **no limitation regarding the month: 10% discount**.
### Input Data
The input data will be read from the console and contains **exactly two lines**:
- The **first** line contains the **month** **May**, **June**, **July**, **August**, **September** or **October**.
- The **second** line is the **amount of nights stayed** integer within the range [**0 … 200**].
### Output Data
**Print** the following **two lines** on the console:
- On the **first line**: "**Apartment: { price for the whole stay } lv.**"
- On the **second line**: "**Studio: { price for the whole stay } lv.**"
**The price for the whole duration of the stay must be formatted up to two symbols after the decimal point**.
### Sample Input and Output
| Input | Output | Comments |
|---|---|---|
|May<br>15|Apartment: 877.50 lv.<br>Studio: 525.00 lv.| In **May**, in case of more than **14 stays**, the discount for a **studio is 30%** (50 - 15 = 35), and for the **apartment is 10%** (65 - 6.5 = 58.5)..<br>The whole stay in the **apartment: 877.50** lv.<br>The whole stay **in the studio: 525.00** lv.|
| Input | Output |
|---|---|
|June<br>14|Apartment: 961.80 lv.<br>Studio: 1052.80 lv|
|August<br>20|Apartment: 1386.00 lv.<br>Studio: 1520.00 lv.|
### Hints and Guidelines
We will read the input data and do the calculations according to the provided price list and the discount rules, and finally, print the result.
#### Processing The Input Data
According to the task requirements, we expect two lines of input data - the first line is the **month in which the stay is planned**, and the second - the **number of stays**. Let's process and store the input data in the appropriate parameters:
![](/assets/chapter-4-2-images/05.Hotel-room-01.png)
#### Calculations
Now let's create and initialize the variables needed for the calculations:
![](/assets/chapter-4-2-images/05.Hotel-room-02.png)
When doing an additional analysis of the requirements, we understand that our main logic depends on what month is passed and what is the number of **stays**.
In general, there are different approaches and ways to apply the above conditions, but let's examine a basic **`if-elif`** conditional statement, as in each different **case** we will use **`if`** and **`if-elif`** conditional statements.
Let's start with the first group of months: **May** and **October**. For these two months, **the price for a stay is the same** for both types of accommodation a **studio** or an **apartment**. Therefore, the only thing that remains is to apply an internal condition regarding the **number of stays** and recalculate the **relevant price** (if needed):
![](/assets/chapter-4-2-images/05.Hotel-room-03.png)
To some extent, the **logic** and **calculations** will be **identical** for the following months:
![](/assets/chapter-4-2-images/05.Hotel-room-04.png)
![](/assets/chapter-4-2-images/05.Hotel-room-05.png)
After calculating the relevant prices and the total amount for the stay, now let's prepare the formatted result. Before that, we should store it in our output **variables** - **`studio_info`** and **`apartment_info`**:
![](/assets/chapter-4-2-images/05.Hotel-room-06.png)
To calculate the output parameters, we will use the **formatting** **`.2f`**. This formatting **rounds the decimal** number up to a specified number of characters after the decimal point. In our case, we will round the decimal number up to **2 digits** after the decimal point.
#### Printing The Result
Finally, what remains is to print the calculated results on the console.
### Testing in The Judge System
Test your solution here: [https://judge.softuni.org/Contests/Practice/Index/1052#4](https://judge.softuni.org/Contests/Practice/Index/1052#4).