├── .gitignore ├── Competitions ├── Advent Of Code │ └── adventOfCode2023 │ │ ├── day1 │ │ ├── a.txt │ │ ├── day1 │ │ └── day1.cpp │ │ ├── day10 │ │ ├── a.txt │ │ ├── day10Part1 │ │ ├── day10Part1.cpp │ │ ├── day10Part2 │ │ └── day10Part2.cpp │ │ ├── day11 │ │ ├── a.txt │ │ ├── part1 │ │ └── part1.cpp │ │ ├── day12 │ │ ├── a.txt │ │ ├── part1 │ │ ├── part1.py │ │ ├── part2 │ │ └── part2.cpp │ │ ├── day13 │ │ ├── a.txt │ │ ├── part1.py │ │ └── part2.py │ │ ├── day14 │ │ ├── a.txt │ │ └── part1.py │ │ ├── day15 │ │ ├── a.txt │ │ └── part1.py │ │ ├── day16 │ │ ├── a.txt │ │ ├── part1 │ │ ├── part1.cpp │ │ ├── part2 │ │ └── part2.cpp │ │ ├── day17 │ │ ├── a.txt │ │ ├── part1 │ │ ├── part1.cpp │ │ ├── part2 │ │ └── part2.cpp │ │ ├── day18 │ │ ├── a.txt │ │ ├── part1.py │ │ └── part2.py │ │ ├── day19 │ │ ├── a.txt │ │ ├── part1.py │ │ └── part2.py │ │ ├── day2 │ │ ├── a.txt │ │ ├── day2Part1.cpp │ │ ├── day2Part2 │ │ └── day2Part2.cpp │ │ ├── day20 │ │ ├── a.txt │ │ ├── part1.py │ │ └── part2.py │ │ ├── day21 │ │ ├── a.txt │ │ ├── part1 │ │ ├── part1.cpp │ │ ├── part2 │ │ └── part2.cpp │ │ ├── day23 │ │ ├── a.txt │ │ └── main.py │ │ ├── day24 │ │ ├── a.txt │ │ └── part1.py │ │ ├── day25 │ │ ├── a.txt │ │ └── part1.py │ │ ├── day3 │ │ ├── a.txt │ │ ├── day3Part1 │ │ ├── day3Part1.cpp │ │ ├── day3Part2 │ │ └── day3Part2.cpp │ │ ├── day4 │ │ ├── a.txt │ │ ├── day4Part1 │ │ ├── day4Part1.cpp │ │ ├── day4Part2 │ │ ├── day4Part2.cpp │ │ └── day4Part2.py │ │ ├── day5 │ │ ├── a.txt │ │ ├── day5.py │ │ └── day5Part2.py │ │ ├── day6 │ │ ├── a.txt │ │ └── day6.py │ │ ├── day7 │ │ ├── a.txt │ │ └── day6.py │ │ ├── day8 │ │ ├── a.txt │ │ └── day8.py │ │ └── day9 │ │ ├── a.txt │ │ ├── day9.py │ │ └── day9Part2.py ├── Atcoder │ └── AtCoder Beginner Contest 368 │ │ ├── a.cpp │ │ ├── a.txt │ │ ├── b.cpp │ │ ├── c.cpp │ │ ├── d.cpp │ │ ├── e │ │ └── e.cpp ├── Codeforces │ ├── 2023-2024 ICPC Central Europe Regional Contest (CERC 23) │ │ ├── a.txt │ │ ├── b │ │ ├── b.cpp │ │ └── e.py │ ├── Div 2 │ │ ├── Codeforces Round 1011 (Div. 2) │ │ │ ├── a │ │ │ ├── a.cpp │ │ │ ├── a.txt │ │ │ ├── b │ │ │ ├── b.cpp │ │ │ ├── c │ │ │ ├── c.cpp │ │ │ ├── d │ │ │ └── d.cpp │ │ ├── Codeforces Round 1021 (Div. 2) │ │ │ ├── a │ │ │ ├── a.cpp │ │ │ ├── a.txt │ │ │ ├── b │ │ │ ├── b.cpp │ │ │ ├── c │ │ │ ├── c.cpp │ │ │ ├── d │ │ │ └── d.cpp │ │ ├── Codeforces Round 1022 (Div. 2) │ │ │ ├── a │ │ │ ├── a.cpp │ │ │ ├── a.txt │ │ │ ├── b │ │ │ ├── b.cpp │ │ │ ├── c │ │ │ ├── c.cpp │ │ │ ├── d │ │ │ └── d.cpp │ │ ├── Codeforces Round 1023 (Div. 2) │ │ │ ├── a │ │ │ ├── a.cpp │ │ │ ├── a.txt │ │ │ ├── b │ │ │ ├── b.cpp │ │ │ ├── c │ │ │ ├── c.cpp │ │ │ ├── d │ │ │ └── d.cpp │ │ ├── Codeforces Round 1024 (Div. 2) │ │ │ ├── a │ │ │ ├── a.cpp │ │ │ ├── a.txt │ │ │ ├── b │ │ │ ├── b.cpp │ │ │ ├── c │ │ │ ├── c.cpp │ │ │ ├── d │ │ │ └── d.cpp │ │ ├── Codeforces Round 1025 (Div. 2) │ │ │ ├── a │ │ │ ├── a.cpp │ │ │ ├── a.txt │ │ │ ├── b │ │ │ ├── b.cpp │ │ │ ├── c │ │ │ ├── c1.cpp │ │ │ ├── c2 │ │ │ ├── c2.cpp │ │ │ ├── d │ │ │ └── d.cpp │ │ ├── Codeforces Round 1026 (Div. 2) │ │ │ ├── a │ │ │ ├── a.cpp │ │ │ ├── a.txt │ │ │ ├── b │ │ │ ├── b.cpp │ │ │ ├── c │ │ │ ├── c1.cpp │ │ │ ├── c2 │ │ │ ├── c2.cpp │ │ │ ├── d │ │ │ └── d.cpp │ │ ├── Codeforces Round 1028 (Div. 2) │ │ │ ├── a │ │ │ ├── a.cpp │ │ │ ├── a.txt │ │ │ ├── b │ │ │ ├── b.cpp │ │ │ ├── c │ │ │ ├── c.cpp │ │ │ ├── c2 │ │ │ ├── d │ │ │ └── d.cpp │ │ ├── Codeforces Round 1048 (Div. 2) │ │ │ ├── a │ │ │ ├── a.cpp │ │ │ ├── a.txt │ │ │ ├── b │ │ │ ├── b.cpp │ │ │ ├── c │ │ │ ├── c.cpp │ │ │ ├── c2 │ │ │ ├── d │ │ │ └── d.cpp │ │ ├── Codeforces Round 1053 (Div. 2) │ │ │ ├── a │ │ │ ├── a.cpp │ │ │ ├── a.txt │ │ │ ├── b │ │ │ ├── b.cpp │ │ │ ├── c │ │ │ ├── c.cpp │ │ │ ├── d │ │ │ └── d.cpp │ │ ├── Codeforces Round 1056 (Div. 2) │ │ │ ├── a │ │ │ ├── a.cpp │ │ │ ├── a.txt │ │ │ ├── b │ │ │ ├── b.cpp │ │ │ ├── c │ │ │ ├── c.cpp │ │ │ ├── d │ │ │ └── d.cpp │ │ ├── Codeforces Round 1057 (Div. 2) │ │ │ ├── a │ │ │ ├── a.cpp │ │ │ ├── a.txt │ │ │ ├── b │ │ │ ├── b.cpp │ │ │ ├── c │ │ │ ├── c.cpp │ │ │ ├── d │ │ │ └── d.cpp │ │ ├── Codeforces Round 1058 (Div. 2) │ │ │ ├── a │ │ │ ├── a.cpp │ │ │ ├── a.txt │ │ │ ├── b │ │ │ ├── b.cpp │ │ │ ├── c │ │ │ ├── c.cpp │ │ │ ├── d │ │ │ └── d.cpp │ │ ├── Codeforces Round 936 (Div. 2) │ │ │ ├── a.cpp │ │ │ ├── a.txt │ │ │ ├── b.cpp │ │ │ ├── c.cpp │ │ │ └── d.py │ │ ├── Codeforces Round 941 (Div. 2) │ │ │ ├── a.cpp │ │ │ ├── a.txt │ │ │ ├── b │ │ │ ├── b.cpp │ │ │ ├── c │ │ │ ├── c.cpp │ │ │ ├── d │ │ │ └── d.cpp │ │ └── Squarepoint Challenge (Codeforces Round 1055, Div. 1 + Div. 2) │ │ │ ├── a │ │ │ ├── a.cpp │ │ │ ├── a.txt │ │ │ ├── b │ │ │ ├── b.cpp │ │ │ ├── c │ │ │ ├── c.cpp │ │ │ ├── d │ │ │ └── d.cpp │ ├── Div 3 │ │ ├── Codeforces Round 1013 (Div. 3) │ │ │ ├── a │ │ │ ├── a.cpp │ │ │ ├── a.txt │ │ │ ├── b │ │ │ ├── b.cpp │ │ │ ├── c │ │ │ ├── c.cpp │ │ │ ├── d │ │ │ ├── d.cpp │ │ │ ├── e │ │ │ ├── e.cpp │ │ │ ├── f │ │ │ ├── f.cpp │ │ │ ├── f1 │ │ │ ├── f1.cpp │ │ │ └── g1.cpp │ │ ├── Codeforces Round 1016 (Div. 3) │ │ │ └── Codeforces Round 943 (Div. 3) │ │ │ │ ├── a.cpp │ │ │ │ ├── a.txt │ │ │ │ ├── b.cpp │ │ │ │ ├── c.cpp │ │ │ │ ├── d.cpp │ │ │ │ ├── e.cpp │ │ │ │ ├── f │ │ │ │ ├── f.cpp │ │ │ │ ├── g │ │ │ │ └── g.cpp │ │ ├── Codeforces Round 1020 (Div. 3) │ │ │ ├── a.cpp │ │ │ ├── a.txt │ │ │ ├── b │ │ │ ├── b.cpp │ │ │ ├── c │ │ │ ├── c.cpp │ │ │ ├── d.cpp │ │ │ └── e.cpp │ │ ├── Codeforces Round 1027 (Div. 3) │ │ │ ├── a │ │ │ ├── a.cpp │ │ │ ├── a.txt │ │ │ ├── b │ │ │ ├── b.cpp │ │ │ ├── c │ │ │ ├── c.cpp │ │ │ ├── d │ │ │ ├── d.cpp │ │ │ ├── e │ │ │ ├── e.cpp │ │ │ ├── f │ │ │ └── f.cpp │ │ ├── Codeforces Round 1042 (Div. 3) │ │ │ ├── a │ │ │ ├── a.cpp │ │ │ ├── a.txt │ │ │ ├── b │ │ │ ├── b.cpp │ │ │ ├── c │ │ │ ├── c.cpp │ │ │ ├── d │ │ │ ├── d.cpp │ │ │ ├── e │ │ │ ├── e.cpp │ │ │ ├── f │ │ │ ├── f.cpp │ │ │ ├── g │ │ │ └── g.cpp │ │ ├── Codeforces Round 1043 (Div. 3) │ │ │ ├── a │ │ │ ├── a.cpp │ │ │ ├── a.txt │ │ │ ├── b │ │ │ ├── b.cpp │ │ │ ├── c │ │ │ ├── c1.cpp │ │ │ ├── c2 │ │ │ ├── c2.cpp │ │ │ ├── d │ │ │ ├── d.cpp │ │ │ ├── e │ │ │ └── e.cpp │ │ ├── Codeforces Round 1047 (Div. 3) │ │ │ ├── a │ │ │ ├── a.cpp │ │ │ ├── a.txt │ │ │ ├── b │ │ │ ├── b.cpp │ │ │ ├── c │ │ │ ├── c.cpp │ │ │ ├── d │ │ │ ├── d.cpp │ │ │ ├── e │ │ │ ├── e.cpp │ │ │ ├── f │ │ │ ├── f.cpp │ │ │ ├── g │ │ │ └── g.cpp │ │ ├── Codeforces Round 1054 (Div. 3) │ │ │ ├── a │ │ │ ├── a.cpp │ │ │ ├── a.txt │ │ │ ├── b │ │ │ ├── b.cpp │ │ │ ├── c │ │ │ ├── c.cpp │ │ │ ├── d │ │ │ ├── d.cpp │ │ │ ├── e │ │ │ ├── e.cpp │ │ │ ├── f │ │ │ ├── f.cpp │ │ │ ├── g │ │ │ └── g.cpp │ │ ├── Codeforces Round 797 (Div. 3) │ │ │ ├── a.cpp │ │ │ ├── a.txt │ │ │ ├── b.cpp │ │ │ ├── c.cpp │ │ │ ├── d.cpp │ │ │ ├── e.cpp │ │ │ ├── f.cpp │ │ │ └── g.cpp │ │ ├── Codeforces Round 925 (Div. 3) │ │ │ ├── a.cpp │ │ │ ├── a.txt │ │ │ ├── b.cpp │ │ │ ├── c.cpp │ │ │ ├── d.cpp │ │ │ ├── e.cpp │ │ │ ├── f.cpp │ │ │ └── g.cpp │ │ ├── Codeforces Round 933 (Div. 3) │ │ │ ├── a.cpp │ │ │ ├── a.txt │ │ │ ├── b.cpp │ │ │ ├── c.cpp │ │ │ ├── d.cpp │ │ │ ├── e.cpp │ │ │ ├── f.cpp │ │ │ └── g.cpp │ │ ├── Codeforces Round 935 (Div. 3) │ │ │ ├── a │ │ │ ├── a.cpp │ │ │ ├── a.txt │ │ │ ├── d.cpp │ │ │ ├── e.cpp │ │ │ ├── f.cpp │ │ │ └── g.cpp │ │ ├── Codeforces Round 938 (Div. 3) │ │ │ ├── a.cpp │ │ │ ├── a.txt │ │ │ ├── b.cpp │ │ │ ├── c.cpp │ │ │ ├── d.cpp │ │ │ ├── e.cpp │ │ │ ├── g │ │ │ └── g.cpp │ │ ├── Codeforces Round 943 (Div. 3) │ │ │ ├── a.cpp │ │ │ ├── a.txt │ │ │ ├── b.cpp │ │ │ ├── c.cpp │ │ │ ├── d.cpp │ │ │ ├── e.cpp │ │ │ ├── f.cpp │ │ │ └── g1.cpp │ │ ├── Codeforces Round 950 (Div. 3) │ │ │ ├── a.cpp │ │ │ ├── a.txt │ │ │ ├── b.cpp │ │ │ ├── c.cpp │ │ │ ├── d.cpp │ │ │ ├── e.cpp │ │ │ ├── f.cpp │ │ │ └── h1.cpp │ │ └── Codeforces Round 962 (Div. 3) │ │ │ ├── a │ │ │ ├── a.cpp │ │ │ ├── a.txt │ │ │ ├── b │ │ │ ├── b.cpp │ │ │ ├── c │ │ │ ├── c.cpp │ │ │ ├── d │ │ │ ├── d.cpp │ │ │ ├── e │ │ │ ├── e.cpp │ │ │ ├── f.cpp │ │ │ └── h1.cpp │ ├── Div 4 │ │ ├── Codeforces Round #790 │ │ │ ├── a.cpp │ │ │ ├── b.cpp │ │ │ ├── c.cpp │ │ │ ├── d.cpp │ │ │ ├── e.cpp │ │ │ ├── f.cpp │ │ │ ├── g.cpp │ │ │ └── h.cpp │ │ ├── Codeforces Round #806 │ │ │ ├── a.cpp │ │ │ ├── b.cpp │ │ │ ├── c.cpp │ │ │ ├── d.cpp │ │ │ ├── e.cpp │ │ │ ├── f.cpp │ │ │ └── g.cpp │ │ ├── Codeforces Round #928 │ │ │ ├── a.cpp │ │ │ ├── a.txt │ │ │ ├── b.cpp │ │ │ ├── c.cpp │ │ │ ├── d.cpp │ │ │ ├── e.cpp │ │ │ ├── f.cpp │ │ │ └── g.cpp │ │ ├── Codeforces Round #944 │ │ │ ├── a.cpp │ │ │ ├── a.txt │ │ │ ├── b.cpp │ │ │ ├── c.cpp │ │ │ ├── d.cpp │ │ │ ├── e.cpp │ │ │ ├── f.cpp │ │ │ ├── g │ │ │ └── g.cpp │ │ ├── Codeforces Round 1017 (Div. 4) │ │ │ ├── a.cpp │ │ │ ├── a.txt │ │ │ ├── b.cpp │ │ │ ├── c.cpp │ │ │ ├── d.cpp │ │ │ ├── e.cpp │ │ │ ├── f │ │ │ ├── f.cpp │ │ │ ├── g.cpp │ │ │ ├── h │ │ │ └── h.cpp │ │ ├── Codeforces Round 1050 (Div. 4) │ │ │ ├── a │ │ │ ├── a.cpp │ │ │ ├── a.txt │ │ │ ├── b │ │ │ ├── b.cpp │ │ │ ├── c │ │ │ ├── c.cpp │ │ │ ├── d │ │ │ ├── d.cpp │ │ │ ├── e │ │ │ ├── e.cpp │ │ │ ├── f │ │ │ ├── f.cpp │ │ │ ├── g │ │ │ └── g.cpp │ │ └── Codeforces Round 952 (Div. 4) │ │ │ ├── a.cpp │ │ │ ├── a.txt │ │ │ ├── b.cpp │ │ │ ├── c.cpp │ │ │ ├── d.cpp │ │ │ ├── e.cpp │ │ │ ├── f1.cpp │ │ │ └── g.cpp │ └── Educational │ │ ├── Educational Codeforces Round 165 (Rated for Div. 2) │ │ ├── a.cpp │ │ ├── a.txt │ │ ├── b.cpp │ │ ├── c.cpp │ │ └── d.cpp │ │ ├── Educational Codeforces Round 175 (Rated for Div. 2) │ │ ├── a │ │ ├── a.cpp │ │ ├── a.txt │ │ ├── b │ │ ├── b.cpp │ │ ├── c │ │ ├── c.cpp │ │ ├── d │ │ ├── d_bfs │ │ ├── d_bfs.cpp │ │ └── d_dfs_tle.cpp │ │ ├── Educational Codeforces Round 176 (Rated for Div. 2) │ │ ├── a.cpp │ │ ├── a.txt │ │ ├── b.cpp │ │ ├── c.cpp │ │ ├── d │ │ └── d.cpp │ │ ├── Educational Codeforces Round 177 (Rated for Div. 2) │ │ ├── a │ │ ├── a.txt │ │ ├── b.cpp │ │ ├── c │ │ ├── c.cpp │ │ ├── d │ │ └── d.cpp │ │ ├── Educational Codeforces Round 178 (Rated for Div. 2) │ │ ├── a.cpp │ │ ├── a.txt │ │ ├── b.cpp │ │ ├── c.cpp │ │ ├── d │ │ ├── d.cpp │ │ └── e.cpp │ │ ├── Educational Codeforces Round 179 (Rated for Div. 2) │ │ ├── a │ │ ├── a.cpp │ │ ├── a.txt │ │ ├── b │ │ ├── b.cpp │ │ ├── c │ │ ├── c.cpp │ │ ├── c2 │ │ ├── d │ │ ├── d.cpp │ │ ├── f │ │ └── f.cpp │ │ ├── Educational Codeforces Round 182 (Rated for Div. 2) │ │ ├── a │ │ ├── a.cpp │ │ ├── a.txt │ │ ├── b │ │ ├── b.cpp │ │ ├── c │ │ ├── c.cpp │ │ ├── d │ │ ├── d.cpp │ │ ├── e │ │ ├── e1 │ │ ├── e1.cpp │ │ ├── f │ │ ├── f.cpp │ │ ├── g │ │ └── g.cpp │ │ └── Educational Codeforces Round 183 (Rated for Div. 2) │ │ ├── a │ │ ├── a.cpp │ │ ├── a.txt │ │ ├── b │ │ ├── b.cpp │ │ ├── c │ │ ├── c.cpp │ │ ├── d │ │ └── d.cpp ├── HackerCup2021 │ ├── A1.cpp │ ├── A2-Augmented_BFS.cpp │ ├── A2-floydWarshall.cpp │ ├── B.cpp │ └── c1.cpp ├── IOPC 2 │ ├── D. Radio sets │ │ ├── a.txt │ │ ├── main │ │ └── main.cpp │ ├── computed fields │ │ ├── a.txt │ │ ├── main │ │ └── main.cpp │ ├── crazy pricing │ │ ├── a.txt │ │ ├── crazy_pricing_MLE.cpp │ │ ├── crazy_pricing_TLE.cpp │ │ ├── crazy_pricing_WA.cpp │ │ ├── crazy_pricing_bitmask_YES │ │ ├── crazy_pricing_bitmask_YES.cpp │ │ ├── crazy_pricing_ternary_rep_YES.cpp │ │ └── crazy_pricing_ternary_rep_backtracking_YES.cpp │ ├── helpdesk │ │ ├── a.txt │ │ └── helpdesk.cpp │ └── task scheduling │ │ ├── a.txt │ │ ├── tasks_scheduling_BIT_YES │ │ ├── tasks_scheduling_BIT_YES.cpp │ │ ├── tasks_scheduling_TLE │ │ ├── tasks_scheduling_TLE.cpp │ │ ├── yes_cs.cs │ │ └── yes_java.java ├── leetcode │ ├── Biweekly │ │ ├── Biweekly Contest 120 │ │ │ ├── 2971. Find Polygon With the Largest Perimeter.cpp │ │ │ ├── 2972. Count the Number of Incremovable Subarrays II | 2 pointers.cpp │ │ │ ├── 2972. Count the Number of Incremovable Subarrays II | binary search.cpp │ │ │ └── 2973. Find Number of Coins to Place in Tree Nodes.cpp │ │ ├── Biweekly Contest 121 │ │ │ ├── 2996. Smallest Missing Integer Greater Than Sequential Prefix Sum.cpp │ │ │ ├── 2997. Minimum Number of Operations to Make Array XOR Equal to K.cpp │ │ │ ├── 2998. Minimum Number of Operations to Make X and Y Equal.cpp │ │ │ └── 2999. Count the Number of Powerful Integers.cpp │ │ ├── Biweekly Contest 122 │ │ │ ├── 3011. Find if Array Can Be Sorted.cpp │ │ │ ├── 3012. Minimize Length of Array Using Operations.cpp │ │ │ └── 3013. Divide an Array Into Subarrays With Minimum Cost II.cpp │ │ ├── Biweekly Contest 123 │ │ │ ├── Find the Number of Ways to Place People 1 and 2.cpp │ │ │ ├── Maximum Good Subarray Sum.cpp │ │ │ └── Type of Triangle.cpp │ │ ├── Biweekly Contest 124 │ │ │ ├── Apply Operations to Make String Empty.cpp │ │ │ ├── Maximize Consecutive Elements in an Array After Modification.cpp │ │ │ ├── Maximum Number of Operations With the Same Score I.cpp │ │ │ └── Maximum Number of Operations With the Same Score II.cpp │ │ ├── Biweekly Contest 125 │ │ │ ├── Count Pairs of Connectable Servers in a Weighted Tree Network.cpp │ │ │ ├── Find the Maximum Sum of Node Values.cpp │ │ │ ├── Minimum Operations to Exceed Threshold Value I.cpp │ │ │ └── Minimum Operations to Exceed Threshold Value II.cpp │ │ ├── Biweekly Contest 128 │ │ │ ├── Find the Number of Subarrays Where Boundary Elements Are Maximum.cpp │ │ │ ├── Minimum Rectangles to Cover Points.cpp │ │ │ ├── Minimum Time to Visit Disappearing Nodes.cpp │ │ │ └── Score of a String.cpp │ │ ├── Biweekly Contest 129 │ │ │ ├── 3130. Find All Possible Stable Binary Arrays II Solved Hard Topics Companies Hint.cpp │ │ │ ├── Make a Square with the Same Color.cpp │ │ │ └── Right Triangles.cpp │ │ ├── Biweekly Contest 130 │ │ │ ├── 3142. Check if Grid Satisfies Conditions.cpp │ │ │ ├── 3143. Maximum Points Inside the Square.cpp │ │ │ ├── 3144. Minimum Substring Partition of Equal Character Frequency.cpp │ │ │ └── 3145. Find Products of Elements of Big Array.cpp │ │ ├── Biweekly Contest 131 │ │ │ ├── 3158. Find the XOR of Numbers Which Appear Twice.cpp │ │ │ ├── 3159. Find Occurrences of an Element in an Array.cpp │ │ │ ├── 3160. Find the Number of Distinct Colors Among the Balls.cpp │ │ │ └── 3161. Block Placement Queries.cpp │ │ ├── Biweekly Contest 132 │ │ │ ├── 3174. Clear Digits.cpp │ │ │ ├── 3175. Find The First Player to win K Games in a Row.cpp │ │ │ ├── 3176. Find the Maximum Length of a Good Subsequence I.cpp │ │ │ └── 3177. Find the Maximum Length of a Good Subsequence II.cpp │ │ ├── Biweekly Contest 133 │ │ │ ├── 3190. Find Minimum Operations to Make All Elements Divisible by Three.cpp │ │ │ ├── 3191. Minimum Operations to Make Binary Array Elements Equal to One I.cpp │ │ │ ├── 3192. Minimum Operations to Make Binary Array Elements Equal to One II.cpp │ │ │ └── 3193. Count the Number of Inversions.cpp │ │ ├── Biweekly Contest 134 │ │ │ ├── 3207. Maximum Points After Enemy Battles.cpp │ │ │ ├── 3208. Alternating Groups II.cpp │ │ │ └── 3209. Number of Subarrays With AND Value of K.cpp │ │ ├── Biweekly Contest 136 │ │ │ ├── 3238. Find the Number of Winning Players.cpp │ │ │ ├── 3239. Minimum Number of Flips to Make Binary Grid Palindromic I.cpp │ │ │ ├── 3240. Minimum Number of Flips to Make Binary Grid Palindromic II.cpp │ │ │ └── 3241. Time Taken to Mark All Nodes.cpp │ │ ├── Biweekly Contest 137 │ │ │ ├── 3255. Find the Power of K-Size Subarrays II.cpp │ │ │ └── 3257. Maximum Value Sum by Placing Three Rooks II.cpp │ │ ├── Biweekly Contest 138 │ │ │ ├── 3272. Find the Count of Good Integers.cpp │ │ │ └── 3273. Minimum Amount of Damage Dealt to Bob.cpp │ │ ├── Biweekly Contest 140 │ │ │ ├── 3300. Minimum Element After Replacement With Digit Sum.cpp │ │ │ ├── 3301. Maximize the Total Height of Unique Towers.cpp │ │ │ ├── 3302. Find the Lexicographically Smallest Valid Sequence.cpp │ │ │ └── 3303. Find the Occurrence of First Almost Equal Substring.cpp │ │ ├── Biweekly Contest 141 │ │ │ ├── 3315. Construct the Minimum Bitwise Array II.cpp │ │ │ ├── 3316. Find Maximum Removals From Source String.cpp │ │ │ └── 3317. Find the Number of Possible Ways for an Event.cpp │ │ ├── Biweekly Contest 142 │ │ │ ├── 3331. Find Subtree Sizes After Changes.cpp │ │ │ ├── 3332. Maximum Points Tourist Can Earn.cpp │ │ │ └── 3333. Find the Original Typed String II.cpp │ │ ├── Biweekly Contest 144 │ │ │ ├── 3360. Stone Removal Game.cpp │ │ │ ├── 3361. Shift Distance Between Two Strings.cpp │ │ │ ├── 3362. Zero Array Transformation III.cpp │ │ │ └── 3363. Find the Maximum Number of Fruits Collected.cpp │ │ ├── Biweekly Contest 151 │ │ │ ├── 3467. Transform Array by Parity.cpp │ │ │ ├── 3468. Find the Number of Copy Arrays.cpp │ │ │ ├── 3469. Find Minimum Cost to Remove Array Elements.cpp │ │ │ └── 3470. Permutations IV.py │ │ ├── Biweekly Contest 152 │ │ │ ├── 3483. Unique 3-Digit Even Numbers.cpp │ │ │ ├── 3484. Design Spreadsheet.py │ │ │ ├── 3485. Longest Common Prefix of K Strings After Removal.cpp │ │ │ └── 3486. Longest Special Path II.cpp │ │ ├── Biweekly Contest 153 │ │ │ ├── 3498. Reverse Degree of a String.cpp │ │ │ ├── 3499. Maximize Active Section with Trade I.cpp │ │ │ ├── 3500. Minimum Cost to Divide Array Into Subarrays.cpp │ │ │ └── 3501. Maximize Active Section with Trade II.cpp │ │ ├── Biweekly Contest 154 │ │ │ ├── 3512. Minimum Operations to Make Array Sum Divisible by K.cpp │ │ │ ├── 3513. Number of Unique XOR Triplets I.cpp │ │ │ ├── 3514. Number of Unique XOR Triplets II.cpp │ │ │ └── 3515. Shortest Path in a Weighted Tree.cpp │ │ ├── Biweekly Contest 155 │ │ │ ├── 3529. Count Cells in Overlapping Horizontal and Vertical Substrings.cpp │ │ │ └── 3530. Maximum Profit from Valid Topological Order in DAG.cpp │ │ ├── Biweekly Contest 156 │ │ │ └── 3544. Subtree Inversion Sum.cpp │ │ ├── Biweekly contest 126 │ │ │ ├── c │ │ │ ├── c.cpp │ │ │ ├── d │ │ │ └── d.cpp │ │ └── Biweekly contest 127 │ │ │ ├── Find the Sum of Subsequence Powers - solution 1.cpp │ │ │ ├── Find the Sum of Subsequence Powers - solution 2.cpp │ │ │ └── Shortest Subarray With OR at Least K II.cpp │ └── Weekly │ │ ├── Weekly Contest 1 │ │ ├── 386. Lexicographical Numbers.cpp │ │ ├── 387. First Unique Character in a String.cpp │ │ └── 388. Longest Absolute File Path.cpp │ │ ├── Weekly Contest 382 │ │ ├── Alice and Bob Playing Flower Game.cpp │ │ ├── Find the Maximum Number of Elements in Subset.cpp │ │ ├── Minimize OR of Remaining Elements Using Operations.cpp │ │ └── Number of Changing Keys.cpp │ │ ├── Weekly Contest 383 │ │ ├── Ant on the Boundary.cpp │ │ ├── Find the Grid of Region Average.cpp │ │ └── Minimum Time to Revert Word to Initial State I & II.cpp │ │ ├── Weekly Contest 384 │ │ ├── Maximum Palindromes After Operations.cpp │ │ ├── Modify the Matrix.cpp │ │ └── Number of Subarrays That Match a Pattern II.cpp │ │ ├── Weekly Contest 386 │ │ ├── Earliest Second to Mark Indices I.cpp │ │ ├── Earliest Second to Mark Indices II.cpp │ │ ├── Find the Largest Area of Square Inside Two Rectangles.cpp │ │ └── Split the Array.cpp │ │ ├── Weekly Contest 387 │ │ ├── Count Submatrices with Top-Left Element and Sum Less Than k.cpp │ │ ├── Distribute Elements Into Two Arrays I.cpp │ │ ├── Distribute Elements Into Two Arrays II.cpp │ │ └── Minimum Operations to Write the Letter Y on a Grid.cpp │ │ ├── Weekly Contest 388 │ │ ├── Apple Redistribution into Boxes.cpp │ │ ├── Maximize Happiness of Selected Children.cpp │ │ ├── Maximum Strength of K Disjoint Subarrays.cpp │ │ ├── Maximum Strength of K Disjoint Subarrays.py │ │ └── Shortest Uncommon Substring in an Array.cpp │ │ ├── Weekly Contest 389 │ │ ├── Count Substrings Starting and Ending with Given Character.cpp │ │ ├── Existence of a Substring in a String and Its Reverse.cpp │ │ ├── Minimum Deletions to Make String K-Special.cpp │ │ └── Minimum Moves to Pick K Ones.cpp │ │ ├── Weekly Contest 390 │ │ ├── Apply Operations to Make Sum of Array Greater Than or Equal to k.cpp │ │ ├── Longest Common Suffix Queries.cpp │ │ ├── Maximum Length Substring With Two Occurrences.cpp │ │ ├── Most Frequent IDs - heap.cpp │ │ └── Most Frequent IDs - seg tree.cpp │ │ ├── Weekly Contest 391 │ │ ├── Count Alternating Subarrays.cpp │ │ └── Minimize Manhattan Distances.cpp │ │ ├── Weekly Contest 392 │ │ ├── Lexicographically Smallest String After Operations With Constraint.cpp │ │ ├── Longest Strictly Increasing or Strictly Decreasing Subarray.cpp │ │ ├── Minimum Cost Walk in Weighted Graph.cpp │ │ └── Minimum Operations to Make Median of Array Equal to K.cpp │ │ ├── Weekly Contest 394 │ │ ├── Count the Number of Special Characters II.cpp │ │ ├── Find Edges in Shortest Paths.cpp │ │ └── Minimum Number of Operations to Satisfy Conditions.cpp │ │ ├── Weekly Contest 395 │ │ ├── Find the Integer Added to Array II.cpp │ │ ├── Find the Median of the Uniqueness Array.cpp │ │ └── Minimum Array End.cpp │ │ ├── Weekly Contest 396 │ │ ├── 3136. Valid Word.cpp │ │ ├── 3137. Minimum Number of Operations to Make Word K-Periodic.cpp │ │ ├── 3138. Minimum Length of Anagram Concatenation.cpp │ │ └── 3139. Minimum Cost to Equalize Array.cpp │ │ ├── Weekly Contest 397 │ │ ├── 3147. Taking Maximum Energy From the Mystic Dungeon.cpp │ │ ├── 3148. Maximum Difference Score in a Grid.cpp │ │ └── 3149. Find the Minimum Cost Array Permutation.cpp │ │ ├── Weekly Contest 398 │ │ ├── 3152. Special Array II.cpp │ │ ├── 3153. Sum of Digit Differences of All Pairs.cpp │ │ └── 3154. Find Number of Ways to Reach the K-th Stair.cpp │ │ ├── Weekly Contest 399 │ │ ├── 3163. String Compression III.cpp │ │ ├── 3164. Find the Number of Good Pairs II.cpp │ │ └── 3165. Maximum Sum of Subsequence With Non-adjacent Elements.cpp │ │ ├── Weekly Contest 400 │ │ ├── 3168. Minimum Number of Chairs in a Waiting Room.cpp │ │ ├── 3169. Count Days Without Meetings.cpp │ │ ├── 3170. Lexicographically Minimum String After Removing Stars.cpp │ │ └── 3171. Find Subarray With Bitwise AND Closest to K.cpp │ │ ├── Weekly Contest 401 │ │ ├── 3181. Maximum Total Reward Using Operations I.cpp │ │ └── 3181. Maximum Total Reward Using Operations II.cpp │ │ ├── Weekly Contest 402 │ │ ├── 3185. Count Pairs That Form a Complete Day II.cpp │ │ ├── 3186. Maximum Total Damage With Spell Casting.cpp │ │ └── 3187. Peaks in Array.cpp │ │ ├── Weekly Contest 403 │ │ ├── 3194. Minimum Average of Smallest and Largest Elements.cpp │ │ ├── 3195. Find the Minimum Area to Cover All Ones I.cpp │ │ ├── 3196. Maximize Total Cost of Alternating Subarrays.cpp │ │ └── 3197. Find the Minimum Area to Cover All Ones II.cpp │ │ ├── Weekly Contest 405 │ │ ├── 3210. Find the Encrypted String.cpp │ │ ├── 3211. Generate Binary Strings Without Adjacent Zeros.cpp │ │ ├── 3212. Count Submatrices With Equal Frequency of X and Y.cpp │ │ └── 3213. Construct String with Minimum Cost.cpp │ │ ├── Weekly Contest 406 │ │ ├── 3216. Lexicographically Smallest String After a Swap.cpp │ │ ├── 3217. Delete Nodes From Linked List Present in Array.cpp │ │ └── 3219. Minimum Cost for Cutting Cake II.cpp │ │ ├── Weekly Contest 407 │ │ ├── 3226. Number of Bit Changes to Make Two Integers Equal.cpp │ │ ├── 3227. Vowels Game in a String.cpp │ │ ├── 3228. Maximum Number of Operations to Move Ones to the End.cpp │ │ └── 3229. Minimum Operations to Make Array Equal to Target.cpp │ │ ├── Weekly Contest 408 │ │ ├── 3234. Count the Number of Substrings With Dominant Ones.cpp │ │ └── 3235. Check if the Rectangle Corner Is Reachable.cpp │ │ ├── Weekly Contest 409 │ │ ├── 3244. Shortest Distance After Road Addition Queries II.cpp │ │ └── 3245. Alternating Groups III.cpp │ │ ├── Weekly Contest 410 │ │ ├── 3248. Snake in Matrix.cpp │ │ ├── 3249. Count the Number of Good Nodes.cpp │ │ ├── 3251. Find the Count of Monotonic Pairs I.cpp │ │ └── 3251. Find the Count of Monotonic Pairs II.cpp │ │ ├── Weekly Contest 412 │ │ ├── 3266. Final Array State After K Multiplication Operations II.cpp │ │ └── 3267. Count Almost Equal Pairs II.cpp │ │ ├── Weekly Contest 413 │ │ ├── 3274. Check if Two Chessboard Squares Have the Same Color.cpp │ │ ├── 3275. K-th Nearest Obstacle Queries.cpp │ │ ├── 3276. Select Cells in Grid With Maximum Score.cpp │ │ └── 3277. Maximum XOR Score Subarray Queries.cpp │ │ ├── Weekly Contest 414 │ │ ├── d │ │ └── d.cpp │ │ ├── Weekly Contest 417 │ │ ├── 3306. Count of Substrings Containing Every Vowel and K Consonants II.cpp │ │ └── 3307. Find the K-th Character in String Game II.cpp │ │ ├── Weekly Contest 418 │ │ └── 3311. Construct 2D Grid Matching Graph Layout.cpp │ │ ├── Weekly Contest 419 │ │ ├── 3319. K-th Largest Perfect Subtree Size in Binary Tree.cpp │ │ ├── 3320. Count The Number of Winning Sequences.cpp │ │ └── 3321. Find X-Sum of All K-Long Subarrays II.cpp │ │ ├── Weekly Contest 420 │ │ ├── 3324. Find the Sequence of Strings Appeared on the Screen.cpp │ │ ├── 3325. Count Substrings With K-Frequency Characters I.cpp │ │ ├── 3326. Minimum Division Operations to Make Array Non Decreasing.cpp │ │ ├── 3327. Check if DFS Strings Are Palindromes | Manacher.cpp │ │ └── 3327. Check if DFS Strings Are Palindromes.cpp │ │ ├── Weekly Contest 421 │ │ ├── 3334. Find the Maximum Factor Score of Array.cpp │ │ ├── 3335. Total Characters in String After Transformations I.cpp │ │ ├── 3336. Find the Number of Subsequences With Equal GCD.cpp │ │ └── 3337. Total Characters in String After Transformations II.cpp │ │ ├── Weekly Contest 422 │ │ ├── 3340. Check Balanced String.cpp │ │ ├── 3342. Find Minimum Time to Reach Last Room II.cpp │ │ └── 3343. Count Number of Balanced Permutations.cpp │ │ ├── Weekly Contest 423 │ │ ├── 3350. Adjacent Increasing Subarrays Detection II | Binary Search + prefix sum.cpp │ │ ├── 3350. Adjacent Increasing Subarrays Detection II | LISubarray | LDSubarray.cpp │ │ ├── 3350. Adjacent Increasing Subarrays Detection II | Sliding Window.cpp │ │ ├── 3351. Sum of Good Subsequences.cpp │ │ └── 3352. Count K-Reducible Numbers Less Than N.cpp │ │ ├── Weekly Contest 424 │ │ ├── 3354. Make Array Elements Equal to Zero.cpp │ │ ├── 3356. Zero Array Transformation II.cpp │ │ ├── 3357. Minimize the Maximum Adjacent Element Difference.cpp │ │ └── a.cpp │ │ ├── Weekly Contest 425 │ │ ├── 3365. Rearrange K Substrings to Form Target String.cpp │ │ ├── 3366. Minimum Array Sum.cpp │ │ └── 3367. Maximize Sum of Weights after Edge Removals.cpp │ │ ├── Weekly Contest 426 │ │ ├── 3370. Smallest Number With All Set Bits.cpp │ │ ├── 3371. Identify the Largest Outlier in an Array.cpp │ │ ├── 3372. Maximize the Number of Target Nodes After Connecting Trees I.cpp │ │ └── 3373. Maximize the Number of Target Nodes After Connecting Trees II.cpp │ │ ├── Weekly Contest 427 │ │ ├── 3380. Maximum Area Rectangle With Point Constraints I.cpp │ │ ├── 3381. Maximum Subarray Sum With Length Divisible by K.cpp │ │ └── 3382. Maximum Area Rectangle With Point Constraints II.cpp │ │ ├── Weekly Contest 428 │ │ ├── 3380. Maximum Area Rectangle With Point Constraints I.cpp │ │ ├── 3381. Maximum Subarray Sum With Length Divisible by K.cpp │ │ └── d.cpp │ │ ├── Weekly Contest 440 │ │ ├── 3478. Choose K Elements With Maximum Sum.cpp │ │ ├── 3479. Fruits Into Baskets II & III.cpp │ │ ├── 3480. Maximize Subarrays After Removing One Conflicting Pair │ │ └── 3480. Maximize Subarrays After Removing One Conflicting Pair.cpp │ │ ├── Weekly Contest 443 │ │ ├── 3504. Longest Palindrome After Substring Concatenation I & II.cpp │ │ └── 3505. Minimum Operations to Make Elements Within K Subarrays Equal.cpp │ │ ├── Weekly Contest 444 │ │ ├── 3507. Minimum Pair Removal to Sort Array I AND II.cpp │ │ └── 3509. Maximum Product of Subsequences With an Alternating Sum Equal to K.cpp │ │ ├── Weekly Contest 445 │ │ ├── 3516. Find Closest Person.cpp │ │ ├── 3517. Smallest Palindromic Rearrangement I.cpp │ │ ├── 3518. Smallest Palindromic Rearrangement II.cpp │ │ └── 3519. Count Numbers with Non-Decreasing Digits.cpp │ │ ├── Weekly Contest 446 │ │ ├── 3522. Calculate Score After Performing Instructions.cpp │ │ ├── 3523. Make Array Non-decreasing.cpp │ │ ├── 3524. Find X Value of Array I.cpp │ │ └── 3525. Find X Value of Array II.cpp │ │ ├── Weekly Contest 449 │ │ ├── 3547. Maximum Sum of Edge Values in a Graph.cpp │ │ └── 3548. Equal Sum Grid Partition II.cpp │ │ ├── Weekly Contest 450 │ │ └── 3553. Minimum Weighted Subgraph With the Required Paths II.cpp │ │ ├── Weekly Context 385 │ │ ├── Count Prefix and Suffix Pairs I & II.cpp │ │ ├── Find the Length of the Longest Common Prefix.cpp │ │ └── Most Frequent Prime.cpp │ │ ├── Weekly Context 404 │ │ ├── 3200. Maximum Height of a Triangle.cpp │ │ ├── 3202. Find the Maximum Length of Valid Subsequence II.cpp │ │ └── 3203. Find Minimum Diameter After Merging Two Trees.cpp │ │ └── Wekkly Contest 393 │ │ ├── Kth Smallest Amount With Single Denomination Combination.cpp │ │ ├── Latest Time You Can Obtain After Replacing Characters.cpp │ │ ├── Maximum Prime Difference.cpp │ │ └── Minimum Sum of Values by Dividing Array.cpp └── tcpc2022 │ ├── README.md │ ├── TCPC 2022-01.jpg │ ├── TCPC 2022-02.jpg │ ├── TCPC 2022-03.jpg │ ├── TCPC 2022-04.jpg │ ├── TCPC 2022-05.jpg │ ├── TCPC 2022-06.jpg │ ├── TCPC 2022-07.jpg │ ├── TCPC 2022-08.jpg │ ├── TCPC 2022-09.jpg │ ├── TCPC 2022-10.jpg │ ├── TCPC 2022-11.jpg │ ├── TCPC 2022-12.jpg │ ├── TCPC 2022-13.jpg │ ├── TCPC 2022-14.jpg │ ├── TCPC 2022-15.jpg │ ├── TCPC 2022-16.jpg │ ├── TCPC 2022-17.jpg │ └── TCPC 2022-18.jpg ├── Templates ├── binary-lifting.cpp ├── bit.cpp ├── compressor.cpp ├── graphMaze.cpp ├── kmp.cpp └── segmentTree.cpp ├── Topics ├── BST │ ├── Convert Sorted Array to Binary Search Tree.cpp │ ├── Increasing Order Search Tree.cpp │ ├── Range Sum of BST.cpp │ └── Search in a Binary Search Tree.cpp ├── Backtracking │ ├── 2096. Step-By-Step Directions From a Binary Tree Node to Another.cpp │ ├── 2597. The Number of Beautiful Subsets │ ├── 2597. The Number of Beautiful Subsets.cpp │ ├── 306. Additive Number.py │ ├── 3211. Generate Binary Strings Without Adjacent Zeros.cpp │ ├── 3486. Longest Special Path I | sliding window + prefix sum on Tree.cpp │ ├── 3486. Longest Special Path II | sliding window + prefix sum on Tree.cpp │ ├── Remove Invalid Parentheses.cpp │ ├── Word Search.cpp │ ├── a.cpp │ ├── debug.cpp │ ├── f.cpp │ ├── hanoi tower.cpp │ ├── n queens.cpp │ └── permutaions.cpp ├── Binary Search │ ├── 1482. Minimum Number of Days to Make m Bouquets.cpp │ ├── 1508. Range Sum of Sorted Subarray Sums.cpp │ ├── 1552. Magnetic Force Between Two Balls.cpp │ ├── 1859. Sorting the Sentence.py │ ├── 2594. Minimum Time to Repair Cars.cpp │ ├── 268. Missing Number leetcode.py │ ├── 278. First Bad Version.py │ ├── 2972. Count the Number of Incremovable Subarrays II.cpp │ ├── 3224. Minimum Array Changes to Make Differences Equal.cpp │ ├── 367. Valid Perfect Square.py │ ├── 374. Guess Number Higher or Lower leetcode.py │ ├── 441. Arranging Coins leetcode.py │ ├── 668. Kth Smallest Number in Multiplication Table.cpp │ ├── 69. Sqrt(x).py │ ├── 704. Binary Search leetcode.py │ ├── 719. Find K-th Smallest Pair Distance.cpp │ ├── 744. Find Smallest Letter Greater Than Target.py │ ├── 875. Koko Eating Bananas.cpp │ ├── Fixed Point Guessing.cpp │ ├── Guessing the Greatest (easy version).cpp │ ├── Guessing the Greatest (hard version).cpp │ ├── Leetcode Hard │ │ ├── 2071. Maximum Number of Tasks You Can Assign.cpp │ │ └── 564. Find the Closest Palindrome.cpp │ ├── Leetcode Mid │ │ └── 2064. Minimized Maximum of Products Distributed to Any Store.cpp │ ├── Robot on the Board 1.cpp │ ├── Salary Changing.cpp │ ├── binary_search.py │ └── rotate circle.cpp ├── Cumulative sum │ ├── 1052. Grumpy Bookstore Owner.cpp │ ├── 3006. Find Beautiful Indices in the Given Array I.cpp │ ├── 3212. Count Submatrices With Equal Frequency of X and Y.cpp │ ├── Central Russia Regional Contest, 2022 G sleep.py │ ├── Count Subarrays Where Max Element Appears at Least K Times.cpp │ ├── Maximal Rectangle.cpp │ ├── Maximum Good Subarray Sum.cpp │ └── Minimum Deletions to Make String K-Special.cpp ├── Dynamic Programming │ ├── 0 - 1 Knapsack Problem.cpp │ ├── Coin change.cpp │ ├── Count number of hops or Climbing Stairs.cpp │ ├── Distinct occurrences for GeeksForGeeks.cpp │ ├── Distinct occurrences for LeetCode.cpp │ ├── Edit Distance.cpp │ ├── Longest Common Subsequence.cpp │ ├── Longest Increasing Subsequence.cpp │ ├── Maximum path sum in matrix.cpp │ ├── Minimum sum partition.cpp │ ├── Nth Fibonacci Number.cpp │ ├── Nth catalan number.cpp │ ├── Optimal Strategy For A Game.cpp │ ├── Partition Equal Subset Sum.cpp │ ├── Rod Cutting.cpp │ ├── Shortest Common Supersequence.cpp │ ├── Word break.cpp │ ├── a.txt │ ├── cf │ │ ├── Central Russia Regional Contest, 2022 N First words.cpp │ │ └── c Educational Codeforces Round 165 (Rated for Div. 2).cpp │ ├── elevator │ ├── elevator.cpp │ ├── hard leetcode │ │ ├── 1278. Palindrome Partitioning III.cpp │ │ ├── 1531. String Compression II.cpp │ │ ├── 2999. Count the Number of Powerful Integers.cpp │ │ ├── 472. Concatenated Words.cpp │ │ ├── 514. Freedom Trail.cpp │ │ ├── 552. Student Attendance Record II.cpp │ │ ├── 629. K Inverse Pairs Array.cpp │ │ └── 834. Sum of Distances in Tree.cpp │ ├── medium leetcode │ │ ├── 1849. Splitting a String Into Descending Consecutive Values.py │ │ ├── 1986. Minimum Number of Work Sessions to Finish the Tasks.cpp │ │ ├── 2708. Maximum Strength of a Group.cpp │ │ ├── 698. Partition to K Equal Sum Subsets.cpp │ │ ├── Longest Ideal Subsequence.cpp │ │ ├── Maximum Number of Operations With the Same Score II.cpp │ │ ├── Number of Sets of K Non-Overlapping Line Segments.cpp │ │ └── largest divisible subset.cpp │ └── on tree │ │ └── g.cpp ├── Fenwik Tree │ ├── 2179 Count Good Triplets in an Array.cpp │ ├── Central Russia Regional Contest, 2022 L towers.cpp │ ├── Codeforces1674F.cpp │ ├── Distribute Elements Into Two Arrays II.cpp │ └── inversion_count_spoj.cpp ├── Graph Theory │ ├── BFS in a maze.cpp │ ├── DFS in a maze.cpp │ ├── Eulerian Path │ │ ├── 2097. Valid Arrangement of Pairs.cpp │ │ └── 332. Reconstruct Itinerary.cpp │ ├── LCA.cpp │ ├── LCA_in_binary_tree.cpp │ ├── a │ ├── centroid.cpp │ ├── codeforces │ │ ├── contest 1 DSU Coaching │ │ │ ├── a.cpp │ │ │ ├── a.txt │ │ │ ├── b.cpp │ │ │ ├── c │ │ │ ├── c.cpp │ │ │ ├── d │ │ │ ├── d.cpp │ │ │ ├── e │ │ │ ├── e.cpp │ │ │ ├── f │ │ │ └── f.cpp │ │ └── contest 1 Graph Coaching │ │ │ ├── a │ │ │ ├── a.cpp │ │ │ └── a.txt │ ├── euler tour │ │ └── 2458. Height of Binary Tree After Subtree Removal Queries.cpp │ ├── france ioi level 4 - Graphes implicites (1) │ │ ├── Arbres malades.cpp │ │ ├── Grille de couleurs.cpp │ │ ├── Stage dans les Alpes.cpp │ │ └── Séquences d'opérations.cpp │ ├── graph.cpp │ ├── inorder │ ├── inorder.cpp │ ├── shortest path │ │ ├── 1368. Minimum Cost to Make at Least One Valid Path in a Grid.cpp │ │ ├── 1937. Maximum Number of Points with Cost.cpp │ │ ├── 2045. Second Minimum Time to Reach Destination.cpp │ │ ├── 3017. Count the Number of Houses at a Certain Distance I.cpp │ │ ├── 743. Network Delay Time.cpp │ │ ├── 931. Minimum Falling Path Sum.cpp │ │ ├── Augmented BFS for shortest path in unweighted Graph from source to all nodes.cpp │ │ ├── Find All People With Secret.cpp │ │ ├── Floyd-Warshall │ │ │ ├── 1334. Find the City With the Smallest Number of Neighbors at a Threshold Distance.cpp │ │ │ └── 2977. Minimum Cost to Convert String II.cpp │ │ ├── Minimum Falling Path Sum II.cpp │ │ ├── Path With Minimum Effort.cpp │ │ ├── dijkistra.cpp │ │ ├── g.cpp │ │ ├── lock.cpp │ │ └── multisource bfs │ │ │ ├── 2812. Find the Safest Path in a Grid.cpp │ │ │ └── 542. 01 Matrix.cpp │ ├── solutions │ │ ├── 115 A.Party.cpp │ │ ├── 277A - Learning Languages.cpp │ │ ├── 377 A.Maze.cpp │ │ ├── 475 B.Strongly Connected City using DFS or BFS in Adjacency List.cpp │ │ ├── 475 B.Strongly Connected City using DFS or BFS in Maze.cpp │ │ ├── 500 B.New Year Permutation.cpp │ │ ├── 510 B.Fox And Dots.cpp │ │ ├── 510 C.Fox And Names.cpp │ │ ├── 520 B. two Buttons.cpp │ │ ├── 522 A.Reposts.cpp │ │ ├── 580 C.Kefa and Park.cpp │ │ └── 687 A.NP hard problem.cpp │ ├── topo sort │ │ ├── 2392. Build a Matrix With Conditions.cpp │ │ ├── 3203. Find Minimum Diameter After Merging Two Trees.cpp │ │ └── TOPOSorting.cpp │ └── union find │ │ ├── 1579. Remove Max Number of Edges to Keep Graph Fully Traversable.cpp │ │ ├── 684. Redundant Connection.cpp │ │ ├── 959. Regions Cut By Slashes.cpp │ │ ├── Greatest Common Divisor Traversal.cpp │ │ ├── Minimum Cost Walk in Weighted Graph.cpp │ │ └── Number of Provinces.cpp ├── Linked list │ ├── Sum Root to Leaf Numbers.cpp │ └── merge 2 linked lists.cpp ├── Pointers │ ├── Count nodes of linked list.cpp │ ├── Delete a Node in Single Linked List.cpp │ ├── Delete a node from BST in C C++.cpp │ ├── Implement Queue using Linked List in C C++.cpp │ ├── Implement Stack using Linked List in C C++.cpp │ ├── Insert a node in a BST in C C++.cpp │ ├── Linked List Insertion.cpp │ └── Print Linked List elements.cpp ├── Segment Tree │ ├── 1335. Minimum Difficulty of a Job Schedule.cpp │ ├── 2818. Apply Operations to Maximize Score.cpp │ ├── 3161. Block Placement Queries.cpp │ ├── 380 C. Sereja and Brackets.cpp │ ├── 862. Shortest Subarray with Sum at Least K.cpp │ ├── 907. Sum of Subarray Minimums.cpp │ ├── ANDROUND - AND Rounds.cpp │ ├── BRCKTS - Brackets SPOJ using segment tree.cpp │ ├── Can you answer these queries I.cpp │ ├── Can you answer these queries III.cpp │ ├── Educational Codeforces Round 132 D.Rorororobot.cpp │ ├── Frequent values SPOJ.cpp │ ├── KGSS - Maximum Sum SPOJ problem.cpp │ ├── KQUERY - K-query.cpp │ ├── Longest Increasing Subsequence - leetcode.cpp │ ├── max.cpp │ └── min max in same segTree.cpp ├── Segment-tree-with-lazyPropagation │ ├── 3244. Shortest Distance After Road Addition Queries II.cpp │ ├── Find the Number of Subarrays Where Boundary Elements Are Maximum.cpp │ ├── Horrible Queries on SPOJ.cpp │ └── main.cpp ├── Sorting │ ├── 2070. Most Beautiful Item for Each Query.cpp │ ├── 2563. Count the Number of Fair Pairs.cpp │ ├── 3016 Minimum Number of Pushes to Type Word II.cpp │ ├── 826. Most Profit Assigning Work.cpp │ ├── Central Russia Regional Contest 2022 E Alley.cpp │ ├── Central Russia Regional Contest, 2022 Golf moon.py │ ├── DP 2328. Number of Increasing Paths in a Grid.cpp │ ├── DP 2713. Maximum Strictly Increasing Cells in a Matrix.cpp │ ├── Find the Number of Ways to Place People II.cpp │ └── leetcode Divide Array Into Arrays With Max Difference.cpp ├── Tree │ ├── 2925. Maximum Score After Applying Operations on a Tree.cpp │ ├── 2973. Find Number of Coins to Place in Tree Nodes.cpp │ ├── 834. Sum of Distances in Tree.cpp │ ├── 968. Binary Tree Cameras.cpp │ ├── 979. Distribute Coins in Binary Tree.cpp │ └── binary lifting │ │ ├── G2 - Passable Paths (hard version) Codeforces.cpp │ │ ├── kth ancestor.cpp │ │ └── lca.cpp ├── binary and matrix exponentation │ └── 3337. Total Characters in String After Transformations II.cpp ├── binary lifting │ ├── Central Russia Regional Contest, 2022 C Fare.cpp │ ├── G2 - Passable Paths (hard version) Codeforces.cpp.cpp │ ├── kth-ancestor-of-a-tree-node leetcode.cpp │ └── spoj lca with queries.cpp ├── bitmask │ ├── 1255. Maximum Score Words Formed by Letters.cpp │ ├── 140. Word Break II.cpp │ ├── 2597. The Number of Beautiful Subsets.cpp │ ├── 3007. Maximum Number That Sum of the Prices Is Less Than or Equal to K.cpp │ ├── Find the Maximum Sum of Node Values.cpp │ ├── Minimum Number of Operations to Make Array XOR Equal to K.cpp │ ├── Number of Wonderful Substrings.cpp │ └── main.cpp ├── deque │ ├── 1579E1 - Permutation Minimization by Deque.cpp │ ├── A. Valeriy and Deque.cpp │ └── a.txt ├── interactive │ ├── Central Russia Regional Contest, 2022 - I Problem on array.cpp │ └── main ├── map │ ├── A. Yet Another Walking Robot.cpp │ ├── a │ └── a.cpp ├── math │ ├── 3307. Find the K-th Character in String Game II.cpp │ ├── Combinatorics │ │ ├── 2999. Count the Number of Powerful Integers.cpp │ │ ├── Stars and bars │ │ │ └── Count Sorted Vowel Strings.cpp │ │ ├── cnk │ │ │ └── Number of Sets of K Non-Overlapping Line Segments.cpp │ │ └── inclusion Exclusion │ │ │ ├── Kth Smallest Amount With Single Denomination Combination │ │ │ └── Kth Smallest Amount With Single Denomination Combination.cpp │ ├── prime factor decomposition │ │ └── Greatest Common Divisor Traversal.cpp │ └── sieve │ │ ├── 2601. Prime Subtraction Operation.cpp │ │ └── Most Frequent Prime.cpp ├── priority queue │ ├── 1439. Find the Kth Smallest Sum of a Matrix With Sorted Rows.cpp │ ├── 1642 Furthest Building You Can Reach.cpp │ ├── 1851. Minimum Interval to Include Each Query.cpp │ ├── 1941 f.cpp │ ├── 1945 g.cpp │ ├── 2102. Sequentially Ordinal Rank Tracker.cpp │ ├── 2503. Maximum Number of Points From Grid Queries | nice problem bfs + min heap + offline queries.cpp │ ├── 2813. Maximum Elegance of a K-Length Subsequence.cpp │ ├── 502. IPO.cpp │ ├── Earliest Second to Mark Indices I.cpp │ ├── Earliest Second to Mark Indices II.cpp │ ├── Minimum Cost to Hire K Workers.cpp │ ├── Minimum Operations to Exceed Threshold Value I.cpp │ ├── Most Frequent IDs - heap.cpp │ ├── a │ ├── a.cpp │ └── d Educational Codeforces Round 165 (Rated for Div. 2).cpp ├── queue │ ├── 1700. Number of Students Unable to Eat Lunch.cpp │ ├── 1823. Find the Winner of the Circular Game.cpp │ ├── 2073. Time Needed to Buy Tickets.cpp │ ├── 341. Flatten Nested List Iterator.cpp │ ├── 649. Dota2 Senate.cpp │ └── 995. Minimum Number of K Consecutive Bit Flips.cpp ├── random │ └── 440. K-th Smallest in Lexicographical Order.cpp ├── set │ ├── 1675. Minimize Deviation in Array │ ├── 1675. Minimize Deviation in Array.cpp │ ├── 2213. Longest Substring of One Repeating Character │ ├── 2213. Longest Substring of One Repeating Character.cpp │ └── Central Russia Regional Contest, 2022 m - choose a name.cpp ├── sliding window │ ├── 1248. Count Number of Nice Subarrays.cpp │ ├── 1438. Longest Continuous Subarray With Absolute Diff Less Than or Equal to Limit | monotonic queue (2 deque).cpp │ ├── 1438. Longest Continuous Subarray With Absolute Diff Less Than or Equal to Limit | muliset.cpp │ ├── 209. Minimum Size Subarray Sum.cpp │ ├── 2563. Count the Number of Fair Pairs.cpp │ ├── 2968. Apply Operations to Maximize Frequency Score.cpp │ ├── 3208. Alternating Groups II.cpp │ ├── 424. Longest Repeating Character Replacement.cpp │ ├── 438. Find All Anagrams in a String.cpp │ ├── 567. Permutation in String.cpp │ ├── Count Alternating Subarrays.cpp │ ├── Count Subarrays With Fixed Bounds.cpp │ ├── Length of Longest Subarray With at Most K Frequency.cpp │ ├── Shortest Subarray With OR at Least K II.cpp │ ├── Subarrays with K Different Integers.cpp │ ├── leetcode Minimum Window Substring.cpp │ └── subarray-product-less-than-k.cpp ├── stack │ ├── 1006.cpp │ ├── 1106. Parsing A Boolean Expression.cpp │ ├── 1190. Reverse Substrings Between Each Pair of Parentheses.cpp │ ├── 1717. Maximum Score From Removing Substrings.cpp │ ├── 223A - Bracket Sequence.cpp │ ├── 2751. Robot Collisions.cpp │ ├── 2866. Beautiful Towers II.cpp │ ├── 388. Longest Absolute File Path.cpp │ ├── 682. Baseball Game.cpp │ ├── 726. Number of Atoms to debug.cpp │ ├── 726. Number of Atoms.cpp │ ├── 739 Daily Temperatures.py │ ├── 797 Minimal string.cpp │ ├── B. Bus of Characters │ ├── B. Bus of Characters.cpp │ ├── B. Catch Overflow!.py │ ├── C. Cd and pwd commands.py │ ├── C. Longest Regular Bracket Sequence.cpp │ ├── Remove K Digits.cpp │ ├── Trapping Rain Water.cpp │ ├── Ultimate Army │ ├── Ultimate Army copy │ ├── Ultimate Army.cpp │ ├── a.cpp │ └── a.txt ├── string │ ├── Trie │ │ ├── 3213. Construct String with Minimum Cost | dp.cpp │ │ ├── 648. Replace Words.cpp │ │ ├── Count Prefix and Suffix Pairs II.cpp │ │ ├── Find the Length of the Longest Common Prefix.cpp │ │ ├── Longest Common Suffix Queries copy.cpp │ │ ├── Longest Common Suffix Queries.cpp │ │ ├── trie_map.cpp │ │ └── trie_vector.cpp │ ├── hashing │ │ ├── Count Prefix and Suffix Pairs I & II.cpp │ │ ├── Minimum Time to Revert Word to Initial State I & II.cpp │ │ ├── leetcode 647 Palindromic Substrings │ │ ├── leetcode 647 Palindromic Substrings.cpp │ │ ├── leetcode Longest Happy Prefix │ │ ├── leetcode Longest Happy Prefix.cpp │ │ └── main │ ├── kmp │ │ ├── 3008. Find Beautiful Indices in the Given Array II copy.cpp │ │ ├── Central Russia Regional Contest, 2022 N First words.cpp │ │ ├── Number of Subarrays That Match a Pattern II.cpp │ │ └── main │ ├── manacher │ │ └── main.cpp │ └── z-array │ │ └── main.cpp └── two-pointers │ ├── 2972. Count the Number of Incremovable Subarrays II | 2 pointers.cpp │ ├── CP Handbook Chapter 8 Amortized analysis │ ├── 2 Pointers │ │ └── Level 1 │ │ │ ├── 1332. Remove Palindromic Subsequences leetcode.cpp │ │ │ ├── 141. Linked List Cycle leetcode.cpp │ │ │ ├── 1768. Merge Strings Alternately leetcode.cpp │ │ │ ├── 2000. Reverse Prefix of Word leetcode.cpp │ │ │ ├── 206. Reverse Linked List.cpp │ │ │ ├── 234. Palindrome Linked List.cpp │ │ │ ├── 344. Reverse String leetcode.cpp │ │ │ ├── 345. Reverse Vowels of a String leetcode.cpp │ │ │ ├── 541. Reverse String II leetcode.cpp │ │ │ ├── 653. Two Sum IV - Input is a BST leetcode.cpp │ │ │ ├── 876. Middle of the Linked List leetcode.cpp │ │ │ └── 917. Reverse Only Letters leetcode.cpp │ ├── 8.2 Nearest smaller element │ │ └── 1475. Final Prices With a Special Discount in a Shop.cpp │ └── 8.3 Sliding Window │ │ ├── 1876. Substrings of Size Three with Distinct Characters.cpp │ │ ├── 2269. Find the K-Beauty of a Number.cpp │ │ ├── 2379. Minimum Recolors to Get K Consecutive Black Blocks.cpp │ │ └── 643. Maximum Average Subarray I.cpp │ ├── a │ └── a.cpp └── main /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day1/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day1/a.txt -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day1/day1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day1/day1 -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day1/day1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day1/day1.cpp -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day10/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day10/a.txt -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day10/day10Part1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day10/day10Part1 -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day10/day10Part1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day10/day10Part1.cpp -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day10/day10Part2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day10/day10Part2 -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day10/day10Part2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day10/day10Part2.cpp -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day11/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day11/a.txt -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day11/part1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day11/part1 -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day11/part1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day11/part1.cpp -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day12/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day12/a.txt -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day12/part1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day12/part1 -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day12/part1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day12/part1.py -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day12/part2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day12/part2 -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day12/part2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day12/part2.cpp -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day13/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day13/a.txt -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day13/part1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day13/part1.py -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day13/part2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day13/part2.py -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day14/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day14/a.txt -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day14/part1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day14/part1.py -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day15/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day15/a.txt -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day15/part1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day15/part1.py -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day16/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day16/a.txt -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day16/part1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day16/part1 -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day16/part1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day16/part1.cpp -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day16/part2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day16/part2 -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day16/part2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day16/part2.cpp -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day17/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day17/a.txt -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day17/part1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day17/part1 -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day17/part1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day17/part1.cpp -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day17/part2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day17/part2 -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day17/part2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day17/part2.cpp -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day18/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day18/a.txt -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day18/part1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day18/part1.py -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day18/part2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day18/part2.py -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day19/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day19/a.txt -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day19/part1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day19/part1.py -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day19/part2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day19/part2.py -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day2/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day2/a.txt -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day2/day2Part1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day2/day2Part1.cpp -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day2/day2Part2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day2/day2Part2 -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day2/day2Part2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day2/day2Part2.cpp -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day20/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day20/a.txt -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day20/part1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day20/part1.py -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day20/part2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day20/part2.py -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day21/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day21/a.txt -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day21/part1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day21/part1 -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day21/part1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day21/part1.cpp -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day21/part2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day21/part2 -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day21/part2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day21/part2.cpp -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day23/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day23/a.txt -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day23/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day23/main.py -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day24/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day24/a.txt -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day24/part1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day24/part1.py -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day25/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day25/a.txt -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day25/part1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day25/part1.py -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day3/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day3/a.txt -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day3/day3Part1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day3/day3Part1 -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day3/day3Part1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day3/day3Part1.cpp -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day3/day3Part2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day3/day3Part2 -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day3/day3Part2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day3/day3Part2.cpp -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day4/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day4/a.txt -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day4/day4Part1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day4/day4Part1 -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day4/day4Part1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day4/day4Part1.cpp -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day4/day4Part2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day4/day4Part2 -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day4/day4Part2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day4/day4Part2.cpp -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day4/day4Part2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day4/day4Part2.py -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day5/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day5/a.txt -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day5/day5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day5/day5.py -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day5/day5Part2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day5/day5Part2.py -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day6/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day6/a.txt -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day6/day6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day6/day6.py -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day7/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day7/a.txt -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day7/day6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day7/day6.py -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day8/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day8/a.txt -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day8/day8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day8/day8.py -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day9/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day9/a.txt -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day9/day9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day9/day9.py -------------------------------------------------------------------------------- /Competitions/Advent Of Code/adventOfCode2023/day9/day9Part2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Advent Of Code/adventOfCode2023/day9/day9Part2.py -------------------------------------------------------------------------------- /Competitions/Atcoder/AtCoder Beginner Contest 368/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Atcoder/AtCoder Beginner Contest 368/a.cpp -------------------------------------------------------------------------------- /Competitions/Atcoder/AtCoder Beginner Contest 368/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Atcoder/AtCoder Beginner Contest 368/a.txt -------------------------------------------------------------------------------- /Competitions/Atcoder/AtCoder Beginner Contest 368/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Atcoder/AtCoder Beginner Contest 368/b.cpp -------------------------------------------------------------------------------- /Competitions/Atcoder/AtCoder Beginner Contest 368/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Atcoder/AtCoder Beginner Contest 368/c.cpp -------------------------------------------------------------------------------- /Competitions/Atcoder/AtCoder Beginner Contest 368/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Atcoder/AtCoder Beginner Contest 368/d.cpp -------------------------------------------------------------------------------- /Competitions/Atcoder/AtCoder Beginner Contest 368/e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Atcoder/AtCoder Beginner Contest 368/e -------------------------------------------------------------------------------- /Competitions/Atcoder/AtCoder Beginner Contest 368/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Atcoder/AtCoder Beginner Contest 368/e.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1011 (Div. 2)/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1011 (Div. 2)/a -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1011 (Div. 2)/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1011 (Div. 2)/a.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1011 (Div. 2)/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1011 (Div. 2)/a.txt -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1011 (Div. 2)/b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1011 (Div. 2)/b -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1011 (Div. 2)/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1011 (Div. 2)/b.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1011 (Div. 2)/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1011 (Div. 2)/c -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1011 (Div. 2)/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1011 (Div. 2)/c.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1011 (Div. 2)/d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1011 (Div. 2)/d -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1011 (Div. 2)/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1011 (Div. 2)/d.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1021 (Div. 2)/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1021 (Div. 2)/a -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1021 (Div. 2)/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1021 (Div. 2)/a.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1021 (Div. 2)/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1021 (Div. 2)/a.txt -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1021 (Div. 2)/b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1021 (Div. 2)/b -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1021 (Div. 2)/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1021 (Div. 2)/b.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1021 (Div. 2)/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1021 (Div. 2)/c -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1021 (Div. 2)/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1021 (Div. 2)/c.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1021 (Div. 2)/d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1021 (Div. 2)/d -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1021 (Div. 2)/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1021 (Div. 2)/d.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1022 (Div. 2)/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1022 (Div. 2)/a -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1022 (Div. 2)/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1022 (Div. 2)/a.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1022 (Div. 2)/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1022 (Div. 2)/a.txt -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1022 (Div. 2)/b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1022 (Div. 2)/b -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1022 (Div. 2)/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1022 (Div. 2)/b.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1022 (Div. 2)/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1022 (Div. 2)/c -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1022 (Div. 2)/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1022 (Div. 2)/c.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1022 (Div. 2)/d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1022 (Div. 2)/d -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1022 (Div. 2)/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1022 (Div. 2)/d.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1023 (Div. 2)/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1023 (Div. 2)/a -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1023 (Div. 2)/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1023 (Div. 2)/a.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1023 (Div. 2)/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1023 (Div. 2)/a.txt -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1023 (Div. 2)/b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1023 (Div. 2)/b -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1023 (Div. 2)/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1023 (Div. 2)/b.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1023 (Div. 2)/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1023 (Div. 2)/c -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1023 (Div. 2)/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1023 (Div. 2)/c.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1023 (Div. 2)/d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1023 (Div. 2)/d -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1023 (Div. 2)/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1023 (Div. 2)/d.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1024 (Div. 2)/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1024 (Div. 2)/a -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1024 (Div. 2)/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1024 (Div. 2)/a.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1024 (Div. 2)/a.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 2 3 | 6 4 | -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1024 (Div. 2)/b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1024 (Div. 2)/b -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1024 (Div. 2)/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1024 (Div. 2)/b.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1024 (Div. 2)/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1024 (Div. 2)/c -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1024 (Div. 2)/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1024 (Div. 2)/c.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1024 (Div. 2)/d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1024 (Div. 2)/d -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1024 (Div. 2)/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1024 (Div. 2)/d.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1025 (Div. 2)/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1025 (Div. 2)/a -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1025 (Div. 2)/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1025 (Div. 2)/a.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1025 (Div. 2)/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1025 (Div. 2)/a.txt -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1025 (Div. 2)/b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1025 (Div. 2)/b -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1025 (Div. 2)/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1025 (Div. 2)/b.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1025 (Div. 2)/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1025 (Div. 2)/c -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1025 (Div. 2)/c1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1025 (Div. 2)/c1.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1025 (Div. 2)/c2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1025 (Div. 2)/c2 -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1025 (Div. 2)/c2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1025 (Div. 2)/c2.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1025 (Div. 2)/d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1025 (Div. 2)/d -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1025 (Div. 2)/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1025 (Div. 2)/d.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1026 (Div. 2)/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1026 (Div. 2)/a -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1026 (Div. 2)/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1026 (Div. 2)/a.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1026 (Div. 2)/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1026 (Div. 2)/a.txt -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1026 (Div. 2)/b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1026 (Div. 2)/b -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1026 (Div. 2)/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1026 (Div. 2)/b.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1026 (Div. 2)/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1026 (Div. 2)/c -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1026 (Div. 2)/c1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1026 (Div. 2)/c1.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1026 (Div. 2)/c2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1026 (Div. 2)/c2 -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1026 (Div. 2)/c2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1026 (Div. 2)/c2.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1026 (Div. 2)/d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1026 (Div. 2)/d -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1026 (Div. 2)/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1026 (Div. 2)/d.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1028 (Div. 2)/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1028 (Div. 2)/a -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1028 (Div. 2)/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1028 (Div. 2)/a.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1028 (Div. 2)/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1028 (Div. 2)/a.txt -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1028 (Div. 2)/b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1028 (Div. 2)/b -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1028 (Div. 2)/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1028 (Div. 2)/b.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1028 (Div. 2)/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1028 (Div. 2)/c -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1028 (Div. 2)/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1028 (Div. 2)/c.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1028 (Div. 2)/c2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1028 (Div. 2)/c2 -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1028 (Div. 2)/d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1028 (Div. 2)/d -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1028 (Div. 2)/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1028 (Div. 2)/d.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1048 (Div. 2)/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1048 (Div. 2)/a -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1048 (Div. 2)/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1048 (Div. 2)/a.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1048 (Div. 2)/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1048 (Div. 2)/a.txt -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1048 (Div. 2)/b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1048 (Div. 2)/b -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1048 (Div. 2)/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1048 (Div. 2)/b.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1048 (Div. 2)/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1048 (Div. 2)/c -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1048 (Div. 2)/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1048 (Div. 2)/c.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1048 (Div. 2)/c2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1048 (Div. 2)/c2 -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1048 (Div. 2)/d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1048 (Div. 2)/d -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1048 (Div. 2)/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1048 (Div. 2)/d.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1053 (Div. 2)/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1053 (Div. 2)/a -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1053 (Div. 2)/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1053 (Div. 2)/a.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1053 (Div. 2)/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1053 (Div. 2)/a.txt -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1053 (Div. 2)/b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1053 (Div. 2)/b -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1053 (Div. 2)/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1053 (Div. 2)/b.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1053 (Div. 2)/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1053 (Div. 2)/c -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1053 (Div. 2)/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1053 (Div. 2)/c.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1053 (Div. 2)/d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1053 (Div. 2)/d -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1053 (Div. 2)/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1053 (Div. 2)/d.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1056 (Div. 2)/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1056 (Div. 2)/a -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1056 (Div. 2)/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1056 (Div. 2)/a.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1056 (Div. 2)/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1056 (Div. 2)/a.txt -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1056 (Div. 2)/b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1056 (Div. 2)/b -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1056 (Div. 2)/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1056 (Div. 2)/b.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1056 (Div. 2)/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1056 (Div. 2)/c -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1056 (Div. 2)/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1056 (Div. 2)/c.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1056 (Div. 2)/d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1056 (Div. 2)/d -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1056 (Div. 2)/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1056 (Div. 2)/d.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1057 (Div. 2)/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1057 (Div. 2)/a -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1057 (Div. 2)/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1057 (Div. 2)/a.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1057 (Div. 2)/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1057 (Div. 2)/a.txt -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1057 (Div. 2)/b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1057 (Div. 2)/b -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1057 (Div. 2)/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1057 (Div. 2)/b.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1057 (Div. 2)/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1057 (Div. 2)/c -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1057 (Div. 2)/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1057 (Div. 2)/c.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1057 (Div. 2)/d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1057 (Div. 2)/d -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1057 (Div. 2)/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1057 (Div. 2)/d.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1058 (Div. 2)/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1058 (Div. 2)/a -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1058 (Div. 2)/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1058 (Div. 2)/a.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1058 (Div. 2)/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1058 (Div. 2)/a.txt -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1058 (Div. 2)/b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1058 (Div. 2)/b -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1058 (Div. 2)/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1058 (Div. 2)/b.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1058 (Div. 2)/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1058 (Div. 2)/c -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1058 (Div. 2)/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1058 (Div. 2)/c.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1058 (Div. 2)/d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1058 (Div. 2)/d -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 1058 (Div. 2)/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 1058 (Div. 2)/d.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 936 (Div. 2)/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 936 (Div. 2)/a.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 936 (Div. 2)/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 936 (Div. 2)/a.txt -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 936 (Div. 2)/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 936 (Div. 2)/b.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 936 (Div. 2)/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 936 (Div. 2)/c.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 936 (Div. 2)/d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 936 (Div. 2)/d.py -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 941 (Div. 2)/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 941 (Div. 2)/a.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 941 (Div. 2)/a.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 01101001 3 | -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 941 (Div. 2)/b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 941 (Div. 2)/b -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 941 (Div. 2)/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 941 (Div. 2)/b.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 941 (Div. 2)/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 941 (Div. 2)/c -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 941 (Div. 2)/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 941 (Div. 2)/c.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 941 (Div. 2)/d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 941 (Div. 2)/d -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 2/Codeforces Round 941 (Div. 2)/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 2/Codeforces Round 941 (Div. 2)/d.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1013 (Div. 3)/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1013 (Div. 3)/a -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1013 (Div. 3)/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1013 (Div. 3)/a.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1013 (Div. 3)/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1013 (Div. 3)/a.txt -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1013 (Div. 3)/b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1013 (Div. 3)/b -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1013 (Div. 3)/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1013 (Div. 3)/b.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1013 (Div. 3)/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1013 (Div. 3)/c -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1013 (Div. 3)/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1013 (Div. 3)/c.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1013 (Div. 3)/d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1013 (Div. 3)/d -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1013 (Div. 3)/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1013 (Div. 3)/d.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1013 (Div. 3)/e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1013 (Div. 3)/e -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1013 (Div. 3)/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1013 (Div. 3)/e.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1013 (Div. 3)/f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1013 (Div. 3)/f -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1013 (Div. 3)/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1013 (Div. 3)/f.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1013 (Div. 3)/f1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1013 (Div. 3)/f1 -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1013 (Div. 3)/f1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1013 (Div. 3)/f1.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1013 (Div. 3)/g1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1013 (Div. 3)/g1.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1020 (Div. 3)/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1020 (Div. 3)/a.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1020 (Div. 3)/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1020 (Div. 3)/a.txt -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1020 (Div. 3)/b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1020 (Div. 3)/b -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1020 (Div. 3)/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1020 (Div. 3)/b.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1020 (Div. 3)/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1020 (Div. 3)/c -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1020 (Div. 3)/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1020 (Div. 3)/c.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1020 (Div. 3)/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1020 (Div. 3)/d.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1020 (Div. 3)/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1020 (Div. 3)/e.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1027 (Div. 3)/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1027 (Div. 3)/a -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1027 (Div. 3)/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1027 (Div. 3)/a.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1027 (Div. 3)/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1027 (Div. 3)/a.txt -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1027 (Div. 3)/b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1027 (Div. 3)/b -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1027 (Div. 3)/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1027 (Div. 3)/b.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1027 (Div. 3)/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1027 (Div. 3)/c -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1027 (Div. 3)/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1027 (Div. 3)/c.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1027 (Div. 3)/d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1027 (Div. 3)/d -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1027 (Div. 3)/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1027 (Div. 3)/d.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1027 (Div. 3)/e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1027 (Div. 3)/e -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1027 (Div. 3)/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1027 (Div. 3)/e.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1027 (Div. 3)/f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1027 (Div. 3)/f -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1027 (Div. 3)/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1027 (Div. 3)/f.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1042 (Div. 3)/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1042 (Div. 3)/a -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1042 (Div. 3)/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1042 (Div. 3)/a.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1042 (Div. 3)/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1042 (Div. 3)/a.txt -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1042 (Div. 3)/b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1042 (Div. 3)/b -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1042 (Div. 3)/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1042 (Div. 3)/b.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1042 (Div. 3)/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1042 (Div. 3)/c -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1042 (Div. 3)/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1042 (Div. 3)/c.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1042 (Div. 3)/d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1042 (Div. 3)/d -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1042 (Div. 3)/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1042 (Div. 3)/d.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1042 (Div. 3)/e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1042 (Div. 3)/e -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1042 (Div. 3)/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1042 (Div. 3)/e.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1042 (Div. 3)/f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1042 (Div. 3)/f -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1042 (Div. 3)/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1042 (Div. 3)/f.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1042 (Div. 3)/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1042 (Div. 3)/g -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1042 (Div. 3)/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1042 (Div. 3)/g.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1043 (Div. 3)/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1043 (Div. 3)/a -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1043 (Div. 3)/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1043 (Div. 3)/a.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1043 (Div. 3)/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1043 (Div. 3)/a.txt -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1043 (Div. 3)/b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1043 (Div. 3)/b -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1043 (Div. 3)/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1043 (Div. 3)/b.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1043 (Div. 3)/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1043 (Div. 3)/c -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1043 (Div. 3)/c1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1043 (Div. 3)/c1.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1043 (Div. 3)/c2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1043 (Div. 3)/c2 -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1043 (Div. 3)/c2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1043 (Div. 3)/c2.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1043 (Div. 3)/d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1043 (Div. 3)/d -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1043 (Div. 3)/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1043 (Div. 3)/d.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1043 (Div. 3)/e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1043 (Div. 3)/e -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1043 (Div. 3)/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1043 (Div. 3)/e.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1047 (Div. 3)/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1047 (Div. 3)/a -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1047 (Div. 3)/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1047 (Div. 3)/a.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1047 (Div. 3)/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1047 (Div. 3)/a.txt -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1047 (Div. 3)/b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1047 (Div. 3)/b -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1047 (Div. 3)/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1047 (Div. 3)/b.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1047 (Div. 3)/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1047 (Div. 3)/c -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1047 (Div. 3)/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1047 (Div. 3)/c.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1047 (Div. 3)/d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1047 (Div. 3)/d -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1047 (Div. 3)/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1047 (Div. 3)/d.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1047 (Div. 3)/e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1047 (Div. 3)/e -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1047 (Div. 3)/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1047 (Div. 3)/e.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1047 (Div. 3)/f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1047 (Div. 3)/f -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1047 (Div. 3)/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1047 (Div. 3)/f.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1047 (Div. 3)/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1047 (Div. 3)/g -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1047 (Div. 3)/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1047 (Div. 3)/g.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1054 (Div. 3)/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1054 (Div. 3)/a -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1054 (Div. 3)/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1054 (Div. 3)/a.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1054 (Div. 3)/a.txt: -------------------------------------------------------------------------------- 1 | 5 2 | 3 2 3 | 1 1 4 | 5 3 5 | 2 4 6 | 10 7 7 | -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1054 (Div. 3)/b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1054 (Div. 3)/b -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1054 (Div. 3)/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1054 (Div. 3)/b.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1054 (Div. 3)/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1054 (Div. 3)/c -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1054 (Div. 3)/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1054 (Div. 3)/c.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1054 (Div. 3)/d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1054 (Div. 3)/d -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1054 (Div. 3)/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1054 (Div. 3)/d.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1054 (Div. 3)/e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1054 (Div. 3)/e -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1054 (Div. 3)/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1054 (Div. 3)/e.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1054 (Div. 3)/f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1054 (Div. 3)/f -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1054 (Div. 3)/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1054 (Div. 3)/f.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1054 (Div. 3)/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 1054 (Div. 3)/g -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 1054 (Div. 3)/g.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 797 (Div. 3)/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 797 (Div. 3)/a.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 797 (Div. 3)/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 797 (Div. 3)/a.txt -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 797 (Div. 3)/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 797 (Div. 3)/b.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 797 (Div. 3)/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 797 (Div. 3)/c.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 797 (Div. 3)/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 797 (Div. 3)/d.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 797 (Div. 3)/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 797 (Div. 3)/e.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 797 (Div. 3)/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 797 (Div. 3)/f.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 797 (Div. 3)/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 797 (Div. 3)/g.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 925 (Div. 3)/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 925 (Div. 3)/a.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 925 (Div. 3)/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 925 (Div. 3)/a.txt -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 925 (Div. 3)/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 925 (Div. 3)/b.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 925 (Div. 3)/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 925 (Div. 3)/c.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 925 (Div. 3)/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 925 (Div. 3)/d.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 925 (Div. 3)/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 925 (Div. 3)/e.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 925 (Div. 3)/f.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 925 (Div. 3)/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 925 (Div. 3)/g.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 933 (Div. 3)/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 933 (Div. 3)/a.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 933 (Div. 3)/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 933 (Div. 3)/a.txt -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 933 (Div. 3)/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 933 (Div. 3)/b.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 933 (Div. 3)/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 933 (Div. 3)/c.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 933 (Div. 3)/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 933 (Div. 3)/d.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 933 (Div. 3)/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 933 (Div. 3)/e.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 933 (Div. 3)/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 933 (Div. 3)/f.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 933 (Div. 3)/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 933 (Div. 3)/g.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 935 (Div. 3)/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 935 (Div. 3)/a -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 935 (Div. 3)/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 935 (Div. 3)/a.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 935 (Div. 3)/a.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 3 3 | 000 -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 935 (Div. 3)/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 935 (Div. 3)/d.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 935 (Div. 3)/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 935 (Div. 3)/e.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 935 (Div. 3)/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 935 (Div. 3)/f.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 935 (Div. 3)/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 935 (Div. 3)/g.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 938 (Div. 3)/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 938 (Div. 3)/a.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 938 (Div. 3)/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 938 (Div. 3)/a.txt -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 938 (Div. 3)/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 938 (Div. 3)/b.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 938 (Div. 3)/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 938 (Div. 3)/c.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 938 (Div. 3)/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 938 (Div. 3)/d.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 938 (Div. 3)/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 938 (Div. 3)/e.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 938 (Div. 3)/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 938 (Div. 3)/g -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 938 (Div. 3)/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 938 (Div. 3)/g.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 943 (Div. 3)/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 943 (Div. 3)/a.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 943 (Div. 3)/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 943 (Div. 3)/a.txt -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 943 (Div. 3)/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 943 (Div. 3)/b.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 943 (Div. 3)/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 943 (Div. 3)/c.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 943 (Div. 3)/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 943 (Div. 3)/d.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 943 (Div. 3)/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 943 (Div. 3)/e.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 943 (Div. 3)/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 943 (Div. 3)/f.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 943 (Div. 3)/g1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 943 (Div. 3)/g1.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 950 (Div. 3)/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 950 (Div. 3)/a.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 950 (Div. 3)/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 950 (Div. 3)/a.txt -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 950 (Div. 3)/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 950 (Div. 3)/b.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 950 (Div. 3)/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 950 (Div. 3)/c.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 950 (Div. 3)/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 950 (Div. 3)/d.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 950 (Div. 3)/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 950 (Div. 3)/e.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 950 (Div. 3)/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 950 (Div. 3)/f.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 950 (Div. 3)/h1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 950 (Div. 3)/h1.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 962 (Div. 3)/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 962 (Div. 3)/a -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 962 (Div. 3)/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 962 (Div. 3)/a.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 962 (Div. 3)/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 962 (Div. 3)/a.txt -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 962 (Div. 3)/b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 962 (Div. 3)/b -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 962 (Div. 3)/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 962 (Div. 3)/b.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 962 (Div. 3)/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 962 (Div. 3)/c -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 962 (Div. 3)/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 962 (Div. 3)/c.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 962 (Div. 3)/d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 962 (Div. 3)/d -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 962 (Div. 3)/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 962 (Div. 3)/d.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 962 (Div. 3)/e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 962 (Div. 3)/e -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 962 (Div. 3)/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 962 (Div. 3)/e.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 962 (Div. 3)/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 962 (Div. 3)/f.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 3/Codeforces Round 962 (Div. 3)/h1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 3/Codeforces Round 962 (Div. 3)/h1.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 4/Codeforces Round #790/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 4/Codeforces Round #790/a.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 4/Codeforces Round #790/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 4/Codeforces Round #790/b.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 4/Codeforces Round #790/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 4/Codeforces Round #790/c.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 4/Codeforces Round #790/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 4/Codeforces Round #790/d.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 4/Codeforces Round #790/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 4/Codeforces Round #790/e.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 4/Codeforces Round #790/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 4/Codeforces Round #790/f.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 4/Codeforces Round #790/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 4/Codeforces Round #790/g.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 4/Codeforces Round #790/h.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 4/Codeforces Round #790/h.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 4/Codeforces Round #806/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 4/Codeforces Round #806/a.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 4/Codeforces Round #806/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 4/Codeforces Round #806/b.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 4/Codeforces Round #806/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 4/Codeforces Round #806/c.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 4/Codeforces Round #806/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 4/Codeforces Round #806/d.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 4/Codeforces Round #806/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 4/Codeforces Round #806/e.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 4/Codeforces Round #806/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 4/Codeforces Round #806/f.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 4/Codeforces Round #806/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 4/Codeforces Round #806/g.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 4/Codeforces Round #928/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 4/Codeforces Round #928/a.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 4/Codeforces Round #928/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 4/Codeforces Round #928/a.txt -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 4/Codeforces Round #928/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 4/Codeforces Round #928/b.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 4/Codeforces Round #928/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 4/Codeforces Round #928/c.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 4/Codeforces Round #928/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 4/Codeforces Round #928/d.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 4/Codeforces Round #928/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 4/Codeforces Round #928/e.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 4/Codeforces Round #928/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 4/Codeforces Round #928/f.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 4/Codeforces Round #928/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 4/Codeforces Round #928/g.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 4/Codeforces Round #944/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 4/Codeforces Round #944/a.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 4/Codeforces Round #944/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 4/Codeforces Round #944/a.txt -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 4/Codeforces Round #944/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 4/Codeforces Round #944/b.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 4/Codeforces Round #944/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 4/Codeforces Round #944/c.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 4/Codeforces Round #944/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 4/Codeforces Round #944/d.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 4/Codeforces Round #944/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 4/Codeforces Round #944/e.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 4/Codeforces Round #944/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 4/Codeforces Round #944/f.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 4/Codeforces Round #944/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 4/Codeforces Round #944/g -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 4/Codeforces Round #944/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 4/Codeforces Round #944/g.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 4/Codeforces Round 1017 (Div. 4)/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 4/Codeforces Round 1017 (Div. 4)/a.cpp -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 4/Codeforces Round 1017 (Div. 4)/f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 4/Codeforces Round 1017 (Div. 4)/f -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 4/Codeforces Round 1017 (Div. 4)/h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 4/Codeforces Round 1017 (Div. 4)/h -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 4/Codeforces Round 1050 (Div. 4)/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 4/Codeforces Round 1050 (Div. 4)/a -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 4/Codeforces Round 1050 (Div. 4)/b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 4/Codeforces Round 1050 (Div. 4)/b -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 4/Codeforces Round 1050 (Div. 4)/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 4/Codeforces Round 1050 (Div. 4)/c -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 4/Codeforces Round 1050 (Div. 4)/d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 4/Codeforces Round 1050 (Div. 4)/d -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 4/Codeforces Round 1050 (Div. 4)/e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 4/Codeforces Round 1050 (Div. 4)/e -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 4/Codeforces Round 1050 (Div. 4)/f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 4/Codeforces Round 1050 (Div. 4)/f -------------------------------------------------------------------------------- /Competitions/Codeforces/Div 4/Codeforces Round 1050 (Div. 4)/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/Codeforces/Div 4/Codeforces Round 1050 (Div. 4)/g -------------------------------------------------------------------------------- /Competitions/HackerCup2021/A1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/HackerCup2021/A1.cpp -------------------------------------------------------------------------------- /Competitions/HackerCup2021/A2-Augmented_BFS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/HackerCup2021/A2-Augmented_BFS.cpp -------------------------------------------------------------------------------- /Competitions/HackerCup2021/A2-floydWarshall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/HackerCup2021/A2-floydWarshall.cpp -------------------------------------------------------------------------------- /Competitions/HackerCup2021/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/HackerCup2021/B.cpp -------------------------------------------------------------------------------- /Competitions/HackerCup2021/c1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/HackerCup2021/c1.cpp -------------------------------------------------------------------------------- /Competitions/IOPC 2/D. Radio sets/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/IOPC 2/D. Radio sets/a.txt -------------------------------------------------------------------------------- /Competitions/IOPC 2/D. Radio sets/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/IOPC 2/D. Radio sets/main -------------------------------------------------------------------------------- /Competitions/IOPC 2/D. Radio sets/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/IOPC 2/D. Radio sets/main.cpp -------------------------------------------------------------------------------- /Competitions/IOPC 2/computed fields/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/IOPC 2/computed fields/a.txt -------------------------------------------------------------------------------- /Competitions/IOPC 2/computed fields/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/IOPC 2/computed fields/main -------------------------------------------------------------------------------- /Competitions/IOPC 2/computed fields/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/IOPC 2/computed fields/main.cpp -------------------------------------------------------------------------------- /Competitions/IOPC 2/crazy pricing/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/IOPC 2/crazy pricing/a.txt -------------------------------------------------------------------------------- /Competitions/IOPC 2/crazy pricing/crazy_pricing_MLE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/IOPC 2/crazy pricing/crazy_pricing_MLE.cpp -------------------------------------------------------------------------------- /Competitions/IOPC 2/crazy pricing/crazy_pricing_TLE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/IOPC 2/crazy pricing/crazy_pricing_TLE.cpp -------------------------------------------------------------------------------- /Competitions/IOPC 2/crazy pricing/crazy_pricing_WA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/IOPC 2/crazy pricing/crazy_pricing_WA.cpp -------------------------------------------------------------------------------- /Competitions/IOPC 2/crazy pricing/crazy_pricing_bitmask_YES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/IOPC 2/crazy pricing/crazy_pricing_bitmask_YES -------------------------------------------------------------------------------- /Competitions/IOPC 2/crazy pricing/crazy_pricing_bitmask_YES.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/IOPC 2/crazy pricing/crazy_pricing_bitmask_YES.cpp -------------------------------------------------------------------------------- /Competitions/IOPC 2/helpdesk/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/IOPC 2/helpdesk/a.txt -------------------------------------------------------------------------------- /Competitions/IOPC 2/helpdesk/helpdesk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/IOPC 2/helpdesk/helpdesk.cpp -------------------------------------------------------------------------------- /Competitions/IOPC 2/task scheduling/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/IOPC 2/task scheduling/a.txt -------------------------------------------------------------------------------- /Competitions/IOPC 2/task scheduling/tasks_scheduling_BIT_YES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/IOPC 2/task scheduling/tasks_scheduling_BIT_YES -------------------------------------------------------------------------------- /Competitions/IOPC 2/task scheduling/tasks_scheduling_BIT_YES.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/IOPC 2/task scheduling/tasks_scheduling_BIT_YES.cpp -------------------------------------------------------------------------------- /Competitions/IOPC 2/task scheduling/tasks_scheduling_TLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/IOPC 2/task scheduling/tasks_scheduling_TLE -------------------------------------------------------------------------------- /Competitions/IOPC 2/task scheduling/tasks_scheduling_TLE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/IOPC 2/task scheduling/tasks_scheduling_TLE.cpp -------------------------------------------------------------------------------- /Competitions/IOPC 2/task scheduling/yes_cs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/IOPC 2/task scheduling/yes_cs.cs -------------------------------------------------------------------------------- /Competitions/IOPC 2/task scheduling/yes_java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/IOPC 2/task scheduling/yes_java.java -------------------------------------------------------------------------------- /Competitions/leetcode/Biweekly/Biweekly Contest 128/Score of a String.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Competitions/leetcode/Biweekly/Biweekly contest 126/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/leetcode/Biweekly/Biweekly contest 126/c -------------------------------------------------------------------------------- /Competitions/leetcode/Biweekly/Biweekly contest 126/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/leetcode/Biweekly/Biweekly contest 126/c.cpp -------------------------------------------------------------------------------- /Competitions/leetcode/Biweekly/Biweekly contest 126/d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/leetcode/Biweekly/Biweekly contest 126/d -------------------------------------------------------------------------------- /Competitions/leetcode/Biweekly/Biweekly contest 126/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/leetcode/Biweekly/Biweekly contest 126/d.cpp -------------------------------------------------------------------------------- /Competitions/leetcode/Weekly/Weekly Contest 414/d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/leetcode/Weekly/Weekly Contest 414/d -------------------------------------------------------------------------------- /Competitions/leetcode/Weekly/Weekly Contest 414/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/leetcode/Weekly/Weekly Contest 414/d.cpp -------------------------------------------------------------------------------- /Competitions/leetcode/Weekly/Weekly Contest 424/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/leetcode/Weekly/Weekly Contest 424/a.cpp -------------------------------------------------------------------------------- /Competitions/leetcode/Weekly/Weekly Contest 428/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/leetcode/Weekly/Weekly Contest 428/d.cpp -------------------------------------------------------------------------------- /Competitions/tcpc2022/README.md: -------------------------------------------------------------------------------- 1 | # TCPC-2022 2 | -------------------------------------------------------------------------------- /Competitions/tcpc2022/TCPC 2022-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/tcpc2022/TCPC 2022-01.jpg -------------------------------------------------------------------------------- /Competitions/tcpc2022/TCPC 2022-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/tcpc2022/TCPC 2022-02.jpg -------------------------------------------------------------------------------- /Competitions/tcpc2022/TCPC 2022-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/tcpc2022/TCPC 2022-03.jpg -------------------------------------------------------------------------------- /Competitions/tcpc2022/TCPC 2022-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/tcpc2022/TCPC 2022-04.jpg -------------------------------------------------------------------------------- /Competitions/tcpc2022/TCPC 2022-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/tcpc2022/TCPC 2022-05.jpg -------------------------------------------------------------------------------- /Competitions/tcpc2022/TCPC 2022-06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/tcpc2022/TCPC 2022-06.jpg -------------------------------------------------------------------------------- /Competitions/tcpc2022/TCPC 2022-07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/tcpc2022/TCPC 2022-07.jpg -------------------------------------------------------------------------------- /Competitions/tcpc2022/TCPC 2022-08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/tcpc2022/TCPC 2022-08.jpg -------------------------------------------------------------------------------- /Competitions/tcpc2022/TCPC 2022-09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/tcpc2022/TCPC 2022-09.jpg -------------------------------------------------------------------------------- /Competitions/tcpc2022/TCPC 2022-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/tcpc2022/TCPC 2022-10.jpg -------------------------------------------------------------------------------- /Competitions/tcpc2022/TCPC 2022-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/tcpc2022/TCPC 2022-11.jpg -------------------------------------------------------------------------------- /Competitions/tcpc2022/TCPC 2022-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/tcpc2022/TCPC 2022-12.jpg -------------------------------------------------------------------------------- /Competitions/tcpc2022/TCPC 2022-13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/tcpc2022/TCPC 2022-13.jpg -------------------------------------------------------------------------------- /Competitions/tcpc2022/TCPC 2022-14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/tcpc2022/TCPC 2022-14.jpg -------------------------------------------------------------------------------- /Competitions/tcpc2022/TCPC 2022-15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/tcpc2022/TCPC 2022-15.jpg -------------------------------------------------------------------------------- /Competitions/tcpc2022/TCPC 2022-16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/tcpc2022/TCPC 2022-16.jpg -------------------------------------------------------------------------------- /Competitions/tcpc2022/TCPC 2022-17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/tcpc2022/TCPC 2022-17.jpg -------------------------------------------------------------------------------- /Competitions/tcpc2022/TCPC 2022-18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Competitions/tcpc2022/TCPC 2022-18.jpg -------------------------------------------------------------------------------- /Templates/binary-lifting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Templates/binary-lifting.cpp -------------------------------------------------------------------------------- /Templates/bit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Templates/bit.cpp -------------------------------------------------------------------------------- /Templates/compressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Templates/compressor.cpp -------------------------------------------------------------------------------- /Templates/graphMaze.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Templates/graphMaze.cpp -------------------------------------------------------------------------------- /Templates/kmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Templates/kmp.cpp -------------------------------------------------------------------------------- /Templates/segmentTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Templates/segmentTree.cpp -------------------------------------------------------------------------------- /Topics/BST/Convert Sorted Array to Binary Search Tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/BST/Convert Sorted Array to Binary Search Tree.cpp -------------------------------------------------------------------------------- /Topics/BST/Increasing Order Search Tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/BST/Increasing Order Search Tree.cpp -------------------------------------------------------------------------------- /Topics/BST/Range Sum of BST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/BST/Range Sum of BST.cpp -------------------------------------------------------------------------------- /Topics/BST/Search in a Binary Search Tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/BST/Search in a Binary Search Tree.cpp -------------------------------------------------------------------------------- /Topics/Backtracking/2597. The Number of Beautiful Subsets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Backtracking/2597. The Number of Beautiful Subsets -------------------------------------------------------------------------------- /Topics/Backtracking/2597. The Number of Beautiful Subsets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Backtracking/2597. The Number of Beautiful Subsets.cpp -------------------------------------------------------------------------------- /Topics/Backtracking/306. Additive Number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Backtracking/306. Additive Number.py -------------------------------------------------------------------------------- /Topics/Backtracking/Remove Invalid Parentheses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Backtracking/Remove Invalid Parentheses.cpp -------------------------------------------------------------------------------- /Topics/Backtracking/Word Search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Backtracking/Word Search.cpp -------------------------------------------------------------------------------- /Topics/Backtracking/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Backtracking/a.cpp -------------------------------------------------------------------------------- /Topics/Backtracking/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Backtracking/debug.cpp -------------------------------------------------------------------------------- /Topics/Backtracking/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Backtracking/f.cpp -------------------------------------------------------------------------------- /Topics/Backtracking/hanoi tower.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Backtracking/hanoi tower.cpp -------------------------------------------------------------------------------- /Topics/Backtracking/n queens.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Backtracking/n queens.cpp -------------------------------------------------------------------------------- /Topics/Backtracking/permutaions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Backtracking/permutaions.cpp -------------------------------------------------------------------------------- /Topics/Binary Search/1508. Range Sum of Sorted Subarray Sums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Binary Search/1508. Range Sum of Sorted Subarray Sums.cpp -------------------------------------------------------------------------------- /Topics/Binary Search/1552. Magnetic Force Between Two Balls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Binary Search/1552. Magnetic Force Between Two Balls.cpp -------------------------------------------------------------------------------- /Topics/Binary Search/1859. Sorting the Sentence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Binary Search/1859. Sorting the Sentence.py -------------------------------------------------------------------------------- /Topics/Binary Search/2594. Minimum Time to Repair Cars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Binary Search/2594. Minimum Time to Repair Cars.cpp -------------------------------------------------------------------------------- /Topics/Binary Search/268. Missing Number leetcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Binary Search/268. Missing Number leetcode.py -------------------------------------------------------------------------------- /Topics/Binary Search/278. First Bad Version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Binary Search/278. First Bad Version.py -------------------------------------------------------------------------------- /Topics/Binary Search/367. Valid Perfect Square.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Binary Search/367. Valid Perfect Square.py -------------------------------------------------------------------------------- /Topics/Binary Search/441. Arranging Coins leetcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Binary Search/441. Arranging Coins leetcode.py -------------------------------------------------------------------------------- /Topics/Binary Search/69. Sqrt(x).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Binary Search/69. Sqrt(x).py -------------------------------------------------------------------------------- /Topics/Binary Search/704. Binary Search leetcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Binary Search/704. Binary Search leetcode.py -------------------------------------------------------------------------------- /Topics/Binary Search/719. Find K-th Smallest Pair Distance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Binary Search/719. Find K-th Smallest Pair Distance.cpp -------------------------------------------------------------------------------- /Topics/Binary Search/875. Koko Eating Bananas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Binary Search/875. Koko Eating Bananas.cpp -------------------------------------------------------------------------------- /Topics/Binary Search/Fixed Point Guessing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Binary Search/Fixed Point Guessing.cpp -------------------------------------------------------------------------------- /Topics/Binary Search/Guessing the Greatest (easy version).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Binary Search/Guessing the Greatest (easy version).cpp -------------------------------------------------------------------------------- /Topics/Binary Search/Guessing the Greatest (hard version).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Binary Search/Guessing the Greatest (hard version).cpp -------------------------------------------------------------------------------- /Topics/Binary Search/Robot on the Board 1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Binary Search/Robot on the Board 1.cpp -------------------------------------------------------------------------------- /Topics/Binary Search/Salary Changing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Binary Search/Salary Changing.cpp -------------------------------------------------------------------------------- /Topics/Binary Search/binary_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Binary Search/binary_search.py -------------------------------------------------------------------------------- /Topics/Binary Search/rotate circle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Binary Search/rotate circle.cpp -------------------------------------------------------------------------------- /Topics/Cumulative sum/1052. Grumpy Bookstore Owner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Cumulative sum/1052. Grumpy Bookstore Owner.cpp -------------------------------------------------------------------------------- /Topics/Cumulative sum/Maximal Rectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Cumulative sum/Maximal Rectangle.cpp -------------------------------------------------------------------------------- /Topics/Cumulative sum/Maximum Good Subarray Sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Cumulative sum/Maximum Good Subarray Sum.cpp -------------------------------------------------------------------------------- /Topics/Dynamic Programming/0 - 1 Knapsack Problem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Dynamic Programming/0 - 1 Knapsack Problem.cpp -------------------------------------------------------------------------------- /Topics/Dynamic Programming/Coin change.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Dynamic Programming/Coin change.cpp -------------------------------------------------------------------------------- /Topics/Dynamic Programming/Distinct occurrences for LeetCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Dynamic Programming/Distinct occurrences for LeetCode.cpp -------------------------------------------------------------------------------- /Topics/Dynamic Programming/Edit Distance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Dynamic Programming/Edit Distance.cpp -------------------------------------------------------------------------------- /Topics/Dynamic Programming/Longest Common Subsequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Dynamic Programming/Longest Common Subsequence.cpp -------------------------------------------------------------------------------- /Topics/Dynamic Programming/Longest Increasing Subsequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Dynamic Programming/Longest Increasing Subsequence.cpp -------------------------------------------------------------------------------- /Topics/Dynamic Programming/Maximum path sum in matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Dynamic Programming/Maximum path sum in matrix.cpp -------------------------------------------------------------------------------- /Topics/Dynamic Programming/Minimum sum partition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Dynamic Programming/Minimum sum partition.cpp -------------------------------------------------------------------------------- /Topics/Dynamic Programming/Nth Fibonacci Number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Dynamic Programming/Nth Fibonacci Number.cpp -------------------------------------------------------------------------------- /Topics/Dynamic Programming/Nth catalan number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Dynamic Programming/Nth catalan number.cpp -------------------------------------------------------------------------------- /Topics/Dynamic Programming/Optimal Strategy For A Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Dynamic Programming/Optimal Strategy For A Game.cpp -------------------------------------------------------------------------------- /Topics/Dynamic Programming/Partition Equal Subset Sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Dynamic Programming/Partition Equal Subset Sum.cpp -------------------------------------------------------------------------------- /Topics/Dynamic Programming/Rod Cutting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Dynamic Programming/Rod Cutting.cpp -------------------------------------------------------------------------------- /Topics/Dynamic Programming/Shortest Common Supersequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Dynamic Programming/Shortest Common Supersequence.cpp -------------------------------------------------------------------------------- /Topics/Dynamic Programming/Word break.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Dynamic Programming/Word break.cpp -------------------------------------------------------------------------------- /Topics/Dynamic Programming/a.txt: -------------------------------------------------------------------------------- 1 | 4 10 2 | 4 8 6 1 -------------------------------------------------------------------------------- /Topics/Dynamic Programming/elevator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Dynamic Programming/elevator -------------------------------------------------------------------------------- /Topics/Dynamic Programming/elevator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Dynamic Programming/elevator.cpp -------------------------------------------------------------------------------- /Topics/Dynamic Programming/hard leetcode/514. Freedom Trail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Dynamic Programming/hard leetcode/514. Freedom Trail.cpp -------------------------------------------------------------------------------- /Topics/Dynamic Programming/on tree/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Dynamic Programming/on tree/g.cpp -------------------------------------------------------------------------------- /Topics/Fenwik Tree/2179 Count Good Triplets in an Array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Fenwik Tree/2179 Count Good Triplets in an Array.cpp -------------------------------------------------------------------------------- /Topics/Fenwik Tree/Codeforces1674F.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Fenwik Tree/Codeforces1674F.cpp -------------------------------------------------------------------------------- /Topics/Fenwik Tree/Distribute Elements Into Two Arrays II.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Fenwik Tree/Distribute Elements Into Two Arrays II.cpp -------------------------------------------------------------------------------- /Topics/Fenwik Tree/inversion_count_spoj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Fenwik Tree/inversion_count_spoj.cpp -------------------------------------------------------------------------------- /Topics/Graph Theory/BFS in a maze.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Graph Theory/BFS in a maze.cpp -------------------------------------------------------------------------------- /Topics/Graph Theory/DFS in a maze.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Graph Theory/DFS in a maze.cpp -------------------------------------------------------------------------------- /Topics/Graph Theory/Eulerian Path/332. Reconstruct Itinerary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Graph Theory/Eulerian Path/332. Reconstruct Itinerary.cpp -------------------------------------------------------------------------------- /Topics/Graph Theory/LCA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Graph Theory/LCA.cpp -------------------------------------------------------------------------------- /Topics/Graph Theory/LCA_in_binary_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Graph Theory/LCA_in_binary_tree.cpp -------------------------------------------------------------------------------- /Topics/Graph Theory/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Graph Theory/a -------------------------------------------------------------------------------- /Topics/Graph Theory/centroid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Graph Theory/centroid.cpp -------------------------------------------------------------------------------- /Topics/Graph Theory/codeforces/contest 1 DSU Coaching/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Graph Theory/codeforces/contest 1 DSU Coaching/a.cpp -------------------------------------------------------------------------------- /Topics/Graph Theory/codeforces/contest 1 DSU Coaching/a.txt: -------------------------------------------------------------------------------- 1 | 8 1 2 2 | 1 7 3 | 2 6 4 | 1 5 5 | -------------------------------------------------------------------------------- /Topics/Graph Theory/codeforces/contest 1 DSU Coaching/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Graph Theory/codeforces/contest 1 DSU Coaching/b.cpp -------------------------------------------------------------------------------- /Topics/Graph Theory/codeforces/contest 1 DSU Coaching/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Graph Theory/codeforces/contest 1 DSU Coaching/c -------------------------------------------------------------------------------- /Topics/Graph Theory/codeforces/contest 1 DSU Coaching/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Graph Theory/codeforces/contest 1 DSU Coaching/c.cpp -------------------------------------------------------------------------------- /Topics/Graph Theory/codeforces/contest 1 DSU Coaching/d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Graph Theory/codeforces/contest 1 DSU Coaching/d -------------------------------------------------------------------------------- /Topics/Graph Theory/codeforces/contest 1 DSU Coaching/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Graph Theory/codeforces/contest 1 DSU Coaching/d.cpp -------------------------------------------------------------------------------- /Topics/Graph Theory/codeforces/contest 1 DSU Coaching/e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Graph Theory/codeforces/contest 1 DSU Coaching/e -------------------------------------------------------------------------------- /Topics/Graph Theory/codeforces/contest 1 DSU Coaching/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Graph Theory/codeforces/contest 1 DSU Coaching/e.cpp -------------------------------------------------------------------------------- /Topics/Graph Theory/codeforces/contest 1 DSU Coaching/f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Graph Theory/codeforces/contest 1 DSU Coaching/f -------------------------------------------------------------------------------- /Topics/Graph Theory/codeforces/contest 1 DSU Coaching/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Graph Theory/codeforces/contest 1 DSU Coaching/f.cpp -------------------------------------------------------------------------------- /Topics/Graph Theory/codeforces/contest 1 Graph Coaching/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Graph Theory/codeforces/contest 1 Graph Coaching/a -------------------------------------------------------------------------------- /Topics/Graph Theory/codeforces/contest 1 Graph Coaching/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Graph Theory/codeforces/contest 1 Graph Coaching/a.cpp -------------------------------------------------------------------------------- /Topics/Graph Theory/codeforces/contest 1 Graph Coaching/a.txt: -------------------------------------------------------------------------------- 1 | 8 1 2 2 | 1 7 3 | 2 6 4 | 1 5 5 | -------------------------------------------------------------------------------- /Topics/Graph Theory/graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Graph Theory/graph.cpp -------------------------------------------------------------------------------- /Topics/Graph Theory/inorder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Graph Theory/inorder -------------------------------------------------------------------------------- /Topics/Graph Theory/inorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Graph Theory/inorder.cpp -------------------------------------------------------------------------------- /Topics/Graph Theory/shortest path/743. Network Delay Time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Graph Theory/shortest path/743. Network Delay Time.cpp -------------------------------------------------------------------------------- /Topics/Graph Theory/shortest path/Path With Minimum Effort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Graph Theory/shortest path/Path With Minimum Effort.cpp -------------------------------------------------------------------------------- /Topics/Graph Theory/shortest path/dijkistra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Graph Theory/shortest path/dijkistra.cpp -------------------------------------------------------------------------------- /Topics/Graph Theory/shortest path/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Graph Theory/shortest path/g.cpp -------------------------------------------------------------------------------- /Topics/Graph Theory/shortest path/lock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Graph Theory/shortest path/lock.cpp -------------------------------------------------------------------------------- /Topics/Graph Theory/solutions/115 A.Party.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Graph Theory/solutions/115 A.Party.cpp -------------------------------------------------------------------------------- /Topics/Graph Theory/solutions/277A - Learning Languages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Graph Theory/solutions/277A - Learning Languages.cpp -------------------------------------------------------------------------------- /Topics/Graph Theory/solutions/377 A.Maze.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Graph Theory/solutions/377 A.Maze.cpp -------------------------------------------------------------------------------- /Topics/Graph Theory/solutions/500 B.New Year Permutation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Graph Theory/solutions/500 B.New Year Permutation.cpp -------------------------------------------------------------------------------- /Topics/Graph Theory/solutions/510 B.Fox And Dots.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Graph Theory/solutions/510 B.Fox And Dots.cpp -------------------------------------------------------------------------------- /Topics/Graph Theory/solutions/510 C.Fox And Names.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Graph Theory/solutions/510 C.Fox And Names.cpp -------------------------------------------------------------------------------- /Topics/Graph Theory/solutions/520 B. two Buttons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Graph Theory/solutions/520 B. two Buttons.cpp -------------------------------------------------------------------------------- /Topics/Graph Theory/solutions/522 A.Reposts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Graph Theory/solutions/522 A.Reposts.cpp -------------------------------------------------------------------------------- /Topics/Graph Theory/solutions/580 C.Kefa and Park.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Graph Theory/solutions/580 C.Kefa and Park.cpp -------------------------------------------------------------------------------- /Topics/Graph Theory/solutions/687 A.NP hard problem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Graph Theory/solutions/687 A.NP hard problem.cpp -------------------------------------------------------------------------------- /Topics/Graph Theory/topo sort/TOPOSorting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Graph Theory/topo sort/TOPOSorting.cpp -------------------------------------------------------------------------------- /Topics/Graph Theory/union find/684. Redundant Connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Graph Theory/union find/684. Redundant Connection.cpp -------------------------------------------------------------------------------- /Topics/Graph Theory/union find/959. Regions Cut By Slashes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Graph Theory/union find/959. Regions Cut By Slashes.cpp -------------------------------------------------------------------------------- /Topics/Graph Theory/union find/Number of Provinces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Graph Theory/union find/Number of Provinces.cpp -------------------------------------------------------------------------------- /Topics/Linked list/Sum Root to Leaf Numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Linked list/Sum Root to Leaf Numbers.cpp -------------------------------------------------------------------------------- /Topics/Linked list/merge 2 linked lists.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Linked list/merge 2 linked lists.cpp -------------------------------------------------------------------------------- /Topics/Pointers/Count nodes of linked list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Pointers/Count nodes of linked list.cpp -------------------------------------------------------------------------------- /Topics/Pointers/Delete a Node in Single Linked List.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Pointers/Delete a Node in Single Linked List.cpp -------------------------------------------------------------------------------- /Topics/Pointers/Delete a node from BST in C C++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Pointers/Delete a node from BST in C C++.cpp -------------------------------------------------------------------------------- /Topics/Pointers/Implement Queue using Linked List in C C++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Pointers/Implement Queue using Linked List in C C++.cpp -------------------------------------------------------------------------------- /Topics/Pointers/Implement Stack using Linked List in C C++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Pointers/Implement Stack using Linked List in C C++.cpp -------------------------------------------------------------------------------- /Topics/Pointers/Insert a node in a BST in C C++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Pointers/Insert a node in a BST in C C++.cpp -------------------------------------------------------------------------------- /Topics/Pointers/Linked List Insertion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Pointers/Linked List Insertion.cpp -------------------------------------------------------------------------------- /Topics/Pointers/Print Linked List elements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Pointers/Print Linked List elements.cpp -------------------------------------------------------------------------------- /Topics/Segment Tree/2818. Apply Operations to Maximize Score.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Segment Tree/2818. Apply Operations to Maximize Score.cpp -------------------------------------------------------------------------------- /Topics/Segment Tree/3161. Block Placement Queries.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Segment Tree/3161. Block Placement Queries.cpp -------------------------------------------------------------------------------- /Topics/Segment Tree/380 C. Sereja and Brackets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Segment Tree/380 C. Sereja and Brackets.cpp -------------------------------------------------------------------------------- /Topics/Segment Tree/907. Sum of Subarray Minimums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Segment Tree/907. Sum of Subarray Minimums.cpp -------------------------------------------------------------------------------- /Topics/Segment Tree/ANDROUND - AND Rounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Segment Tree/ANDROUND - AND Rounds.cpp -------------------------------------------------------------------------------- /Topics/Segment Tree/Can you answer these queries I.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Segment Tree/Can you answer these queries I.cpp -------------------------------------------------------------------------------- /Topics/Segment Tree/Can you answer these queries III.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Segment Tree/Can you answer these queries III.cpp -------------------------------------------------------------------------------- /Topics/Segment Tree/Frequent values SPOJ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Segment Tree/Frequent values SPOJ.cpp -------------------------------------------------------------------------------- /Topics/Segment Tree/KGSS - Maximum Sum SPOJ problem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Segment Tree/KGSS - Maximum Sum SPOJ problem.cpp -------------------------------------------------------------------------------- /Topics/Segment Tree/KQUERY - K-query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Segment Tree/KQUERY - K-query.cpp -------------------------------------------------------------------------------- /Topics/Segment Tree/max.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Segment Tree/max.cpp -------------------------------------------------------------------------------- /Topics/Segment Tree/min max in same segTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Segment Tree/min max in same segTree.cpp -------------------------------------------------------------------------------- /Topics/Segment-tree-with-lazyPropagation/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Segment-tree-with-lazyPropagation/main.cpp -------------------------------------------------------------------------------- /Topics/Sorting/2070. Most Beautiful Item for Each Query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Sorting/2070. Most Beautiful Item for Each Query.cpp -------------------------------------------------------------------------------- /Topics/Sorting/2563. Count the Number of Fair Pairs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Sorting/2563. Count the Number of Fair Pairs.cpp -------------------------------------------------------------------------------- /Topics/Sorting/3016 Minimum Number of Pushes to Type Word II.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Sorting/3016 Minimum Number of Pushes to Type Word II.cpp -------------------------------------------------------------------------------- /Topics/Sorting/826. Most Profit Assigning Work.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Sorting/826. Most Profit Assigning Work.cpp -------------------------------------------------------------------------------- /Topics/Sorting/Central Russia Regional Contest 2022 E Alley.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Sorting/Central Russia Regional Contest 2022 E Alley.cpp -------------------------------------------------------------------------------- /Topics/Sorting/DP 2328. Number of Increasing Paths in a Grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Sorting/DP 2328. Number of Increasing Paths in a Grid.cpp -------------------------------------------------------------------------------- /Topics/Sorting/Find the Number of Ways to Place People II.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Sorting/Find the Number of Ways to Place People II.cpp -------------------------------------------------------------------------------- /Topics/Tree/834. Sum of Distances in Tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Tree/834. Sum of Distances in Tree.cpp -------------------------------------------------------------------------------- /Topics/Tree/968. Binary Tree Cameras.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Tree/968. Binary Tree Cameras.cpp -------------------------------------------------------------------------------- /Topics/Tree/979. Distribute Coins in Binary Tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Tree/979. Distribute Coins in Binary Tree.cpp -------------------------------------------------------------------------------- /Topics/Tree/binary lifting/kth ancestor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Tree/binary lifting/kth ancestor.cpp -------------------------------------------------------------------------------- /Topics/Tree/binary lifting/lca.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/Tree/binary lifting/lca.cpp -------------------------------------------------------------------------------- /Topics/binary lifting/kth-ancestor-of-a-tree-node leetcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/binary lifting/kth-ancestor-of-a-tree-node leetcode.cpp -------------------------------------------------------------------------------- /Topics/binary lifting/spoj lca with queries.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/binary lifting/spoj lca with queries.cpp -------------------------------------------------------------------------------- /Topics/bitmask/1255. Maximum Score Words Formed by Letters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/bitmask/1255. Maximum Score Words Formed by Letters.cpp -------------------------------------------------------------------------------- /Topics/bitmask/140. Word Break II.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/bitmask/140. Word Break II.cpp -------------------------------------------------------------------------------- /Topics/bitmask/2597. The Number of Beautiful Subsets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/bitmask/2597. The Number of Beautiful Subsets.cpp -------------------------------------------------------------------------------- /Topics/bitmask/Find the Maximum Sum of Node Values.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/bitmask/Find the Maximum Sum of Node Values.cpp -------------------------------------------------------------------------------- /Topics/bitmask/Number of Wonderful Substrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/bitmask/Number of Wonderful Substrings.cpp -------------------------------------------------------------------------------- /Topics/bitmask/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/bitmask/main.cpp -------------------------------------------------------------------------------- /Topics/deque/1579E1 - Permutation Minimization by Deque.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/deque/1579E1 - Permutation Minimization by Deque.cpp -------------------------------------------------------------------------------- /Topics/deque/A. Valeriy and Deque.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/deque/A. Valeriy and Deque.cpp -------------------------------------------------------------------------------- /Topics/deque/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/deque/a.txt -------------------------------------------------------------------------------- /Topics/interactive/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/interactive/main -------------------------------------------------------------------------------- /Topics/map/A. Yet Another Walking Robot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/map/A. Yet Another Walking Robot.cpp -------------------------------------------------------------------------------- /Topics/map/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/map/a -------------------------------------------------------------------------------- /Topics/map/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/map/a.cpp -------------------------------------------------------------------------------- /Topics/math/3307. Find the K-th Character in String Game II.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/math/3307. Find the K-th Character in String Game II.cpp -------------------------------------------------------------------------------- /Topics/math/sieve/2601. Prime Subtraction Operation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/math/sieve/2601. Prime Subtraction Operation.cpp -------------------------------------------------------------------------------- /Topics/math/sieve/Most Frequent Prime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/math/sieve/Most Frequent Prime.cpp -------------------------------------------------------------------------------- /Topics/priority queue/1642 Furthest Building You Can Reach.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/priority queue/1642 Furthest Building You Can Reach.cpp -------------------------------------------------------------------------------- /Topics/priority queue/1941 f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/priority queue/1941 f.cpp -------------------------------------------------------------------------------- /Topics/priority queue/1945 g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/priority queue/1945 g.cpp -------------------------------------------------------------------------------- /Topics/priority queue/502. IPO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/priority queue/502. IPO.cpp -------------------------------------------------------------------------------- /Topics/priority queue/Earliest Second to Mark Indices I.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/priority queue/Earliest Second to Mark Indices I.cpp -------------------------------------------------------------------------------- /Topics/priority queue/Earliest Second to Mark Indices II.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/priority queue/Earliest Second to Mark Indices II.cpp -------------------------------------------------------------------------------- /Topics/priority queue/Minimum Cost to Hire K Workers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/priority queue/Minimum Cost to Hire K Workers.cpp -------------------------------------------------------------------------------- /Topics/priority queue/Most Frequent IDs - heap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/priority queue/Most Frequent IDs - heap.cpp -------------------------------------------------------------------------------- /Topics/priority queue/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/priority queue/a -------------------------------------------------------------------------------- /Topics/priority queue/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/priority queue/a.cpp -------------------------------------------------------------------------------- /Topics/queue/1700. Number of Students Unable to Eat Lunch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/queue/1700. Number of Students Unable to Eat Lunch.cpp -------------------------------------------------------------------------------- /Topics/queue/1823. Find the Winner of the Circular Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/queue/1823. Find the Winner of the Circular Game.cpp -------------------------------------------------------------------------------- /Topics/queue/2073. Time Needed to Buy Tickets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/queue/2073. Time Needed to Buy Tickets.cpp -------------------------------------------------------------------------------- /Topics/queue/341. Flatten Nested List Iterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/queue/341. Flatten Nested List Iterator.cpp -------------------------------------------------------------------------------- /Topics/queue/649. Dota2 Senate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/queue/649. Dota2 Senate.cpp -------------------------------------------------------------------------------- /Topics/queue/995. Minimum Number of K Consecutive Bit Flips.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/queue/995. Minimum Number of K Consecutive Bit Flips.cpp -------------------------------------------------------------------------------- /Topics/random/440. K-th Smallest in Lexicographical Order.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/random/440. K-th Smallest in Lexicographical Order.cpp -------------------------------------------------------------------------------- /Topics/set/1675. Minimize Deviation in Array: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/set/1675. Minimize Deviation in Array -------------------------------------------------------------------------------- /Topics/set/1675. Minimize Deviation in Array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/set/1675. Minimize Deviation in Array.cpp -------------------------------------------------------------------------------- /Topics/set/2213. Longest Substring of One Repeating Character: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/set/2213. Longest Substring of One Repeating Character -------------------------------------------------------------------------------- /Topics/sliding window/1248. Count Number of Nice Subarrays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/sliding window/1248. Count Number of Nice Subarrays.cpp -------------------------------------------------------------------------------- /Topics/sliding window/209. Minimum Size Subarray Sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/sliding window/209. Minimum Size Subarray Sum.cpp -------------------------------------------------------------------------------- /Topics/sliding window/2563. Count the Number of Fair Pairs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/sliding window/2563. Count the Number of Fair Pairs.cpp -------------------------------------------------------------------------------- /Topics/sliding window/3208. Alternating Groups II.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/sliding window/3208. Alternating Groups II.cpp -------------------------------------------------------------------------------- /Topics/sliding window/438. Find All Anagrams in a String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/sliding window/438. Find All Anagrams in a String.cpp -------------------------------------------------------------------------------- /Topics/sliding window/567. Permutation in String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/sliding window/567. Permutation in String.cpp -------------------------------------------------------------------------------- /Topics/sliding window/Count Alternating Subarrays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/sliding window/Count Alternating Subarrays.cpp -------------------------------------------------------------------------------- /Topics/sliding window/Count Subarrays With Fixed Bounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/sliding window/Count Subarrays With Fixed Bounds.cpp -------------------------------------------------------------------------------- /Topics/sliding window/Subarrays with K Different Integers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/sliding window/Subarrays with K Different Integers.cpp -------------------------------------------------------------------------------- /Topics/sliding window/leetcode Minimum Window Substring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/sliding window/leetcode Minimum Window Substring.cpp -------------------------------------------------------------------------------- /Topics/sliding window/subarray-product-less-than-k.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/sliding window/subarray-product-less-than-k.cpp -------------------------------------------------------------------------------- /Topics/stack/1006.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/stack/1006.cpp -------------------------------------------------------------------------------- /Topics/stack/1106. Parsing A Boolean Expression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/stack/1106. Parsing A Boolean Expression.cpp -------------------------------------------------------------------------------- /Topics/stack/1717. Maximum Score From Removing Substrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/stack/1717. Maximum Score From Removing Substrings.cpp -------------------------------------------------------------------------------- /Topics/stack/223A - Bracket Sequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/stack/223A - Bracket Sequence.cpp -------------------------------------------------------------------------------- /Topics/stack/2751. Robot Collisions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/stack/2751. Robot Collisions.cpp -------------------------------------------------------------------------------- /Topics/stack/2866. Beautiful Towers II.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/stack/2866. Beautiful Towers II.cpp -------------------------------------------------------------------------------- /Topics/stack/388. Longest Absolute File Path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/stack/388. Longest Absolute File Path.cpp -------------------------------------------------------------------------------- /Topics/stack/682. Baseball Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/stack/682. Baseball Game.cpp -------------------------------------------------------------------------------- /Topics/stack/726. Number of Atoms to debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/stack/726. Number of Atoms to debug.cpp -------------------------------------------------------------------------------- /Topics/stack/726. Number of Atoms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/stack/726. Number of Atoms.cpp -------------------------------------------------------------------------------- /Topics/stack/739 Daily Temperatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/stack/739 Daily Temperatures.py -------------------------------------------------------------------------------- /Topics/stack/797 Minimal string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/stack/797 Minimal string.cpp -------------------------------------------------------------------------------- /Topics/stack/B. Bus of Characters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/stack/B. Bus of Characters -------------------------------------------------------------------------------- /Topics/stack/B. Bus of Characters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/stack/B. Bus of Characters.cpp -------------------------------------------------------------------------------- /Topics/stack/B. Catch Overflow!.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/stack/B. Catch Overflow!.py -------------------------------------------------------------------------------- /Topics/stack/C. Cd and pwd commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/stack/C. Cd and pwd commands.py -------------------------------------------------------------------------------- /Topics/stack/C. Longest Regular Bracket Sequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/stack/C. Longest Regular Bracket Sequence.cpp -------------------------------------------------------------------------------- /Topics/stack/Remove K Digits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/stack/Remove K Digits.cpp -------------------------------------------------------------------------------- /Topics/stack/Trapping Rain Water.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/stack/Trapping Rain Water.cpp -------------------------------------------------------------------------------- /Topics/stack/Ultimate Army: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/stack/Ultimate Army -------------------------------------------------------------------------------- /Topics/stack/Ultimate Army copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/stack/Ultimate Army copy -------------------------------------------------------------------------------- /Topics/stack/Ultimate Army.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/stack/Ultimate Army.cpp -------------------------------------------------------------------------------- /Topics/stack/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/stack/a.cpp -------------------------------------------------------------------------------- /Topics/stack/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/stack/a.txt -------------------------------------------------------------------------------- /Topics/string/Trie/648. Replace Words.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/string/Trie/648. Replace Words.cpp -------------------------------------------------------------------------------- /Topics/string/Trie/Count Prefix and Suffix Pairs II.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/string/Trie/Count Prefix and Suffix Pairs II.cpp -------------------------------------------------------------------------------- /Topics/string/Trie/Longest Common Suffix Queries copy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/string/Trie/Longest Common Suffix Queries copy.cpp -------------------------------------------------------------------------------- /Topics/string/Trie/Longest Common Suffix Queries.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/string/Trie/Longest Common Suffix Queries.cpp -------------------------------------------------------------------------------- /Topics/string/Trie/trie_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/string/Trie/trie_map.cpp -------------------------------------------------------------------------------- /Topics/string/Trie/trie_vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/string/Trie/trie_vector.cpp -------------------------------------------------------------------------------- /Topics/string/hashing/ Count Prefix and Suffix Pairs I & II.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/string/hashing/ Count Prefix and Suffix Pairs I & II.cpp -------------------------------------------------------------------------------- /Topics/string/hashing/leetcode 647 Palindromic Substrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/string/hashing/leetcode 647 Palindromic Substrings -------------------------------------------------------------------------------- /Topics/string/hashing/leetcode 647 Palindromic Substrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/string/hashing/leetcode 647 Palindromic Substrings.cpp -------------------------------------------------------------------------------- /Topics/string/hashing/leetcode Longest Happy Prefix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/string/hashing/leetcode Longest Happy Prefix -------------------------------------------------------------------------------- /Topics/string/hashing/leetcode Longest Happy Prefix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/string/hashing/leetcode Longest Happy Prefix.cpp -------------------------------------------------------------------------------- /Topics/string/hashing/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/string/hashing/main -------------------------------------------------------------------------------- /Topics/string/kmp/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/string/kmp/main -------------------------------------------------------------------------------- /Topics/string/manacher/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/string/manacher/main.cpp -------------------------------------------------------------------------------- /Topics/string/z-array/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/string/z-array/main.cpp -------------------------------------------------------------------------------- /Topics/two-pointers/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/two-pointers/a -------------------------------------------------------------------------------- /Topics/two-pointers/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/Topics/two-pointers/a.cpp -------------------------------------------------------------------------------- /main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoufGhrissi/problem-solving/HEAD/main --------------------------------------------------------------------------------