2651. Calculate Delayed Arrival Time


Problem Description

In this problem, you are given two integers representing time in a 24-hour format. The first integer, arrivalTime, denotes the scheduled arrival time of a train at a station. The second integer, delayedTime, corresponds to the number of hours the train is delayed. Your task is to calculate the new arrival time of the train after accounting for the delay. The challenge here is to correctly handle the day's transition when the delay pushes the arrival time past midnight. Since time is given in a 24-hour format, it means that the hours reset after reaching 23, with the next hour being 00, which signifies the start of a new day. The "return the time when the train will arrive at the station" implies calculating the sum of arrivalTime and delayedTime and adjusting it if necessary to fit within the 24-hour clock constraints.

Intuition

To approach this problem, we simply need to calculate the new arrival time by adding arrivalTime and delayedTime together. The key point is that we need to wrap around the clock if the summation exceeds the 24-hour format limit (which is 23 hours). This scenario is similar to how an analog clock behaves, as the hands continue to rotate and start over after completing a full cycle (12 hours for an analog clock, and 24 hours for a digital clock in this case).

To simulate this behavior, we can use the modulo operation. The modulo operation, denoted by %, returns the remainder of the division of two numbers. In this case, we can apply the modulo operation with the divisor being 24 to ensure that the result fits within the 24-hour format. If the result is less than 24 (which implies no day transition), the modulo operation won't affect the calculation, and the return value is the same as the direct sum. If the result is more than or equal to 24 (indicating the next day), the modulo operation will give us the correct adjusted time.

Therefore, the intuition behind the solution is quite straightforward. We take arrivalTime and delayedTime, perform an addition to find the delayed arrival time, and then apply the modulo operation with 24 to wrap around and get the correct time within the 24-hour clock system. The result of this calculation is the actual time of arrival after incorporating the delay.

Learn more about Math patterns.

Not Sure What to Study? Take the 2-min Quiz to Find Your Missing Piece:

Which of the following uses divide and conquer strategy?

Solution Approach

In the given solution, the implementation requires no complex algorithms, additional data structures, or intricate patterns. It takes advantage of a simple, yet powerful arithmetic property of numbers — namely, the modulo operation.

The solution approach can be broken down into the following steps:

  1. Calculate the total time by summing the arrivalTime and delayedTime.
  2. Apply modulo operation with 24 to the result from step 1 to ensure the time is wrapped around the 24-hour format.

The sole line of code in the given Python solution captures the entire implementation:

1return (arrivalTime + delayedTime) % 24

This line of code performs the addition of arrivalTime and delayedTime to calculate the total hours. The use of the modulo operation with 24 subsequently ensures that if the addition exceeds 23 (the maximum hour value in a day), we cycle back to 0, thus mimicking the behavior of a 24-hour clock.

Let's consider an example where arrivalTime is 22 hours (or 10 PM) and delayedTime is 4 hours:

  • Without applying the modulo operation, the sum would be 26, which is not a valid time in a 24-hour format.
  • With the modulo operation ((22 + 4) % 24), we get 26 % 24, which equals 2. This correctly represents the new arrival time as 2 AM the following day.

The Python % operator is all that's required for this calculation, as it inherently implements this 'wrap-around' behavior by giving us the remainder from the division. No other algorithms or data structures are necessary since the problem deals strictly with integer arithmetic and leverages the inherent properties of numbers and the modulo operation.

Discover Your Strengths and Weaknesses: Take Our 2-Minute Quiz to Tailor Your Study Plan:

What are the two properties the problem needs to have for dynamic programming to be applicable? (Select 2)

Example Walkthrough

Let's take a small example to illustrate how the solution works. Consider that the arrivalTime of a train is 18 hours (6 PM) and the delayedTime is 8 hours.

Following the solution approach:

  1. Calculate the total time by summing the arrivalTime and delayedTime. In our example:

    totalTime = arrivalTime + delayedTime totalTime = 18 + 8 totalTime = 26

  2. Apply the modulo operation with 24 to the result from step 1 to fit it within the 24-hour format.

    newArrivalTime = totalTime % 24 newArrivalTime = 26 % 24 newArrivalTime = 2

By using the modulo operation (% 24), the sum of 26 is adjusted back within the range of the 24-hour system. Instead of an invalid hour of 26, we get a valid result of 2. The train was supposed to arrive at 6 PM but due to the 8-hour delay, it will now arrive at 2 AM the next day.

The final Python code carries out this simple calculation and returns 2 as the new arrival time, properly formatted within the 24-hour clock system.

Solution Implementation

1class Solution:
2    def findDelayedArrivalTime(self, arrival_time: int, delay_time: int) -> int:
3        # Adds the delay time to the arrival time
4        # Then uses modulo operation to adjust for the 24-hour clock format
5        return (arrival_time + delay_time) % 24
6
1class Solution {
2    // Computes the new arrival time after a delay
3    // @param arrivalTime is the scheduled arrival time
4    // @param delayedTime is the delay duration
5    // @return the new arrival time after accounting for the delay
6    public int findDelayedArrivalTime(int arrivalTime, int delayedTime) {
7        // Calculate the delayed arrival time by adding the delay to the original arrival time
8        // Use modulo operation to wrap around the clock if the time exceeds 24 hours
9        int newArrivalTime = (arrivalTime + delayedTime) % 24;
10      
11        // Return the calculated new arrival time
12        return newArrivalTime;
13    }
14}
15
1class Solution {
2public:
3    // Function to calculate the delayed arrival time
4    int findDelayedArrivalTime(int arrivalTime, int delayedTime) {
5        // The sum of arrivalTime and delayedTime can exceed 24 hours,
6        // so we use modulo operation to get the time within a 24-hour format
7        int delayedArrivalTime = (arrivalTime + delayedTime) % 24;
8
9        return delayedArrivalTime;
10    }
11};
12
1// This function calculates the new arrival time after a delay
2// `arrivalTime` is the scheduled time of arrival (0-23 hours)
3// `delayedTime` is the time by which the arrival is delayed
4// Returns the updated arrival time in hours (mod 24 format)
5function findDelayedArrivalTime(arrivalTime: number, delayedTime: number): number {
6    // Ensure the arrival time is within a 24-hour format after adding the delay
7    const newArrivalTime = (arrivalTime + delayedTime) % 24;
8
9    // Return the updated arrival time
10    return newArrivalTime;
11}
12
Not Sure What to Study? Take the 2-min Quiz:

Is the following code DFS or BFS?

1void search(Node root) {
2  if (!root) return;
3  visit(root);
4  root.visited = true;
5  for (Node node in root.adjacent) {
6    if (!node.visited) {
7      search(node);
8    }
9  }
10}

Time and Space Complexity

The time complexity of the given code is O(1), meaning it takes a constant amount of time to compute the result, regardless of the size of the input. This is because the code performs a fixed number of operations: one addition and one modulo operation.

The space complexity is also O(1), indicating that a constant amount of space is used regardless of the input size. The function only calculates a single integer result and does not use any additional memory that scales with the input size.

Learn more about how to find time and space complexity quickly using problem constraints.

Fast Track Your Learning with Our Quick Skills Quiz:

A heap is a ...?


Recommended Readings


Got a question? Ask the Teaching Assistant anything you don't understand.

Still not clear? Ask in the Forum,  Discord or Submit the part you don't understand to our editors.


TA 👨‍🏫