Time Complexity
Authors: Darren Yao, Benjamin Qi
Contributors: Ryan Chou, Qi Wang
Measuring the number of operations an algorithm performs.
Resources | ||||
---|---|---|---|---|
IUSACO | module is based off this | |||
CPH | Intro and examples | |||
PAPS | More in-depth. In particular, 5.2 gives a formal definition of Big O. | |||
YouTube | If you prefer watching a video instead |
In programming contests, your program needs to finish running within a certain timeframe in order to receive credit. For USACO, this limit is seconds for C++ submissions, and seconds for Java/Python submissions. A conservative estimate for the number of operations the grading server can handle per second is , but it could be closer to given good constant factors.
Complexity Calculations
We want a method to calculate how many operations it takes to run each algorithm, in terms of the input size . Fortunately, this can be done relatively easily using Big O notation, which expresses worst-case time complexity as a function of as gets arbitrarily large. Complexity is an upper bound for the number of steps an algorithm requires as a function of the input size. In Big O notation, we denote the complexity of a function as , where constant factors and lower-order terms are generally omitted from . We'll see some examples of how this works, as follows.
The following code is , because it executes a constant number of operations.
C++
int a = 5;int b = 7;int c = 4;int d = a + b + c + 153;
Java
int a = 5;int b = 7;int c = 4;int d = a + b + c + 153;
Python
a = 5b = 7c = 4d = a + b + c + 153
Input and output operations are also assumed to be . In the following examples, we assume that the code inside the loops is .
The time complexity of loops is the number of iterations that the loop runs. For example, the following code examples are both .
C++
for (int i = 1; i <= n; i++) {// constant time code here}
int i = 0;while (i < n) {// constant time code herei++;}
Java
for (int i = 1; i <= n; i++) {// constant time code here}
int i = 0;while (i < n) {// constant time code herei++;}
Python
for i in range(1, n + 1):pass # constant time code here
i = 0while i < n:# constant time code herei += 1
Because we ignore constant factors and lower order terms, the following examples are also :
C++
for (int i = 1; i <= 5 * n + 17; i++) {// constant time code here}
for (int i = 1; i <= n + 457737; i++) {// constant time code here}
Java
for (int i = 1; i <= 5 * n + 17; i++) {// constant time code here}
for (int i = 1; i <= n + 457737; i++) {// constant time code here}
Python
for i in range(5 * n + 17):pass # constant time code herefor i in range(n + 457737):pass # constant time code here
We can find the time complexity of multiple loops by multiplying together the time complexities of each loop. This example is , because the outer loop runs iterations and the inner loop .
C++
for (int i = 1; i <= n; i++) {for (int j = 1; j <= m; j++) {// constant time code here}}
Java
for (int i = 1; i <= n; i++) {for (int j = 1; j <= m; j++) {// constant time code here}}
Python
for i in range(n):for j in range(m):pass # constant time code here
In this example, the outer loop runs iterations, and the inner loop runs anywhere between and iterations (which is a maximum of ). Since Big O notation calculates worst-case time complexity, we treat the inner loop as a factor of . Thus, this code is .
C++
for (int i = 1; i <= n; i++) {for (int j = i; j <= n; j++) {// constant time code here}}
Java
for (int i = 1; i <= n; i++) {for (int j = i; j <= n; j++) {// constant time code here}}
Python
for i in range(n):for j in range(i, n):pass # constant time code here
If an algorithm contains multiple blocks, then its time complexity is the worst time complexity out of any block. For example, the following code is .
C++
for (int i = 1; i <= n; i++) {for (int j = 1; j <= n; j++) {// constant time code here}}for (int i = 1; i <= n + 58834; i++) {// more constant time code here}
Java
for (int i = 1; i <= n; i++) {for (int j = 1; j <= n; j++) {// constant time code here}}for (int i = 1; i <= n + 58834; i++) {// more constant time code here}
Python
for i in range(n):for j in range(n):pass # constant time code herefor i in range(n + 58834):pass # more constant time code here
The following code is , because it consists of two blocks of complexity and , and neither of them is a lower order function with respect to the other.
C++
for (int i = 1; i <= n; i++) {for (int j = 1; j <= n; j++) {// constant time code here}}for (int i = 1; i <= m; i++) {// more constant time code here}
Java
for (int i = 1; i <= n; i++) {for (int j = 1; j <= n; j++) {// constant time code here}}for (int i = 1; i <= m; i++) {// more constant time code here}
Python
for i in range(n):for j in range(n):pass # constant time code herefor i in range(m):pass # more constant time code here
Common Complexities and Constraints
Complexity factors that come from some common algorithms and data structures are as follows:
Warning!
Don't worry if you don't recognize most of these! They will all be introduced later.
- Mathematical formulas that just calculate an answer:
- Binary search:
- Sorted set/map or priority queue: per operation
- Prime factorization of an integer, or checking primality or compositeness of an integer naively:
- Reading in items of input:
- Iterating through an array or a list of elements:
- Sorting: usually for default sorting algorithms (mergesort,
Collections.sort
,Arrays.sort
) - Iterating through all subsets of size of the input elements: . For example, iterating through all triplets is .
- Iterating through all subsets:
- Iterating through all permutations:
Here are conservative upper bounds on the value of for each time complexity. You might get away with more than this, but this should allow you to quickly check whether an algorithm is viable.
Possible complexities | |
---|---|
, , | |
, | |
, , |
Warning!
A significant portion of Bronze problems will have . This doesn't give much of a hint regarding the intended time complexity. The intended solution could still be !
Constant Factor
Constant factor refers to the idea that different operations with the same complexity take slightly different amounts of time to run. For example, three addition operations take a bit longer than a single addition operation. Another example is that although binary search on an array and insertion into an ordered set are both , binary search is noticeably faster.
Constant factor is entirely ignored in Big O notation. This is fine most of the time, but if the time limit is particularly tight, you may receive time limit exceeded (TLE) with the intended complexity. When this happens, it is important to keep the constant factor in mind. For example, a piece of code that iterates through all ordered triplets runs in time might be sped up by a factor of if we only need to iterate through all unordered triplets.
For now, don't worry about optimizing constant factors -- just be aware of them.
Formal Definition of Big O notation
Let and be non-negative functions from to . If there exist positive constants and such that whenever , we say that .
Therefore, we could say that the time complexity of a linear function, , is also , , , , , etc. However, we usually just write the simplest function out of those that are the most restrictive, which in the case of our linear function above, is .
Optional: P vs. NP
P refers to the class of problems that can be solved within polynomial time (). NP, short for nondeterministic polynomial time, is the set of problems with solutions that can be verified in polynomial time.
A common example of a problem in NP is a generalized version of Sudoku, where a solution is easily verifiable in polynomial time, but it is unknown whether a solution is computable in polynomial time. "P vs. NP" is the classic unsolved problem that asks whether every problem that can be verified in polynomial time can also be solved in polynomial time.
If you're interested in learning more about P vs. NP, check out this YouTube video.
Quiz
What's time complexity?
Module Progress:
Join the USACO Forum!
Stuck on a problem, or don't understand a module? Join the USACO Forum and get help from other competitive programmers!