├── APIO ├── 2015 │ └── skyscraper.cpp └── 2019 │ └── strange_device.cpp ├── AdventOfCode ├── 2020 │ ├── day1 │ │ ├── input.txt │ │ ├── reportrepair.cpp │ │ └── reportrepair2.cpp │ ├── day10 │ │ ├── 1.cpp │ │ ├── 2.cpp │ │ └── input.txt │ ├── day11 │ │ ├── 1.cpp │ │ ├── 2.cpp │ │ └── input.txt │ ├── day12 │ │ ├── 1.cpp │ │ ├── 2.cpp │ │ └── input.txt │ ├── day13 │ │ ├── 1.cpp │ │ ├── 2.cpp │ │ └── input.txt │ ├── day14 │ │ ├── 1.cpp │ │ ├── 2.cpp │ │ └── input.txt │ ├── day15 │ │ ├── 1.cpp │ │ ├── 2.cpp │ │ └── input.txt │ ├── day16 │ │ ├── 1.cpp │ │ ├── 2.cpp │ │ └── input.txt │ ├── day2 │ │ ├── 1.cpp │ │ ├── 2.cpp │ │ └── input.txt │ ├── day3 │ │ ├── 1.cpp │ │ ├── 2.cpp │ │ └── input.txt │ ├── day4 │ │ ├── 1.cpp │ │ ├── 2.cpp │ │ └── input.txt │ ├── day5 │ │ ├── 1.cpp │ │ ├── 2.cpp │ │ └── input.txt │ ├── day6 │ │ ├── 1.cpp │ │ ├── 2.cpp │ │ └── input.txt │ ├── day7 │ │ ├── 1.cpp │ │ ├── 2.cpp │ │ └── input.txt │ ├── day8 │ │ ├── 1.cpp │ │ ├── 2.cpp │ │ └── input.txt │ └── day9 │ │ ├── 1.cpp │ │ ├── 2.cpp │ │ └── input.txt └── 2022 │ ├── day1 │ ├── 1.cpp │ └── 2.cpp │ ├── day10 │ └── day10.cpp │ ├── day11 │ └── day11.cpp │ ├── day12 │ ├── day12.1.cpp │ └── day12.2.cpp │ ├── day13 │ └── day13.py │ ├── day14 │ └── day14.py │ ├── day15 │ ├── day15.1.py │ └── day15.2.py │ ├── day16 │ ├── day16.1.py │ └── day16.2.py │ ├── day2 │ ├── 1.cpp │ └── 2.cpp │ ├── day3 │ ├── 1.cpp │ └── 2.cpp │ ├── day4 │ ├── 1.cpp │ └── 2.cpp │ ├── day5 │ ├── 1.cpp │ └── 2.cpp │ ├── day6 │ ├── 1.cpp │ └── 2.cpp │ ├── day7 │ └── day7.cpp │ ├── day8 │ └── day8.cpp │ └── day9 │ └── day9.cpp ├── AtCoder ├── abc169 │ └── d.cpp ├── abc260 │ └── f.cpp ├── abc270 │ └── f.cpp ├── arc117 │ └── d.cpp ├── arc123 │ └── d.cpp ├── arc152 │ ├── b.cpp │ ├── c.cpp │ ├── d.cpp │ └── d_slow.cpp └── dp │ └── p.cpp ├── BOI ├── 2006 │ ├── countries.cpp │ └── jump.java ├── 2007 │ ├── sequence.cpp │ └── sound.cpp ├── 2008 │ └── ele.cpp ├── 2010 │ └── bins.cpp ├── 2011 │ ├── icecream.cpp │ └── plagiarism.cpp ├── 2013 │ └── tracks.cpp ├── 2014 │ └── friends.cpp ├── 2016 │ └── bosses.cpp ├── 2018 │ ├── dna.cpp │ └── paths.cpp └── 2020 │ └── b1.java ├── BkOI └── 2018 │ └── election.cpp ├── CALICO └── 2022_fall │ ├── 3 │ └── 3.cpp │ ├── 5 │ └── 5.cpp │ ├── 7 │ └── 7.cpp │ └── 9 │ └── 9.cpp ├── CEOI ├── 2012 │ └── jobs.cpp ├── 2017 │ └── bet.cpp ├── 2018 │ └── toy.cpp └── 2020 │ └── fancyfence.cpp ├── CNOI └── 2020 │ └── delicacy.cpp ├── COCI ├── 2021 │ └── sjeckanje.cpp ├── 2023_1 │ ├── cokolade.cpp │ ├── desniklik.cpp │ └── neboderi.cpp └── 2023_2 │ ├── ekspert.cpp │ ├── lampice.cpp │ ├── prijateljice.cpp │ └── tramvaji.cpp ├── CSES ├── Additional_Problems │ ├── bit_inversions.cpp │ ├── course_schedule_ii.cpp │ ├── graph_girth.cpp │ ├── intersection_points.cpp │ ├── maximum_xor_subarray.cpp │ ├── network_breakdown.cpp │ ├── network_breakdown_fast.cpp │ ├── network_breakdown_short.py │ ├── new_roads_queries.cpp │ └── robot_path.cpp ├── Dynamic_Programming │ ├── array_description.cpp │ ├── book_shop.cpp │ ├── coin_combinations_i.cpp │ ├── coin_combinations_ii.cpp │ ├── counting_towers.cpp │ ├── dice_combinations.cpp │ ├── edit_distance.cpp │ ├── grid_paths.cpp │ ├── increasing_subsequence.cpp │ ├── minimizing_coins.cpp │ ├── money_sums.cpp │ ├── projects.cpp │ ├── rectangle_cutting.cpp │ ├── removal_game.cpp │ ├── removing_digits.cpp │ └── two_sets_ii.cpp ├── Geometry │ └── convex_hull.cpp ├── Graph_Algorithms │ ├── DownloadSpeed.java │ ├── building_roads.cpp │ ├── building_teams.cpp │ ├── counting_rooms.cpp │ ├── course_schedule.cpp │ ├── flight_discount.cpp │ ├── flight_routes.cpp │ ├── game_routes.cpp │ ├── labyrinth.cpp │ ├── longest_flight_route.cpp │ ├── message_route.cpp │ ├── monsters.cpp │ ├── road_construction.cpp │ ├── round_trip.cpp │ ├── round_trip_ii.cpp │ ├── shortest_routes_i.cpp │ ├── shortest_routes_ii.cpp │ └── shortestroutesi.java ├── Introductory_Problems │ ├── apple_division.cpp │ ├── bit_strings.asm │ ├── bit_strings.cpp │ ├── chessboard_and_queens.cpp │ ├── coin_piles.cpp │ ├── creating_strings_i.cpp │ ├── digit_queries.cpp │ ├── gray_code.cpp │ ├── gray_code_fast.cpp │ ├── grid_paths.cpp │ ├── increasing_array.cpp │ ├── missing_number.asm │ ├── missing_number.cpp │ ├── number_spiral.cpp │ ├── palindrome_reorder.cpp │ ├── permutations.asm │ ├── permutations.cpp │ ├── repetitions.cpp │ ├── tower_of_hanoi.cpp │ ├── tower_of_hanoi_fast.cpp │ ├── trailing_zeros.cpp │ ├── two_knights.asm │ ├── two_knights.cpp │ ├── two_sets.cpp │ ├── weird_algorithm.asm │ └── weird_algorithm.cpp ├── Mathematics │ ├── common_divisors.cpp │ ├── counting_divisors.cpp │ ├── divisor_analysis.cpp │ ├── exponentation.cpp │ ├── exponentation_ii.cpp │ └── sum_of_divisors.cpp ├── Range_Queries │ ├── dynamic_range_minimum_queries.cpp │ ├── dynamic_range_sum_queries.cpp │ ├── hotel_queries.cpp │ ├── pizzeria_queries.cpp │ ├── range_xor_queries.cpp │ ├── static_range_minimum_queries.cpp │ ├── static_range_sum_queries.cpp │ └── subarray_sum_queries.cpp ├── Sorting_and_Searching │ ├── apartments.cpp │ ├── array_division.cpp │ ├── collecting_numbers.cpp │ ├── collecting_numbers_ii.cpp │ ├── concert_tickets.cpp │ ├── distinct_numbers.cpp │ ├── factory_machines.cpp │ ├── ferris_wheel.cpp │ ├── josephus_problem_i.cpp │ ├── josephus_problem_ii.cpp │ ├── maximum_subarray_sum.cpp │ ├── maximum_subarray_sum_ii.cpp │ ├── missing_coin_sum.cpp │ ├── movie_festival.cpp │ ├── movie_festival_ii.cpp │ ├── nearest_smaller_values.cpp │ ├── nested_ranges_check.cpp │ ├── nested_ranges_count.cpp │ ├── playlist.cpp │ ├── reading_books.cpp │ ├── restaurant_customers.cpp │ ├── room_allocation.cpp │ ├── sliding_cost.cpp │ ├── sliding_median.cpp │ ├── stick_lengths.cpp │ ├── subarray_distinct_values.cpp │ ├── subarray_divisibility.cpp │ ├── subarray_sums_i.cpp │ ├── subarray_sums_ii.cpp │ ├── sum_of_four_values.cpp │ ├── sum_of_three_values.cpp │ ├── sum_of_two_values.cpp │ ├── tasks_and_deadlines.cpp │ ├── towers.cpp │ └── traffic_lights.cpp └── Tree_Algorithms │ ├── subordinates.cpp │ ├── subtree_queries.cpp │ └── tree_matching.cpp ├── Codeforces ├── 1 │ └── a.cpp ├── 2 │ ├── a.cpp │ └── b.cpp ├── 3 │ └── a.cpp ├── 4 │ ├── a.cpp │ ├── a_short.cpp │ ├── b.cpp │ └── c.cpp ├── 5 │ ├── a.cpp │ └── b.cpp ├── 6 │ ├── a.cpp │ ├── b.cpp │ └── c.cpp ├── 7 │ └── a.cpp ├── 8 │ └── a.cpp ├── 9 │ └── a.cpp ├── 10 │ └── a.cpp ├── 11 │ └── a.cpp ├── 12 │ └── a.cpp ├── 20 │ └── c.cpp ├── 22 │ ├── a.cpp │ └── b.cpp ├── 25 │ └── a.cpp ├── 29 │ └── a.cpp ├── 58 │ └── a.cpp ├── 61 │ └── a.cpp ├── 69 │ └── a.java ├── 71 │ └── a.cpp ├── 96 │ └── a.cpp ├── 110 │ └── a.cpp ├── 112 │ └── a.cpp ├── 116 │ ├── a.cpp │ └── c.cpp ├── 118 │ ├── a.cpp │ └── b.cpp ├── 122 │ └── a.py ├── 130 │ └── a.bf ├── 131 │ └── a.cpp ├── 136 │ └── a.cpp ├── 141 │ └── a.cpp ├── 152 │ └── c.cpp ├── 158 │ └── b.cpp ├── 160 │ ├── a.cpp │ └── d.cpp ├── 166 │ └── a.cpp ├── 189 │ └── a.cpp ├── 208 │ └── a.cpp ├── 218 │ └── c.cpp ├── 219 │ └── a.cpp ├── 221 │ └── c.cpp ├── 224 │ └── b.cpp ├── 230 │ └── b.cpp ├── 236 │ └── a.cpp ├── 245 │ └── h.cpp ├── 252 │ └── e.cpp ├── 257 │ └── c.cpp ├── 259 │ └── c.cpp ├── 265 │ └── c.cpp ├── 270 │ └── a.cpp ├── 285 │ ├── a.cpp │ └── c.cpp ├── 313 │ └── b.cpp ├── 322 │ └── b.cpp ├── 327 │ └── a.cpp ├── 332 │ └── b.cpp ├── 337 │ └── a.cpp ├── 339 │ └── b.cpp ├── 349 │ ├── a.cpp │ └── b.cpp ├── 355 │ └── c.cpp ├── 363 │ └── b.cpp ├── 378 │ └── c.cpp ├── 383 │ └── d.cpp ├── 389 │ └── c.cpp ├── 416 │ └── c.cpp ├── 433 │ └── b.cpp ├── 437 │ └── c.cpp ├── 456 │ └── a.cpp ├── 463 │ ├── b.cpp │ └── c.java ├── 478 │ └── c.cpp ├── 479 │ └── e.cpp ├── 492 │ └── e.cpp ├── 501 │ └── a.cpp ├── 510 │ ├── b.cpp │ └── d.cpp ├── 524 │ └── c.cpp ├── 540 │ └── d.java ├── 544 │ └── d.cpp ├── 550 │ └── c.cpp ├── 579 │ └── e.cpp ├── 580 │ └── a.cpp ├── 607 │ └── b.cpp ├── 618 │ └── d.cpp ├── 630 │ ├── p.cpp │ └── r.cpp ├── 691 │ └── f.cpp ├── 698 │ └── a.cpp ├── 711 │ └── d.cpp ├── 714 │ └── d.cpp ├── 727 │ └── f.cpp ├── 799 │ ├── a.cpp │ ├── c.cpp │ └── e.cpp ├── 803 │ └── e.cpp ├── 825 │ └── e.cpp ├── 835 │ └── c.cpp ├── 837 │ └── d.cpp ├── 855 │ └── b.cpp ├── 873 │ └── e.cpp ├── 893 │ └── c.cpp ├── 909 │ ├── c.cpp │ └── e.cpp ├── 910 │ └── a.cpp ├── 920 │ └── c.cpp ├── 935 │ ├── b.cpp │ └── c.java ├── 939 │ ├── c.cpp │ └── d.cpp ├── 940 │ └── e.cpp ├── 946 │ └── e.cpp ├── 959 │ └── b.cpp ├── 961 │ └── b.cpp ├── 979 │ └── a.cpp ├── 981 │ └── a.cpp ├── 1029 │ └── d.cpp ├── 1059 │ └── d.cpp ├── 1083 │ ├── e.cpp │ └── e.lichao.cpp ├── 1096 │ └── f.cpp ├── 1100 │ └── e.cpp ├── 1107 │ └── e.cpp ├── 1110 │ └── e.cpp ├── 1132 │ ├── d.cpp │ └── f.cpp ├── 1139 │ ├── a.cpp │ └── d.cpp ├── 1144 │ ├── e.cpp │ └── g.cpp ├── 1156 │ ├── c.cpp │ └── d.cpp ├── 1157 │ └── f.java ├── 1166 │ └── e.java ├── 1167 │ └── c.cpp ├── 1174 │ └── f.cpp ├── 1180 │ └── e.cpp ├── 1183 │ └── f.cpp ├── 1186 │ └── f.cpp ├── 1194 │ └── e.cpp ├── 1196 │ └── f.cpp ├── 1203 │ ├── e.cpp │ └── f2.cpp ├── 1208 │ └── e.cpp ├── 1213 │ └── e.java ├── 1220 │ └── e.cpp ├── 1242 │ └── c.cpp ├── 1244 │ └── c.cpp ├── 1251 │ └── d.cpp ├── 1253 │ └── e.cpp ├── 1257 │ └── f.cpp ├── 1260 │ └── e.cpp ├── 1269 │ └── d.cpp ├── 1270 │ └── d.cpp ├── 1271 │ └── a.cpp ├── 1278 │ └── b.cpp ├── 1279 │ └── d.cpp ├── 1281 │ ├── a.cpp │ └── b.cpp ├── 1282 │ └── e.cpp ├── 1284 │ ├── a.cpp │ └── b.cpp ├── 1285 │ ├── a.cpp │ ├── b.cpp │ └── c.cpp ├── 1287 │ └── a.cpp ├── 1288 │ ├── a.cpp │ └── d.cpp ├── 1291 │ └── a.cpp ├── 1296 │ ├── e2.cpp │ └── f.java ├── 1301 │ ├── a.cpp │ ├── b.cpp │ └── c.cpp ├── 1303 │ └── c.cpp ├── 1304 │ ├── a.cpp │ ├── b.cpp │ └── e.cpp ├── 1307 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ └── d.cpp ├── 1311 │ └── d.cpp ├── 1312 │ └── c.cpp ├── 1316 │ ├── a.cpp │ └── b.cpp ├── 1321 │ └── c.cpp ├── 1323 │ ├── a.cpp │ ├── b.cpp │ └── c.cpp ├── 1324 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ └── d.cpp ├── 1325 │ ├── a.cpp │ ├── b.cpp │ └── c.cpp ├── 1326 │ ├── a.cpp │ └── b.cpp ├── 1327 │ ├── c.cpp │ └── d.cpp ├── 1328 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ ├── d.cpp │ ├── e.cpp │ └── f.cpp ├── 1330 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ └── d.cpp ├── 1332 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ └── d.cpp ├── 1333 │ ├── a.cpp │ ├── b.cpp │ └── f.cpp ├── 1334 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ └── d.cpp ├── 1335 │ ├── d.cpp │ └── e.cpp ├── 1337 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ └── d.cpp ├── 1339 │ ├── a.cpp │ ├── b.cpp │ └── c.cpp ├── 1341 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ └── d.cpp ├── 1342 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ └── d.cpp ├── 1343 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ └── d.cpp ├── 1345 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ └── d.cpp ├── 1348 │ ├── a.cpp │ ├── c.cpp │ └── d.cpp ├── 1350 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ ├── d.cpp │ └── e.cpp ├── 1351 │ ├── a.cpp │ └── b.cpp ├── 1352 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ ├── d.cpp │ ├── e.cpp │ ├── f.cpp │ └── g.cpp ├── 1353 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ └── d.cpp ├── 1354 │ ├── a.cpp │ ├── b.cpp │ └── c1.cpp ├── 1355 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ └── d.cpp ├── 1358 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ └── d.cpp ├── 1359 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ ├── d.cpp │ └── e.cpp ├── 1360 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ ├── d.cpp │ ├── e.cpp │ ├── f.cpp │ ├── g.cpp │ └── h.cpp ├── 1362 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ └── d.cpp ├── 1363 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ ├── d.cpp │ └── e.cpp ├── 1364 │ ├── a.cpp │ ├── b.cpp │ └── c.cpp ├── 1365 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ ├── d.cpp │ └── e.cpp ├── 1366 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ ├── d.cpp │ └── e.cpp ├── 1367 │ ├── a.cpp │ ├── b.cpp │ ├── d.cpp │ └── e.cpp ├── 1368 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ └── d.cpp ├── 1369 │ ├── c.cpp │ └── d.cpp ├── 1370 │ ├── c.cpp │ └── d.cpp ├── 1371 │ └── e1.cpp ├── 1372 │ └── d.cpp ├── 1373 │ └── d.cpp ├── 1374 │ └── e1.cpp ├── 1375 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ └── d.cpp ├── 1379 │ └── c.cpp ├── 1380 │ └── d.cpp ├── 1382 │ ├── c.cpp │ └── d.cpp ├── 1384 │ ├── c.cpp │ └── d.cpp ├── 1385 │ └── e.cpp ├── 1388 │ ├── c.cpp │ └── d.cpp ├── 1389 │ └── e.cpp ├── 1391 │ └── d.cpp ├── 1392 │ ├── d.java │ └── e.cpp ├── 1393 │ ├── c.cpp │ └── d.cpp ├── 1395 │ ├── c.cpp │ └── d.cpp ├── 1397 │ └── d.cpp ├── 1398 │ ├── d.java │ └── e.cpp ├── 1399 │ └── e1.cpp ├── 1400 │ ├── d.java │ └── e.cpp ├── 1401 │ ├── d.cpp │ └── e.cpp ├── 1405 │ ├── d.cpp │ └── e.cpp ├── 1408 │ └── d.cpp ├── 1409 │ ├── a.kt │ ├── b.kt │ ├── c.kt │ ├── d.java │ ├── e.cpp │ └── f.java ├── 1411 │ └── d.cpp ├── 1413 │ └── e.cpp ├── 1415 │ ├── d.cpp │ └── e.cpp ├── 1417 │ ├── d.cpp │ └── e.cpp ├── 1418 │ └── d.cpp ├── 1419 │ └── e.cpp ├── 1420 │ ├── c1.cpp │ ├── c2.cpp │ └── d.cpp ├── 1422 │ ├── c.cpp │ └── d.cpp ├── 1426 │ ├── e.cpp │ └── f.cpp ├── 1427 │ ├── c.cpp │ └── d.cpp ├── 1428 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ ├── d.cpp │ └── e.cpp ├── 1430 │ └── e.java ├── 1433 │ ├── f.java │ └── g.cpp ├── 1436 │ └── d.cpp ├── 1437 │ └── e.cpp ├── 1438 │ ├── c.cpp │ └── d.cpp ├── 1442 │ └── a.cpp ├── 1447 │ └── e.cpp ├── 1450 │ ├── c1.cpp │ └── f.cpp ├── 1451 │ ├── e1.cpp │ └── e2.cpp ├── 1452 │ └── d.cpp ├── 1453 │ └── d.cpp ├── 1454 │ ├── e.cpp │ └── f.cpp ├── 1455 │ └── b.cpp ├── 1459 │ └── d.cpp ├── 1461 │ └── e.cpp ├── 1463 │ └── a.cpp ├── 1466 │ └── f.cpp ├── 1467 │ ├── b.cpp │ └── d.cpp ├── 1468 │ ├── a.java │ └── h.java ├── 1471 │ └── f.cpp ├── 1472 │ ├── f.cpp │ └── g.cpp ├── 1473 │ ├── d.cpp │ └── e.cpp ├── 1474 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ └── d.cpp ├── 1475 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ ├── e.cpp │ ├── f.cpp │ └── g.cpp ├── 1476 │ └── b.java ├── 1478 │ └── f.cpp ├── 1479 │ ├── b1.cpp │ └── b2.cpp ├── 1481 │ └── d.cpp ├── 1482 │ └── e.cpp ├── 1485 │ └── d.cpp ├── 1486 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ ├── d.cpp │ └── e.cpp ├── 1487 │ ├── d.cpp │ └── e.cpp ├── 1490 │ ├── c.cpp │ └── g.cpp ├── 1491 │ ├── c.cpp │ ├── d.cpp │ └── e.cpp ├── 1492 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ └── d.cpp ├── 1493 │ ├── a.cpp │ ├── c.cpp │ └── d.cpp ├── 1494 │ └── c.cpp ├── 1496 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ ├── d.cpp │ └── e.cpp ├── 1497 │ ├── b.cpp │ └── c.cpp ├── 1498 │ └── d.cpp ├── 1499 │ └── d.java ├── 1500 │ ├── a.cpp │ └── b.cpp ├── 1504 │ └── e.cpp ├── 1505 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ └── e.cpp ├── 1506 │ ├── f.cpp │ └── g.java ├── 1509 │ └── c.cpp ├── 1511 │ ├── a.java │ ├── b.java │ ├── c.java │ ├── d.java │ └── e.cpp ├── 1512 │ └── f.cpp ├── 1513 │ └── d.cpp ├── 1514 │ └── d.cpp ├── 1515 │ ├── e.cpp │ └── f.cpp ├── 1516 │ └── d.cpp ├── 1517 │ ├── a.java │ ├── b.java │ ├── c.java │ └── d.java ├── 1519 │ ├── a.java │ ├── b.java │ ├── c.java │ └── d.java ├── 1520 │ ├── a.java │ ├── b.java │ ├── c.java │ ├── d.java │ ├── e.java │ ├── f1.java │ ├── f2.cpp │ └── g.cpp ├── 1521 │ └── c.cpp ├── 1523 │ ├── a.cpp │ ├── b.cpp │ └── c.cpp ├── 1525 │ ├── b.cpp │ ├── c.cpp │ ├── d.cpp │ └── e.cpp ├── 1526 │ └── d.cpp ├── 1527 │ ├── b1.cpp │ ├── d.cpp │ └── e.cpp ├── 1528 │ └── d.cpp ├── 1530 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ ├── d.cpp │ └── e.cpp ├── 1534 │ ├── b.cpp │ ├── d.cpp │ └── e.cpp ├── 1535 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ ├── d.cpp │ └── e.cpp ├── 1536 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ ├── d.cpp │ └── e.cpp ├── 1537 │ ├── e.cpp │ └── f.cpp ├── 1538 │ ├── c.cpp │ ├── d.cpp │ ├── e.cpp │ ├── f.cpp │ └── g.cpp ├── 1539 │ └── d.cpp ├── 1541 │ ├── c.cpp │ └── d.cpp ├── 1542 │ └── d.cpp ├── 1543 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ ├── d1.cpp │ └── d2.cpp ├── 1546 │ └── c.cpp ├── 1547 │ ├── d.cpp │ ├── e.cpp │ ├── f.cpp │ └── g.cpp ├── 1549 │ ├── c.cpp │ └── d.cpp ├── 1550 │ └── d.cpp ├── 1551 │ ├── a.cpp │ ├── b1.cpp │ ├── b2.cpp │ ├── e.cpp │ └── f.cpp ├── 1552 │ ├── a.java │ ├── b.java │ ├── c.java │ ├── d.java │ ├── e.cpp │ └── f.cpp ├── 1553 │ ├── d.cpp │ ├── e.cpp │ └── f.cpp ├── 1554 │ └── e.cpp ├── 1555 │ └── e.cpp ├── 1556 │ └── e.cpp ├── 1557 │ ├── a.java │ ├── b.java │ ├── c.java │ └── d.cpp ├── 1559 │ └── e.cpp ├── 1567 │ └── e.cpp ├── 1579 │ └── g.cpp ├── 1583 │ ├── e.cpp │ └── f.cpp ├── 1594 │ └── f.cpp ├── 1598 │ └── f.cpp ├── 1601 │ └── c.cpp ├── 1605 │ └── e.cpp ├── 1606 │ ├── d.cpp │ └── e.cpp ├── 1609 │ └── e.cpp ├── 1611 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ ├── d.cpp │ ├── e1.cpp │ ├── e2.cpp │ ├── f.cpp │ └── g.cpp ├── 1615 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ ├── d.cpp │ └── e.cpp ├── 1616 │ └── e.cpp ├── 1617 │ └── d.cpp ├── 1618 │ └── g.cpp ├── 1619 │ └── h.cpp ├── 1620 │ └── g.cpp ├── 1621 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ ├── d.cpp │ └── e.cpp ├── 1622 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ ├── d.cpp │ └── e.cpp ├── 1623 │ └── d.cpp ├── 1626 │ └── e.cpp ├── 1629 │ ├── e.cpp │ └── f1.cpp ├── 1635 │ └── e.cpp ├── 1637 │ └── e.cpp ├── 1638 │ └── e.cpp ├── 1644 │ ├── b.cpp │ └── d.cpp ├── 1647 │ └── e.cpp ├── 1654 │ └── e.cpp ├── 1657 │ └── e.cpp ├── 1660 │ └── f2.cpp ├── 1675 │ ├── f.cpp │ └── g.cpp ├── 1677 │ └── d.cpp ├── 1679 │ └── d.java ├── 1681 │ └── f.cpp ├── 1682 │ └── d.cpp ├── 1684 │ └── e.java ├── 1686 │ └── d.java ├── 1687 │ └── c.cpp ├── 1689 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ └── d.cpp ├── 1690 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ ├── d.cpp │ ├── e.cpp │ ├── f.cpp │ └── g.cpp ├── 1691 │ ├── e.cpp │ └── f.cpp ├── 1692 │ ├── e.cpp │ └── h.cpp ├── 1694 │ └── e.cpp ├── 1696 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ ├── d.cpp │ └── e.cpp ├── 1698 │ └── d.cpp ├── 1699 │ └── d.cpp ├── 1700 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ ├── d.cpp │ └── f.cpp ├── 1702 │ ├── e.cpp │ ├── f.cpp │ └── g.cpp ├── 1703 │ ├── a.cpp │ ├── b.cpp │ ├── f.cpp │ └── g.cpp ├── 1704 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ ├── d.cpp │ └── e.cpp ├── 1705 │ └── e.cpp ├── 1706 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ ├── d1.cpp │ ├── d2.cpp │ └── e.cpp ├── 1707 │ ├── a.cpp │ ├── b.cpp │ └── c.cpp ├── 1709 │ └── e.cpp ├── 1710 │ ├── a.cpp │ └── b.cpp ├── 1712 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ ├── d.cpp │ └── e.cpp ├── 1713 │ └── e.cpp ├── 1714 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ ├── d.cpp │ ├── e.cpp │ ├── f.cpp │ └── g.cpp ├── 1716 │ └── e.cpp ├── 1717 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ ├── d.cpp │ └── e.cpp ├── 1718 │ └── c.cpp ├── 1720 │ ├── d.cpp │ └── e.cpp ├── 1726 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ ├── d.cpp │ └── e.cpp ├── 1731 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ ├── d.cpp │ └── e.cpp ├── 1738 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ ├── d.cpp │ ├── e.cpp │ └── f.cpp ├── 1744 │ └── f.cpp ├── 1746 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ ├── d.cpp │ └── e1.cpp ├── 1748 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ ├── d.cpp │ └── e.cpp ├── 1749 │ └── e.cpp ├── 1750 │ ├── e.cpp │ └── f.cpp ├── 1764 │ └── f.cpp ├── 1767 │ └── e.cpp ├── 1768 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ ├── d.cpp │ └── e.cpp ├── 1770 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ ├── d.cpp │ └── e.cpp ├── 1779 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ ├── d.cpp │ ├── e.cpp │ └── f.cpp ├── 1790 │ └── e.cpp ├── 1800 │ └── f.java ├── 1811 │ └── d.java ├── 1841 │ └── b.cpp ├── 1844 │ ├── c.cpp │ └── d.cpp ├── 1985 │ └── c.cpp ├── 1987 │ └── c.cpp ├── acmsguru │ └── 112.java ├── gym_102566_AGM2020qual │ └── f.cpp ├── gym_102951_usaco_guide │ ├── a.java │ ├── b.java │ └── b.py ├── gym_103034_ZSAprilFools2021 │ ├── a.cpp │ ├── d.py │ └── e.cpp └── gym_103150_ez │ └── i.cpp ├── DMOJ └── DMOPC22nov │ ├── 1.cpp │ ├── 2.cpp │ ├── 3.cpp │ ├── 4_subtask1.cpp │ └── 6_subtask1.cpp ├── FacebookHackercup ├── 2019 │ └── round2 │ │ └── a.cpp ├── 2020 │ ├── qual │ │ ├── a.cpp │ │ ├── b.cpp │ │ └── d1.cpp │ ├── round1 │ │ ├── a1.cpp │ │ └── b.cpp │ └── round2 │ │ └── a.cpp └── 2022 │ ├── qual │ ├── a.cpp │ ├── b1.cpp │ ├── b2.cpp │ ├── c1.cpp │ ├── c2.cpp │ └── d.cpp │ ├── round1 │ ├── a1 │ │ └── a1.cpp │ ├── a2 │ │ └── a2.cpp │ ├── b1 │ │ └── b1.cpp │ └── b2 │ │ └── b2.cpp │ └── round2 │ ├── a1 │ └── a1.cpp │ └── b │ └── b.cpp ├── GoogleCodeJam ├── 2019Qual │ ├── foregone_solution.cpp │ └── you_can_go_your_own_way.cpp ├── 2020Qual │ ├── nesting_depth.cpp │ └── vestigium.cpp ├── 2021Qual │ ├── median_sort.java │ ├── moons_and_umbrellas.java │ ├── reversort.java │ └── reversort_engineering.java └── 2021_1a │ └── append_sort.cpp ├── GoogleKickstart ├── 2020A │ ├── allocation.cpp │ ├── plates.cpp │ └── workout.cpp ├── 2020E │ ├── highbuildings.cpp │ └── longestarithmetic.cpp └── 2022H │ ├── electricity.cpp │ ├── magical_well_of_lilies.cpp │ └── running_in_circles.cpp ├── IOI ├── 2006 │ └── writing.cpp ├── 2010 │ ├── cluedo.cpp │ └── memory.cpp └── 2021 │ └── dna.cpp ├── IZhO └── 2012 │ └── f.cpp ├── JOI ├── 2013 │ └── watching.cpp ├── 2014 │ └── pinball.cpp ├── 2018 │ ├── commuter_pass.cpp │ └── tents.cpp └── 2020 │ └── power.cpp ├── Kattis ├── 3dprinter.cpp ├── crypto.cpp ├── distinctivecharacter.cpp ├── flightcollision.cpp ├── howl.cpp ├── polygonarea.cpp ├── summertrip.cpp └── terraces.cpp ├── LICENSE ├── LeetCode ├── Weekly320 │ ├── 2475.cpp │ ├── 2476.cpp │ ├── 2477.cpp │ └── 2478.cpp └── Weekly322 │ ├── 2490.cpp │ ├── 2491.cpp │ ├── 2492.cpp │ └── 2493.cpp ├── README.md ├── USACOcontests ├── bronze │ ├── 2011.12 │ │ └── escape.java │ ├── 2012.11 │ │ └── cowfind.cpp │ ├── 2016.12 │ │ └── cowsignal.cpp │ ├── 2018.02 │ │ └── teleport.cpp │ ├── 2019.01 │ │ ├── guess.cpp │ │ └── shell.cpp │ ├── 2019.02 │ │ └── herding.cpp │ ├── 2019.12 │ │ ├── gymnastics.cpp │ │ └── whereami.cpp │ ├── 2020.03 │ │ └── socdist1.cpp │ ├── 2022.02 │ │ ├── blocks.cpp │ │ ├── photoshoot_2.cpp │ │ └── sleeping_in_class.cpp │ └── 2022.12 │ │ ├── cow_college.cpp │ │ ├── feeding_the_cows.cpp │ │ └── reverse_engineering.cpp ├── gold │ ├── 2007.02 │ │ └── lilypad.cpp │ ├── 2008.10 │ │ └── pwrfail.cpp │ ├── 2012.01 │ │ └── alliance.cpp │ ├── 2012.11 │ │ └── bbreeds.cpp │ ├── 2013.01 │ │ ├── lineup.cpp │ │ └── seating.cpp │ ├── 2013.02 │ │ └── partition.cpp │ ├── 2013.03 │ │ └── cowrun.cpp │ ├── 2013.11 │ │ └── empty.cpp │ ├── 2014.01 │ │ └── skilevel.cpp │ ├── 2014.02 │ │ └── rblock.cpp │ ├── 2014.03 │ │ └── fcount.cpp │ ├── 2014.12 │ │ ├── guard.cpp │ │ └── marathon.cpp │ ├── 2015.12 │ │ ├── cardgame.cpp │ │ ├── dream.cpp │ │ └── feast.cpp │ ├── 2016.01 │ │ ├── angry.cpp │ │ ├── lightsout.cpp │ │ └── radio.cpp │ ├── 2016.02 │ │ ├── cbarn.cpp │ │ ├── cbarn2.cpp │ │ └── fencedin.cpp │ ├── 2016.03 │ │ ├── 248.cpp │ │ ├── closing.cpp │ │ └── split.cpp │ ├── 2016.12 │ │ ├── checklist.cpp │ │ ├── lasers.cpp │ │ └── moocast.cpp │ ├── 2017.01 │ │ ├── bphoto.cpp │ │ ├── cownav.cpp │ │ └── hps.cpp │ ├── 2017.02 │ │ ├── circlecross.cpp │ │ ├── nocross.cpp │ │ └── visitfj.cpp │ ├── 2017.03 │ │ ├── art2.cpp │ │ └── cownomics.cpp │ ├── 2017.12 │ │ ├── barnpainting.cpp │ │ ├── hayfeast.cpp │ │ └── piepie.cpp │ ├── 2018.01 │ │ ├── atlarge.cpp │ │ ├── mootube.cpp │ │ └── spainting.cpp │ ├── 2018.02 │ │ ├── dirtraverse.cpp │ │ ├── snowboots.cpp │ │ └── taming.cpp │ ├── 2018.03 │ │ ├── milkorder.cpp │ │ └── talent.cpp │ ├── 2018.12 │ │ ├── cowpatibility.cpp │ │ ├── dining.cpp │ │ └── teamwork.cpp │ ├── 2019.01 │ │ ├── poetry.cpp │ │ ├── shortcut.cpp │ │ └── sleepy.cpp │ ├── 2019.02 │ │ ├── cowland.cpp │ │ └── dishes.cpp │ ├── 2019.03 │ │ ├── snakes.cpp │ │ ├── walk.cpp │ │ └── walk.py │ ├── 2019.12 │ │ ├── cowmbat.cpp │ │ ├── milkvisits.cpp │ │ └── pump.cpp │ ├── 2020.01 │ │ ├── boards.cpp │ │ ├── threesum.cpp │ │ └── time.cpp │ ├── 2020.02 │ │ ├── deleg.cpp │ │ ├── help.cpp │ │ └── timeline.cpp │ ├── 2020.03 │ │ ├── exercise.cpp │ │ ├── fcolor.cpp │ │ └── haircut.cpp │ ├── 2020.12 │ │ └── replication.cpp │ ├── 2021.01 │ │ ├── telephone.cpp │ │ └── uddered_but_not_herd.cpp │ ├── 2021.02 │ │ ├── modern_art_3.cpp │ │ └── stone_game.java │ └── 2021.03 │ │ ├── permutations.cpp │ │ ├── portals.cpp │ │ └── ucfj.cpp ├── platinum │ ├── 2015.12 │ │ ├── cardgame.cpp │ │ ├── haybales.cpp │ │ └── maxflow.cpp │ ├── 2016.01 │ │ └── fortmoo.cpp │ ├── 2016.02 │ │ ├── balancing.cpp │ │ └── fencedin.cpp │ ├── 2016.03 │ │ └── 262144.cpp │ ├── 2016.12 │ │ └── team.cpp │ ├── 2017.01 │ │ └── promote.cpp │ ├── 2017.02 │ │ ├── mincross.cpp │ │ └── nocross.cpp │ ├── 2018.02 │ │ └── slingshot.cpp │ ├── 2018.03 │ │ └── disruption.cpp │ ├── 2019.01 │ │ └── redistricting.cpp │ ├── 2019.02 │ │ ├── cowdate.cpp │ │ └── mooriokart.cpp │ ├── 2019.12 │ │ ├── pieaters.cpp │ │ └── snowcow.cpp │ ├── 2020.01 │ │ └── cave.cpp │ ├── 2020.02 │ │ ├── deleg.cpp │ │ └── triangles.cpp │ ├── 2020.03 │ │ └── sprinklers2.cpp │ ├── 2020.12 │ │ └── sleeping_cows.cpp │ ├── 2021.01 │ │ └── sum_of_distances.cpp │ ├── 2021.02 │ │ └── no_time_to_dry.cpp │ ├── 2021.03 │ │ ├── balanced_subsets.cpp │ │ └── united_cows_of_farmer_john.cpp │ ├── 2021.12 │ │ ├── hilo.cpp │ │ └── tickets.cpp │ ├── 2022.01 │ │ └── minimizing_haybales.cpp │ ├── 2022.03 │ │ └── up_down_subsequence.java │ ├── 2022.12 │ │ └── making_friends.cpp │ ├── 2023.01 │ │ ├── subtree_activation.cpp │ │ └── tractor_paths.cpp │ └── 2023.02 │ │ └── problem_setting.cpp └── silver │ ├── 2006.03 │ └── counfr.cpp │ ├── 2007.03 │ └── expense.cpp │ ├── 2012.11 │ ├── clumsy.cpp │ └── distant.cpp │ ├── 2012.12 │ ├── crazy.cpp │ └── wifi.cpp │ ├── 2013.01 │ └── squares.cpp │ ├── 2013.02 │ └── tractor.cpp │ ├── 2013.03 │ ├── cruise.cpp │ ├── gravity.cpp │ └── poker.cpp │ ├── 2013.11 │ ├── crowded.cpp │ └── pogocow.cpp │ ├── 2014.01 │ └── ccski.cpp │ ├── 2014.02 │ └── scode.cpp │ ├── 2014.03 │ ├── gpsduel.cpp │ └── mooomoo.cpp │ ├── 2014.12 │ ├── cowjog.cpp │ ├── marathon.cpp │ └── piggyback.cpp │ ├── 2015.02 │ └── superbull.cpp │ ├── 2015.03 │ └── buffet.cpp │ ├── 2015.12 │ ├── bcount.cpp │ ├── highcard.cpp │ └── lightson.cpp │ ├── 2016.01 │ ├── angry.cpp │ └── div7.java │ ├── 2016.02 │ ├── balancing.cpp │ ├── cbarn.cpp │ └── pails.cpp │ ├── 2016.03 │ ├── closing.cpp │ ├── diamond.cpp │ └── reduce.cpp │ ├── 2016.12 │ ├── citystate.cpp │ ├── haybales.cpp │ ├── haybales_2.cpp │ └── moocast.cpp │ ├── 2017.01 │ ├── cowcode.cpp │ ├── cowcode.java │ ├── cowdance.cpp │ └── hps.cpp │ ├── 2017.02 │ ├── countcross.cpp │ ├── helpcross.cpp │ └── maxcross.cpp │ ├── 2017.03 │ ├── 2017.03.pairup.java │ ├── cownomics.cpp │ └── where.cpp │ ├── 2017.12 │ ├── homework.cpp │ ├── measurement.cpp │ └── shuffle.cpp │ ├── 2018.01 │ ├── lifeguards.cpp │ ├── mootube.cpp │ └── rental.cpp │ ├── 2018.02 │ ├── reststops.cpp │ ├── reststops_codegolf.cpp │ ├── snowboots.cpp │ └── teleport.cpp │ ├── 2018.03 │ ├── lemonade.cpp │ ├── multimoo.cpp │ ├── multimoo.java │ └── sort.cpp │ ├── 2018.12 │ ├── convention.cpp │ ├── convention2.cpp │ └── mooyomooyo.cpp │ ├── 2019.01 │ ├── mountains.cpp │ ├── perimeter.cpp │ └── planting.cpp │ ├── 2019.02 │ ├── herding.cpp │ ├── paintbarn.cpp │ ├── revegetate.cpp │ └── revegetate.java │ ├── 2019.03 │ ├── fenceplan.cpp │ └── leftout.cpp │ ├── 2019.12 │ ├── meetings.cpp │ ├── milkvisits.cpp │ └── moobuzz.cpp │ ├── 2020.01 │ ├── berries.cpp │ ├── loan.cpp │ └── wormsort.cpp │ ├── 2020.02 │ ├── clocktree.cpp │ ├── swap.cpp │ └── triangles.cpp │ ├── 2020.03 │ ├── cereal.cpp │ ├── moop.cpp │ └── socdist.cpp │ ├── 2020.12 │ ├── 1.cpp │ ├── 2.cpp │ └── 3.cpp │ ├── 2021.01 │ └── dance_mooves.java │ ├── 2021.12 │ └── convoluted_intervals.cpp │ └── 2022.12 │ ├── barn_tree.cpp │ ├── circular_barn.cpp │ └── range_reconstruction.cpp ├── USACOtraining ├── 1.2 │ ├── friday.cpp │ ├── gift1.cpp │ └── ride.cpp ├── 2.1 │ ├── castle.cpp │ ├── frac1.cpp │ ├── hamming.cpp │ ├── holstein.cpp │ └── sort3.cpp ├── 2.2 │ ├── lamps.cpp │ ├── preface.cpp │ ├── runround.cpp │ └── subset.cpp ├── 2.3 │ ├── concom.cpp │ ├── money.cpp │ ├── nocows.cpp │ ├── prefix.cpp │ └── zerosum.cpp ├── 2.4 │ ├── comehome.cpp │ ├── cowtour.cpp │ ├── fracdec.cpp │ ├── maze1.cpp │ └── ttwo.cpp ├── 3.1 │ ├── agrinet.cpp │ ├── contact.cpp │ ├── humble.cpp │ ├── inflate.cpp │ └── stamps.cpp ├── 3.2 │ ├── butter.cpp │ ├── fact4.cpp │ ├── kimbits.cpp │ ├── msquare.cpp │ ├── ratios.cpp │ └── spin.cpp ├── 3.3 │ ├── camelot.cpp │ ├── fence.cpp │ ├── game1.cpp │ ├── range.cpp │ └── shopping.cpp ├── 3.4 │ ├── fence9.cpp │ ├── heritage.cpp │ └── rockers.cpp ├── 4.1 │ ├── fence6.cpp │ └── nuggets.cpp ├── 4.2 │ ├── ditch.cpp │ ├── job.cpp │ └── stall4.cpp ├── 4.3 │ ├── buylow.java │ ├── lgame.cpp │ └── race3.java ├── 4.4 │ ├── frameup.cpp │ ├── milk6.cpp │ └── shuttle.cpp └── 5.1 │ ├── fc.cpp │ ├── starry.cpp │ └── theme.cpp ├── directorytree.py ├── docs ├── index.html ├── pathconstruction.html └── scarybulls.html ├── helper └── grader.py ├── mBIT └── 2021_spring │ ├── pokemon_permutation.cpp │ └── scribble_roads.cpp ├── teamscode └── 2022 │ ├── b.cpp │ ├── e.cpp │ └── h.cpp └── templates ├── BIT.cpp ├── dijkstra_elogv.cpp ├── dsu.cpp ├── nCr.cpp └── segment_tree.cpp /APIO/2015/skyscraper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/APIO/2015/skyscraper.cpp -------------------------------------------------------------------------------- /APIO/2019/strange_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/APIO/2019/strange_device.cpp -------------------------------------------------------------------------------- /AdventOfCode/2020/day15/input.txt: -------------------------------------------------------------------------------- 1 | 2,1,10,11,0,6 2 | -------------------------------------------------------------------------------- /AdventOfCode/2020/day2/1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/AdventOfCode/2020/day2/1.cpp -------------------------------------------------------------------------------- /AdventOfCode/2020/day2/2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/AdventOfCode/2020/day2/2.cpp -------------------------------------------------------------------------------- /AdventOfCode/2020/day3/1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/AdventOfCode/2020/day3/1.cpp -------------------------------------------------------------------------------- /AdventOfCode/2020/day3/2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/AdventOfCode/2020/day3/2.cpp -------------------------------------------------------------------------------- /AdventOfCode/2020/day4/1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/AdventOfCode/2020/day4/1.cpp -------------------------------------------------------------------------------- /AdventOfCode/2020/day4/2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/AdventOfCode/2020/day4/2.cpp -------------------------------------------------------------------------------- /AdventOfCode/2020/day5/1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/AdventOfCode/2020/day5/1.cpp -------------------------------------------------------------------------------- /AdventOfCode/2020/day5/2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/AdventOfCode/2020/day5/2.cpp -------------------------------------------------------------------------------- /AdventOfCode/2020/day6/1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/AdventOfCode/2020/day6/1.cpp -------------------------------------------------------------------------------- /AdventOfCode/2020/day6/2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/AdventOfCode/2020/day6/2.cpp -------------------------------------------------------------------------------- /AdventOfCode/2020/day7/1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/AdventOfCode/2020/day7/1.cpp -------------------------------------------------------------------------------- /AdventOfCode/2020/day7/2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/AdventOfCode/2020/day7/2.cpp -------------------------------------------------------------------------------- /AdventOfCode/2020/day8/1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/AdventOfCode/2020/day8/1.cpp -------------------------------------------------------------------------------- /AdventOfCode/2020/day8/2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/AdventOfCode/2020/day8/2.cpp -------------------------------------------------------------------------------- /AdventOfCode/2020/day9/1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/AdventOfCode/2020/day9/1.cpp -------------------------------------------------------------------------------- /AdventOfCode/2020/day9/2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/AdventOfCode/2020/day9/2.cpp -------------------------------------------------------------------------------- /AdventOfCode/2022/day1/1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/AdventOfCode/2022/day1/1.cpp -------------------------------------------------------------------------------- /AdventOfCode/2022/day1/2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/AdventOfCode/2022/day1/2.cpp -------------------------------------------------------------------------------- /AdventOfCode/2022/day2/1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/AdventOfCode/2022/day2/1.cpp -------------------------------------------------------------------------------- /AdventOfCode/2022/day2/2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/AdventOfCode/2022/day2/2.cpp -------------------------------------------------------------------------------- /AdventOfCode/2022/day3/1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/AdventOfCode/2022/day3/1.cpp -------------------------------------------------------------------------------- /AdventOfCode/2022/day3/2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/AdventOfCode/2022/day3/2.cpp -------------------------------------------------------------------------------- /AdventOfCode/2022/day4/1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/AdventOfCode/2022/day4/1.cpp -------------------------------------------------------------------------------- /AtCoder/abc169/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/AtCoder/abc169/d.cpp -------------------------------------------------------------------------------- /AtCoder/abc260/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/AtCoder/abc260/f.cpp -------------------------------------------------------------------------------- /AtCoder/abc270/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/AtCoder/abc270/f.cpp -------------------------------------------------------------------------------- /AtCoder/arc117/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/AtCoder/arc117/d.cpp -------------------------------------------------------------------------------- /AtCoder/arc123/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/AtCoder/arc123/d.cpp -------------------------------------------------------------------------------- /AtCoder/arc152/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/AtCoder/arc152/b.cpp -------------------------------------------------------------------------------- /AtCoder/arc152/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/AtCoder/arc152/c.cpp -------------------------------------------------------------------------------- /AtCoder/arc152/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/AtCoder/arc152/d.cpp -------------------------------------------------------------------------------- /AtCoder/arc152/d_slow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/AtCoder/arc152/d_slow.cpp -------------------------------------------------------------------------------- /AtCoder/dp/p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/AtCoder/dp/p.cpp -------------------------------------------------------------------------------- /BOI/2006/countries.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/BOI/2006/countries.cpp -------------------------------------------------------------------------------- /BOI/2006/jump.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/BOI/2006/jump.java -------------------------------------------------------------------------------- /BOI/2007/sequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/BOI/2007/sequence.cpp -------------------------------------------------------------------------------- /BOI/2007/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/BOI/2007/sound.cpp -------------------------------------------------------------------------------- /BOI/2008/ele.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/BOI/2008/ele.cpp -------------------------------------------------------------------------------- /BOI/2010/bins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/BOI/2010/bins.cpp -------------------------------------------------------------------------------- /BOI/2011/icecream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/BOI/2011/icecream.cpp -------------------------------------------------------------------------------- /BOI/2011/plagiarism.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/BOI/2011/plagiarism.cpp -------------------------------------------------------------------------------- /BOI/2013/tracks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/BOI/2013/tracks.cpp -------------------------------------------------------------------------------- /BOI/2014/friends.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/BOI/2014/friends.cpp -------------------------------------------------------------------------------- /BOI/2016/bosses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/BOI/2016/bosses.cpp -------------------------------------------------------------------------------- /BOI/2018/dna.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/BOI/2018/dna.cpp -------------------------------------------------------------------------------- /BOI/2018/paths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/BOI/2018/paths.cpp -------------------------------------------------------------------------------- /BOI/2020/b1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/BOI/2020/b1.java -------------------------------------------------------------------------------- /BkOI/2018/election.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/BkOI/2018/election.cpp -------------------------------------------------------------------------------- /CALICO/2022_fall/3/3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/CALICO/2022_fall/3/3.cpp -------------------------------------------------------------------------------- /CALICO/2022_fall/5/5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/CALICO/2022_fall/5/5.cpp -------------------------------------------------------------------------------- /CALICO/2022_fall/7/7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/CALICO/2022_fall/7/7.cpp -------------------------------------------------------------------------------- /CALICO/2022_fall/9/9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/CALICO/2022_fall/9/9.cpp -------------------------------------------------------------------------------- /CEOI/2012/jobs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/CEOI/2012/jobs.cpp -------------------------------------------------------------------------------- /CEOI/2017/bet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/CEOI/2017/bet.cpp -------------------------------------------------------------------------------- /CEOI/2018/toy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/CEOI/2018/toy.cpp -------------------------------------------------------------------------------- /CEOI/2020/fancyfence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/CEOI/2020/fancyfence.cpp -------------------------------------------------------------------------------- /CNOI/2020/delicacy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/CNOI/2020/delicacy.cpp -------------------------------------------------------------------------------- /COCI/2021/sjeckanje.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/COCI/2021/sjeckanje.cpp -------------------------------------------------------------------------------- /COCI/2023_1/cokolade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/COCI/2023_1/cokolade.cpp -------------------------------------------------------------------------------- /COCI/2023_1/desniklik.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/COCI/2023_1/desniklik.cpp -------------------------------------------------------------------------------- /COCI/2023_1/neboderi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/COCI/2023_1/neboderi.cpp -------------------------------------------------------------------------------- /COCI/2023_2/ekspert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/COCI/2023_2/ekspert.cpp -------------------------------------------------------------------------------- /COCI/2023_2/lampice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/COCI/2023_2/lampice.cpp -------------------------------------------------------------------------------- /COCI/2023_2/tramvaji.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/COCI/2023_2/tramvaji.cpp -------------------------------------------------------------------------------- /Codeforces/1/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1/a.cpp -------------------------------------------------------------------------------- /Codeforces/10/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/10/a.cpp -------------------------------------------------------------------------------- /Codeforces/1029/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1029/d.cpp -------------------------------------------------------------------------------- /Codeforces/1059/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1059/d.cpp -------------------------------------------------------------------------------- /Codeforces/1083/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1083/e.cpp -------------------------------------------------------------------------------- /Codeforces/1096/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1096/f.cpp -------------------------------------------------------------------------------- /Codeforces/11/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/11/a.cpp -------------------------------------------------------------------------------- /Codeforces/110/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/110/a.cpp -------------------------------------------------------------------------------- /Codeforces/1100/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1100/e.cpp -------------------------------------------------------------------------------- /Codeforces/1107/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1107/e.cpp -------------------------------------------------------------------------------- /Codeforces/1110/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1110/e.cpp -------------------------------------------------------------------------------- /Codeforces/112/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/112/a.cpp -------------------------------------------------------------------------------- /Codeforces/1132/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1132/d.cpp -------------------------------------------------------------------------------- /Codeforces/1132/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1132/f.cpp -------------------------------------------------------------------------------- /Codeforces/1139/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1139/a.cpp -------------------------------------------------------------------------------- /Codeforces/1139/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1139/d.cpp -------------------------------------------------------------------------------- /Codeforces/1144/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1144/e.cpp -------------------------------------------------------------------------------- /Codeforces/1144/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1144/g.cpp -------------------------------------------------------------------------------- /Codeforces/1156/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1156/c.cpp -------------------------------------------------------------------------------- /Codeforces/1156/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1156/d.cpp -------------------------------------------------------------------------------- /Codeforces/1157/f.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1157/f.java -------------------------------------------------------------------------------- /Codeforces/116/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/116/a.cpp -------------------------------------------------------------------------------- /Codeforces/116/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/116/c.cpp -------------------------------------------------------------------------------- /Codeforces/1166/e.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1166/e.java -------------------------------------------------------------------------------- /Codeforces/1167/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1167/c.cpp -------------------------------------------------------------------------------- /Codeforces/1174/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1174/f.cpp -------------------------------------------------------------------------------- /Codeforces/118/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/118/a.cpp -------------------------------------------------------------------------------- /Codeforces/118/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/118/b.cpp -------------------------------------------------------------------------------- /Codeforces/1180/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1180/e.cpp -------------------------------------------------------------------------------- /Codeforces/1183/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1183/f.cpp -------------------------------------------------------------------------------- /Codeforces/1186/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1186/f.cpp -------------------------------------------------------------------------------- /Codeforces/1194/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1194/e.cpp -------------------------------------------------------------------------------- /Codeforces/1196/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1196/f.cpp -------------------------------------------------------------------------------- /Codeforces/12/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/12/a.cpp -------------------------------------------------------------------------------- /Codeforces/1203/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1203/e.cpp -------------------------------------------------------------------------------- /Codeforces/1203/f2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1203/f2.cpp -------------------------------------------------------------------------------- /Codeforces/1208/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1208/e.cpp -------------------------------------------------------------------------------- /Codeforces/1213/e.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1213/e.java -------------------------------------------------------------------------------- /Codeforces/122/a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/122/a.py -------------------------------------------------------------------------------- /Codeforces/1220/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1220/e.cpp -------------------------------------------------------------------------------- /Codeforces/1242/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1242/c.cpp -------------------------------------------------------------------------------- /Codeforces/1244/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1244/c.cpp -------------------------------------------------------------------------------- /Codeforces/1251/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1251/d.cpp -------------------------------------------------------------------------------- /Codeforces/1253/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1253/e.cpp -------------------------------------------------------------------------------- /Codeforces/1257/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1257/f.cpp -------------------------------------------------------------------------------- /Codeforces/1260/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1260/e.cpp -------------------------------------------------------------------------------- /Codeforces/1269/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1269/d.cpp -------------------------------------------------------------------------------- /Codeforces/1270/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1270/d.cpp -------------------------------------------------------------------------------- /Codeforces/1271/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1271/a.cpp -------------------------------------------------------------------------------- /Codeforces/1278/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1278/b.cpp -------------------------------------------------------------------------------- /Codeforces/1279/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1279/d.cpp -------------------------------------------------------------------------------- /Codeforces/1281/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1281/a.cpp -------------------------------------------------------------------------------- /Codeforces/1281/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1281/b.cpp -------------------------------------------------------------------------------- /Codeforces/1282/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1282/e.cpp -------------------------------------------------------------------------------- /Codeforces/1284/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1284/a.cpp -------------------------------------------------------------------------------- /Codeforces/1284/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1284/b.cpp -------------------------------------------------------------------------------- /Codeforces/1285/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1285/a.cpp -------------------------------------------------------------------------------- /Codeforces/1285/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1285/b.cpp -------------------------------------------------------------------------------- /Codeforces/1285/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1285/c.cpp -------------------------------------------------------------------------------- /Codeforces/1287/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1287/a.cpp -------------------------------------------------------------------------------- /Codeforces/1288/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1288/a.cpp -------------------------------------------------------------------------------- /Codeforces/1288/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1288/d.cpp -------------------------------------------------------------------------------- /Codeforces/1291/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1291/a.cpp -------------------------------------------------------------------------------- /Codeforces/1296/e2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1296/e2.cpp -------------------------------------------------------------------------------- /Codeforces/1296/f.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1296/f.java -------------------------------------------------------------------------------- /Codeforces/130/a.bf: -------------------------------------------------------------------------------- 1 | &>:2\:**\-.@ 2 | -------------------------------------------------------------------------------- /Codeforces/1301/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1301/a.cpp -------------------------------------------------------------------------------- /Codeforces/1301/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1301/b.cpp -------------------------------------------------------------------------------- /Codeforces/1301/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1301/c.cpp -------------------------------------------------------------------------------- /Codeforces/1303/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1303/c.cpp -------------------------------------------------------------------------------- /Codeforces/1304/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1304/a.cpp -------------------------------------------------------------------------------- /Codeforces/1304/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1304/b.cpp -------------------------------------------------------------------------------- /Codeforces/1304/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1304/e.cpp -------------------------------------------------------------------------------- /Codeforces/1307/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1307/a.cpp -------------------------------------------------------------------------------- /Codeforces/1307/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1307/b.cpp -------------------------------------------------------------------------------- /Codeforces/1307/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1307/c.cpp -------------------------------------------------------------------------------- /Codeforces/1307/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1307/d.cpp -------------------------------------------------------------------------------- /Codeforces/131/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/131/a.cpp -------------------------------------------------------------------------------- /Codeforces/1311/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1311/d.cpp -------------------------------------------------------------------------------- /Codeforces/1312/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1312/c.cpp -------------------------------------------------------------------------------- /Codeforces/1316/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1316/a.cpp -------------------------------------------------------------------------------- /Codeforces/1316/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1316/b.cpp -------------------------------------------------------------------------------- /Codeforces/1321/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1321/c.cpp -------------------------------------------------------------------------------- /Codeforces/1323/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1323/a.cpp -------------------------------------------------------------------------------- /Codeforces/1323/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1323/b.cpp -------------------------------------------------------------------------------- /Codeforces/1323/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1323/c.cpp -------------------------------------------------------------------------------- /Codeforces/1324/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1324/a.cpp -------------------------------------------------------------------------------- /Codeforces/1324/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1324/b.cpp -------------------------------------------------------------------------------- /Codeforces/1324/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1324/c.cpp -------------------------------------------------------------------------------- /Codeforces/1324/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1324/d.cpp -------------------------------------------------------------------------------- /Codeforces/1325/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1325/a.cpp -------------------------------------------------------------------------------- /Codeforces/1325/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1325/b.cpp -------------------------------------------------------------------------------- /Codeforces/1325/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1325/c.cpp -------------------------------------------------------------------------------- /Codeforces/1326/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1326/a.cpp -------------------------------------------------------------------------------- /Codeforces/1326/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1326/b.cpp -------------------------------------------------------------------------------- /Codeforces/1327/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1327/c.cpp -------------------------------------------------------------------------------- /Codeforces/1327/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1327/d.cpp -------------------------------------------------------------------------------- /Codeforces/1328/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1328/a.cpp -------------------------------------------------------------------------------- /Codeforces/1328/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1328/b.cpp -------------------------------------------------------------------------------- /Codeforces/1328/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1328/c.cpp -------------------------------------------------------------------------------- /Codeforces/1328/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1328/d.cpp -------------------------------------------------------------------------------- /Codeforces/1328/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1328/e.cpp -------------------------------------------------------------------------------- /Codeforces/1328/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1328/f.cpp -------------------------------------------------------------------------------- /Codeforces/1330/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1330/a.cpp -------------------------------------------------------------------------------- /Codeforces/1330/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1330/b.cpp -------------------------------------------------------------------------------- /Codeforces/1330/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1330/c.cpp -------------------------------------------------------------------------------- /Codeforces/1330/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1330/d.cpp -------------------------------------------------------------------------------- /Codeforces/1332/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1332/a.cpp -------------------------------------------------------------------------------- /Codeforces/1332/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1332/b.cpp -------------------------------------------------------------------------------- /Codeforces/1332/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1332/c.cpp -------------------------------------------------------------------------------- /Codeforces/1332/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1332/d.cpp -------------------------------------------------------------------------------- /Codeforces/1333/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1333/a.cpp -------------------------------------------------------------------------------- /Codeforces/1333/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1333/b.cpp -------------------------------------------------------------------------------- /Codeforces/1333/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1333/f.cpp -------------------------------------------------------------------------------- /Codeforces/1334/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1334/a.cpp -------------------------------------------------------------------------------- /Codeforces/1334/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1334/b.cpp -------------------------------------------------------------------------------- /Codeforces/1334/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1334/c.cpp -------------------------------------------------------------------------------- /Codeforces/1334/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1334/d.cpp -------------------------------------------------------------------------------- /Codeforces/1335/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1335/d.cpp -------------------------------------------------------------------------------- /Codeforces/1335/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1335/e.cpp -------------------------------------------------------------------------------- /Codeforces/1337/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1337/a.cpp -------------------------------------------------------------------------------- /Codeforces/1337/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1337/b.cpp -------------------------------------------------------------------------------- /Codeforces/1337/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1337/c.cpp -------------------------------------------------------------------------------- /Codeforces/1337/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1337/d.cpp -------------------------------------------------------------------------------- /Codeforces/1339/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1339/a.cpp -------------------------------------------------------------------------------- /Codeforces/1339/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1339/b.cpp -------------------------------------------------------------------------------- /Codeforces/1339/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1339/c.cpp -------------------------------------------------------------------------------- /Codeforces/1341/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1341/a.cpp -------------------------------------------------------------------------------- /Codeforces/1341/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1341/b.cpp -------------------------------------------------------------------------------- /Codeforces/1341/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1341/c.cpp -------------------------------------------------------------------------------- /Codeforces/1341/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1341/d.cpp -------------------------------------------------------------------------------- /Codeforces/1342/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1342/a.cpp -------------------------------------------------------------------------------- /Codeforces/1342/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1342/b.cpp -------------------------------------------------------------------------------- /Codeforces/1342/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1342/c.cpp -------------------------------------------------------------------------------- /Codeforces/1342/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1342/d.cpp -------------------------------------------------------------------------------- /Codeforces/1343/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1343/a.cpp -------------------------------------------------------------------------------- /Codeforces/1343/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1343/b.cpp -------------------------------------------------------------------------------- /Codeforces/1343/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1343/c.cpp -------------------------------------------------------------------------------- /Codeforces/1343/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1343/d.cpp -------------------------------------------------------------------------------- /Codeforces/1345/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1345/a.cpp -------------------------------------------------------------------------------- /Codeforces/1345/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1345/b.cpp -------------------------------------------------------------------------------- /Codeforces/1345/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1345/c.cpp -------------------------------------------------------------------------------- /Codeforces/1345/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1345/d.cpp -------------------------------------------------------------------------------- /Codeforces/1348/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1348/a.cpp -------------------------------------------------------------------------------- /Codeforces/1348/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1348/c.cpp -------------------------------------------------------------------------------- /Codeforces/1348/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1348/d.cpp -------------------------------------------------------------------------------- /Codeforces/1350/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1350/a.cpp -------------------------------------------------------------------------------- /Codeforces/1350/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1350/b.cpp -------------------------------------------------------------------------------- /Codeforces/1350/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1350/c.cpp -------------------------------------------------------------------------------- /Codeforces/1350/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1350/d.cpp -------------------------------------------------------------------------------- /Codeforces/1350/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1350/e.cpp -------------------------------------------------------------------------------- /Codeforces/1351/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1351/a.cpp -------------------------------------------------------------------------------- /Codeforces/1351/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1351/b.cpp -------------------------------------------------------------------------------- /Codeforces/1352/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1352/a.cpp -------------------------------------------------------------------------------- /Codeforces/1352/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1352/b.cpp -------------------------------------------------------------------------------- /Codeforces/1352/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1352/c.cpp -------------------------------------------------------------------------------- /Codeforces/1352/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1352/d.cpp -------------------------------------------------------------------------------- /Codeforces/1352/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1352/e.cpp -------------------------------------------------------------------------------- /Codeforces/1352/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1352/f.cpp -------------------------------------------------------------------------------- /Codeforces/1352/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1352/g.cpp -------------------------------------------------------------------------------- /Codeforces/1353/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1353/a.cpp -------------------------------------------------------------------------------- /Codeforces/1353/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1353/b.cpp -------------------------------------------------------------------------------- /Codeforces/1353/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1353/c.cpp -------------------------------------------------------------------------------- /Codeforces/1353/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1353/d.cpp -------------------------------------------------------------------------------- /Codeforces/1354/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1354/a.cpp -------------------------------------------------------------------------------- /Codeforces/1354/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1354/b.cpp -------------------------------------------------------------------------------- /Codeforces/1354/c1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1354/c1.cpp -------------------------------------------------------------------------------- /Codeforces/1355/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1355/a.cpp -------------------------------------------------------------------------------- /Codeforces/1355/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1355/b.cpp -------------------------------------------------------------------------------- /Codeforces/1355/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1355/c.cpp -------------------------------------------------------------------------------- /Codeforces/1355/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1355/d.cpp -------------------------------------------------------------------------------- /Codeforces/1358/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1358/a.cpp -------------------------------------------------------------------------------- /Codeforces/1358/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1358/b.cpp -------------------------------------------------------------------------------- /Codeforces/1358/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1358/c.cpp -------------------------------------------------------------------------------- /Codeforces/1358/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1358/d.cpp -------------------------------------------------------------------------------- /Codeforces/1359/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1359/a.cpp -------------------------------------------------------------------------------- /Codeforces/1359/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1359/b.cpp -------------------------------------------------------------------------------- /Codeforces/1359/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1359/c.cpp -------------------------------------------------------------------------------- /Codeforces/1359/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1359/d.cpp -------------------------------------------------------------------------------- /Codeforces/1359/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1359/e.cpp -------------------------------------------------------------------------------- /Codeforces/136/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/136/a.cpp -------------------------------------------------------------------------------- /Codeforces/1360/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1360/a.cpp -------------------------------------------------------------------------------- /Codeforces/1360/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1360/b.cpp -------------------------------------------------------------------------------- /Codeforces/1360/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1360/c.cpp -------------------------------------------------------------------------------- /Codeforces/1360/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1360/d.cpp -------------------------------------------------------------------------------- /Codeforces/1360/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1360/e.cpp -------------------------------------------------------------------------------- /Codeforces/1360/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1360/f.cpp -------------------------------------------------------------------------------- /Codeforces/1360/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1360/g.cpp -------------------------------------------------------------------------------- /Codeforces/1360/h.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1360/h.cpp -------------------------------------------------------------------------------- /Codeforces/1362/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1362/a.cpp -------------------------------------------------------------------------------- /Codeforces/1362/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1362/b.cpp -------------------------------------------------------------------------------- /Codeforces/1362/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1362/c.cpp -------------------------------------------------------------------------------- /Codeforces/1362/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1362/d.cpp -------------------------------------------------------------------------------- /Codeforces/1363/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1363/a.cpp -------------------------------------------------------------------------------- /Codeforces/1363/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1363/b.cpp -------------------------------------------------------------------------------- /Codeforces/1363/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1363/c.cpp -------------------------------------------------------------------------------- /Codeforces/1363/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1363/d.cpp -------------------------------------------------------------------------------- /Codeforces/1363/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1363/e.cpp -------------------------------------------------------------------------------- /Codeforces/1364/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1364/a.cpp -------------------------------------------------------------------------------- /Codeforces/1364/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1364/b.cpp -------------------------------------------------------------------------------- /Codeforces/1364/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1364/c.cpp -------------------------------------------------------------------------------- /Codeforces/1365/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1365/a.cpp -------------------------------------------------------------------------------- /Codeforces/1365/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1365/b.cpp -------------------------------------------------------------------------------- /Codeforces/1365/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1365/c.cpp -------------------------------------------------------------------------------- /Codeforces/1365/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1365/d.cpp -------------------------------------------------------------------------------- /Codeforces/1365/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1365/e.cpp -------------------------------------------------------------------------------- /Codeforces/1366/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1366/a.cpp -------------------------------------------------------------------------------- /Codeforces/1366/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1366/b.cpp -------------------------------------------------------------------------------- /Codeforces/1366/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1366/c.cpp -------------------------------------------------------------------------------- /Codeforces/1366/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1366/d.cpp -------------------------------------------------------------------------------- /Codeforces/1366/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1366/e.cpp -------------------------------------------------------------------------------- /Codeforces/1367/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1367/a.cpp -------------------------------------------------------------------------------- /Codeforces/1367/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1367/b.cpp -------------------------------------------------------------------------------- /Codeforces/1367/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1367/d.cpp -------------------------------------------------------------------------------- /Codeforces/1367/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1367/e.cpp -------------------------------------------------------------------------------- /Codeforces/1368/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1368/a.cpp -------------------------------------------------------------------------------- /Codeforces/1368/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1368/b.cpp -------------------------------------------------------------------------------- /Codeforces/1368/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1368/c.cpp -------------------------------------------------------------------------------- /Codeforces/1368/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1368/d.cpp -------------------------------------------------------------------------------- /Codeforces/1369/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1369/c.cpp -------------------------------------------------------------------------------- /Codeforces/1369/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1369/d.cpp -------------------------------------------------------------------------------- /Codeforces/1370/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1370/c.cpp -------------------------------------------------------------------------------- /Codeforces/1370/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1370/d.cpp -------------------------------------------------------------------------------- /Codeforces/1371/e1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1371/e1.cpp -------------------------------------------------------------------------------- /Codeforces/1372/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1372/d.cpp -------------------------------------------------------------------------------- /Codeforces/1373/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1373/d.cpp -------------------------------------------------------------------------------- /Codeforces/1374/e1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1374/e1.cpp -------------------------------------------------------------------------------- /Codeforces/1375/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1375/a.cpp -------------------------------------------------------------------------------- /Codeforces/1375/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1375/b.cpp -------------------------------------------------------------------------------- /Codeforces/1375/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1375/c.cpp -------------------------------------------------------------------------------- /Codeforces/1375/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1375/d.cpp -------------------------------------------------------------------------------- /Codeforces/1379/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1379/c.cpp -------------------------------------------------------------------------------- /Codeforces/1380/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1380/d.cpp -------------------------------------------------------------------------------- /Codeforces/1382/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1382/c.cpp -------------------------------------------------------------------------------- /Codeforces/1382/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1382/d.cpp -------------------------------------------------------------------------------- /Codeforces/1384/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1384/c.cpp -------------------------------------------------------------------------------- /Codeforces/1384/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1384/d.cpp -------------------------------------------------------------------------------- /Codeforces/1385/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1385/e.cpp -------------------------------------------------------------------------------- /Codeforces/1388/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1388/c.cpp -------------------------------------------------------------------------------- /Codeforces/1388/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1388/d.cpp -------------------------------------------------------------------------------- /Codeforces/1389/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1389/e.cpp -------------------------------------------------------------------------------- /Codeforces/1391/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1391/d.cpp -------------------------------------------------------------------------------- /Codeforces/1392/d.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1392/d.java -------------------------------------------------------------------------------- /Codeforces/1392/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1392/e.cpp -------------------------------------------------------------------------------- /Codeforces/1393/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1393/c.cpp -------------------------------------------------------------------------------- /Codeforces/1393/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1393/d.cpp -------------------------------------------------------------------------------- /Codeforces/1395/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1395/c.cpp -------------------------------------------------------------------------------- /Codeforces/1395/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1395/d.cpp -------------------------------------------------------------------------------- /Codeforces/1397/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1397/d.cpp -------------------------------------------------------------------------------- /Codeforces/1398/d.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1398/d.java -------------------------------------------------------------------------------- /Codeforces/1398/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1398/e.cpp -------------------------------------------------------------------------------- /Codeforces/1399/e1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1399/e1.cpp -------------------------------------------------------------------------------- /Codeforces/1400/d.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1400/d.java -------------------------------------------------------------------------------- /Codeforces/1400/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1400/e.cpp -------------------------------------------------------------------------------- /Codeforces/1401/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1401/d.cpp -------------------------------------------------------------------------------- /Codeforces/1401/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1401/e.cpp -------------------------------------------------------------------------------- /Codeforces/1405/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1405/d.cpp -------------------------------------------------------------------------------- /Codeforces/1405/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1405/e.cpp -------------------------------------------------------------------------------- /Codeforces/1408/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1408/d.cpp -------------------------------------------------------------------------------- /Codeforces/1409/a.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1409/a.kt -------------------------------------------------------------------------------- /Codeforces/1409/b.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1409/b.kt -------------------------------------------------------------------------------- /Codeforces/1409/c.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1409/c.kt -------------------------------------------------------------------------------- /Codeforces/1409/d.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1409/d.java -------------------------------------------------------------------------------- /Codeforces/1409/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1409/e.cpp -------------------------------------------------------------------------------- /Codeforces/1409/f.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1409/f.java -------------------------------------------------------------------------------- /Codeforces/141/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/141/a.cpp -------------------------------------------------------------------------------- /Codeforces/1411/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1411/d.cpp -------------------------------------------------------------------------------- /Codeforces/1413/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1413/e.cpp -------------------------------------------------------------------------------- /Codeforces/1415/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1415/d.cpp -------------------------------------------------------------------------------- /Codeforces/1415/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1415/e.cpp -------------------------------------------------------------------------------- /Codeforces/1417/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1417/d.cpp -------------------------------------------------------------------------------- /Codeforces/1417/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1417/e.cpp -------------------------------------------------------------------------------- /Codeforces/1418/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1418/d.cpp -------------------------------------------------------------------------------- /Codeforces/1419/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1419/e.cpp -------------------------------------------------------------------------------- /Codeforces/1420/c1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1420/c1.cpp -------------------------------------------------------------------------------- /Codeforces/1420/c2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1420/c2.cpp -------------------------------------------------------------------------------- /Codeforces/1420/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1420/d.cpp -------------------------------------------------------------------------------- /Codeforces/1422/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1422/c.cpp -------------------------------------------------------------------------------- /Codeforces/1422/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1422/d.cpp -------------------------------------------------------------------------------- /Codeforces/1426/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1426/e.cpp -------------------------------------------------------------------------------- /Codeforces/1426/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1426/f.cpp -------------------------------------------------------------------------------- /Codeforces/1427/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1427/c.cpp -------------------------------------------------------------------------------- /Codeforces/1427/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1427/d.cpp -------------------------------------------------------------------------------- /Codeforces/1428/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1428/a.cpp -------------------------------------------------------------------------------- /Codeforces/1428/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1428/b.cpp -------------------------------------------------------------------------------- /Codeforces/1428/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1428/c.cpp -------------------------------------------------------------------------------- /Codeforces/1428/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1428/d.cpp -------------------------------------------------------------------------------- /Codeforces/1428/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1428/e.cpp -------------------------------------------------------------------------------- /Codeforces/1430/e.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1430/e.java -------------------------------------------------------------------------------- /Codeforces/1433/f.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1433/f.java -------------------------------------------------------------------------------- /Codeforces/1433/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1433/g.cpp -------------------------------------------------------------------------------- /Codeforces/1436/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1436/d.cpp -------------------------------------------------------------------------------- /Codeforces/1437/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1437/e.cpp -------------------------------------------------------------------------------- /Codeforces/1438/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1438/c.cpp -------------------------------------------------------------------------------- /Codeforces/1438/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1438/d.cpp -------------------------------------------------------------------------------- /Codeforces/1442/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1442/a.cpp -------------------------------------------------------------------------------- /Codeforces/1447/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1447/e.cpp -------------------------------------------------------------------------------- /Codeforces/1450/c1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1450/c1.cpp -------------------------------------------------------------------------------- /Codeforces/1450/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1450/f.cpp -------------------------------------------------------------------------------- /Codeforces/1451/e1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1451/e1.cpp -------------------------------------------------------------------------------- /Codeforces/1451/e2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1451/e2.cpp -------------------------------------------------------------------------------- /Codeforces/1452/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1452/d.cpp -------------------------------------------------------------------------------- /Codeforces/1453/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1453/d.cpp -------------------------------------------------------------------------------- /Codeforces/1454/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1454/e.cpp -------------------------------------------------------------------------------- /Codeforces/1454/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1454/f.cpp -------------------------------------------------------------------------------- /Codeforces/1455/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1455/b.cpp -------------------------------------------------------------------------------- /Codeforces/1459/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1459/d.cpp -------------------------------------------------------------------------------- /Codeforces/1461/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1461/e.cpp -------------------------------------------------------------------------------- /Codeforces/1463/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1463/a.cpp -------------------------------------------------------------------------------- /Codeforces/1466/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1466/f.cpp -------------------------------------------------------------------------------- /Codeforces/1467/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1467/b.cpp -------------------------------------------------------------------------------- /Codeforces/1467/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1467/d.cpp -------------------------------------------------------------------------------- /Codeforces/1468/a.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1468/a.java -------------------------------------------------------------------------------- /Codeforces/1468/h.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1468/h.java -------------------------------------------------------------------------------- /Codeforces/1471/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1471/f.cpp -------------------------------------------------------------------------------- /Codeforces/1472/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1472/f.cpp -------------------------------------------------------------------------------- /Codeforces/1472/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1472/g.cpp -------------------------------------------------------------------------------- /Codeforces/1473/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1473/d.cpp -------------------------------------------------------------------------------- /Codeforces/1473/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1473/e.cpp -------------------------------------------------------------------------------- /Codeforces/1474/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1474/a.cpp -------------------------------------------------------------------------------- /Codeforces/1474/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1474/b.cpp -------------------------------------------------------------------------------- /Codeforces/1474/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1474/c.cpp -------------------------------------------------------------------------------- /Codeforces/1474/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1474/d.cpp -------------------------------------------------------------------------------- /Codeforces/1475/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1475/a.cpp -------------------------------------------------------------------------------- /Codeforces/1475/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1475/b.cpp -------------------------------------------------------------------------------- /Codeforces/1475/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1475/c.cpp -------------------------------------------------------------------------------- /Codeforces/1475/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1475/e.cpp -------------------------------------------------------------------------------- /Codeforces/1475/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1475/f.cpp -------------------------------------------------------------------------------- /Codeforces/1475/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1475/g.cpp -------------------------------------------------------------------------------- /Codeforces/1476/b.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1476/b.java -------------------------------------------------------------------------------- /Codeforces/1478/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1478/f.cpp -------------------------------------------------------------------------------- /Codeforces/1479/b1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1479/b1.cpp -------------------------------------------------------------------------------- /Codeforces/1479/b2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1479/b2.cpp -------------------------------------------------------------------------------- /Codeforces/1481/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1481/d.cpp -------------------------------------------------------------------------------- /Codeforces/1482/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1482/e.cpp -------------------------------------------------------------------------------- /Codeforces/1485/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1485/d.cpp -------------------------------------------------------------------------------- /Codeforces/1486/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1486/a.cpp -------------------------------------------------------------------------------- /Codeforces/1486/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1486/b.cpp -------------------------------------------------------------------------------- /Codeforces/1486/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1486/c.cpp -------------------------------------------------------------------------------- /Codeforces/1486/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1486/d.cpp -------------------------------------------------------------------------------- /Codeforces/1486/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1486/e.cpp -------------------------------------------------------------------------------- /Codeforces/1487/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1487/d.cpp -------------------------------------------------------------------------------- /Codeforces/1487/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1487/e.cpp -------------------------------------------------------------------------------- /Codeforces/1490/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1490/c.cpp -------------------------------------------------------------------------------- /Codeforces/1490/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1490/g.cpp -------------------------------------------------------------------------------- /Codeforces/1491/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1491/c.cpp -------------------------------------------------------------------------------- /Codeforces/1491/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1491/d.cpp -------------------------------------------------------------------------------- /Codeforces/1491/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1491/e.cpp -------------------------------------------------------------------------------- /Codeforces/1492/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1492/a.cpp -------------------------------------------------------------------------------- /Codeforces/1492/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1492/b.cpp -------------------------------------------------------------------------------- /Codeforces/1492/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1492/c.cpp -------------------------------------------------------------------------------- /Codeforces/1492/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1492/d.cpp -------------------------------------------------------------------------------- /Codeforces/1493/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1493/a.cpp -------------------------------------------------------------------------------- /Codeforces/1493/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1493/c.cpp -------------------------------------------------------------------------------- /Codeforces/1493/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1493/d.cpp -------------------------------------------------------------------------------- /Codeforces/1494/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1494/c.cpp -------------------------------------------------------------------------------- /Codeforces/1496/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1496/a.cpp -------------------------------------------------------------------------------- /Codeforces/1496/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1496/b.cpp -------------------------------------------------------------------------------- /Codeforces/1496/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1496/c.cpp -------------------------------------------------------------------------------- /Codeforces/1496/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1496/d.cpp -------------------------------------------------------------------------------- /Codeforces/1496/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1496/e.cpp -------------------------------------------------------------------------------- /Codeforces/1497/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1497/b.cpp -------------------------------------------------------------------------------- /Codeforces/1497/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1497/c.cpp -------------------------------------------------------------------------------- /Codeforces/1498/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1498/d.cpp -------------------------------------------------------------------------------- /Codeforces/1499/d.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1499/d.java -------------------------------------------------------------------------------- /Codeforces/1500/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1500/a.cpp -------------------------------------------------------------------------------- /Codeforces/1500/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1500/b.cpp -------------------------------------------------------------------------------- /Codeforces/1504/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1504/e.cpp -------------------------------------------------------------------------------- /Codeforces/1505/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1505/a.cpp -------------------------------------------------------------------------------- /Codeforces/1505/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1505/b.cpp -------------------------------------------------------------------------------- /Codeforces/1505/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1505/c.cpp -------------------------------------------------------------------------------- /Codeforces/1505/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1505/e.cpp -------------------------------------------------------------------------------- /Codeforces/1506/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1506/f.cpp -------------------------------------------------------------------------------- /Codeforces/1506/g.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1506/g.java -------------------------------------------------------------------------------- /Codeforces/1509/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1509/c.cpp -------------------------------------------------------------------------------- /Codeforces/1511/a.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1511/a.java -------------------------------------------------------------------------------- /Codeforces/1511/b.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1511/b.java -------------------------------------------------------------------------------- /Codeforces/1511/c.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1511/c.java -------------------------------------------------------------------------------- /Codeforces/1511/d.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1511/d.java -------------------------------------------------------------------------------- /Codeforces/1511/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1511/e.cpp -------------------------------------------------------------------------------- /Codeforces/1512/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1512/f.cpp -------------------------------------------------------------------------------- /Codeforces/1513/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1513/d.cpp -------------------------------------------------------------------------------- /Codeforces/1514/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1514/d.cpp -------------------------------------------------------------------------------- /Codeforces/1515/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1515/e.cpp -------------------------------------------------------------------------------- /Codeforces/1515/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1515/f.cpp -------------------------------------------------------------------------------- /Codeforces/1516/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1516/d.cpp -------------------------------------------------------------------------------- /Codeforces/1517/a.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1517/a.java -------------------------------------------------------------------------------- /Codeforces/1517/b.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1517/b.java -------------------------------------------------------------------------------- /Codeforces/1517/c.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1517/c.java -------------------------------------------------------------------------------- /Codeforces/1517/d.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1517/d.java -------------------------------------------------------------------------------- /Codeforces/1519/a.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1519/a.java -------------------------------------------------------------------------------- /Codeforces/1519/b.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1519/b.java -------------------------------------------------------------------------------- /Codeforces/1519/c.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1519/c.java -------------------------------------------------------------------------------- /Codeforces/1519/d.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1519/d.java -------------------------------------------------------------------------------- /Codeforces/152/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/152/c.cpp -------------------------------------------------------------------------------- /Codeforces/1520/a.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1520/a.java -------------------------------------------------------------------------------- /Codeforces/1520/b.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1520/b.java -------------------------------------------------------------------------------- /Codeforces/1520/c.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1520/c.java -------------------------------------------------------------------------------- /Codeforces/1520/d.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1520/d.java -------------------------------------------------------------------------------- /Codeforces/1520/e.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1520/e.java -------------------------------------------------------------------------------- /Codeforces/1520/f1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1520/f1.java -------------------------------------------------------------------------------- /Codeforces/1520/f2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1520/f2.cpp -------------------------------------------------------------------------------- /Codeforces/1520/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1520/g.cpp -------------------------------------------------------------------------------- /Codeforces/1521/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1521/c.cpp -------------------------------------------------------------------------------- /Codeforces/1523/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1523/a.cpp -------------------------------------------------------------------------------- /Codeforces/1523/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1523/b.cpp -------------------------------------------------------------------------------- /Codeforces/1523/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1523/c.cpp -------------------------------------------------------------------------------- /Codeforces/1525/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1525/b.cpp -------------------------------------------------------------------------------- /Codeforces/1525/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1525/c.cpp -------------------------------------------------------------------------------- /Codeforces/1525/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1525/d.cpp -------------------------------------------------------------------------------- /Codeforces/1525/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1525/e.cpp -------------------------------------------------------------------------------- /Codeforces/1526/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1526/d.cpp -------------------------------------------------------------------------------- /Codeforces/1527/b1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1527/b1.cpp -------------------------------------------------------------------------------- /Codeforces/1527/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1527/d.cpp -------------------------------------------------------------------------------- /Codeforces/1527/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1527/e.cpp -------------------------------------------------------------------------------- /Codeforces/1528/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1528/d.cpp -------------------------------------------------------------------------------- /Codeforces/1530/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1530/a.cpp -------------------------------------------------------------------------------- /Codeforces/1530/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1530/b.cpp -------------------------------------------------------------------------------- /Codeforces/1530/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1530/c.cpp -------------------------------------------------------------------------------- /Codeforces/1530/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1530/d.cpp -------------------------------------------------------------------------------- /Codeforces/1530/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1530/e.cpp -------------------------------------------------------------------------------- /Codeforces/1534/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1534/b.cpp -------------------------------------------------------------------------------- /Codeforces/1534/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1534/d.cpp -------------------------------------------------------------------------------- /Codeforces/1534/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1534/e.cpp -------------------------------------------------------------------------------- /Codeforces/1535/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1535/a.cpp -------------------------------------------------------------------------------- /Codeforces/1535/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1535/b.cpp -------------------------------------------------------------------------------- /Codeforces/1535/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1535/c.cpp -------------------------------------------------------------------------------- /Codeforces/1535/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1535/d.cpp -------------------------------------------------------------------------------- /Codeforces/1535/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1535/e.cpp -------------------------------------------------------------------------------- /Codeforces/1536/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1536/a.cpp -------------------------------------------------------------------------------- /Codeforces/1536/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1536/b.cpp -------------------------------------------------------------------------------- /Codeforces/1536/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1536/c.cpp -------------------------------------------------------------------------------- /Codeforces/1536/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1536/d.cpp -------------------------------------------------------------------------------- /Codeforces/1536/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1536/e.cpp -------------------------------------------------------------------------------- /Codeforces/1537/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1537/e.cpp -------------------------------------------------------------------------------- /Codeforces/1537/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1537/f.cpp -------------------------------------------------------------------------------- /Codeforces/1538/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1538/c.cpp -------------------------------------------------------------------------------- /Codeforces/1538/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1538/d.cpp -------------------------------------------------------------------------------- /Codeforces/1538/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1538/e.cpp -------------------------------------------------------------------------------- /Codeforces/1538/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1538/f.cpp -------------------------------------------------------------------------------- /Codeforces/1538/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1538/g.cpp -------------------------------------------------------------------------------- /Codeforces/1539/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1539/d.cpp -------------------------------------------------------------------------------- /Codeforces/1541/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1541/c.cpp -------------------------------------------------------------------------------- /Codeforces/1541/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1541/d.cpp -------------------------------------------------------------------------------- /Codeforces/1542/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1542/d.cpp -------------------------------------------------------------------------------- /Codeforces/1543/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1543/a.cpp -------------------------------------------------------------------------------- /Codeforces/1543/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1543/b.cpp -------------------------------------------------------------------------------- /Codeforces/1543/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1543/c.cpp -------------------------------------------------------------------------------- /Codeforces/1543/d1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1543/d1.cpp -------------------------------------------------------------------------------- /Codeforces/1543/d2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1543/d2.cpp -------------------------------------------------------------------------------- /Codeforces/1546/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1546/c.cpp -------------------------------------------------------------------------------- /Codeforces/1547/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1547/d.cpp -------------------------------------------------------------------------------- /Codeforces/1547/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1547/e.cpp -------------------------------------------------------------------------------- /Codeforces/1547/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1547/f.cpp -------------------------------------------------------------------------------- /Codeforces/1547/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1547/g.cpp -------------------------------------------------------------------------------- /Codeforces/1549/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1549/c.cpp -------------------------------------------------------------------------------- /Codeforces/1549/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1549/d.cpp -------------------------------------------------------------------------------- /Codeforces/1550/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1550/d.cpp -------------------------------------------------------------------------------- /Codeforces/1551/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1551/a.cpp -------------------------------------------------------------------------------- /Codeforces/1551/b1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1551/b1.cpp -------------------------------------------------------------------------------- /Codeforces/1551/b2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1551/b2.cpp -------------------------------------------------------------------------------- /Codeforces/1551/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1551/e.cpp -------------------------------------------------------------------------------- /Codeforces/1551/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1551/f.cpp -------------------------------------------------------------------------------- /Codeforces/1552/a.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1552/a.java -------------------------------------------------------------------------------- /Codeforces/1552/b.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1552/b.java -------------------------------------------------------------------------------- /Codeforces/1552/c.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1552/c.java -------------------------------------------------------------------------------- /Codeforces/1552/d.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1552/d.java -------------------------------------------------------------------------------- /Codeforces/1552/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1552/e.cpp -------------------------------------------------------------------------------- /Codeforces/1552/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1552/f.cpp -------------------------------------------------------------------------------- /Codeforces/1553/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1553/d.cpp -------------------------------------------------------------------------------- /Codeforces/1553/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1553/e.cpp -------------------------------------------------------------------------------- /Codeforces/1553/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1553/f.cpp -------------------------------------------------------------------------------- /Codeforces/1554/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1554/e.cpp -------------------------------------------------------------------------------- /Codeforces/1555/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1555/e.cpp -------------------------------------------------------------------------------- /Codeforces/1556/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1556/e.cpp -------------------------------------------------------------------------------- /Codeforces/1557/a.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1557/a.java -------------------------------------------------------------------------------- /Codeforces/1557/b.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1557/b.java -------------------------------------------------------------------------------- /Codeforces/1557/c.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1557/c.java -------------------------------------------------------------------------------- /Codeforces/1557/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1557/d.cpp -------------------------------------------------------------------------------- /Codeforces/1559/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1559/e.cpp -------------------------------------------------------------------------------- /Codeforces/1567/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1567/e.cpp -------------------------------------------------------------------------------- /Codeforces/1579/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1579/g.cpp -------------------------------------------------------------------------------- /Codeforces/158/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/158/b.cpp -------------------------------------------------------------------------------- /Codeforces/1583/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1583/e.cpp -------------------------------------------------------------------------------- /Codeforces/1583/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1583/f.cpp -------------------------------------------------------------------------------- /Codeforces/1594/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1594/f.cpp -------------------------------------------------------------------------------- /Codeforces/1598/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1598/f.cpp -------------------------------------------------------------------------------- /Codeforces/160/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/160/a.cpp -------------------------------------------------------------------------------- /Codeforces/160/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/160/d.cpp -------------------------------------------------------------------------------- /Codeforces/1601/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1601/c.cpp -------------------------------------------------------------------------------- /Codeforces/1605/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1605/e.cpp -------------------------------------------------------------------------------- /Codeforces/1606/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1606/d.cpp -------------------------------------------------------------------------------- /Codeforces/1606/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1606/e.cpp -------------------------------------------------------------------------------- /Codeforces/1609/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1609/e.cpp -------------------------------------------------------------------------------- /Codeforces/1611/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1611/a.cpp -------------------------------------------------------------------------------- /Codeforces/1611/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1611/b.cpp -------------------------------------------------------------------------------- /Codeforces/1611/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1611/c.cpp -------------------------------------------------------------------------------- /Codeforces/1611/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1611/d.cpp -------------------------------------------------------------------------------- /Codeforces/1611/e1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1611/e1.cpp -------------------------------------------------------------------------------- /Codeforces/1611/e2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1611/e2.cpp -------------------------------------------------------------------------------- /Codeforces/1611/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1611/f.cpp -------------------------------------------------------------------------------- /Codeforces/1611/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1611/g.cpp -------------------------------------------------------------------------------- /Codeforces/1615/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1615/a.cpp -------------------------------------------------------------------------------- /Codeforces/1615/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1615/b.cpp -------------------------------------------------------------------------------- /Codeforces/1615/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1615/c.cpp -------------------------------------------------------------------------------- /Codeforces/1615/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1615/d.cpp -------------------------------------------------------------------------------- /Codeforces/1615/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1615/e.cpp -------------------------------------------------------------------------------- /Codeforces/1616/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1616/e.cpp -------------------------------------------------------------------------------- /Codeforces/1617/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1617/d.cpp -------------------------------------------------------------------------------- /Codeforces/1618/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1618/g.cpp -------------------------------------------------------------------------------- /Codeforces/1619/h.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1619/h.cpp -------------------------------------------------------------------------------- /Codeforces/1620/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1620/g.cpp -------------------------------------------------------------------------------- /Codeforces/1621/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1621/a.cpp -------------------------------------------------------------------------------- /Codeforces/1621/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1621/b.cpp -------------------------------------------------------------------------------- /Codeforces/1621/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1621/c.cpp -------------------------------------------------------------------------------- /Codeforces/1621/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1621/d.cpp -------------------------------------------------------------------------------- /Codeforces/1621/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1621/e.cpp -------------------------------------------------------------------------------- /Codeforces/1622/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1622/a.cpp -------------------------------------------------------------------------------- /Codeforces/1622/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1622/b.cpp -------------------------------------------------------------------------------- /Codeforces/1622/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1622/c.cpp -------------------------------------------------------------------------------- /Codeforces/1622/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1622/d.cpp -------------------------------------------------------------------------------- /Codeforces/1622/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1622/e.cpp -------------------------------------------------------------------------------- /Codeforces/1623/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1623/d.cpp -------------------------------------------------------------------------------- /Codeforces/1626/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1626/e.cpp -------------------------------------------------------------------------------- /Codeforces/1629/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1629/e.cpp -------------------------------------------------------------------------------- /Codeforces/1629/f1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1629/f1.cpp -------------------------------------------------------------------------------- /Codeforces/1635/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1635/e.cpp -------------------------------------------------------------------------------- /Codeforces/1637/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1637/e.cpp -------------------------------------------------------------------------------- /Codeforces/1638/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1638/e.cpp -------------------------------------------------------------------------------- /Codeforces/1644/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1644/b.cpp -------------------------------------------------------------------------------- /Codeforces/1644/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1644/d.cpp -------------------------------------------------------------------------------- /Codeforces/1647/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1647/e.cpp -------------------------------------------------------------------------------- /Codeforces/1654/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1654/e.cpp -------------------------------------------------------------------------------- /Codeforces/1657/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1657/e.cpp -------------------------------------------------------------------------------- /Codeforces/166/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/166/a.cpp -------------------------------------------------------------------------------- /Codeforces/1660/f2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1660/f2.cpp -------------------------------------------------------------------------------- /Codeforces/1675/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1675/f.cpp -------------------------------------------------------------------------------- /Codeforces/1675/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1675/g.cpp -------------------------------------------------------------------------------- /Codeforces/1677/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1677/d.cpp -------------------------------------------------------------------------------- /Codeforces/1679/d.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1679/d.java -------------------------------------------------------------------------------- /Codeforces/1681/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1681/f.cpp -------------------------------------------------------------------------------- /Codeforces/1682/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1682/d.cpp -------------------------------------------------------------------------------- /Codeforces/1684/e.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1684/e.java -------------------------------------------------------------------------------- /Codeforces/1686/d.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1686/d.java -------------------------------------------------------------------------------- /Codeforces/1687/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1687/c.cpp -------------------------------------------------------------------------------- /Codeforces/1689/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1689/a.cpp -------------------------------------------------------------------------------- /Codeforces/1689/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1689/b.cpp -------------------------------------------------------------------------------- /Codeforces/1689/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1689/c.cpp -------------------------------------------------------------------------------- /Codeforces/1689/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1689/d.cpp -------------------------------------------------------------------------------- /Codeforces/1690/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1690/a.cpp -------------------------------------------------------------------------------- /Codeforces/1690/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1690/b.cpp -------------------------------------------------------------------------------- /Codeforces/1690/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1690/c.cpp -------------------------------------------------------------------------------- /Codeforces/1690/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1690/d.cpp -------------------------------------------------------------------------------- /Codeforces/1690/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1690/e.cpp -------------------------------------------------------------------------------- /Codeforces/1690/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1690/f.cpp -------------------------------------------------------------------------------- /Codeforces/1690/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1690/g.cpp -------------------------------------------------------------------------------- /Codeforces/1691/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1691/e.cpp -------------------------------------------------------------------------------- /Codeforces/1691/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1691/f.cpp -------------------------------------------------------------------------------- /Codeforces/1692/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1692/e.cpp -------------------------------------------------------------------------------- /Codeforces/1692/h.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1692/h.cpp -------------------------------------------------------------------------------- /Codeforces/1694/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1694/e.cpp -------------------------------------------------------------------------------- /Codeforces/1696/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1696/a.cpp -------------------------------------------------------------------------------- /Codeforces/1696/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1696/b.cpp -------------------------------------------------------------------------------- /Codeforces/1696/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1696/c.cpp -------------------------------------------------------------------------------- /Codeforces/1696/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1696/d.cpp -------------------------------------------------------------------------------- /Codeforces/1696/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1696/e.cpp -------------------------------------------------------------------------------- /Codeforces/1698/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1698/d.cpp -------------------------------------------------------------------------------- /Codeforces/1699/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1699/d.cpp -------------------------------------------------------------------------------- /Codeforces/1700/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1700/a.cpp -------------------------------------------------------------------------------- /Codeforces/1700/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1700/b.cpp -------------------------------------------------------------------------------- /Codeforces/1700/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1700/c.cpp -------------------------------------------------------------------------------- /Codeforces/1700/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1700/d.cpp -------------------------------------------------------------------------------- /Codeforces/1700/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1700/f.cpp -------------------------------------------------------------------------------- /Codeforces/1702/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1702/e.cpp -------------------------------------------------------------------------------- /Codeforces/1702/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1702/f.cpp -------------------------------------------------------------------------------- /Codeforces/1702/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1702/g.cpp -------------------------------------------------------------------------------- /Codeforces/1703/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1703/a.cpp -------------------------------------------------------------------------------- /Codeforces/1703/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1703/b.cpp -------------------------------------------------------------------------------- /Codeforces/1703/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1703/f.cpp -------------------------------------------------------------------------------- /Codeforces/1703/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1703/g.cpp -------------------------------------------------------------------------------- /Codeforces/1704/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1704/a.cpp -------------------------------------------------------------------------------- /Codeforces/1704/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1704/b.cpp -------------------------------------------------------------------------------- /Codeforces/1704/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1704/c.cpp -------------------------------------------------------------------------------- /Codeforces/1704/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1704/d.cpp -------------------------------------------------------------------------------- /Codeforces/1704/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1704/e.cpp -------------------------------------------------------------------------------- /Codeforces/1705/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1705/e.cpp -------------------------------------------------------------------------------- /Codeforces/1706/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1706/a.cpp -------------------------------------------------------------------------------- /Codeforces/1706/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1706/b.cpp -------------------------------------------------------------------------------- /Codeforces/1706/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1706/c.cpp -------------------------------------------------------------------------------- /Codeforces/1706/d1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1706/d1.cpp -------------------------------------------------------------------------------- /Codeforces/1706/d2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1706/d2.cpp -------------------------------------------------------------------------------- /Codeforces/1706/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1706/e.cpp -------------------------------------------------------------------------------- /Codeforces/1707/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1707/a.cpp -------------------------------------------------------------------------------- /Codeforces/1707/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1707/b.cpp -------------------------------------------------------------------------------- /Codeforces/1707/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1707/c.cpp -------------------------------------------------------------------------------- /Codeforces/1709/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1709/e.cpp -------------------------------------------------------------------------------- /Codeforces/1710/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1710/a.cpp -------------------------------------------------------------------------------- /Codeforces/1710/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1710/b.cpp -------------------------------------------------------------------------------- /Codeforces/1712/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1712/a.cpp -------------------------------------------------------------------------------- /Codeforces/1712/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1712/b.cpp -------------------------------------------------------------------------------- /Codeforces/1712/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1712/c.cpp -------------------------------------------------------------------------------- /Codeforces/1712/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1712/d.cpp -------------------------------------------------------------------------------- /Codeforces/1712/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1712/e.cpp -------------------------------------------------------------------------------- /Codeforces/1713/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1713/e.cpp -------------------------------------------------------------------------------- /Codeforces/1714/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1714/a.cpp -------------------------------------------------------------------------------- /Codeforces/1714/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1714/b.cpp -------------------------------------------------------------------------------- /Codeforces/1714/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1714/c.cpp -------------------------------------------------------------------------------- /Codeforces/1714/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1714/d.cpp -------------------------------------------------------------------------------- /Codeforces/1714/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1714/e.cpp -------------------------------------------------------------------------------- /Codeforces/1714/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1714/f.cpp -------------------------------------------------------------------------------- /Codeforces/1714/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1714/g.cpp -------------------------------------------------------------------------------- /Codeforces/1716/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1716/e.cpp -------------------------------------------------------------------------------- /Codeforces/1717/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1717/a.cpp -------------------------------------------------------------------------------- /Codeforces/1717/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1717/b.cpp -------------------------------------------------------------------------------- /Codeforces/1717/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1717/c.cpp -------------------------------------------------------------------------------- /Codeforces/1717/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1717/d.cpp -------------------------------------------------------------------------------- /Codeforces/1717/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1717/e.cpp -------------------------------------------------------------------------------- /Codeforces/1718/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1718/c.cpp -------------------------------------------------------------------------------- /Codeforces/1720/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1720/d.cpp -------------------------------------------------------------------------------- /Codeforces/1720/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1720/e.cpp -------------------------------------------------------------------------------- /Codeforces/1726/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1726/a.cpp -------------------------------------------------------------------------------- /Codeforces/1726/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1726/b.cpp -------------------------------------------------------------------------------- /Codeforces/1726/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1726/c.cpp -------------------------------------------------------------------------------- /Codeforces/1726/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1726/d.cpp -------------------------------------------------------------------------------- /Codeforces/1726/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1726/e.cpp -------------------------------------------------------------------------------- /Codeforces/1731/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1731/a.cpp -------------------------------------------------------------------------------- /Codeforces/1731/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1731/b.cpp -------------------------------------------------------------------------------- /Codeforces/1731/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1731/c.cpp -------------------------------------------------------------------------------- /Codeforces/1731/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1731/d.cpp -------------------------------------------------------------------------------- /Codeforces/1731/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1731/e.cpp -------------------------------------------------------------------------------- /Codeforces/1738/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1738/a.cpp -------------------------------------------------------------------------------- /Codeforces/1738/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1738/b.cpp -------------------------------------------------------------------------------- /Codeforces/1738/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1738/c.cpp -------------------------------------------------------------------------------- /Codeforces/1738/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1738/d.cpp -------------------------------------------------------------------------------- /Codeforces/1738/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1738/e.cpp -------------------------------------------------------------------------------- /Codeforces/1738/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1738/f.cpp -------------------------------------------------------------------------------- /Codeforces/1744/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1744/f.cpp -------------------------------------------------------------------------------- /Codeforces/1746/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1746/a.cpp -------------------------------------------------------------------------------- /Codeforces/1746/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1746/b.cpp -------------------------------------------------------------------------------- /Codeforces/1746/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1746/c.cpp -------------------------------------------------------------------------------- /Codeforces/1746/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1746/d.cpp -------------------------------------------------------------------------------- /Codeforces/1746/e1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1746/e1.cpp -------------------------------------------------------------------------------- /Codeforces/1748/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1748/a.cpp -------------------------------------------------------------------------------- /Codeforces/1748/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1748/b.cpp -------------------------------------------------------------------------------- /Codeforces/1748/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1748/c.cpp -------------------------------------------------------------------------------- /Codeforces/1748/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1748/d.cpp -------------------------------------------------------------------------------- /Codeforces/1748/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1748/e.cpp -------------------------------------------------------------------------------- /Codeforces/1749/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1749/e.cpp -------------------------------------------------------------------------------- /Codeforces/1750/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1750/e.cpp -------------------------------------------------------------------------------- /Codeforces/1750/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1750/f.cpp -------------------------------------------------------------------------------- /Codeforces/1764/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1764/f.cpp -------------------------------------------------------------------------------- /Codeforces/1767/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1767/e.cpp -------------------------------------------------------------------------------- /Codeforces/1768/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1768/a.cpp -------------------------------------------------------------------------------- /Codeforces/1768/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1768/b.cpp -------------------------------------------------------------------------------- /Codeforces/1768/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1768/c.cpp -------------------------------------------------------------------------------- /Codeforces/1768/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1768/d.cpp -------------------------------------------------------------------------------- /Codeforces/1768/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1768/e.cpp -------------------------------------------------------------------------------- /Codeforces/1770/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1770/a.cpp -------------------------------------------------------------------------------- /Codeforces/1770/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1770/b.cpp -------------------------------------------------------------------------------- /Codeforces/1770/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1770/c.cpp -------------------------------------------------------------------------------- /Codeforces/1770/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1770/d.cpp -------------------------------------------------------------------------------- /Codeforces/1770/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1770/e.cpp -------------------------------------------------------------------------------- /Codeforces/1779/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1779/a.cpp -------------------------------------------------------------------------------- /Codeforces/1779/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1779/b.cpp -------------------------------------------------------------------------------- /Codeforces/1779/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1779/c.cpp -------------------------------------------------------------------------------- /Codeforces/1779/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1779/d.cpp -------------------------------------------------------------------------------- /Codeforces/1779/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1779/e.cpp -------------------------------------------------------------------------------- /Codeforces/1779/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1779/f.cpp -------------------------------------------------------------------------------- /Codeforces/1790/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1790/e.cpp -------------------------------------------------------------------------------- /Codeforces/1800/f.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1800/f.java -------------------------------------------------------------------------------- /Codeforces/1811/d.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1811/d.java -------------------------------------------------------------------------------- /Codeforces/1841/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1841/b.cpp -------------------------------------------------------------------------------- /Codeforces/1844/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1844/c.cpp -------------------------------------------------------------------------------- /Codeforces/1844/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1844/d.cpp -------------------------------------------------------------------------------- /Codeforces/189/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/189/a.cpp -------------------------------------------------------------------------------- /Codeforces/1985/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1985/c.cpp -------------------------------------------------------------------------------- /Codeforces/1987/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/1987/c.cpp -------------------------------------------------------------------------------- /Codeforces/2/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/2/a.cpp -------------------------------------------------------------------------------- /Codeforces/2/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/2/b.cpp -------------------------------------------------------------------------------- /Codeforces/20/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/20/c.cpp -------------------------------------------------------------------------------- /Codeforces/208/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/208/a.cpp -------------------------------------------------------------------------------- /Codeforces/218/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/218/c.cpp -------------------------------------------------------------------------------- /Codeforces/219/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/219/a.cpp -------------------------------------------------------------------------------- /Codeforces/22/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/22/a.cpp -------------------------------------------------------------------------------- /Codeforces/22/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/22/b.cpp -------------------------------------------------------------------------------- /Codeforces/221/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/221/c.cpp -------------------------------------------------------------------------------- /Codeforces/224/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/224/b.cpp -------------------------------------------------------------------------------- /Codeforces/230/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/230/b.cpp -------------------------------------------------------------------------------- /Codeforces/236/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/236/a.cpp -------------------------------------------------------------------------------- /Codeforces/245/h.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/245/h.cpp -------------------------------------------------------------------------------- /Codeforces/25/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/25/a.cpp -------------------------------------------------------------------------------- /Codeforces/252/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/252/e.cpp -------------------------------------------------------------------------------- /Codeforces/257/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/257/c.cpp -------------------------------------------------------------------------------- /Codeforces/259/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/259/c.cpp -------------------------------------------------------------------------------- /Codeforces/265/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/265/c.cpp -------------------------------------------------------------------------------- /Codeforces/270/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/270/a.cpp -------------------------------------------------------------------------------- /Codeforces/285/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/285/a.cpp -------------------------------------------------------------------------------- /Codeforces/285/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/285/c.cpp -------------------------------------------------------------------------------- /Codeforces/29/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/29/a.cpp -------------------------------------------------------------------------------- /Codeforces/3/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/3/a.cpp -------------------------------------------------------------------------------- /Codeforces/313/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/313/b.cpp -------------------------------------------------------------------------------- /Codeforces/322/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/322/b.cpp -------------------------------------------------------------------------------- /Codeforces/327/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/327/a.cpp -------------------------------------------------------------------------------- /Codeforces/332/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/332/b.cpp -------------------------------------------------------------------------------- /Codeforces/337/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/337/a.cpp -------------------------------------------------------------------------------- /Codeforces/339/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/339/b.cpp -------------------------------------------------------------------------------- /Codeforces/349/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/349/a.cpp -------------------------------------------------------------------------------- /Codeforces/349/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/349/b.cpp -------------------------------------------------------------------------------- /Codeforces/355/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/355/c.cpp -------------------------------------------------------------------------------- /Codeforces/363/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/363/b.cpp -------------------------------------------------------------------------------- /Codeforces/378/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/378/c.cpp -------------------------------------------------------------------------------- /Codeforces/383/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/383/d.cpp -------------------------------------------------------------------------------- /Codeforces/389/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/389/c.cpp -------------------------------------------------------------------------------- /Codeforces/4/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/4/a.cpp -------------------------------------------------------------------------------- /Codeforces/4/a_short.cpp: -------------------------------------------------------------------------------- 1 | #import 2 | main(int x){scanf("%d",&x);puts(x<4|x%2?"NO":"YES");} 3 | -------------------------------------------------------------------------------- /Codeforces/4/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/4/b.cpp -------------------------------------------------------------------------------- /Codeforces/4/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/4/c.cpp -------------------------------------------------------------------------------- /Codeforces/416/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/416/c.cpp -------------------------------------------------------------------------------- /Codeforces/433/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/433/b.cpp -------------------------------------------------------------------------------- /Codeforces/437/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/437/c.cpp -------------------------------------------------------------------------------- /Codeforces/456/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/456/a.cpp -------------------------------------------------------------------------------- /Codeforces/463/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/463/b.cpp -------------------------------------------------------------------------------- /Codeforces/463/c.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/463/c.java -------------------------------------------------------------------------------- /Codeforces/478/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/478/c.cpp -------------------------------------------------------------------------------- /Codeforces/479/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/479/e.cpp -------------------------------------------------------------------------------- /Codeforces/492/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/492/e.cpp -------------------------------------------------------------------------------- /Codeforces/5/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/5/a.cpp -------------------------------------------------------------------------------- /Codeforces/5/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/5/b.cpp -------------------------------------------------------------------------------- /Codeforces/501/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/501/a.cpp -------------------------------------------------------------------------------- /Codeforces/510/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/510/b.cpp -------------------------------------------------------------------------------- /Codeforces/510/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/510/d.cpp -------------------------------------------------------------------------------- /Codeforces/524/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/524/c.cpp -------------------------------------------------------------------------------- /Codeforces/540/d.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/540/d.java -------------------------------------------------------------------------------- /Codeforces/544/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/544/d.cpp -------------------------------------------------------------------------------- /Codeforces/550/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/550/c.cpp -------------------------------------------------------------------------------- /Codeforces/579/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/579/e.cpp -------------------------------------------------------------------------------- /Codeforces/58/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/58/a.cpp -------------------------------------------------------------------------------- /Codeforces/580/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/580/a.cpp -------------------------------------------------------------------------------- /Codeforces/6/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/6/a.cpp -------------------------------------------------------------------------------- /Codeforces/6/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/6/b.cpp -------------------------------------------------------------------------------- /Codeforces/6/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/6/c.cpp -------------------------------------------------------------------------------- /Codeforces/607/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/607/b.cpp -------------------------------------------------------------------------------- /Codeforces/61/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/61/a.cpp -------------------------------------------------------------------------------- /Codeforces/618/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/618/d.cpp -------------------------------------------------------------------------------- /Codeforces/630/p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/630/p.cpp -------------------------------------------------------------------------------- /Codeforces/630/r.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/630/r.cpp -------------------------------------------------------------------------------- /Codeforces/69/a.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/69/a.java -------------------------------------------------------------------------------- /Codeforces/691/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/691/f.cpp -------------------------------------------------------------------------------- /Codeforces/698/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/698/a.cpp -------------------------------------------------------------------------------- /Codeforces/7/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/7/a.cpp -------------------------------------------------------------------------------- /Codeforces/71/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/71/a.cpp -------------------------------------------------------------------------------- /Codeforces/711/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/711/d.cpp -------------------------------------------------------------------------------- /Codeforces/714/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/714/d.cpp -------------------------------------------------------------------------------- /Codeforces/727/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/727/f.cpp -------------------------------------------------------------------------------- /Codeforces/799/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/799/a.cpp -------------------------------------------------------------------------------- /Codeforces/799/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/799/c.cpp -------------------------------------------------------------------------------- /Codeforces/799/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/799/e.cpp -------------------------------------------------------------------------------- /Codeforces/8/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/8/a.cpp -------------------------------------------------------------------------------- /Codeforces/803/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/803/e.cpp -------------------------------------------------------------------------------- /Codeforces/825/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/825/e.cpp -------------------------------------------------------------------------------- /Codeforces/835/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/835/c.cpp -------------------------------------------------------------------------------- /Codeforces/837/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/837/d.cpp -------------------------------------------------------------------------------- /Codeforces/855/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/855/b.cpp -------------------------------------------------------------------------------- /Codeforces/873/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/873/e.cpp -------------------------------------------------------------------------------- /Codeforces/893/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/893/c.cpp -------------------------------------------------------------------------------- /Codeforces/9/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/9/a.cpp -------------------------------------------------------------------------------- /Codeforces/909/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/909/c.cpp -------------------------------------------------------------------------------- /Codeforces/909/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/909/e.cpp -------------------------------------------------------------------------------- /Codeforces/910/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/910/a.cpp -------------------------------------------------------------------------------- /Codeforces/920/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/920/c.cpp -------------------------------------------------------------------------------- /Codeforces/935/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/935/b.cpp -------------------------------------------------------------------------------- /Codeforces/935/c.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/935/c.java -------------------------------------------------------------------------------- /Codeforces/939/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/939/c.cpp -------------------------------------------------------------------------------- /Codeforces/939/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/939/d.cpp -------------------------------------------------------------------------------- /Codeforces/940/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/940/e.cpp -------------------------------------------------------------------------------- /Codeforces/946/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/946/e.cpp -------------------------------------------------------------------------------- /Codeforces/959/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/959/b.cpp -------------------------------------------------------------------------------- /Codeforces/96/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/96/a.cpp -------------------------------------------------------------------------------- /Codeforces/961/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/961/b.cpp -------------------------------------------------------------------------------- /Codeforces/979/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/979/a.cpp -------------------------------------------------------------------------------- /Codeforces/981/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Codeforces/981/a.cpp -------------------------------------------------------------------------------- /DMOJ/DMOPC22nov/1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/DMOJ/DMOPC22nov/1.cpp -------------------------------------------------------------------------------- /DMOJ/DMOPC22nov/2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/DMOJ/DMOPC22nov/2.cpp -------------------------------------------------------------------------------- /DMOJ/DMOPC22nov/3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/DMOJ/DMOPC22nov/3.cpp -------------------------------------------------------------------------------- /IOI/2006/writing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/IOI/2006/writing.cpp -------------------------------------------------------------------------------- /IOI/2010/cluedo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/IOI/2010/cluedo.cpp -------------------------------------------------------------------------------- /IOI/2010/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/IOI/2010/memory.cpp -------------------------------------------------------------------------------- /IOI/2021/dna.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/IOI/2021/dna.cpp -------------------------------------------------------------------------------- /IZhO/2012/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/IZhO/2012/f.cpp -------------------------------------------------------------------------------- /JOI/2013/watching.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/JOI/2013/watching.cpp -------------------------------------------------------------------------------- /JOI/2014/pinball.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/JOI/2014/pinball.cpp -------------------------------------------------------------------------------- /JOI/2018/tents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/JOI/2018/tents.cpp -------------------------------------------------------------------------------- /JOI/2020/power.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/JOI/2020/power.cpp -------------------------------------------------------------------------------- /Kattis/3dprinter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Kattis/3dprinter.cpp -------------------------------------------------------------------------------- /Kattis/crypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Kattis/crypto.cpp -------------------------------------------------------------------------------- /Kattis/howl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Kattis/howl.cpp -------------------------------------------------------------------------------- /Kattis/polygonarea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Kattis/polygonarea.cpp -------------------------------------------------------------------------------- /Kattis/summertrip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Kattis/summertrip.cpp -------------------------------------------------------------------------------- /Kattis/terraces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/Kattis/terraces.cpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/README.md -------------------------------------------------------------------------------- /USACOtraining/4.2/job.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/USACOtraining/4.2/job.cpp -------------------------------------------------------------------------------- /USACOtraining/5.1/fc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/USACOtraining/5.1/fc.cpp -------------------------------------------------------------------------------- /directorytree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/directorytree.py -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/scarybulls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/docs/scarybulls.html -------------------------------------------------------------------------------- /helper/grader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/helper/grader.py -------------------------------------------------------------------------------- /teamscode/2022/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/teamscode/2022/b.cpp -------------------------------------------------------------------------------- /teamscode/2022/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/teamscode/2022/e.cpp -------------------------------------------------------------------------------- /teamscode/2022/h.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/teamscode/2022/h.cpp -------------------------------------------------------------------------------- /templates/BIT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/templates/BIT.cpp -------------------------------------------------------------------------------- /templates/dsu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/templates/dsu.cpp -------------------------------------------------------------------------------- /templates/nCr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyangch/competitive-programming/HEAD/templates/nCr.cpp --------------------------------------------------------------------------------