Table of Contents
Example
Sakamoto Tomohiko’s algorithm
Case 1 Ignore leap years
Case 2 Leap Year
Output
Complexity
Home Backend Development C++ Tomohiko Sakamoto's algorithm - finding the day of the week

Tomohiko Sakamoto's algorithm - finding the day of the week

Sep 02, 2023 pm 07:09 PM
algorithm Look for Week

Tomohiko Sakamotos algorithm - finding the day of the week

In this article, we will discuss what the Tomohiko Sakamoto algorithm is and how to use it to identify which day of the week a given date is. There are several algorithms to know the day of the week, but this algorithm is the most powerful one. This algorithm finds the day of the month in which this date occurs in the smallest possible time and with the smallest space complexity.

Problem Statement - We are given a date based on the Georgian calendar and our task is to find out which day of the week the given date is using Tomohiko Sakamoto's algorithm.

Example

Input - Date = 30, Month = 04, Year = 2020

Output - The given date is Monday

Input - Date = 15, Month = 03, Year = 2012

Output - The given date is Thursday

Input - Date = 24, Month = 12, Year = 2456

Output - The given date is Sunday

Sakamoto Tomohiko’s algorithm

Now let’s discuss the intuition behind Sakamoto Tomohiko’s algorithm.

As we all know, according to the Georgian calendar, January 1 AD falls on a Monday.

Case 1 Ignore leap years

We first discuss the case where all leap years are ignored, i.e. there are 365 days in a year.

Since January has 31 days and a week has 7 days, we can say that January has 7*4 3 days, which means the first day of February is always 3 days after the first day of January. p>

Since February has 28 days (except for leap years), which itself is a multiple of 7, we can say that March 1st will be on the same day as February 1st, which means that March 1st will also be 3 1 The number of days after the 1st of the month.

Now, for April, March has 31 days, which is 7*4 3, which means it will happen 3 days after March 1st. Therefore, we can say that April 1st will occur 6 days after January 1st.

We will now construct an array where arr[i] represents the number of additional days after month i occurs relative to January 1st.

We have arr[] = {0, 3, 3, 6, 1, 4, 6, 2, 5, 0, 3, 5}.

Case 2 Leap Year

Now let’s discuss the leap year situation.

Every four years, a day is added to our calculations, but not every hundred years. We have to account for these extra days. To do this we will use the formula -

Years / 4 (every 4 years)

– Year / 100 (for every 100 years that is a multiple of 4 but still not a leap year, we remove it from the leap year)

Year / 400 (every 400th year, it is a multiple of 100, but still a recurring year)

This formula will give us the exact number of leap years. However, there is one exception.

Now, we know that February 29th is considered a leap day, not January 0th.

This means that we do not need to include the first two months of the year in the calculation, as leap days have no effect on them. So if it's January or February, we'll subtract 1 from the year to compensate. Therefore, in these months, the value of year/4 should be based on the previous year rather than the current year.

To solve the leap year problem, we can subtract 1 from the arr[] value for each month after February to fill in the gaps. This solves the leap year problem. We need to make the following changes to the algorithm so that it works in both leap years and flat years.

arr[] = { 0, 3, 2, 5, 0, 3, 5, 1, 4, 6, 2, 4 }

If the current month is January or February, we need to subtract 1 from the year.

We need to modify the year increment in the modulus to year year/4 –year/100 year/400 instead of year. This change is necessary to account for the extra day in a leap year and adjust the calculations accordingly.

Example

The code for this method is:

#include <bits/stdc++.h>
using namespace std;
// code to find out the day number of the given date
int Weekday(int year, int month, int day) {
   int arr[] = { 0, 3, 2, 5, 0, 3, 5, 1, 4, 6, 2, 4 };
	
   if ( month < 3 )
      year -= 1;
   return ( ( year + year / 4 - year / 100 + year / 400 + arr[month - 1] + day) % 7 );
}

int main(void) {
   int day = 9, month = 9, year = 2020;
   int d = Weekday(year, month, day);
   string days[] = { "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" };
   cout<< " The given date is on "; 
   cout << days[d];
   return 0;
}
Copy after login

Output

The given date is on Wednesday
Copy after login

Complexity

Time complexity - The time complexity of this method is O(1)

Space Complexity - The space complexity of this approach is O(1) since we are not using any extra space.

Conclusion - In this article we discussed Tomohiko Sakamoto’s algorithm and the intuition behind it

The above is the detailed content of Tomohiko Sakamoto's algorithm - finding the day of the week. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CLIP-BEVFormer: Explicitly supervise the BEVFormer structure to improve long-tail detection performance CLIP-BEVFormer: Explicitly supervise the BEVFormer structure to improve long-tail detection performance Mar 26, 2024 pm 12:41 PM

Written above &amp; the author’s personal understanding: At present, in the entire autonomous driving system, the perception module plays a vital role. The autonomous vehicle driving on the road can only obtain accurate perception results through the perception module. The downstream regulation and control module in the autonomous driving system makes timely and correct judgments and behavioral decisions. Currently, cars with autonomous driving functions are usually equipped with a variety of data information sensors including surround-view camera sensors, lidar sensors, and millimeter-wave radar sensors to collect information in different modalities to achieve accurate perception tasks. The BEV perception algorithm based on pure vision is favored by the industry because of its low hardware cost and easy deployment, and its output results can be easily applied to various downstream tasks.

Implementing Machine Learning Algorithms in C++: Common Challenges and Solutions Implementing Machine Learning Algorithms in C++: Common Challenges and Solutions Jun 03, 2024 pm 01:25 PM

Common challenges faced by machine learning algorithms in C++ include memory management, multi-threading, performance optimization, and maintainability. Solutions include using smart pointers, modern threading libraries, SIMD instructions and third-party libraries, as well as following coding style guidelines and using automation tools. Practical cases show how to use the Eigen library to implement linear regression algorithms, effectively manage memory and use high-performance matrix operations.

Explore the underlying principles and algorithm selection of the C++sort function Explore the underlying principles and algorithm selection of the C++sort function Apr 02, 2024 pm 05:36 PM

The bottom layer of the C++sort function uses merge sort, its complexity is O(nlogn), and provides different sorting algorithm choices, including quick sort, heap sort and stable sort.

Can artificial intelligence predict crime? Explore CrimeGPT's capabilities Can artificial intelligence predict crime? Explore CrimeGPT's capabilities Mar 22, 2024 pm 10:10 PM

The convergence of artificial intelligence (AI) and law enforcement opens up new possibilities for crime prevention and detection. The predictive capabilities of artificial intelligence are widely used in systems such as CrimeGPT (Crime Prediction Technology) to predict criminal activities. This article explores the potential of artificial intelligence in crime prediction, its current applications, the challenges it faces, and the possible ethical implications of the technology. Artificial Intelligence and Crime Prediction: The Basics CrimeGPT uses machine learning algorithms to analyze large data sets, identifying patterns that can predict where and when crimes are likely to occur. These data sets include historical crime statistics, demographic information, economic indicators, weather patterns, and more. By identifying trends that human analysts might miss, artificial intelligence can empower law enforcement agencies

Improved detection algorithm: for target detection in high-resolution optical remote sensing images Improved detection algorithm: for target detection in high-resolution optical remote sensing images Jun 06, 2024 pm 12:33 PM

01 Outlook Summary Currently, it is difficult to achieve an appropriate balance between detection efficiency and detection results. We have developed an enhanced YOLOv5 algorithm for target detection in high-resolution optical remote sensing images, using multi-layer feature pyramids, multi-detection head strategies and hybrid attention modules to improve the effect of the target detection network in optical remote sensing images. According to the SIMD data set, the mAP of the new algorithm is 2.2% better than YOLOv5 and 8.48% better than YOLOX, achieving a better balance between detection results and speed. 02 Background & Motivation With the rapid development of remote sensing technology, high-resolution optical remote sensing images have been used to describe many objects on the earth’s surface, including aircraft, cars, buildings, etc. Object detection in the interpretation of remote sensing images

Where is the place where the candlelight shines in Destiny Ark? Where is the place where the candlelight shines in Destiny Ark? Mar 20, 2024 pm 05:46 PM

The opening of a new version of the new map of Ark of Destiny also has a new reputation mission. In addition to the Rowan map, there is also a daily mission on the Wisdom Island. The prerequisite mission is started from Belongnan. Many friends have achieved the goal of &quot;finding the right map&quot;. There is no guidance for this link &quot;The place where the candlelight shines&quot;. I am also curious about the specific location. Here is the guide for this task! The guide for the mission of Destiny Ark to find the place where the candlelight shines is in the room in the Wisdom Island. There is also a corridor in the hall, which can lead to the basement. When you walk in, you can see the location of the subsequent tasks, as shown in the picture:

Application of algorithms in the construction of 58 portrait platform Application of algorithms in the construction of 58 portrait platform May 09, 2024 am 09:01 AM

1. Background of the Construction of 58 Portraits Platform First of all, I would like to share with you the background of the construction of the 58 Portrait Platform. 1. The traditional thinking of the traditional profiling platform is no longer enough. Building a user profiling platform relies on data warehouse modeling capabilities to integrate data from multiple business lines to build accurate user portraits; it also requires data mining to understand user behavior, interests and needs, and provide algorithms. side capabilities; finally, it also needs to have data platform capabilities to efficiently store, query and share user profile data and provide profile services. The main difference between a self-built business profiling platform and a middle-office profiling platform is that the self-built profiling platform serves a single business line and can be customized on demand; the mid-office platform serves multiple business lines, has complex modeling, and provides more general capabilities. 2.58 User portraits of the background of Zhongtai portrait construction

Add SOTA in real time and skyrocket! FastOcc: Faster inference and deployment-friendly Occ algorithm is here! Add SOTA in real time and skyrocket! FastOcc: Faster inference and deployment-friendly Occ algorithm is here! Mar 14, 2024 pm 11:50 PM

Written above & The author’s personal understanding is that in the autonomous driving system, the perception task is a crucial component of the entire autonomous driving system. The main goal of the perception task is to enable autonomous vehicles to understand and perceive surrounding environmental elements, such as vehicles driving on the road, pedestrians on the roadside, obstacles encountered during driving, traffic signs on the road, etc., thereby helping downstream modules Make correct and reasonable decisions and actions. A vehicle with self-driving capabilities is usually equipped with different types of information collection sensors, such as surround-view camera sensors, lidar sensors, millimeter-wave radar sensors, etc., to ensure that the self-driving vehicle can accurately perceive and understand surrounding environment elements. , enabling autonomous vehicles to make correct decisions during autonomous driving. Head

See all articles