Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit14ba8cc

Browse files
authored
Merge branch 'main' into patch-1
2 parents2668ec5 +4295299 commit14ba8cc

19 files changed

+144
-39
lines changed

‎mkdocs.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ theme:
2929
repo_url:https://github.com/cp-algorithms/cp-algorithms
3030
repo_name:cp-algorithms/cp-algorithms
3131
edit_uri:edit/main/src/
32-
copyright:Text is available under the <a href="https://github.com/cp-algorithms/cp-algorithms/blob/main/LICENSE">Creative Commons Attribution Share Alike 4.0 International</a> License<br/>Copyright &copy; 2014 -2024 by <a href="https://github.com/cp-algorithms/cp-algorithms/graphs/contributors">cp-algorithms contributors</a>
32+
copyright:Text is available under the <a href="https://github.com/cp-algorithms/cp-algorithms/blob/main/LICENSE">Creative Commons Attribution Share Alike 4.0 International</a> License<br/>Copyright &copy; 2014 -2025 by <a href="https://github.com/cp-algorithms/cp-algorithms/graphs/contributors">cp-algorithms contributors</a>
3333
extra_javascript:
3434
-javascript/config.js
3535
-https://cdnjs.cloudflare.com/polyfill/v3/polyfill.min.js?features=es6
@@ -61,8 +61,7 @@ plugins:
6161
hooks:
6262
on_env:"hooks:on_env"
6363
-search
64-
-tags:
65-
tags_file:tags.md
64+
-tags
6665
-literate-nav:
6766
nav_file:navigation.md
6867
-git-revision-date-localized:

‎src/algebra/bit-manipulation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ We can see that the all the columns except the leftmost have $4$ (i.e. $2^2$) se
207207
With the new knowledge in hand we can come up with the following algorithm:
208208
209209
- Find the highest power of $2$ that is lesser than or equal to the given number. Let this number be $x$.
210-
- Calculate the number of set bits from $1$ to $2^x - 1$ by using theformua $x \cdot 2^{x-1}$.
210+
- Calculate the number of set bits from $1$ to $2^x - 1$ by using theformula $x \cdot 2^{x-1}$.
211211
- Count the no. of set bits in the most significant bit from $2^x$ to $n$ and add it.
212212
- Subtract $2^x$ from $n$ and repeat the above steps using the new $n$.
213213

‎src/algebra/fft.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ It is easy to see that
9797

9898
$$A(x) = A_0(x^2) + x A_1(x^2).$$
9999

100-
The polynomials $A_0$ and $A_1$are only half asmuch coefficients as the polynomial $A$.
100+
The polynomials $A_0$ and $A_1$have only half asmany coefficients as the polynomial $A$.
101101
If we can compute the $\text{DFT}(A)$ in linear time using $\text{DFT}(A_0)$ and $\text{DFT}(A_1)$, then we get the recurrence $T_{\text{DFT}}(n) = 2 T_{\text{DFT}}\left(\frac{n}{2}\right) + O(n)$ for the time complexity, which results in $T_{\text{DFT}}(n) = O(n \log n)$ by the**master theorem**.
102102

103103
Let's learn how we can accomplish that.

‎src/algebra/phi-function.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ int phi(int n) {
7373
7474
## Euler totient function from $1$ to $n$ in $O(n \log\log{n})$ { #etf_1_to_n data-toc-label="Euler totient function from 1 to n in <script type=\"math/tex\">O(n log log n)</script>" }
7575
76-
If we needall allthe totient of all numbers between $1$ and $n$, then factorizing all $n$ numbers is not efficient.
76+
If we need the totient of all numbers between $1$ and $n$, then factorizing all $n$ numbers is not efficient.
7777
We can use the same idea as the [Sieve of Eratosthenes](sieve-of-eratosthenes.md).
7878
It is still based on the property shown above, but instead of updating the temporary result for each prime factor for each number, we find all prime numbers and for each one update the temporary results of all numbers that are divisible by that prime number.
7979

‎src/combinatorics/burnside.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -266,3 +266,8 @@ int solve(int n, int m) {
266266
return sum / s.size();
267267
}
268268
```
269+
## Practice Problems
270+
* [CSES - Counting Necklaces](https://cses.fi/problemset/task/2209)
271+
* [CSES - Counting Grids](https://cses.fi/problemset/task/2210)
272+
* [Codeforces - Buildings](https://codeforces.com/gym/101873/problem/B)
273+
* [CS Academy - Cube Coloring](https://csacademy.com/contest/beta-round-8/task/cube-coloring/)

‎src/data_structures/sqrt_decomposition.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ But in a lot of situations this method has advantages.
120120
During a normal sqrt decomposition, we have to precompute the answers for each block, and merge them during answering queries.
121121
In some problems this merging step can be quite problematic.
122122
E.g. when each queries asks to find the**mode** of its range (the number that appears the most often).
123-
For this each block would have to store the count of each number in it in some sort of data structure, and wecannot longer perform the merge step fast enough any more.
123+
For this each block would have to store the count of each number in it in some sort of data structure, and wecan no longer perform the merge step fast enough any more.
124124
**Mo's algorithm** uses a completely different approach, that can answer these kind of queries fast, because it only keeps track of one data structure, and the only operations with it are easy and fast.
125125

126126
The idea is to answer the queries in a special order based on the indices.

‎src/dynamic_programming/divide-and-conquer-dp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ both!
113113
- [SPOJ - LARMY](https://www.spoj.com/problems/LARMY/)
114114
- [SPOJ - NKLEAVES](https://www.spoj.com/problems/NKLEAVES/)
115115
- [Timus - Bicolored Horses](https://acm.timus.ru/problem.aspx?space=1&num=1167)
116-
- [USACO - Circular Barn](http://www.usaco.org/index.php?page=viewproblem2&cpid=616)
116+
- [USACO - Circular Barn](https://usaco.org/index.php?page=viewproblem2&cpid=626)
117117
- [UVA - Arranging Heaps](https://onlinejudge.org/external/125/12524.pdf)
118118
- [UVA - Naming Babies](https://onlinejudge.org/external/125/12594.pdf)
119119

‎src/dynamic_programming/intro-to-dp.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ tags:
77

88
The essence of dynamic programming is to avoid repeated calculation. Often, dynamic programming problems are naturally solvable by recursion. In such cases, it's easiest to write the recursive solution, then save repeated states in a lookup table. This process is known as top-down dynamic programming with memoization. That's read "memoization" (like we are writing in a memo pad) not memorization.
99

10-
One of the most basic, classic examples of this process is the fibonacci sequence.It's recursive formulation is $f(n) = f(n-1) + f(n-2)$ where $n \ge 2$ and $f(0)=0$ and $f(1)=1$. In C++, this would be expressed as:
10+
One of the most basic, classic examples of this process is the fibonacci sequence.Its recursive formulation is $f(n) = f(n-1) + f(n-2)$ where $n \ge 2$ and $f(0)=0$ and $f(1)=1$. In C++, this would be expressed as:
1111

1212
```cpp
1313
intf(int n) {
@@ -25,7 +25,7 @@ Our recursive function currently solves fibonacci in exponential time. This mean
2525
2626
To increase the speed, we recognize that the number of subproblems is only $O(n)$. That is, in order to calculate $f(n)$ we only need to know $f(n-1),f(n-2), \dots ,f(0)$. Therefore, instead of recalculating these subproblems, we solve them once and then save the result in a lookup table. Subsequent calls will use this lookup table and immediately return a result, thus eliminating exponential work!
2727
28-
Each recursive call will check against a lookup table to see if the value has been calculated. This is done in $O(1)$ time. If we have previouslycalcuated it, return the result, otherwise, we calculate the function normally. The overall runtime is $O(n)$. This is an enormous improvement over our previous exponential time algorithm!
28+
Each recursive call will check against a lookup table to see if the value has been calculated. This is done in $O(1)$ time. If we have previouslycalculated it, return the result, otherwise, we calculate the function normally. The overall runtime is $O(n)$. This is an enormous improvement over our previous exponential time algorithm!
2929
3030
```cpp
3131
const int MAXN = 100;
@@ -88,7 +88,7 @@ This approach is called top-down, as we can call the function with a query value
8888
Until now you've only seen top-down dynamic programming with memoization. However, we can also solve problems with bottom-up dynamic programming.
8989
Bottom-up is exactly the opposite of top-down, you start at the bottom (base cases of the recursion), and extend it to more and more values.
9090

91-
To create a bottom-up approach for fibonacci numbers, weinitilize the base cases in an array. Then, we simply use the recursive definition on array:
91+
To create a bottom-up approach for fibonacci numbers, weinitialize the base cases in an array. Then, we simply use the recursive definition on array:
9292

9393
```cpp
9494
constint MAXN =100;
@@ -107,7 +107,7 @@ Of course, as written, this is a bit silly for two reasons:
107107
Firstly, we do repeated work if we call the function more than once.
108108
Secondly, we only need to use the two previous values to calculate the current element. Therefore, we can reduce our memory from $O(n)$ to $O(1)$.
109109
110-
An example of a bottom-up dynamic programming solution for fibonacci which uses $O(1)$ might be:
110+
An example of a bottom-up dynamic programming solution for fibonacci which uses $O(1)$memorymight be:
111111
112112
```cpp
113113
const int MAX_SAVE = 3;

‎src/geometry/planar.md

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -125,20 +125,14 @@ std::vector<std::vector<size_t>> find_faces(std::vector<Point> vertices, std::ve
125125
e = e1;
126126
}
127127
std::reverse(face.begin(), face.end());
128-
int sign = 0;
129-
for (size_t j = 0; j < face.size(); j++) {
130-
size_t j1 = (j + 1) % face.size();
131-
size_t j2 = (j + 2) % face.size();
132-
int64_t val = vertices[face[j]].cross(vertices[face[j1]], vertices[face[j2]]);
133-
if (val > 0) {
134-
sign = 1;
135-
break;
136-
} else if (val < 0) {
137-
sign = -1;
138-
break;
139-
}
128+
Point p1 = vertices[face[0]];
129+
__int128 sum = 0;
130+
for (int j = 0; j < face.size(); ++j) {
131+
Point p2 = vertices[face[j]];
132+
Point p3 = vertices[face[(j + 1) % face.size()]];
133+
sum += (p2 - p1).cross(p3 - p2);
140134
}
141-
if (sign <= 0) {
135+
if (sum <= 0) {
142136
faces.insert(faces.begin(), face);
143137
} else {
144138
faces.emplace_back(face);

‎src/graph/edge_vertex_connectivity.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ It is clear, that the vertex connectivity of a graph is equal to the minimal siz
3939

4040
###The Whitney inequalities
4141

42-
The**Whitney inequalities** (1932) gives a relation between the edge connectivity $\lambda$, the vertex connectivity $\kappa$ and thesmallest degree of thevertices $\delta$:
42+
The**Whitney inequalities** (1932) gives a relation between the edge connectivity $\lambda$, the vertex connectivity $\kappa$, and theminimum degree ofany vertex inthegraph $\delta$:
4343

4444
$$\kappa \le \lambda \le \delta$$
4545

@@ -77,7 +77,7 @@ Especially the algorithm will run pretty fast for random graphs.
7777

7878
###Special algorithm for edge connectivity
7979

80-
The task of finding the edge connectivityif equal to the task of finding the**global minimum cut**.
80+
The task of finding the edge connectivityis equal to the task of finding the**global minimum cut**.
8181

8282
Special algorithms have been developed for this task.
8383
One of them is the Stoer-Wagner algorithm, which works in $O(V^3)$ or $O(V E)$ time.

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp