-
Урок 1. 00:06:19Introduction
-
Урок 2. 00:09:47Sublime Setup
-
Урок 3. 00:03:15Adding Master Header File
-
Урок 4. 00:06:48Escaping Online Judges
-
Урок 5. 00:04:54Common Code Snippets
-
Урок 6. 00:09:51Using Macros
-
Урок 7. 00:18:06Example Code Explained
-
Урок 8. 00:07:41Space Time Complexity Introduction
-
Урок 9. 00:09:20Experimental Analysis
-
Урок 10. 00:04:37Big O Notation
-
Урок 11. 00:02:35Nested Loops
-
Урок 12. 00:02:50Nested Loops - II
-
Урок 13. 00:03:43Analysis of Bubble Sort
-
Урок 14. 00:07:27Analayis of BInary Search
-
Урок 15. 00:05:48Analysis of Merge Sort
-
Урок 16. 00:03:27Avoiding TLE Errors
-
Урок 17. 00:03:28Complexities for Worst Case AC
-
Урок 18. 00:14:11Data Structures & STL Containers Revisited
-
Урок 19. 00:12:04Arrays in C++
-
Урок 20. 00:14:38Array STL
-
Урок 21. 00:17:48Vector STL
-
Урок 22. 00:07:03Deque STL
-
Урок 23. 00:03:08Stack STL
-
Урок 24. 00:01:30Queue STL
-
Урок 25. 00:05:22Priority Queue STL
-
Урок 26. 00:09:55Bitwise Operators
-
Урок 27. 00:04:22Left Shift & Right Shift
-
Урок 28. 00:03:17Odd Even
-
Урок 29. 00:03:56Get ith Bit
-
Урок 30. 00:02:43Clear ith Bit
-
Урок 31. 00:02:31Set ith Bit
-
Урок 32. 00:04:49Update ith Bit
-
Урок 33. 00:03:55Clear Last i Bits
-
Урок 34. 00:06:10Clear Range of Bits
-
Урок 35. 00:04:58Replace Bits
-
Урок 36. 00:02:53Two Power
-
Урок 37. 00:04:19Count Bits
-
Урок 38. 00:03:16Count Bits Hack
-
Урок 39. 00:04:14Make it Binary
-
Урок 40. 00:06:28Unique Number - I
-
Урок 41. 00:01:55Unique Number - I Code
-
Урок 42. 00:09:24Unique Number - II
-
Урок 43. 00:08:18Unique Number - II Code
-
Урок 44. 00:06:11Unique Number - III
-
Урок 45. 00:09:15Unique Number - III Code
-
Урок 46. 00:06:15Finding Subsets
-
Урок 47. 00:05:07Finding Subsets Code
-
Урок 48. 00:12:04Travelling Salesman Problem
-
Урок 49. 00:03:42Travelling Salesman Intution
-
Урок 50. 00:12:26Travelling Salesman Code
-
Урок 51. 00:02:44Travelling Salesman - DP Optimisation
-
Урок 52. 00:04:46Introduction to Big Integers
-
Урок 53. 00:08:55Big Addition Concept
-
Урок 54. 00:13:50Big Addition Code
-
Урок 55. 00:07:42Array & Integer Multiplication
-
Урок 56. 00:09:21Large Factorials
-
Урок 57. 00:15:10Java Big Integer Class
-
Урок 58. 00:03:45BigInteger Example
-
Урок 59. 00:05:06Big Integers in Python
-
Урок 60. 00:05:29Big Integer Challenge - Julka
-
Урок 61. 00:06:19Big Integer Challenge Solution
-
Урок 62. 00:15:01Binary Exponentiation
-
Урок 63. 00:09:03Modular Binary Exponentiation
-
Урок 64. 00:10:46Fast Mutiplication
-
Урок 65. 00:15:55Matrix Exponentiation Introduction
-
Урок 66. 00:14:24Matrix Exponentiation Code
-
Урок 67. 00:07:29Fibosum (spoj)
-
Урок 68. 00:11:04Fibosum(second approach)
-
Урок 69. 00:03:05Pigeonhole Principle
-
Урок 70. 00:09:05Problem DIVSUB
-
Урок 71. 00:11:42Applying Pigeonhole Principle
-
Урок 72. 00:12:01Gray Similar Code
-
Урок 73. 00:24:07Holiday
-
Урок 74. 00:15:26Holiday Code
-
Урок 75. 00:08:02Expectation
-
Урок 76. 00:03:36Linearity of Expectation
-
Урок 77. 00:02:28Problem - Linearity of Expectation
-
Урок 78. 00:03:06Expected Throws - One Head
-
Урок 79. 00:03:33Expected Throws - Two Consecutive Heads
-
Урок 80. 00:05:53Expected Throws - N Consecutive Heads
-
Урок 81. 00:03:49Bernaulli's Trial
-
Урок 82. 00:01:07Choose Number
-
Урок 83. 00:02:04Bernoulli's Trial
-
Урок 84. 00:06:44Coupon Collector
-
Урок 85. 00:05:34Inclusion Exclusion
-
Урок 86. 00:07:12Generalised Function
-
Урок 87. 00:14:52Problems
-
Урок 88. 00:12:03Total Number of Divisors Till N code
-
Урок 89. 00:10:14Introduction
-
Урок 90. 00:11:56Prime Sieve
-
Урок 91. 00:11:07Sieve of Eratosthenes Code
-
Урок 92. 00:06:47Prime Queries
-
Урок 93. 00:05:34Prime Factorisation
-
Урок 94. 00:03:04Prime Factorisation Code O(N)
-
Урок 95. 00:06:39Prime Factorisation Code O(Sqrt(N))
-
Урок 96. 00:06:27Prime Factorisation using Sieve O(LogN)
-
Урок 97. 00:03:19Segmented Sieve
-
Урок 98. 00:08:02Segmented Sieve Algorithm
-
Урок 99. 00:14:29Segmented Sieve Code
-
Урок 100. 00:06:53GCD
-
Урок 101. 00:03:02Euclid's Algorithm Code
-
Урок 102. 00:05:54GCD Complexity
-
Урок 103. 00:07:46Extended Euclideans
-
Урок 104. 00:10:01Extended Euclidean Example
-
Урок 105. 00:07:42Extended Euclidean Code
-
Урок 106. 00:03:41GCD using Extended Euclidean Algorithm
-
Урок 107. 00:04:13Multiplicative Modulo Inverse
-
Урок 108. 00:03:45Computing Multiplicative Modulo Inverse
-
Урок 109. 00:04:05MMI Code
-
Урок 110. 00:09:16Linear Diophantine Equations
-
Урок 111. 00:03:04Linear Diophantine Equation - Family of Solutions
-
Урок 112. 00:12:28Modulo Airthmetic
-
Урок 113. 00:11:49Modulo Arithmetic Code
-
Урок 114. 00:09:49Fermat's Theorem
-
Урок 115. 00:03:16Factorial % P
-
Урок 116. 00:08:30nCr % P
-
Урок 117. 00:09:00Chinese Remainder Theorem
-
Урок 118. 00:05:17Totient Function
-
Урок 119. 00:09:40Totient Function code using Seive
-
Урок 120. 00:13:26Combinatorics Introduction
-
Урок 121. 00:09:47Binomial Coefficients
-
Урок 122. 00:08:50Computing Binomial Coefficients
-
Урок 123. 00:08:46Birthday Paradox
-
Урок 124. 00:07:49Birthday Paradox Code
-
Урок 125. 00:08:24Catalan Numbers
-
Урок 126. 00:03:11Catalan Numbers Code - Recursive
-
Урок 127. 00:04:14Catalan Numbers Code - Iterative / DP
-
Урок 128. 00:10:23Recursion Basics
-
Урок 129. 00:07:50Factorial
-
Урок 130. 00:11:03Fibonacci Series
-
Урок 131. 00:09:51Sorted Array Check
-
Урок 132. 00:07:25Understanding Recursion DIrections
-
Урок 133. 00:03:38Power Function
-
Урок 134. 00:04:54Fast Power
-
Урок 135. 00:06:47Tiling Problem
-
Урок 136. 00:07:13Count Strings
-
Урок 137. 00:06:12Friend's Pairing Problem
-
Урок 138. 00:23:55Tower Of Hanoi
-
Урок 139. 00:10:08Tower Of Hanoi (code)
-
Урок 140. 00:04:28Backtracking Problems
-
Урок 141. 00:13:04Finding Subsets
-
Урок 142. 00:07:29Finding Subsets Code
-
Урок 143. 00:10:52Permuations
-
Урок 144. 00:06:56Brackets
-
Урок 145. 00:06:51Brackets Code
-
Урок 146. 00:11:54N-Queen
-
Урок 147. 00:15:59N-Queen Code
-
Урок 148. 00:14:58N-Queen Ways
-
Урок 149. 00:10:41Sudoku Solver
-
Урок 150. 00:18:30Sudoku Solver Code
-
Урок 151. 00:08:01Binary Search
-
Урок 152. 00:04:07Binary Search Code
-
Урок 153. 00:07:08Lower Bound and Upper Bound
-
Урок 154. 00:03:05Lower Bound Code
-
Урок 155. 00:11:22Angry Birds
-
Урок 156. 00:10:02Angry Bird Code
-
Урок 157. 00:08:21Game of Greed
-
Урок 158. 00:10:03Game of Greed Code
-
Урок 159. 00:04:29Merge Sort
-
Урок 160. 00:12:42Merge Sort Code
-
Урок 161. 00:10:12Quick Sort
-
Урок 162. 00:10:12Quick Sort Code
-
Урок 163. 00:04:34Quick Select
-
Урок 164. 00:03:05Quick Select Code
-
Урок 165. 00:13:46Inversion Count
-
Урок 166. 00:04:06Inversion Count Code
-
Урок 167. 00:15:13Ternary Search
-
Урок 168. 00:06:54Ternary Search - Finding maxima/minima of a parabola (Code)
-
Урок 169. 00:04:37Greedy Introduction
-
Урок 170. 00:04:49Indian Coin Change
-
Урок 171. 00:06:00Greedy vs DP
-
Урок 172. 00:09:57Activity Selection / Busyman
-
Урок 173. 00:07:04Baised Standings
-
Урок 174. 00:13:09Kingdom Defense
-
Урок 175. 00:21:31Introduction
-
Урок 176. 00:06:45Subsums Code
-
Урок 177. 00:11:33Introduction and Structure
-
Урок 178. 00:05:27Building
-
Урок 179. 00:18:29Query
-
Урок 180. 00:08:49Update
-
Урок 181. 00:10:32Facts and Properties
-
Урок 182. 00:26:24Code
-
Урок 183. 00:11:26Introduction
-
Урок 184. 00:15:03Algorithm
-
Урок 185. 00:12:50Code
-
Урок 186. 00:03:21Bug and Code Continued
-
Урок 187. 00:11:50Structure
-
Урок 188. 00:13:34Query
-
Урок 189. 00:11:09Update
-
Урок 190. 00:12:21Code
-
Урок 191. 00:07:13Inversion Count (Multiple Ways of solving it)
-
Урок 192. 00:11:29Inversion Count Using Fenwick Tree
-
Урок 193. 00:05:42Inversion Count Using Fenwick Tree Code
-
Урок 194. 00:11:55Sqrt Decomposition Introduction
-
Урок 195. 00:09:59Range queries (Code)
-
Урок 196. 00:11:27DQUERY SPOJ using Mo's Algorithm
-
Урок 197. 00:09:46Sorting the queries according to MO's comparator
-
Урок 198. 00:15:124 Pointers Technique
-
Урок 199. 00:20:02Code and Complexity of MO's Algorithm
-
Урок 200. 00:16:51DQUERY using Fenwick Tree
-
Урок 201. 00:08:17Combinatorial Games
-
Урок 202. 00:16:32Take Away Games
-
Урок 203. 00:09:30N and P positions
-
Урок 204. 00:09:47Game of Nim
-
Урок 205. 00:06:05Nim Sum
-
Урок 206. 00:24:57Applications of Nim Sum
-
Урок 207. 00:16:51Examples of Nim Games
-
Урок 208. 00:12:05Introduction
-
Урок 209. 00:09:08Graph Key Concepts
-
Урок 210. 00:08:43Adjacency List
-
Урок 211. 00:09:09Adjacency List 2
-
Урок 212. 00:06:44BFS Concept
-
Урок 213. 00:07:16BFS
-
Урок 214. 00:04:19DFS
-
Урок 215. 00:05:41DFS Code
-
Урок 216. 00:04:31Shortest Path
-
Урок 217. 00:06:11Shortest Path Code
-
Урок 218. 00:12:12Board Game
-
Урок 219. 00:19:31Board Game Code
-
Урок 220. 00:24:27Trees
-
Урок 221. 00:08:03DFS on Trees
-
Урок 222. 00:09:07DFS Trees and Backedges
-
Урок 223. 00:16:41DFS Tree and Backedges Code
-
Урок 224. 00:12:37LCA introduction
-
Урок 225. 00:16:12LCA Brute Force
-
Урок 226. 00:38:43LCA using Binary Lifting
-
Урок 227. 00:18:42Intro
-
Урок 228. 00:20:42Topological Sort
-
Урок 229. 00:09:51SCC Theory
-
Урок 230. 00:12:51Condensed Component Graph
-
Урок 231. 00:11:47Kosaraju Algorithm Code
-
Урок 232. 00:30:06Kosaraju Algorithm for Strongly Connected Component
-
Урок 233. 00:04:20DSU Introduction
-
Урок 234. 00:09:02DSU Data Structure
-
Урок 235. 00:07:03Union & Find Ops
-
Урок 236. 00:13:17DSU Implementation
-
Урок 237. 00:10:16Union By Rank
-
Урок 238. 00:08:39Path Compression
-
Урок 239. 00:13:15Dry Run
-
Урок 240. 00:19:33Prim's Algorithm
-
Урок 241. 00:18:43Prim's Code
-
Урок 242. 00:08:59Kruskal's Algorithm
-
Урок 243. 00:13:38Kruskal's Code
-
Урок 244. 00:07:53Shortest Path Introduction
-
Урок 245. 00:09:12Dijkstra's Algorithm
-
Урок 246. 00:14:54Dijkstra's Algorithm Code
-
Урок 247. 00:33:09Bellman Ford Algorithm
-
Урок 248. 00:09:11Bellman Ford Code
-
Урок 249. 00:29:35Floyd Warshall Algorithm
-
Урок 250. 00:08:38Floyd Warshall Code
-
Урок 251. 00:16:50Introduction to Dynamic Programming
-
Урок 252. 00:05:05A Note About DP
-
Урок 253. 00:12:48N-K Ladders
-
Урок 254. 00:04:11N-K Ladders Top Down
-
Урок 255. 00:08:08N-K Ladders Bottom Up
-
Урок 256. 00:07:28Minimum Jums
-
Урок 257. 00:05:55Minimum Jumps Code
-
Урок 258. 00:06:47Longest Increasing Subsequence
-
Урок 259. 00:02:45Longest Increasing Subsequence Code
-
Урок 260. 00:10:27Box Stacking Problem
-
Урок 261. 00:09:45Box Stacking Code
-
Урок 262. 00:14:46Terms and Definitions
-
Урок 263. 00:11:20Tabulation vs Memoisation
-
Урок 264. 00:25:28Frogs - 1
-
Урок 265. 00:25:30Frogs - 2
-
Урок 266. 00:21:51Vacation
-
Урок 267. 00:26:03Knapsack 1
-
Урок 268. 00:40:54Knapsack 2
-
Урок 269. 00:26:42LCS
-
Урок 270. 00:21:47LCS (code)
-
Урок 271. 00:09:10Longest Path
-
Урок 272. 00:07:43Longest Path (code)
-
Урок 273. 00:09:21Grid 1
-
Урок 274. 00:04:11Grid 1 (code)
-
Урок 275. 00:07:50Coins
-
Урок 276. 00:13:15Coins (code)
-
Урок 277. 00:15:22Sushi
-
Урок 278. 00:13:49Sushi (code)
-
Урок 279. 00:13:31Stones
-
Урок 280. 00:31:36Deque (first solution)
-
Урок 281. 00:10:44Deque (second solution)
-
Урок 282. 00:27:03Candies
-
Урок 283. 00:09:58Candies (code)
-
Урок 284. 00:13:14Slimes
-
Урок 285. 00:18:04Slimes (code)
-
Урок 286. 00:08:12Matching
-
Урок 287. 00:05:39Matching continued...
-
Урок 288. 00:20:19Matching (code)
-
Урок 289. 00:22:44Independent Set
-
Урок 290. 00:09:18Independent Set (code)
-
Урок 291. 00:18:28Flowers
-
Урок 292. 00:05:43Flowers using segment tree
-
Урок 293. 00:19:53Flowers (code)
-
Урок 294. 00:16:54Walk
-
Урок 295. 00:05:44Walk (code)
-
Урок 296. 00:17:41Digit Sum
-
Урок 297. 00:18:24Digit Sum (code)
-
Урок 298. 00:25:15Permutation
-
Урок 299. 00:17:22Permutation (Brute Force)
-
Урок 300. 00:17:54Permutation (code)
-
Урок 301. 00:11:00Brute Force Pattern Matching using STL
-
Урок 302. 00:30:58Trie
-
Урок 303. 00:13:15Pattern Matching using Trie
-
Урок 304. 00:13:52String Hashing - Polynomial Hash Function
-
Урок 305. 00:04:49Polynomial Hash Code
-
Урок 306. 00:09:27Rolling Hash / Rabin Karp Algorithm
-
Урок 307. 00:12:30Rabin Karp algorithm Code
-
Урок 308. 00:07:12Introduction
-
Урок 309. 00:07:22Orientation of Points
-
Урок 310. 00:20:49Graham's Scan algorithm
-
Урок 311. 00:23:58Graham's Scan Algorithm Code
-
Урок 312. 00:06:58Problem - Polygon (Codeforces)
-
Урок 313. 00:21:20Introduction
-
Урок 314. 00:13:01Codeforces - Guess the Number
-
Урок 315. 00:06:46Guess the Number - code
-
Урок 316. 00:10:41Lost Numbers
-
Урок 317. 00:08:35Lost Numbers (code)
-
Урок 318. 00:09:39Xor Guessing
-
Урок 319. 00:04:49Xor Guessing (code)
-
Урок 320. 00:09:57Randomised Random Function
-
Урок 321. 00:07:56Run Code for a Particular Time
-
Урок 322. 00:08:30Introduction & Applications
-
Урок 323. 00:13:17Structure and Working
-
Урок 324. 00:08:40Using Coding Minutes IDE
-
Урок 325. 00:14:28Inversion Count using PBDS
-
Урок 326. 00:14:28Getting started with Codeforces / Spoj
-
Урок 327. 00:07:10Where to practice?
- Категории
- Источники
- Все курсы
- Разделы
- Книги