Skip to content

Commit 0f2453d

Browse files
committed
fix some broken urls
1 parent 1810d12 commit 0f2453d

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

src/dynamic_programming/profile-dynamics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ int main()
8080
- [SPOJ BTCODE_J](https://www.spoj.com/problems/BTCODE_J/)
8181
- [SPOJ PBOARD](https://www.spoj.com/problems/PBOARD/)
8282
- [ACM HDU 4285 - Circuits](http://acm.hdu.edu.cn/showproblem.php?pid=4285)
83-
- [LiveArchive 4608 - Mosaic](https://icpcarchive.ecs.baylor.edu/index.php?option=onlinejudge&page=show_problem&problem=2609)
83+
- [LiveArchive 4608 - Mosaic](https://vjudge.net/problem/UVALive-4608)
8484
- [Timus 1519 - Formula 1](https://acm.timus.ru/problem.aspx?space=1&num=1519)
8585
- [Codeforces Parquet](https://codeforces.com/problemset/problem/26/C)
8686

src/graph/dijkstra.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ vector<int> restore_path(int s, int t, vector<int> const& p) {
165165
* [TopCoder - SkiResorts](https://community.topcoder.com/stat?c=problem_statement&pm=12468)
166166
* [TopCoder - MaliciousPath](https://community.topcoder.com/stat?c=problem_statement&pm=13596)
167167
* [SPOJ - Ada and Trip](http://www.spoj.com/problems/ADATRIP/)
168-
* [LA - 3850 - Here We Go(relians) Again](https://icpcarchive.ecs.baylor.edu/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=1851)
168+
* [LA - 3850 - Here We Go(relians) Again](https://vjudge.net/problem/UVALive-3850)
169169
* [GYM - Destination Unknown (D)](http://codeforces.com/gym/100625)
170170
* [UVA 12950 - Even Obsession](https://uva.onlinejudge.org/index.php?option=onlinejudge&page=show_problem&problem=4829)
171171
* [GYM - Journey to Grece (A)](http://codeforces.com/gym/100753)
@@ -176,7 +176,7 @@ vector<int> restore_path(int s, int t, vector<int> const& p) {
176176
* [UVA 11813 - Shopping](https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=2913)
177177
* [UVA 11833 - Route Change](https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=226&page=show_problem&problem=2933)
178178
* [SPOJ - Easy Dijkstra Problem](http://www.spoj.com/problems/EZDIJKST/en/)
179-
* [LA - 2819 - Cave Raider](https://icpcarchive.ecs.baylor.edu/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=820)
179+
* [LA - 2819 - Cave Raider](https://vjudge.net/problem/UVALive-2819)
180180
* [UVA 12144 - Almost Shortest Path](https://uva.onlinejudge.org/index.php?option=onlinejudge&page=show_problem&problem=3296)
181181
* [UVA 12047 - Highest Paid Toll](https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=3198)
182182
* [UVA 11514 - Batman](https://uva.onlinejudge.org/index.php?option=onlinejudge&page=show_problem&problem=2509)

src/string/suffix-array.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -395,25 +395,24 @@ $$\sum_{i=0}^{n-1} (n - p[i]) - \sum_{i=0}^{n-2} \text{lcp}[i] = \frac{n^2 + n}{
395395
* [UVA - 1227 - The longest constant gene](https://uva.onlinejudge.org/index.php?option=onlinejudge&page=show_problem&problem=3668)
396396
* [SPOJ - Longest Common Substring](http://www.spoj.com/problems/LCS/en/)
397397
* [UVA 11512 - GATTACA](https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=2507)
398-
* [LA 7502 - Suffixes and Palindromes](https://icpcarchive.ecs.baylor.edu/index.php?option=com_onlinejudge&Itemid=8&category=720&page=show_problem&problem=5524)
398+
* [LA 7502 - Suffixes and Palindromes](https://vjudge.net/problem/UVALive-7502)
399399
* [GYM - Por Costel and the Censorship Committee](http://codeforces.com/gym/100923/problem/D)
400400
* [UVA 1254 - Top 10](https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=3695)
401401
* [UVA 12191 - File Recover](https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=3343)
402402
* [UVA 12206 - Stammering Aliens](https://uva.onlinejudge.org/index.php?option=onlinejudge&page=show_problem&problem=3358)
403403
* [Codechef - Jarvis and LCP](https://www.codechef.com/problems/INSQ16F)
404-
* [LA 3943 - Liking's Letter](https://icpcarchive.ecs.baylor.edu/index.php?option=onlinejudge&Itemid=8&page=show_problem&problem=1944)
404+
* [LA 3943 - Liking's Letter](https://vjudge.net/problem/UVALive-3943)
405405
* [UVA 11107 - Life Forms](https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=2048)
406406
* [UVA 12974 - Exquisite Strings](https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=862&page=show_problem&problem=4853)
407407
* [UVA 10526 - Intellectual Property](https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=1467)
408408
* [UVA 12338 - Anti-Rhyme Pairs](https://uva.onlinejudge.org/index.php?option=onlinejudge&page=show_problem&problem=3760)
409-
* [DevSkills Reconstructing Blue Print of Life (archived)](http://web.archive.org/web/20210126015936/https://devskill.com/CodingProblems/ViewProblem/328)
410409
* [UVA 12191 - File Recover](https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=3343)
411410
* [SPOJ - Suffix Array](http://www.spoj.com/problems/SARRAY/)
412-
* [LA 4513 - Stammering Aliens](https://icpcarchive.ecs.baylor.edu/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=2514)
411+
* [LA 4513 - Stammering Aliens](https://vjudge.net/problem/UVALive-4513)
413412
* [SPOJ - LCS2](http://www.spoj.com/problems/LCS2/)
414413
* [Codeforces - Fake News (hard)](http://codeforces.com/contest/802/problem/I)
415414
* [SPOJ - Longest Commong Substring](http://www.spoj.com/problems/LONGCS/)
416415
* [SPOJ - Lexicographical Substring Search](http://www.spoj.com/problems/SUBLEX/)
417416
* [Codeforces - Forbidden Indices](http://codeforces.com/contest/873/problem/F)
418417
* [Codeforces - Tricky and Clever Password](http://codeforces.com/contest/30/problem/E)
419-
* [LA 6856 - Circle of digits](https://icpcarchive.ecs.baylor.edu/index.php?option=onlinejudge&page=show_problem&problem=4868)
418+
* [LA 6856 - Circle of digits](https://vjudge.net/problem/UVALive-6856)

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy