├── .gitignore ├── Advent of Code ├── 2019 │ ├── 1-1.cpp │ ├── 1-2.cpp │ ├── 2-1.cpp │ ├── 2-2.cpp │ └── 3-1.cpp ├── 2021 │ ├── 12-1.cpp │ └── 12-2.cpp ├── 2022 │ ├── 1-1.cpp │ ├── 1-2.cpp │ ├── 10-1.cpp │ ├── 10-2.cpp │ ├── 11-1.cpp │ ├── 11-2.cpp │ ├── 12-1.cpp │ ├── 12-2.cpp │ ├── 13-1.cpp │ ├── 13-2.cpp │ ├── 14-1.cpp │ ├── 14-2.cpp │ ├── 15-1.cpp │ ├── 15-2.cpp │ ├── 16-1.cpp │ ├── 16-2.cpp │ ├── 17-1.cpp │ ├── 17-2.cpp │ ├── 18-1.cpp │ ├── 18-2.cpp │ ├── 19-1.cpp │ ├── 19-2.cpp │ ├── 2-1.cpp │ ├── 2-2.cpp │ ├── 20-1.cpp │ ├── 20-2.cpp │ ├── 21-1.cpp │ ├── 21-2.cpp │ ├── 22-1.cpp │ ├── 22-2.cpp │ ├── 23-1.cpp │ ├── 23-2.cpp │ ├── 24-1.cpp │ ├── 24-2.cpp │ ├── 25-1.cpp │ ├── 3-1.cpp │ ├── 3-2.cpp │ ├── 4-1.cpp │ ├── 4-2.cpp │ ├── 5-1.cpp │ ├── 5-2.cpp │ ├── 6-1.cpp │ ├── 6-2.cpp │ ├── 7-1.cpp │ ├── 7-2.cpp │ ├── 8-1.cpp │ ├── 8-2.cpp │ ├── 9-1.cpp │ └── 9-2.cpp └── 2024 │ ├── 1-1.cpp │ ├── 1-2.cpp │ ├── 2-1.cpp │ ├── 2-2.cpp │ ├── 3-1.cpp │ ├── 3-2.cpp │ ├── 4-1.cpp │ └── 4-2.cpp ├── BOCA ├── Contest IFCE │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ ├── F.cpp │ ├── G.cpp │ ├── H.cpp │ ├── I.cpp │ ├── J.cpp │ ├── K.cpp │ ├── L.cpp │ └── prova.pdf ├── Contest UDESC │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ ├── F.cpp │ ├── G.cpp │ ├── J.cpp │ ├── L.cpp │ ├── M.cpp │ ├── N.cpp │ ├── S.cpp │ └── statements.pdf ├── Contest UNIFEI │ ├── argus.pdf │ ├── caminho.cpp │ ├── caminho.pdf │ ├── canhao.cpp │ ├── canhao.pdf │ ├── cavalo.cpp │ ├── cavalo.pdf │ ├── chapeu.cpp │ ├── chapeu.pdf │ ├── codigo.cpp │ ├── codigo.pdf │ ├── deriv.cpp │ ├── deriv.pdf │ ├── futebol.cpp │ └── futebol.pdf └── V Maratona UnB de Programação │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ ├── F.cpp │ ├── G.cpp │ ├── H.cpp │ ├── I.cpp │ ├── J.cpp │ ├── K.cpp │ ├── L.cpp │ ├── M.cpp │ ├── N.cpp │ ├── O.cpp │ └── statements.pdf ├── CSAcademy ├── CEOI 2018 Day 1 (rated for all users) │ ├── A.cpp │ ├── B.cpp │ └── C.cpp ├── CEOI 2018 Day 2 (rated for all users) │ ├── A.cpp │ └── B.cpp └── Rounds │ ├── 82 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ └── D.cpp │ └── 86 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp ├── CodCad └── 80.cpp ├── Codechef ├── Programming Cup Sao Paulo 2017 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp ├── SnackDown 2019 - Online Pre-Elimination │ ├── ANGLE.cpp │ ├── BUDDYNIM.cpp │ ├── CHQUEENS.cpp │ ├── HPIRATES.cpp │ └── INVENTRY.cpp └── SnackDown 2019 - Online Qualifier │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp ├── Codeforces ├── Gym │ ├── 220665 │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ └── F.cpp │ ├── 100109 2012-2013 ACM-ICPC, NEERC, Southern Subregional Contest │ │ ├── 20122013-acmicpc-neerc-southern-subregional-contest-en.pdf │ │ ├── B.cpp │ │ ├── E.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── J.cpp │ │ └── K.cpp │ ├── 100159 2011-2012 Facebook Hacker Cup 2012 │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── H.cpp │ │ └── statements.pdf │ ├── 100187 2013, VI Samara Regional Intercollegiate Programming Contest │ │ └── C.cpp │ ├── 100227 2013-2014 CT S01E01 Extended 2000 ACM-ICPC East Central North America Regional Contest (ECNA 2000) │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── J.cpp │ │ ├── K.cpp │ │ ├── L.cpp │ │ ├── ct-s01e01-problems-ah.pdf │ │ └── ct-s01e01-problems-il.pdf │ ├── 100228 2013-2014 CT S01E02 Extended 2003 ACM-ICPC East Central North America Regional Contest (ECNA 2003) │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ ├── K.cpp │ │ ├── L.cpp │ │ ├── ct-s01e02-problems-ah.pdf │ │ └── ct-s01e02-problems-in.pdf │ ├── 100231 2013-2014 CT S01E03 selected problems from 2002 Central European (CEPC 2002) + 2010 Southeast USA Region │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ ├── K.cpp │ │ ├── L.cpp │ │ └── statements.pdf │ ├── 100247 2013-2014 Samara SAU ACM ICPC Quarterfinal Qualification Contest │ │ ├── 20132014-samara-sau-acmicpc-quarterfinals-qualification-contest.pdf │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ ├── K.cpp │ │ └── L.cpp │ ├── 100299 2013-2014 ACM ICPC Central European Regional Contest (CERC 13) │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── F.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ ├── K.cpp │ │ ├── L.cpp │ │ └── statements.pdf │ ├── 100345 2007-2008 Winter Petrozavodsk Camp, Andrew Stankevich Contest 30 (ASC 30) │ │ ├── A.cpp │ │ ├── B.java │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── bibtex.in │ │ ├── exchange.in │ │ ├── mayors.in │ │ ├── nim.in │ │ ├── pulp.in │ │ ├── statements.pdf │ │ └── transform.in │ ├── 100357 2008-2009 Summer Petrozavodsk Camp, Andrew Stankevich Contest 31 (ASC 31) │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── D.java │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── G2.cpp │ │ ├── I.cpp │ │ ├── K.cpp │ │ ├── discuss.in │ │ └── statements.pdf │ ├── 100405 2013-2014 Northwestern European Regional Contest (NWERC 2013) │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ └── statements.pdf │ ├── 100431 2009-2010 Winter Petrozavodsk Camp, Andrew Stankevich Contest 37 (ASC 37) │ │ ├── A.cpp │ │ ├── B.java │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ └── statements.pdf │ ├── 100512 2012-2013 Summer Petrozavodsk Camp, Andrew Stankevich Contest 42 (ASC 42) │ │ ├── A.java │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── J.cpp │ │ └── statements.pdf │ ├── 100513 2014-2015 ACM-ICPC, NEERC, Southern Subregional Contest │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── E.py │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── G.py │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ ├── K.cpp │ │ ├── L.cpp │ │ ├── M.cpp │ │ └── statements.pdf │ ├── 100543 2014-2015 ACM-ICPC, Central Europe Regional Contest (CERC 14) │ │ ├── A.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ ├── K.cpp │ │ ├── L.cpp │ │ └── statements.pdf │ ├── 100589 2015 CodeCraft IIIT Hyderabad Replay │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ └── K.cpp │ ├── 100603 2009-2010 Petrozavodsk Winter Training Camp, Warsaw Contest │ │ ├── 20092010-petrozavodsk-winter-training-camp-warsaw-contest-en.pdf │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ └── J.cpp │ ├── 100610 2010-2011 ACM-ICPC, NEERC, Northern Subregional Contest │ │ ├── 20102011-acmicpc-neerc-northern-subregional-contest-en.pdf │ │ ├── A.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ └── K.cpp │ ├── 100623 2008-2009 ACM-ICPC, NEERC, Northern Subregional Contest │ │ ├── 20082009-acmicpc-neerc-northern-subregional-contest-en.pdf │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ └── K.cpp │ ├── 100650 2005-2006 ACM-ICPC East Central North America Regional Contest (ECNA 2005) │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ └── H.cpp │ ├── 100651 2004-2005 ACM-ICPC East Central North America Regional Contest (ECNA 2004) │ │ ├── 20042005-acmicpc-east-central-north-america-regional-contest-ecna-2004-en.pdf │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ └── H.cpp │ ├── 100714 2010-2011 ACM-ICPC, NEERC, Moscow Subregional Contest │ │ ├── 20102011-acmicpc-neerc-moscow-subregional-contest-en.pdf │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ ├── K.cpp │ │ └── L.cpp │ ├── 100729 2011-2012 Northwestern European Regional Contest (NWERC 2011) │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ ├── editorial.pdf │ │ └── statements.pdf │ ├── 100783 2014-2015 ACM-ICPC Southwestern Europe Regional Contest (SWERC 14) │ │ ├── 20142015-acmicpc-southwestern-europe-regional-contest-swerc-14-en.pdf │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ └── discussion.pdf │ ├── 100784 2013-2014 CTU Open Contest │ │ ├── FL.cpp │ │ ├── FM.cpp │ │ ├── FN.cpp │ │ ├── FO.cpp │ │ ├── FP.cpp │ │ ├── FQ.cpp │ │ ├── FR.cpp │ │ ├── FS.cpp │ │ └── statements.pdf │ ├── 100803 2014-2015 ACM-ICPC, Asia Tokyo Regional Contest │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── D.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ └── statements.pdf │ ├── 100923 2015 ACM National Contest Romania - Round 1 │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ ├── K.cpp │ │ └── L.cpp │ ├── 100959 2015-2016 Petrozavodsk Winter Training Camp, Makoto rng_58 Soejima Сontest 4 │ │ ├── 20152016-petrozavodsk-winter-training-camp-makoto-rng58-soejima-sontest-4-en.pdf │ │ ├── B.cpp │ │ ├── E.cpp │ │ ├── I.cpp │ │ └── L.cpp │ ├── 100960 2015-2016 Petrozavodsk Winter Training Camp, Nizhny Novgorod SU Contest │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ └── statements.pdf │ ├── 100985 II USP Freshmen Contest │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ ├── K.cpp │ │ ├── L.cpp │ │ └── M.cpp │ ├── 101040 I Brazilian Open Cup, Federal University Of Itajubá │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J1.cpp │ │ ├── J2.cpp │ │ ├── K.cpp │ │ └── L.cpp │ ├── 101041 I Brazilian Open Cup, Federal University Of Uberlandia │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ ├── K.cpp │ │ ├── L.cpp │ │ └── M.cpp │ ├── 101064 2016 USP Try-outs │ │ ├── A.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ └── K.cpp │ ├── 101072 Brazilian Open Cup 2016, UFBA │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── E.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── K.cpp │ │ └── L.cpp │ ├── 101128 2015-2016 ACM-ICPC Southwestern Europe Regional Contest (SWERC 15) │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ ├── standings.png │ │ └── statements.pdf │ ├── 101138 2016-2017 CT S03E07 Codeforces Trainings Season 3 Episode 7 - HackerEarth Problems Compilation │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── E.cpp │ │ ├── F.java │ │ ├── G.cpp │ │ ├── I.cpp │ │ ├── K.cpp │ │ └── statements.pdf │ ├── 101147 2016-2017 ACM-ICPC, Egyptian Collegiate Programming Contest (ECPC 16) │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ └── statements.pdf │ ├── 101170 2016-2017 ACM-ICPC Northwestern European Regional Programming Contest (NWERC 2016) │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ ├── K.cpp │ │ ├── editorial.pdf │ │ └── statements.pdf │ ├── 101173 2016-2017 ACM-ICPC, Central Europe Regional Contest (CERC 16) │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── E.java │ │ ├── F.cpp │ │ ├── H.cpp │ │ ├── J.cpp │ │ ├── K.cpp │ │ ├── L.cpp │ │ └── statements.pdf │ ├── 101174 2016-2017 ACM-ICPC Southwestern European Regional Programming Contest (SWERC 2016) │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── K.cpp │ │ └── statements.pdf │ ├── 101177 2016-2017 ACM-ICPC, South Pacific Regional Contest (SPPC 16) │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ ├── K.cpp │ │ ├── editorial.pdf │ │ └── statements.pdf │ ├── 101221 2014 ACM-ICPC World Finals │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ └── D.cpp │ ├── 101239 2015 ACM-ICPC World Finals │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── F.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ └── L.cpp │ ├── 101241 2013-2014 Wide-Siberian Olympiad Onsite round │ │ ├── 2.cpp │ │ ├── 20132014-widesiberian-olympiad-onsite-round-en.pdf │ │ ├── 3.cpp │ │ ├── 5.cpp │ │ ├── 6.cpp │ │ ├── 7.cpp │ │ └── 8.cpp │ ├── 101242 2016 ACM-ICPC World Finals │ │ ├── E.cpp │ │ ├── G.cpp │ │ ├── K.cpp │ │ ├── K2.cpp │ │ └── L.cpp │ ├── 101245 Brazilian ICPC Summer School 2017, Contest 2017-01-31 │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── M.cpp │ │ ├── N.cpp │ │ ├── O.cpp │ │ └── statements.pdf │ ├── 101246 2010-2011 ACM-ICPC, NEERC, Southern Subregional Contest │ │ ├── C.cpp │ │ ├── E.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── J.cpp │ │ └── statements.pdf │ ├── 101252 2009-2010 ACM-ICPC, NEERC, Southern Subregional Contest │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── J.cpp │ │ ├── K.cpp │ │ └── statements.pdf │ ├── 101261 Advanced Data Structures │ │ ├── A1.cpp │ │ └── A2.cpp │ ├── 101291 2016-2017 ACM-ICPC Pacific Northwest Regional Contest (Div. 2) │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ ├── K.cpp │ │ ├── L.cpp │ │ └── M.cpp │ ├── 101341 X Samara Regional Intercollegiate Programming Contest │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ ├── K.cpp │ │ ├── L.cpp │ │ └── M.cpp │ ├── 101398 2012-2013 Northwestern European Regional Contest (NWERC 2012) │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── D.cpp │ │ ├── E.java │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ ├── K.cpp │ │ └── statements.pdf │ ├── 101412 2012-2013 ACM-ICPC, Asia Tokyo Regional Contest │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ └── statements.pdf │ ├── 101480 2015-2016 ACM-ICPC, Central Europe Regional Contest (CERC 15) │ │ ├── 20152016-acmicpc-central-europe-regional-contest-cerc-15-en.pdf │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F1.cpp │ │ ├── F2.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ ├── K.cpp │ │ ├── L.cpp │ │ └── cerc2015_presentation.pdf │ ├── 101482 2014-2015 Northwestern European Regional Contest (NWERC 2014) │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ ├── K.cpp │ │ └── statements.pdf │ ├── 101484 2017 USP-ICMC │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ └── K.cpp │ ├── 101492 2017 USP Try-outs │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ ├── K.cpp │ │ └── L.cpp │ ├── 101512 2014 Benelux Algorithm Programming Contest (BAPC 14) │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ ├── K.cpp │ │ └── statements.pdf │ ├── 101522 La Salle-Pui Ching Programming Challenge 2017 │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ ├── K.cpp │ │ └── L.cpp │ ├── 101550 2016-2017 ACM-ICPC Nordic Collegiate Programming Contest (NCPC 2016) │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── J.cpp │ │ ├── K.cpp │ │ └── statements.pdf │ ├── 101572 2017-2018 ACM-ICPC Nordic Collegiate Programming Contest (NCPC 2017) │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ ├── K.cpp │ │ ├── editorial.pdf │ │ └── statements.pdf │ ├── 101615 2017-2018 ACM-ICPC Pacific Northwest Regional Contest (Div. 1) │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ ├── K.cpp │ │ ├── L.cpp │ │ ├── M.cpp │ │ └── statements.pdf │ ├── 101620 2017-2018 ACM-ICPC, Central Europe Regional Contest (CERC 17) │ │ ├── 20172018-acmicpc-central-europe-regional-contest-cerc-17-en.pdf │ │ ├── A.cpp │ │ ├── F.cpp │ │ ├── H.cpp │ │ ├── J.cpp │ │ ├── K.cpp │ │ └── L.cpp │ ├── 101635 2017-2018 ACM-ICPC Southwestern European Regional Programming Contest (SWERC 2017) │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ ├── K.cpp │ │ └── statements.pdf │ ├── 101657 2011-2012 ACM-ICPC Pacific Northwest Regional Contest │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── K.cpp │ │ ├── solutions │ │ │ └── ICPC_PacNW2011_solutions │ │ │ │ ├── Bracelets.java │ │ │ │ ├── CollateralValidator.java │ │ │ │ ├── DrHorrible.java │ │ │ │ ├── GoodOrBad.java │ │ │ │ ├── GoodOrBad_tjr.c │ │ │ │ ├── LatticeLand.cpp │ │ │ │ ├── Locksmith.java │ │ │ │ ├── SpeedRacer.cpp │ │ │ │ ├── SpeedRacer_tjr.java │ │ │ │ ├── TreeCount.cpp │ │ │ │ ├── TreeCount_tjr.java │ │ │ │ ├── bracelets.cc │ │ │ │ ├── collateral.cc │ │ │ │ ├── drhorrible_cbd.cc │ │ │ │ ├── flatland_cbd.cc │ │ │ │ ├── flatland_klj.cpp │ │ │ │ ├── flatland_tgr.cpp │ │ │ │ ├── lightning-lessons.cc │ │ │ │ ├── lightning_lessons_tjr.java │ │ │ │ ├── locksmith_cbd.cc │ │ │ │ ├── stupendous-jp.cpp │ │ │ │ └── stupendous-rf.cpp │ │ └── statements.pdf │ ├── 101669 2017-2018 ACM-ICPC Southeastern European Regional Programming Contest (SEERC 2017) │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── J.cpp │ │ ├── K.cpp │ │ ├── L.cpp │ │ └── statements.pdf │ ├── 101670 2017-2018 CTU Open Contest │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ └── statements.pdf │ ├── 101704 Brazilian Summer Camp 2018, Day 1 A-Z Contest │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.java │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ ├── K.cpp │ │ ├── L.cpp │ │ ├── M.cpp │ │ ├── N.cpp │ │ ├── O.java │ │ ├── P.cpp │ │ ├── Q.java │ │ ├── R.cpp │ │ ├── S.cpp │ │ ├── T.java │ │ ├── U.cpp │ │ ├── V.cpp │ │ ├── W.cpp │ │ ├── X.cpp │ │ ├── Y.java │ │ └── Z.cpp │ ├── 101707 Brazilian Summer Camp 2018, Day 2 Geometry Gauntlet (Advanced) │ │ ├── 2018-01-23-cheatsheet.pdf │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ └── statements.pdf │ ├── 101711 Brazilian Summer Camp 2018, Day 5 Strings (Advanced) │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ └── I.cpp │ ├── 101712 Brazilian Summer Camp 2018, practice network flows + matchings │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ ├── K.cpp │ │ └── statements.pdf │ ├── 101726 2013 USP Try-outs │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ └── K.cpp │ ├── 101741 2017-2018 Petrozavodsk Winter Training Camp, Saratov SU Contest │ │ ├── A.cpp │ │ ├── C.cpp │ │ ├── J.cpp │ │ ├── J2.cpp │ │ └── L.cpp │ ├── 101875 2018 USP-ICMC │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ ├── K.cpp │ │ └── L.cpp │ ├── 101879 2018 USP Try-outs │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ └── K.cpp │ ├── 101889 2017-2018 ACM-ICPC Latin American Regional Programming Contest │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ ├── K.cpp │ │ ├── M.cpp │ │ └── statements.pdf │ ├── 101908 2018-2019 ACM-ICPC Brazil Subregional Programming Contest │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ ├── K.cpp │ │ ├── L.cpp │ │ ├── M.cpp │ │ ├── maratona.pdf │ │ └── test.cpp │ ├── 101933 2018-2019 Northwestern Collegiate Programming Contest │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── E.cpp │ │ ├── H.cpp │ │ ├── I.java │ │ ├── J.cpp │ │ ├── K.cpp │ │ └── statements.pdf │ ├── 101962 UFBA Practice Session for Brazilian ICPC Regionals - 2018 │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ ├── K.cpp │ │ ├── M.cpp │ │ └── statements.pdf │ ├── 220934 Contest ITA Training #1 │ │ ├── 20082009-acmicpc-neerc-moscow-subregional-contest-en.pdf │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── I.cpp │ │ ├── K.cpp │ │ └── L.cpp │ ├── 221448 Contest ITA Training #2 │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ ├── K.cpp │ │ └── L.cpp │ ├── 223559 Seletiva ITA #1 │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ ├── K.cpp │ │ ├── L.cpp │ │ └── M.cpp │ ├── 223650 Seletiva ITA #2 │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ └── F.cpp │ ├── 225282 Seletiva ITA #3 │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ └── statements.pdf │ └── 225643 Seletiva ITA #4 │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ ├── D.cpp │ │ ├── E.cpp │ │ ├── F.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ ├── K.cpp │ │ └── L.cpp └── Rounds │ ├── 78 │ └── E.cpp │ ├── 132 │ └── E.cpp │ ├── 674 │ └── C.cpp │ ├── 739 │ └── E.cpp │ ├── 750 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ └── F.cpp │ ├── 802 │ └── O.cpp │ ├── 814 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp │ ├── 832 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ └── D.cpp │ ├── 842 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ └── D.cpp │ ├── 849 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ └── D.cpp │ ├── 854 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp │ ├── 861 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── F.cpp │ ├── 869 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ └── E.cpp │ ├── 879 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp │ ├── 887 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp │ ├── 897 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp │ ├── 900 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp │ ├── 902 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp │ ├── 907 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp │ ├── 924 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp │ ├── 946 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ ├── F.cpp │ ├── G.cpp │ └── dist.cpp │ ├── 947 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ └── D.cpp │ ├── 948 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp │ ├── 955 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── F.cpp │ ├── 956 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp │ ├── 957 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp │ ├── 958 │ └── E2.cpp │ ├── 959 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ └── F.cpp │ ├── 960 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ ├── F.cpp │ └── G.cpp │ ├── 961 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ ├── F.cpp │ └── G.cpp │ ├── 962 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ └── F.cpp │ ├── 963 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ └── D.cpp │ ├── 964 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp │ ├── 965 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp │ ├── 966 │ ├── A.cpp │ ├── B.cpp │ └── C.cpp │ ├── 967 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp │ ├── 975 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp │ ├── 976 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ └── F.cpp │ ├── 977 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ └── F.cpp │ ├── 979 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp │ ├── 980 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ └── F.cpp │ ├── 981 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ └── G.cpp │ ├── 982 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ └── F.cpp │ ├── 984 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp │ ├── 985 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ ├── F.cpp │ └── G.cpp │ ├── 989 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp │ ├── 991 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp │ ├── 992 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp │ ├── 993 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── E.cpp │ └── F.cpp │ ├── 1007 │ ├── A.cpp │ ├── B.cpp │ └── C.cpp │ ├── 1009 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ ├── F.cpp │ └── G.cpp │ ├── 1010 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp │ ├── 1017 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ └── F.cpp │ ├── 1023 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ └── F.cpp │ ├── 1025 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ └── voo_out12.pdf │ ├── 1027 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ └── F.cpp │ ├── 1028 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ └── D.cpp │ ├── 1037 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ └── F.cpp │ ├── 1039 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ └── D.cpp │ ├── 1054 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ ├── F.cpp │ └── G.cpp │ ├── 1059 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp │ ├── 1067 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ └── D.cpp │ ├── 1070 │ ├── A.cpp │ ├── D.cpp │ ├── E.cpp │ ├── F.cpp │ ├── H.cpp │ └── I.cpp │ ├── 1074 │ └── A.cpp │ ├── 1088 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ └── D.cpp │ ├── 1091 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ └── G.java │ ├── 1098 │ ├── A.cpp │ └── C.cpp │ └── 1482 │ └── D.cpp ├── Codepit ├── Aquecimento para Maratona de Programação (div 2) │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ ├── F.cpp │ ├── G.cpp │ ├── H.cpp │ ├── I.cpp │ ├── J.cpp │ └── K.cpp ├── Contest UECE │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ ├── F.cpp │ ├── G.cpp │ ├── H.cpp │ ├── I.cpp │ ├── J.cpp │ └── K.cpp ├── Escola de Inverno UFRGS 2018 - Dia 1 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ ├── F.cpp │ ├── G.cpp │ ├── H.cpp │ ├── I.cpp │ └── J.cpp ├── Escola de Inverno UFRGS 2018 - Dia 2 │ ├── A.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ ├── F.cpp │ ├── G.cpp │ ├── H.cpp │ ├── I.cpp │ └── J.cpp ├── Escola de Inverno UFRGS 2018 - Dia 4 │ ├── D.cpp │ ├── E.cpp │ └── G.cpp ├── Escola de Inverno UFRGS 2018 - Dia 5 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ ├── F.cpp │ ├── G.cpp │ ├── H.cpp │ ├── I.cpp │ └── J.cpp ├── ITAbits - OBI - Contest1 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ └── F.cpp ├── Simulado OBI ITA - fase nacional │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D1.cpp │ ├── D2.cpp │ └── E.cpp └── Simulado OBI ITA 2 - fase nacional │ ├── A.cpp │ ├── B.cpp │ ├── C1.cpp │ ├── C2.cpp │ ├── D1.cpp │ ├── D2.cpp │ └── E.cpp ├── Collegiate Cup ├── 2017 Final round │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ └── D.cpp └── 2017 Qualification │ └── A.cpp ├── Curso Inverno USP 2017 ├── 17-07-2017 │ ├── B.cpp │ ├── E.cpp │ ├── F.cpp │ ├── G.cpp │ └── H.cpp ├── 18-07-2017 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ ├── G.cpp │ ├── I.cpp │ └── K.cpp └── 19-07-2017 │ ├── A.cpp │ ├── B.cpp │ ├── D.cpp │ ├── E.cpp │ ├── G.cpp │ ├── I.cpp │ └── J.cpp ├── Facebook Hacker Cup ├── 2017 round 2 │ ├── A.cpp │ └── B.cpp └── 2018 Qualification │ ├── A.cpp │ ├── B.cpp │ └── C.cpp ├── Google Code Jam ├── 2015 1A │ └── A.cpp ├── 2015 qualification │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ └── D.cpp ├── 2016 1A │ ├── A.cpp │ ├── B.cpp │ └── C.cpp ├── 2016 1B │ ├── A.cpp │ ├── B.cpp │ └── C.cpp ├── 2016 1C │ └── A.cpp ├── 2016 qualification │ ├── A.cpp │ └── B.cpp ├── 2017 1A │ └── A.cpp ├── 2017 1B │ ├── A.cpp │ ├── B (Incorrect no large).cpp │ └── C.cpp ├── 2017 1C │ ├── A.cpp │ ├── B (Incorrect no large).cpp │ └── C (small 1 apenas).cpp ├── 2017 qualification │ ├── A.cpp │ ├── B.cpp │ ├── C-simples.cpp │ ├── C.cpp │ └── D.cpp ├── 2018 1A │ ├── A.cpp │ ├── B.cpp │ └── C.cpp ├── 2018 2 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ └── D.cpp ├── 2018 qualification │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── testing_tool.py └── 2019 qualification │ ├── A.cpp │ ├── B.cpp │ └── C.java ├── Hacker Earth ├── Dexter_plays_with_GP.cpp └── eggs_and_building.cpp ├── Hackerrank ├── Count the Necklaces.cpp ├── ProjectEuler │ ├── 1 Multiples of 3 and 5.cpp │ ├── 2 Even Fibonacci numbers.cpp │ ├── 3 Largest prime factor.cpp │ ├── 4 Largest palindrome product.cpp │ └── 5 Smallest multiple.cpp └── movile_challenge_2017 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ └── F.cpp ├── Kattis ├── 2016 Rocky Mountain Regional Contest │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ ├── F.cpp │ ├── G.cpp │ ├── H.cpp │ ├── I.cpp │ └── J.cpp ├── 2017 ICPC North American Qualifier Contest │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ ├── F.cpp │ ├── G.cpp │ ├── H.cpp │ ├── I.cpp │ ├── J.cpp │ ├── K.cpp │ ├── L.cpp │ └── M.cpp ├── 2019 ICPC World Finals │ └── G.cpp └── F.cpp ├── Leetcode ├── ' ├── 1010.cpp ├── 1024.cpp ├── 1026.cpp ├── 1027-2.cpp ├── 1027.cpp ├── 1039.cpp ├── 1048.cpp ├── 1061.cpp ├── 1072.cpp ├── 1079.cpp ├── 1091.cpp ├── 1095.cpp ├── 1105.cpp ├── 111.cpp ├── 1123.cpp ├── 1140-2.cpp ├── 1140.cpp ├── 1143-2.cpp ├── 1143.cpp ├── 116.cpp ├── 1161-2.cpp ├── 1161.cpp ├── 117.cpp ├── 118.cpp ├── 1190.cpp ├── 120.cpp ├── 1207.cpp ├── 1210.cpp ├── 1218.cpp ├── 1220-2.cpp ├── 1220.cpp ├── 1232.cpp ├── 1233.cpp ├── 1235-2.cpp ├── 1235.cpp ├── 1239-2.cpp ├── 1239-3.cpp ├── 1239.cpp ├── 1261.cpp ├── 1267.cpp ├── 1277.cpp ├── 1282.cpp ├── 1290.cpp ├── 1291-2.cpp ├── 1291.cpp ├── 1298-2.cpp ├── 1298.cpp ├── 1310.cpp ├── 1317.cpp ├── 1318-2.cpp ├── 1318.cpp ├── 132-2.cpp ├── 132.cpp ├── 1326.cpp ├── 1331.cpp ├── 1334.cpp ├── 1337.cpp ├── 1339.cpp ├── 1347.cpp ├── 135.cpp ├── 1351-2.cpp ├── 1351.cpp ├── 1353.cpp ├── 1356.cpp ├── 1358.cpp ├── 1367.cpp ├── 1376.cpp ├── 138.cpp ├── 1381.cpp ├── 1395-1.cpp ├── 1395-2.cpp ├── 1395-3.cpp ├── 1396.cpp ├── 1400.cpp ├── 1401.cpp ├── 1405.cpp ├── 1406.cpp ├── 1408.cpp ├── 1415.cpp ├── 1420-2.cpp ├── 1420.cpp ├── 1424-2.cpp ├── 1424.cpp ├── 1441.cpp ├── 1443.cpp ├── 1455.cpp ├── 1457.cpp ├── 1458.cpp ├── 146.cpp ├── 1460.cpp ├── 1462.cpp ├── 148.cpp ├── 1488.cpp ├── 1493.cpp ├── 1497.cpp ├── 150.cpp ├── 1502.cpp ├── 1503.cpp ├── 1504-2.cpp ├── 1504.cpp ├── 1509.cpp ├── 1512.cpp ├── 1514.cpp ├── 1518-2.cpp ├── 1518.cpp ├── 1534-2.cpp ├── 1534.cpp ├── 1547-2.cpp ├── 1547.cpp ├── 1550.cpp ├── 1557.cpp ├── 1569-2.cpp ├── 1569.cpp ├── 1584.cpp ├── 1590.cpp ├── 1603.cpp ├── 1611.cpp ├── 1615.cpp ├── 1630.cpp ├── 1631.cpp ├── 1636.cpp ├── 1643.cpp ├── 1647-2.cpp ├── 1647.cpp ├── 165.cpp ├── 1652.cpp ├── 1653.cpp ├── 1658.cpp ├── 166.cpp ├── 1662.cpp ├── 1671.cpp ├── 168.cpp ├── 1684.cpp ├── 17.cpp ├── 1701.cpp ├── 1704.cpp ├── 1717.cpp ├── 1721.cpp ├── 1726.cpp ├── 1733.cpp ├── 1743.cpp ├── 1749.cpp ├── 1751.cpp ├── 1759.cpp ├── 1765.cpp ├── 1769.cpp ├── 179.cpp ├── 1790.cpp ├── 1800.cpp ├── 1814.cpp ├── 1823.cpp ├── 1829.cpp ├── 1845-2.cpp ├── 1845.cpp ├── 1846.cpp ├── 1861.cpp ├── 1870.cpp ├── 1877.cpp ├── 1900.cpp ├── 1905.cpp ├── 191-2.cpp ├── 191.cpp ├── 1910.cpp ├── 1920.cpp ├── 1921-2.cpp ├── 1921.cpp ├── 1930.cpp ├── 1935.cpp ├── 1937.cpp ├── 1942.cpp ├── 1943.cpp ├── 1945.cpp ├── 1957.cpp ├── 1963.cpp ├── 1970-2.cpp ├── 1970-3.cpp ├── 1970-4.cpp ├── 1970.cpp ├── 1980.cpp ├── 2.cpp ├── 2009.cpp ├── 2011.cpp ├── 2014.cpp ├── 2016.cpp ├── 2017.cpp ├── 2024.cpp ├── 2028.cpp ├── 2033.cpp ├── 2038.cpp ├── 2040.cpp ├── 2044.cpp ├── 2054.cpp ├── 207.cpp ├── 2070.cpp ├── 2075.cpp ├── 2081-2.cpp ├── 2081.cpp ├── 209.cpp ├── 2090.cpp ├── 2094-2.cpp ├── 2094.cpp ├── 2096.cpp ├── 2099.cpp ├── 2101.cpp ├── 2109.cpp ├── 2115.cpp ├── 2125.cpp ├── 2130-2.cpp ├── 2130.cpp ├── 2131.cpp ├── 2134.cpp ├── 214.cpp ├── 2140.cpp ├── 2141.cpp ├── 2145.cpp ├── 2147.cpp ├── 215.cpp ├── 2163.cpp ├── 2176.cpp ├── 2179.cpp ├── 2185.cpp ├── 2191.cpp ├── 2196.cpp ├── 2197.cpp ├── 2200.cpp ├── 2206.cpp ├── 2220.cpp ├── 2221-2.cpp ├── 2221.cpp ├── 2226.cpp ├── 225.cpp ├── 2251.cpp ├── 2257.cpp ├── 2264.cpp ├── 2265.cpp ├── 2273.cpp ├── 2275.cpp ├── 228.cpp ├── 2281.cpp ├── 229.cpp ├── 2300.cpp ├── 2305.cpp ├── 231.cpp ├── 2311.cpp ├── 232-2.cpp ├── 232.cpp ├── 2322.cpp ├── 2326.cpp ├── 2327.cpp ├── 2337.cpp ├── 2338.cpp ├── 2342.cpp ├── 2348.cpp ├── 2352.cpp ├── 2353.cpp ├── 2357.cpp ├── 2359.cpp ├── 2366.cpp ├── 2375.cpp ├── 238-2.cpp ├── 238.cpp ├── 2385.cpp ├── 239.cpp ├── 2391.cpp ├── 24.cpp ├── 2401.cpp ├── 241.cpp ├── 2411.cpp ├── 2416-2.cpp ├── 2416.cpp ├── 2418.cpp ├── 2419.cpp ├── 2425.cpp ├── 2428.cpp ├── 2429.cpp ├── 2433.cpp ├── 2434.cpp ├── 2438-2.cpp ├── 2438.cpp ├── 2444.cpp ├── 2448.cpp ├── 2457.cpp ├── 2458.cpp ├── 2461.cpp ├── 2463.cpp ├── 2466.cpp ├── 2478.cpp ├── 2483-2.cpp ├── 2483.cpp ├── 2487.cpp ├── 2491.cpp ├── 2493.cpp ├── 2501.cpp ├── 2514.cpp ├── 2516.cpp ├── 2523-2.cpp ├── 2523.cpp ├── 2529.cpp ├── 2530.cpp ├── 2537.cpp ├── 2542-2.cpp ├── 2542.cpp ├── 2551.cpp ├── 2558.cpp ├── 2563.cpp ├── 2566.cpp ├── 2598.cpp ├── 2601.cpp ├── 2616.cpp ├── 2641.cpp ├── 2642.cpp ├── 2657.cpp ├── 2658.cpp ├── 2678.cpp ├── 2683.cpp ├── 2684.cpp ├── 2696.cpp ├── 2707.cpp ├── 273.cpp ├── 2749.cpp ├── 2785.cpp ├── 2787.cpp ├── 2799.cpp ├── 2807.cpp ├── 2825.cpp ├── 2826.cpp ├── 2843.cpp ├── 2845.cpp ├── 2849.cpp ├── 2860.cpp ├── 287.cpp ├── 2870-2.cpp ├── 2870.cpp ├── 2873-2.cpp ├── 2873-3.cpp ├── 2873.cpp ├── 2874.cpp ├── 2894.cpp ├── 2900.cpp ├── 2901.cpp ├── 2914.cpp ├── 2918.cpp ├── 2924.cpp ├── 2938.cpp ├── 2966.cpp ├── 2976.cpp ├── 2999.cpp ├── 300.cpp ├── 3000.cpp ├── 3005.cpp ├── 3011.cpp ├── 3016.cpp ├── 3021.cpp ├── 3024.cpp ├── 3025.cpp ├── 3027.cpp ├── 3042.cpp ├── 3043.cpp ├── 3066.cpp ├── 3068.cpp ├── 3085.cpp ├── 3100-2.cpp ├── 3100.cpp ├── 3105.cpp ├── 3108.cpp ├── 3133.cpp ├── 3136.cpp ├── 3147.cpp ├── 3152.cpp ├── 316.cpp ├── 3163.cpp ├── 3169.cpp ├── 3174.cpp ├── 3186.cpp ├── 3191.cpp ├── 3195.cpp ├── 3200.cpp ├── 3201.cpp ├── 3202.cpp ├── 3217.cpp ├── 3223.cpp ├── 3227.cpp ├── 3243.cpp ├── 326.cpp ├── 3272-2.cpp ├── 3272.cpp ├── 3277.cpp ├── 33.cpp ├── 3305.cpp ├── 3306.cpp ├── 3307.cpp ├── 332.cpp ├── 3330.cpp ├── 3333.cpp ├── 3335-2.cpp ├── 3335.cpp ├── 3337.cpp ├── 3341.cpp ├── 3342.cpp ├── 3343.cpp ├── 3346.cpp ├── 3347.cpp ├── 3349.cpp ├── 3350.cpp ├── 3355.cpp ├── 3356-2.cpp ├── 3356.cpp ├── 3362.cpp ├── 3363.cpp ├── 3372.cpp ├── 3373.cpp ├── 3375.cpp ├── 338-2.cpp ├── 338.cpp ├── 3394.cpp ├── 3396.cpp ├── 3403-2.cpp ├── 3403.cpp ├── 3405.cpp ├── 3408.cpp ├── 3423.cpp ├── 343-2.cpp ├── 343.cpp ├── 3439.cpp ├── 3440.cpp ├── 3442.cpp ├── 3443.cpp ├── 3445.cpp ├── 3446.cpp ├── 3459.cpp ├── 3477.cpp ├── 3479.cpp ├── 3480.cpp ├── 3484.cpp ├── 3494.cpp ├── 350.cpp ├── 3516.cpp ├── 3541.cpp ├── 3637.cpp ├── 3675.cpp ├── 377.cpp ├── 38.cpp ├── 380.cpp ├── 386.cpp ├── 387.cpp ├── 389.cpp ├── 392.cpp ├── 4.cpp ├── 40.cpp ├── 407.cpp ├── 416-2.cpp ├── 416-3.cpp ├── 416.cpp ├── 432.cpp ├── 435.cpp ├── 440.cpp ├── 445.cpp ├── 451.cpp ├── 456.cpp ├── 459.cpp ├── 46.cpp ├── 476.cpp ├── 486-2.cpp ├── 486.cpp ├── 49-2.cpp ├── 49.cpp ├── 493.cpp ├── 498.cpp ├── 5-2.cpp ├── 5.cpp ├── 50.cpp ├── 501.cpp ├── 518.cpp ├── 523.cpp ├── 530-2.cpp ├── 530-3.cpp ├── 530.cpp ├── 539.cpp ├── 542.cpp ├── 576.cpp ├── 590.cpp ├── 592.cpp ├── 594.cpp ├── 606.cpp ├── 611.cpp ├── 624.cpp ├── 629.cpp ├── 63.cpp ├── 641.cpp ├── 645.cpp ├── 650.cpp ├── 664.cpp ├── 670.cpp ├── 673.cpp ├── 68.cpp ├── 684.cpp ├── 688.cpp ├── 70-2.cpp ├── 70.cpp ├── 703.cpp ├── 705.cpp ├── 706-2.cpp ├── 706.cpp ├── 712.cpp ├── 714.cpp ├── 719.cpp ├── 725.cpp ├── 729.cpp ├── 73.cpp ├── 731.cpp ├── 735.cpp ├── 739.cpp ├── 744.cpp ├── 746.cpp ├── 767.cpp ├── 77.cpp ├── 773-2.cpp ├── 773-3.cpp ├── 773.cpp ├── 778.cpp ├── 779-2.cpp ├── 779.cpp ├── 790.cpp ├── 802.cpp ├── 803.cpp ├── 808.cpp ├── 81.cpp ├── 812.cpp ├── 823.cpp ├── 827.cpp ├── 837.cpp ├── 838.cpp ├── 840-2.cpp ├── 840.cpp ├── 852.cpp ├── 859.cpp ├── 86.cpp ├── 860.cpp ├── 863.cpp ├── 864.cpp ├── 872.cpp ├── 874.cpp ├── 880.cpp ├── 884.cpp ├── 885-1.cpp ├── 885-2.cpp ├── 896.cpp ├── 898.cpp ├── 904.cpp ├── 905.cpp ├── 909.cpp ├── 912.cpp ├── 916.cpp ├── 92.cpp ├── 921.cpp ├── 931.cpp ├── 935-2.cpp ├── 935.cpp ├── 938.cpp ├── 951.cpp ├── 962-2.cpp ├── 962.cpp └── 97.cpp ├── Live Archive └── 2015 ACM ICPC Asia Changchun Regionals │ ├── A.cpp │ ├── B.cpp │ ├── E.cpp │ ├── F.cpp │ ├── G.cpp │ ├── H.cpp │ ├── J.cpp │ ├── L.cpp │ └── M.cpp ├── Macacário ├── Computational Geometry │ ├── circle2d.cpp │ ├── closestpair.cpp │ ├── convexhull.cpp │ ├── convexquery.cpp │ ├── delaunay.cpp │ ├── greatcircle.cpp │ ├── halfplaneintersect.cpp │ ├── line2d.cpp │ ├── line3d.cpp │ ├── minkowski.cpp │ ├── point2d.cpp │ ├── point3d.cpp │ ├── polygon2d.cpp │ ├── precision.cpp │ ├── triangle2d.cpp │ └── triangle3d.cpp ├── Data Structures │ ├── convexhulltrick.cpp │ ├── dynamiccht.cpp │ ├── maxqueue.cpp │ ├── presuftable.cpp │ ├── recursivedeque.cpp │ ├── sparsetable.cpp │ ├── stdlibrary.cpp │ └── unionfind.cpp ├── Dynamic Programming │ ├── chtrickoptimization.cpp │ ├── dcoptimization.cpp │ ├── knuthoptimization.cpp │ ├── lagrangeoptimization.cpp │ ├── slopetrick.cpp │ └── twopointeroptimization.cpp ├── Graphs │ ├── 2sat.cpp │ ├── articulationpointsandbridges.cpp │ ├── bellmanford.cpp │ ├── blossom.cpp │ ├── colorfulspanningtree.cpp │ ├── dfsspanningtree.cpp │ ├── dijkstra.cpp │ ├── dinic.cpp │ ├── dominatortree.cpp │ ├── edmondskarp.cpp │ ├── erdosgallai.cpp │ ├── euler.cpp │ ├── floydwarshall.cpp │ ├── gomoryhu.cpp │ ├── hopcroftkarp.cpp │ ├── hungarian.cpp │ ├── kdijkstra.cpp │ ├── kosaraju.cpp │ ├── kruskal.cpp │ ├── kuhn.cpp │ ├── mincostmaxflow.cpp │ ├── minimumcover.cpp │ ├── prim.cpp │ ├── pushrelabel.cpp │ ├── spfa.cpp │ ├── splitGraph.cpp │ ├── stoerwagner.cpp │ └── toposort.cpp ├── Math │ ├── babysteps.cpp │ ├── bignum.cpp │ ├── circularconvolution.cpp │ ├── crt.cpp │ ├── fft.cpp │ ├── floyd.cpp │ ├── fwht.cpp │ ├── gauss.cpp │ ├── gaussseidel.cpp │ ├── gcdsum.cpp │ ├── generalizedcrt.cpp │ ├── gray.cpp │ ├── legendre.cpp │ ├── linearsieve.cpp │ ├── matrix.cpp │ ├── matrixexp.cpp │ ├── matrixsparse.cpp │ ├── mex.cpp │ ├── millerrabin.cpp │ ├── mod.cpp │ ├── multiplcative.cpp │ ├── ntt.cpp │ ├── pollardrho.cpp │ ├── polynomialdiv.cpp │ ├── primes.cpp │ ├── simpson.cpp │ ├── stirling_first.cpp │ └── xorsat.cpp ├── Miscelaneous │ ├── date.cpp │ ├── fastio.cpp │ ├── histogram.cpp │ ├── magicsquare.cpp │ ├── mo.cpp │ ├── paren2polish.cpp │ ├── polyomino_it.cpp │ ├── simplex.cpp │ └── stablemarriage.cpp ├── Paradigms │ ├── lis.cpp │ ├── maxsumincresingsubseq.cpp │ ├── mergesort.cpp │ ├── numsizekincreasingsubseq.cpp │ └── quicksort.cpp ├── Strings │ ├── ahocorasick.cpp │ ├── ahocorasickautomaton.cpp │ ├── kmp.cpp │ ├── kmpautomaton.cpp │ ├── manacher.cpp │ ├── matchfft.cpp │ ├── palindromictree.cpp │ ├── rabinkarp.cpp │ ├── suffixarray.cpp │ ├── suffixarraylinear.cpp │ ├── suffixautomaton.cpp │ ├── suffixtree.cpp │ └── zfunction.cpp ├── Trees │ ├── 2dbit.cpp │ ├── 2dsegmenttree.cpp │ ├── avl.cpp │ ├── bit.cpp │ ├── centroid.cpp │ ├── fractionalcascade.cpp │ ├── heap.cpp │ ├── hld.cpp │ ├── huffman.cpp │ ├── implicittreap.cpp │ ├── intervaltree.cpp │ ├── lazysegmenttree.cpp │ ├── lca.cpp │ ├── lichaosegtree.cpp │ ├── linkcut.cpp │ ├── mergesorttree.cpp │ ├── persistentsegtree.cpp │ ├── rangebit.cpp │ ├── rbst.cpp │ ├── segmenttree.cpp │ ├── segmenttreebeats.cpp │ ├── splay.cpp │ ├── splitmergesegtree.cpp │ ├── treap.cpp │ ├── veb.cpp │ ├── wavelet.cpp │ └── xortrie.cpp ├── ascii.png └── header.cpp ├── Maratona de Programação ├── Escola de Verão 2019 │ ├── Dia 1 │ │ ├── B.cpp │ │ ├── F.cpp │ │ ├── G.cpp │ │ ├── H.cpp │ │ └── L.cpp │ ├── Dia 2 │ │ └── statements.pdf │ ├── Dia 3 │ │ └── A.cpp │ └── Dia 8 │ │ ├── E.cpp │ │ ├── H.cpp │ │ ├── I.cpp │ │ ├── J.cpp │ │ └── north-2012-archive │ │ ├── problems │ │ ├── aztec │ │ │ ├── Check.java │ │ │ ├── Tests.java │ │ │ ├── aztec_gk.java │ │ │ ├── aztec_va.java │ │ │ └── tests.lst │ │ ├── battleship │ │ │ ├── Check.java │ │ │ ├── Tests.java │ │ │ ├── battleship_ab.java │ │ │ └── battleship_gk.java │ │ ├── chemistry │ │ │ ├── Check.java │ │ │ ├── Tests.java │ │ │ ├── chemistry_aa.java │ │ │ ├── chemistry_gk.java │ │ │ ├── chemistry_gk_bi.java │ │ │ └── chemistry_mb.java │ │ ├── deepest │ │ │ ├── Check.cpp │ │ │ ├── deepest_gk.java │ │ │ ├── deepest_gk_simple.java │ │ │ ├── deepest_od.c │ │ │ └── deepest_va.java │ │ ├── electricity │ │ │ ├── Check.java │ │ │ ├── Tests.java │ │ │ ├── electricity_gk.java │ │ │ ├── electricity_sp.java │ │ │ └── electricity_va.java │ │ ├── final │ │ │ ├── Check.java │ │ │ ├── Tests.java │ │ │ └── final_gk.java │ │ ├── grid │ │ │ ├── Check.java │ │ │ ├── Tests.java │ │ │ └── grid_gk.java │ │ ├── hospital │ │ │ ├── Check.java │ │ │ ├── Tests.java │ │ │ ├── hospital_gk.java │ │ │ ├── hospital_pm.java │ │ │ └── hospital_pm_tree.java │ │ ├── intelligent │ │ │ ├── Check.java │ │ │ ├── Tests.java │ │ │ ├── intelligent_ds.c │ │ │ ├── intelligent_gk.java │ │ │ ├── intelligent_sk.cpp │ │ │ ├── intelligent_va.java │ │ │ ├── intelligent_va_ok_moreVars.java │ │ │ └── tests.lst │ │ ├── juggle │ │ │ ├── Check.java │ │ │ ├── Tests.java │ │ │ ├── juggle_gk.java │ │ │ ├── juggle_gk_ok_all.java │ │ │ ├── juggle_md.java │ │ │ └── juggle_sk.cpp │ │ ├── kingdom │ │ │ ├── Check.java │ │ │ ├── Tests.java │ │ │ ├── kingdom_gk.java │ │ │ ├── kingdom_gk_n2.java │ │ │ ├── kingdom_mb.java │ │ │ ├── kingdom_mb_fast.java │ │ │ └── kingdom_mb_n2.java │ │ └── log │ │ │ ├── Check.java │ │ │ ├── Tests.java │ │ │ ├── log_gk.java │ │ │ ├── log_sk.cpp │ │ │ └── log_sm.java │ │ └── testlib │ │ ├── testlib.h │ │ └── testlib4j.jar ├── Final Brasileira 2017 │ ├── 198475606-H.cpp │ ├── 213028196-C.cpp │ ├── 221360923-E.cpp │ ├── 238538885-C.cpp │ ├── 242980499-F.cpp │ ├── 245619208-E.cpp │ ├── 250483829-C2.cpp │ ├── 254125349-F.cpp │ ├── 255688453-C2.cpp │ ├── 278331034-I.cpp │ ├── 285297159-J.cpp │ ├── 291072083-I.cpp │ ├── 301958620-I.cpp │ ├── 304356433-M2.cpp │ ├── 308642449-M2.cpp │ ├── 320046478-F.cpp │ ├── 331492514-F.cpp │ ├── 345594153-B.cpp │ ├── 349661673-M2.cpp │ ├── 351276878-M2.cpp │ ├── 365775235-G2.cpp │ ├── 372635776-G2.cpp │ └── 375897213-G2.cpp ├── Final Brasileira 2018 │ ├── 1-YES-705873262-A.cpp │ ├── 12-YES-741417352-L.cpp │ ├── 13-YES-701809914-M.cpp │ ├── 2-YES-704377790-B.cpp │ ├── 3-YES-723204458-C.cpp │ ├── 4-YES-709817510-D.cpp │ ├── 5-YES-846771476-E.cpp │ ├── 6-NO-870634047-F.java │ ├── 8-NO-792976842-H.cpp │ ├── 8-NO-812399611-H.cpp │ ├── 8-NO-814642847-H.cpp │ ├── 8-NO-825126642-H.cpp │ ├── 8-YES-832417679-H.cpp │ └── 9-YES-839288314-I.cpp ├── Final Mundial 2017 │ ├── E.cpp │ └── I.cpp ├── Subregional 2016 │ ├── A.cpp │ ├── C.cpp │ ├── D.cpp │ ├── F.cpp │ ├── G.cpp │ ├── H.cpp │ ├── I.cpp │ ├── J.cpp │ ├── L.cpp │ └── contest.pdf ├── Subregional 2017 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ ├── F.cpp │ ├── G.cpp │ ├── H.cpp │ ├── I.cpp │ ├── J.cpp │ ├── K.cpp │ ├── L.cpp │ └── M.cpp ├── regional2013.pdf ├── regional2014.pdf ├── regional2015.pdf └── regional2016.pdf ├── Material para estudar ├── ArrangingHeaps.pdf ├── MacacárioMAT36_FINAL.pdf ├── another-persistence.pdf ├── dp.pdf ├── lagrange.pdf ├── mc5_klob.pdf ├── nim.pdf └── tg_string_matching.pdf ├── Microsoft Coding Competition └── 2016 │ ├── A.cpp │ ├── curios_intern.cpp │ ├── cyber_sec.cpp │ ├── palin_ana.cpp │ ├── rps.cpp │ └── sud.cpp ├── README.md ├── RPC ├── 2017 round 6 │ ├── ProblemsetRPC06.pdf │ ├── aircraft.cpp │ ├── antivirus.cpp │ ├── beautiful.cpp │ ├── drought.cpp │ ├── geonosis.cpp │ ├── howmany.cpp │ ├── match.cpp │ ├── park.cpp │ ├── password.cpp │ ├── problem.cpp │ └── robot.cpp └── 2018 round 10 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ ├── F.cpp │ ├── G.cpp │ ├── H.cpp │ ├── I.cpp │ ├── ICPCBolivia2018.pdf │ ├── J.cpp │ └── K.cpp ├── SPOJ ├── ALIENS.cpp ├── ANGELS.cpp ├── BABY.cpp ├── BORING2.java ├── BRKSTRNG.cpp ├── COCONUTS.cpp ├── COT.cpp ├── CSUMQ.cpp ├── DISJPATH.cpp ├── DISUBSTR.cpp ├── DIVREL.cpp ├── DQUERY.cpp ├── DYNALCA.cpp ├── ELIS.cpp ├── FASTFLOW.cpp ├── ILKQUERY.cpp ├── ILKQUERYIII.cpp ├── KMEDIAN.cpp ├── LCA.cpp ├── LCS.cpp ├── LPRIME.cpp ├── MAXMATCH.cpp ├── MLIS.cpp ├── MMMGAME.cpp ├── MSUBSTR.cpp ├── MTOTALF.cpp ├── MUDDY.cpp ├── NUMOFPAL.cpp ├── OILCOMP.cpp ├── PARITY.cpp ├── POTHOLE.cpp ├── QCJ4.cpp ├── QMAX3VN.cpp ├── QUEST4.cpp ├── RANGESUM.cpp ├── RPLN.cpp ├── SCITIES.cpp ├── SERVERS.cpp ├── SRTMACH.cpp ├── STABLEMP.cpp ├── STRMATCH.cpp ├── SUB_PROB.cpp ├── SUFEQPRE.cpp ├── TRAPEZ08.cpp ├── WEBISL.cpp └── XMAX.cpp ├── Szkoput ├── Connections.cpp └── TreeRotations2.cpp ├── URI ├── 1001.cpp ├── 1002.cpp ├── 1003.cpp ├── 1004.cpp ├── 1005.cpp ├── 1006.cpp ├── 1007.cpp ├── 1008.cpp ├── 1009.cpp ├── 1010.cpp ├── 1011.cpp ├── 1012.cpp ├── 1013.cpp ├── 1014.cpp ├── 1015.cpp ├── 1016.cpp ├── 1017.cpp ├── 1018.cpp ├── 1019.cpp ├── 1020.cpp ├── 1021.cpp ├── 1022.cpp ├── 1023.cpp ├── 1024.cpp ├── 1025.cpp ├── 1026.cpp ├── 1027.cpp ├── 1028.cpp ├── 1029.cpp ├── 1030.cpp ├── 1031.cpp ├── 1032.cpp ├── 1034.cpp ├── 1035.cpp ├── 1036.cpp ├── 1037.cpp ├── 1038.cpp ├── 1039.cpp ├── 1040.cpp ├── 1041.cpp ├── 1042.cpp ├── 1043.cpp ├── 1044.cpp ├── 1045.cpp ├── 1046.cpp ├── 1047.cpp ├── 1048.cpp ├── 1049.cpp ├── 1050.cpp ├── 1051.cpp ├── 1052.cpp ├── 1053.cpp ├── 1054.cpp ├── 1055.cpp ├── 1056.cpp ├── 1058.cpp ├── 1059.cpp ├── 1060.cpp ├── 1061.cpp ├── 1062.cpp ├── 1063.cpp ├── 1064.cpp ├── 1065.cpp ├── 1066.cpp ├── 1067.cpp ├── 1068.cpp ├── 1069.cpp ├── 1070.cpp ├── 1071.cpp ├── 1072.cpp ├── 1073.cpp ├── 1074.cpp ├── 1075.cpp ├── 1076.cpp ├── 1077.cpp ├── 1078.cpp ├── 1079.cpp ├── 1080.cpp ├── 1081.cpp ├── 1082.cpp ├── 1083.cpp ├── 1084.cpp ├── 1085.cpp ├── 1086.cpp ├── 1087.cpp ├── 1088.cpp ├── 1089.cpp ├── 1091.cpp ├── 1093.cpp ├── 1094.cpp ├── 1095.cpp ├── 1096.cpp ├── 1097.cpp ├── 1098.cpp ├── 1099.cpp ├── 1100.cpp ├── 1101.cpp ├── 1102.cpp ├── 1103.cpp ├── 1104.cpp ├── 1105.cpp ├── 1106.cpp ├── 1107.cpp ├── 1109.cpp ├── 1110.cpp ├── 1112.cpp ├── 1113.cpp ├── 1114.cpp ├── 1115.cpp ├── 1116.cpp ├── 1117.cpp ├── 1118.cpp ├── 1119.cpp ├── 1121.cpp ├── 1122.cpp ├── 1123.cpp ├── 1124.cpp ├── 1125.cpp ├── 1126.cpp ├── 1128.cpp ├── 1129.cpp ├── 1130.cpp ├── 1131.cpp ├── 1132.cpp ├── 1133.cpp ├── 1134.cpp ├── 1135.cpp ├── 1136.cpp ├── 1137.cpp ├── 1138.cpp ├── 1140.cpp ├── 1142.cpp ├── 1143.cpp ├── 1144.cpp ├── 1145.cpp ├── 1146.cpp ├── 1147.cpp ├── 1148.cpp ├── 1149.cpp ├── 1150.cpp ├── 1151.cpp ├── 1152.cpp ├── 1153.cpp ├── 1154.cpp ├── 1155.cpp ├── 1156.cpp ├── 1157.cpp ├── 1158.cpp ├── 1159.cpp ├── 1160.cpp ├── 1161.cpp ├── 1162.cpp ├── 1163.cpp ├── 1164.cpp ├── 1165.cpp ├── 1166.cpp ├── 1167.cpp ├── 1168.cpp ├── 1169.cpp ├── 1170.cpp ├── 1171.cpp ├── 1172.cpp ├── 1173.cpp ├── 1174.cpp ├── 1175.cpp ├── 1176.cpp ├── 1177.cpp ├── 1178.cpp ├── 1179.cpp ├── 1180.cpp ├── 1181.cpp ├── 1182.cpp ├── 1183.cpp ├── 1184.cpp ├── 1185.cpp ├── 1186.cpp ├── 1187.cpp ├── 1188.cpp ├── 1189.cpp ├── 1190.cpp ├── 1191.cpp ├── 1192.cpp ├── 1193.cpp ├── 1194.cpp ├── 1195.cpp ├── 1196.cpp ├── 1197.cpp ├── 1198.cpp ├── 1199.cpp ├── 1200.cpp ├── 1202.cpp ├── 1203.cpp ├── 1204.cpp ├── 1205.cpp ├── 1206.cpp ├── 1209.cpp ├── 1211.cpp ├── 1212.cpp ├── 1213.cpp ├── 1214.cpp ├── 1215.cpp ├── 1216.cpp ├── 1217.cpp ├── 1219.cpp ├── 1220.cpp ├── 1221.cpp ├── 1222.cpp ├── 1223.cpp ├── 1224.cpp ├── 1225.cpp ├── 1226.cpp ├── 1227.cpp ├── 1228.cpp ├── 1229.cpp ├── 1231.cpp ├── 1256.cpp ├── 1259.cpp ├── 1265.cpp ├── 1281.cpp ├── 1282.cpp ├── 1283.cpp ├── 1291.cpp ├── 1292.cpp ├── 1293.cpp ├── 1294.cpp ├── 1295.cpp ├── 1296.cpp ├── 1298.cpp ├── 1301.cpp ├── 1311.cpp ├── 1325.cpp ├── 1336.cpp ├── 1338.cpp ├── 1347.cpp ├── 1350.cpp ├── 1361.cpp ├── 1362.cpp ├── 1363.cpp ├── 1371.cpp ├── 1381.cpp ├── 1410.cpp ├── 1416.cpp ├── 1420.cpp ├── 1421.cpp ├── 1424.cpp ├── 1435.cpp ├── 1446.cpp ├── 1462.cpp ├── 1467.cpp ├── 1469.cpp ├── 1471.cpp ├── 1472.cpp ├── 1473.cpp ├── 1474.cpp ├── 1476.cpp ├── 1488.cpp ├── 1503.cpp ├── 1514.cpp ├── 1530.cpp ├── 1532.cpp ├── 1553.cpp ├── 1577.cpp ├── 1599.cpp ├── 1602.cpp ├── 1606.cpp ├── 1617.cpp ├── 1621.cpp ├── 1664.cpp ├── 1683.cpp ├── 1708.cpp ├── 1709.cpp ├── 1710.cpp ├── 1712.cpp ├── 1713.cpp ├── 1714.cpp ├── 1715.cpp ├── 1716.cpp ├── 1717.cpp ├── 1718.cpp ├── 1720.cpp ├── 1745.cpp ├── 1749.cpp ├── 1766.cpp ├── 1794.cpp ├── 1795.cpp ├── 1796.cpp ├── 1797.cpp ├── 1798.cpp ├── 1799.cpp ├── 1801.cpp ├── 1804.cpp ├── 1806.cpp ├── 1810.cpp ├── 1816.cpp ├── 1824.cpp ├── 1835.cpp ├── 1856.cpp ├── 1910.cpp ├── 1911.cpp ├── 1913.cpp ├── 1914.cpp ├── 1916.cpp ├── 1917.cpp ├── 1919.cpp ├── 1920.cpp ├── 1928.cpp ├── 1931.cpp ├── 1932.cpp ├── 1933.cpp ├── 1935.cpp ├── 1936.cpp ├── 1938.cpp ├── 1940.cpp ├── 1941.cpp ├── 1973.cpp ├── 2103.cpp ├── 2164.cpp ├── 2345.cpp ├── 2347.cpp ├── 2348.cpp ├── 2349.cpp ├── 2350.cpp ├── 2351.cpp ├── 2353.cpp ├── 2354.cpp ├── 2572.cpp ├── 2626.cpp ├── 2627.cpp ├── 2629.cpp ├── 2630.cpp ├── 2631.cpp ├── 2632.cpp ├── 2633.cpp ├── 2634.cpp ├── 2635.cpp ├── 2636.cpp ├── Aquecimento da OBI - Fase Nacional 2018 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ ├── F.cpp │ ├── G.cpp │ ├── H.cpp │ ├── I.cpp │ ├── J.cpp │ └── K.cpp ├── II Maratona de Programação do Norte │ └── E.cpp ├── ProgBASE-2017 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ ├── F.cpp │ ├── G.cpp │ └── H.cpp ├── Treinamento Maratona de Programação UNOCHAPECÓ │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ ├── F.cpp │ └── G.cpp ├── VII MARATONA MINEIRA DE PROGRAMAÇÃO │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ ├── F.cpp │ ├── G.cpp │ ├── H.cpp │ ├── I.cpp │ ├── J.cpp │ └── K.cpp ├── contest_dalalio │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ ├── F.cpp │ ├── G.cpp │ ├── H.cpp │ └── I.cpp ├── contest_natal_2017 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ ├── F.cpp │ ├── G.cpp │ ├── H.cpp │ ├── I.cpp │ └── J.cpp └── unb_2015_cic │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ ├── F.cpp │ ├── G.cpp │ ├── H.cpp │ ├── I.cpp │ ├── J.cpp │ ├── K.cpp │ └── L.cpp └── UVa ├── 10010.cpp ├── 10038.cpp ├── 10107.cpp ├── 10114.cpp ├── 10141.cpp ├── 10192.cpp ├── 10245.cpp ├── 10258.cpp ├── 10263.cpp ├── 10264.cpp ├── 10298.cpp ├── 1047.cpp ├── 10550.cpp ├── 10594.cpp ├── 10652.cpp ├── 10679.cpp ├── 10855.cpp ├── 10920.cpp ├── 10976.cpp ├── 11022.cpp ├── 11044.cpp ├── 11107.cpp ├── 1111.cpp ├── 11151.cpp ├── 11172.cpp ├── 1124.cpp ├── 11242.cpp ├── 11258.cpp ├── 11265.cpp ├── 11283.cpp ├── 11364.cpp ├── 11417.cpp ├── 11424.cpp ├── 11426.cpp ├── 11475.cpp ├── 11498.cpp ├── 11507.cpp ├── 11547.cpp ├── 11553.cpp ├── 11559.cpp ├── 11576.cpp ├── 11581.cpp ├── 11727.cpp ├── 11799.cpp ├── 11926.cpp ├── 11933.cpp ├── 11988.cpp ├── 12060.cpp ├── 12250.cpp ├── 12279.cpp ├── 12289.cpp ├── 12356.cpp ├── 1237.cpp ├── 12372.cpp ├── 12403.cpp ├── 12455.cpp ├── 12524.cpp ├── 12577.cpp ├── 1260.cpp ├── 12799.cpp ├── 146.cpp ├── 272.cpp ├── 422.cpp ├── 514.cpp ├── 526.cpp ├── 556.cpp ├── 573.cpp ├── 621.cpp ├── 681.cpp ├── 760.cpp ├── 920.cpp └── 927.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/.gitignore -------------------------------------------------------------------------------- /CodCad/80.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/CodCad/80.cpp -------------------------------------------------------------------------------- /Codeforces/Gym/100345 2007-2008 Winter Petrozavodsk Camp, Andrew Stankevich Contest 30 (ASC 30)/nim.in: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /Codeforces/Gym/100650 2005-2006 ACM-ICPC East Central North America Regional Contest (ECNA 2005)/F.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Codeforces/Gym/101221 2014 ACM-ICPC World Finals/A.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Codeforces/Gym/101221 2014 ACM-ICPC World Finals/B.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Codeforces/Gym/101480 2015-2016 ACM-ICPC, Central Europe Regional Contest (CERC 15)/L.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Kattis/F.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Kattis/F.cpp -------------------------------------------------------------------------------- /Leetcode/': -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/' -------------------------------------------------------------------------------- /Leetcode/1010.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1010.cpp -------------------------------------------------------------------------------- /Leetcode/1024.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1024.cpp -------------------------------------------------------------------------------- /Leetcode/1026.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1026.cpp -------------------------------------------------------------------------------- /Leetcode/1027.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1027.cpp -------------------------------------------------------------------------------- /Leetcode/1039.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1039.cpp -------------------------------------------------------------------------------- /Leetcode/1048.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1048.cpp -------------------------------------------------------------------------------- /Leetcode/1061.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1061.cpp -------------------------------------------------------------------------------- /Leetcode/1072.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1072.cpp -------------------------------------------------------------------------------- /Leetcode/1079.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1079.cpp -------------------------------------------------------------------------------- /Leetcode/1091.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1091.cpp -------------------------------------------------------------------------------- /Leetcode/1095.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1095.cpp -------------------------------------------------------------------------------- /Leetcode/1105.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1105.cpp -------------------------------------------------------------------------------- /Leetcode/111.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/111.cpp -------------------------------------------------------------------------------- /Leetcode/1123.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1123.cpp -------------------------------------------------------------------------------- /Leetcode/1140.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1140.cpp -------------------------------------------------------------------------------- /Leetcode/1143.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1143.cpp -------------------------------------------------------------------------------- /Leetcode/116.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/116.cpp -------------------------------------------------------------------------------- /Leetcode/1161.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1161.cpp -------------------------------------------------------------------------------- /Leetcode/117.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/117.cpp -------------------------------------------------------------------------------- /Leetcode/118.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/118.cpp -------------------------------------------------------------------------------- /Leetcode/1190.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1190.cpp -------------------------------------------------------------------------------- /Leetcode/120.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/120.cpp -------------------------------------------------------------------------------- /Leetcode/1207.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1207.cpp -------------------------------------------------------------------------------- /Leetcode/1210.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1210.cpp -------------------------------------------------------------------------------- /Leetcode/1218.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1218.cpp -------------------------------------------------------------------------------- /Leetcode/1220.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1220.cpp -------------------------------------------------------------------------------- /Leetcode/1232.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1232.cpp -------------------------------------------------------------------------------- /Leetcode/1233.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1233.cpp -------------------------------------------------------------------------------- /Leetcode/1235.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1235.cpp -------------------------------------------------------------------------------- /Leetcode/1239.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1239.cpp -------------------------------------------------------------------------------- /Leetcode/1261.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1261.cpp -------------------------------------------------------------------------------- /Leetcode/1267.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1267.cpp -------------------------------------------------------------------------------- /Leetcode/1277.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1277.cpp -------------------------------------------------------------------------------- /Leetcode/1282.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1282.cpp -------------------------------------------------------------------------------- /Leetcode/1290.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1290.cpp -------------------------------------------------------------------------------- /Leetcode/1291.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1291.cpp -------------------------------------------------------------------------------- /Leetcode/1298.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1298.cpp -------------------------------------------------------------------------------- /Leetcode/1310.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1310.cpp -------------------------------------------------------------------------------- /Leetcode/1317.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1317.cpp -------------------------------------------------------------------------------- /Leetcode/1318.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1318.cpp -------------------------------------------------------------------------------- /Leetcode/132-2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/132-2.cpp -------------------------------------------------------------------------------- /Leetcode/132.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/132.cpp -------------------------------------------------------------------------------- /Leetcode/1326.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1326.cpp -------------------------------------------------------------------------------- /Leetcode/1331.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1331.cpp -------------------------------------------------------------------------------- /Leetcode/1334.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1334.cpp -------------------------------------------------------------------------------- /Leetcode/1337.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1337.cpp -------------------------------------------------------------------------------- /Leetcode/1339.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1339.cpp -------------------------------------------------------------------------------- /Leetcode/1347.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1347.cpp -------------------------------------------------------------------------------- /Leetcode/135.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/135.cpp -------------------------------------------------------------------------------- /Leetcode/1351.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1351.cpp -------------------------------------------------------------------------------- /Leetcode/1353.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1353.cpp -------------------------------------------------------------------------------- /Leetcode/1356.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1356.cpp -------------------------------------------------------------------------------- /Leetcode/1358.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1358.cpp -------------------------------------------------------------------------------- /Leetcode/1367.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1367.cpp -------------------------------------------------------------------------------- /Leetcode/1376.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1376.cpp -------------------------------------------------------------------------------- /Leetcode/138.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/138.cpp -------------------------------------------------------------------------------- /Leetcode/1381.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1381.cpp -------------------------------------------------------------------------------- /Leetcode/1396.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1396.cpp -------------------------------------------------------------------------------- /Leetcode/1400.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1400.cpp -------------------------------------------------------------------------------- /Leetcode/1401.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1401.cpp -------------------------------------------------------------------------------- /Leetcode/1405.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1405.cpp -------------------------------------------------------------------------------- /Leetcode/1406.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1406.cpp -------------------------------------------------------------------------------- /Leetcode/1408.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1408.cpp -------------------------------------------------------------------------------- /Leetcode/1415.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1415.cpp -------------------------------------------------------------------------------- /Leetcode/1420.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1420.cpp -------------------------------------------------------------------------------- /Leetcode/1424.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1424.cpp -------------------------------------------------------------------------------- /Leetcode/1441.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1441.cpp -------------------------------------------------------------------------------- /Leetcode/1443.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1443.cpp -------------------------------------------------------------------------------- /Leetcode/1455.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1455.cpp -------------------------------------------------------------------------------- /Leetcode/1457.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1457.cpp -------------------------------------------------------------------------------- /Leetcode/1458.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1458.cpp -------------------------------------------------------------------------------- /Leetcode/146.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/146.cpp -------------------------------------------------------------------------------- /Leetcode/1460.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1460.cpp -------------------------------------------------------------------------------- /Leetcode/1462.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1462.cpp -------------------------------------------------------------------------------- /Leetcode/148.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/148.cpp -------------------------------------------------------------------------------- /Leetcode/1488.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1488.cpp -------------------------------------------------------------------------------- /Leetcode/1493.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1493.cpp -------------------------------------------------------------------------------- /Leetcode/1497.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1497.cpp -------------------------------------------------------------------------------- /Leetcode/150.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/150.cpp -------------------------------------------------------------------------------- /Leetcode/1502.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1502.cpp -------------------------------------------------------------------------------- /Leetcode/1503.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1503.cpp -------------------------------------------------------------------------------- /Leetcode/1504.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1504.cpp -------------------------------------------------------------------------------- /Leetcode/1509.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1509.cpp -------------------------------------------------------------------------------- /Leetcode/1512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1512.cpp -------------------------------------------------------------------------------- /Leetcode/1514.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1514.cpp -------------------------------------------------------------------------------- /Leetcode/1518.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1518.cpp -------------------------------------------------------------------------------- /Leetcode/1534.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1534.cpp -------------------------------------------------------------------------------- /Leetcode/1547.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1547.cpp -------------------------------------------------------------------------------- /Leetcode/1550.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1550.cpp -------------------------------------------------------------------------------- /Leetcode/1557.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1557.cpp -------------------------------------------------------------------------------- /Leetcode/1569.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1569.cpp -------------------------------------------------------------------------------- /Leetcode/1584.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1584.cpp -------------------------------------------------------------------------------- /Leetcode/1590.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1590.cpp -------------------------------------------------------------------------------- /Leetcode/1603.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1603.cpp -------------------------------------------------------------------------------- /Leetcode/1611.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1611.cpp -------------------------------------------------------------------------------- /Leetcode/1615.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1615.cpp -------------------------------------------------------------------------------- /Leetcode/1630.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1630.cpp -------------------------------------------------------------------------------- /Leetcode/1631.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1631.cpp -------------------------------------------------------------------------------- /Leetcode/1636.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1636.cpp -------------------------------------------------------------------------------- /Leetcode/1643.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1643.cpp -------------------------------------------------------------------------------- /Leetcode/1647.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1647.cpp -------------------------------------------------------------------------------- /Leetcode/165.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/165.cpp -------------------------------------------------------------------------------- /Leetcode/1652.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1652.cpp -------------------------------------------------------------------------------- /Leetcode/1653.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1653.cpp -------------------------------------------------------------------------------- /Leetcode/1658.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1658.cpp -------------------------------------------------------------------------------- /Leetcode/166.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/166.cpp -------------------------------------------------------------------------------- /Leetcode/1662.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1662.cpp -------------------------------------------------------------------------------- /Leetcode/1671.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1671.cpp -------------------------------------------------------------------------------- /Leetcode/168.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/168.cpp -------------------------------------------------------------------------------- /Leetcode/1684.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1684.cpp -------------------------------------------------------------------------------- /Leetcode/17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/17.cpp -------------------------------------------------------------------------------- /Leetcode/1701.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1701.cpp -------------------------------------------------------------------------------- /Leetcode/1704.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1704.cpp -------------------------------------------------------------------------------- /Leetcode/1717.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1717.cpp -------------------------------------------------------------------------------- /Leetcode/1721.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1721.cpp -------------------------------------------------------------------------------- /Leetcode/1726.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1726.cpp -------------------------------------------------------------------------------- /Leetcode/1733.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1733.cpp -------------------------------------------------------------------------------- /Leetcode/1743.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1743.cpp -------------------------------------------------------------------------------- /Leetcode/1749.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1749.cpp -------------------------------------------------------------------------------- /Leetcode/1751.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1751.cpp -------------------------------------------------------------------------------- /Leetcode/1759.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1759.cpp -------------------------------------------------------------------------------- /Leetcode/1765.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1765.cpp -------------------------------------------------------------------------------- /Leetcode/1769.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1769.cpp -------------------------------------------------------------------------------- /Leetcode/179.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/179.cpp -------------------------------------------------------------------------------- /Leetcode/1790.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1790.cpp -------------------------------------------------------------------------------- /Leetcode/1800.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1800.cpp -------------------------------------------------------------------------------- /Leetcode/1814.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1814.cpp -------------------------------------------------------------------------------- /Leetcode/1823.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1823.cpp -------------------------------------------------------------------------------- /Leetcode/1829.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1829.cpp -------------------------------------------------------------------------------- /Leetcode/1845.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1845.cpp -------------------------------------------------------------------------------- /Leetcode/1846.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1846.cpp -------------------------------------------------------------------------------- /Leetcode/1861.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1861.cpp -------------------------------------------------------------------------------- /Leetcode/1870.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1870.cpp -------------------------------------------------------------------------------- /Leetcode/1877.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1877.cpp -------------------------------------------------------------------------------- /Leetcode/1900.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1900.cpp -------------------------------------------------------------------------------- /Leetcode/1905.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1905.cpp -------------------------------------------------------------------------------- /Leetcode/191-2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/191-2.cpp -------------------------------------------------------------------------------- /Leetcode/191.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/191.cpp -------------------------------------------------------------------------------- /Leetcode/1910.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1910.cpp -------------------------------------------------------------------------------- /Leetcode/1920.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1920.cpp -------------------------------------------------------------------------------- /Leetcode/1921.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1921.cpp -------------------------------------------------------------------------------- /Leetcode/1930.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1930.cpp -------------------------------------------------------------------------------- /Leetcode/1935.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1935.cpp -------------------------------------------------------------------------------- /Leetcode/1937.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1937.cpp -------------------------------------------------------------------------------- /Leetcode/1942.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1942.cpp -------------------------------------------------------------------------------- /Leetcode/1943.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1943.cpp -------------------------------------------------------------------------------- /Leetcode/1945.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1945.cpp -------------------------------------------------------------------------------- /Leetcode/1957.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1957.cpp -------------------------------------------------------------------------------- /Leetcode/1963.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1963.cpp -------------------------------------------------------------------------------- /Leetcode/1970.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1970.cpp -------------------------------------------------------------------------------- /Leetcode/1980.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/1980.cpp -------------------------------------------------------------------------------- /Leetcode/2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2.cpp -------------------------------------------------------------------------------- /Leetcode/2009.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2009.cpp -------------------------------------------------------------------------------- /Leetcode/2011.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2011.cpp -------------------------------------------------------------------------------- /Leetcode/2014.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2014.cpp -------------------------------------------------------------------------------- /Leetcode/2016.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2016.cpp -------------------------------------------------------------------------------- /Leetcode/2017.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2017.cpp -------------------------------------------------------------------------------- /Leetcode/2024.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2024.cpp -------------------------------------------------------------------------------- /Leetcode/2028.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2028.cpp -------------------------------------------------------------------------------- /Leetcode/2033.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2033.cpp -------------------------------------------------------------------------------- /Leetcode/2038.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2038.cpp -------------------------------------------------------------------------------- /Leetcode/2040.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2040.cpp -------------------------------------------------------------------------------- /Leetcode/2044.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2044.cpp -------------------------------------------------------------------------------- /Leetcode/2054.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2054.cpp -------------------------------------------------------------------------------- /Leetcode/207.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/207.cpp -------------------------------------------------------------------------------- /Leetcode/2070.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2070.cpp -------------------------------------------------------------------------------- /Leetcode/2075.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2075.cpp -------------------------------------------------------------------------------- /Leetcode/2081.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2081.cpp -------------------------------------------------------------------------------- /Leetcode/209.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/209.cpp -------------------------------------------------------------------------------- /Leetcode/2090.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2090.cpp -------------------------------------------------------------------------------- /Leetcode/2094.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2094.cpp -------------------------------------------------------------------------------- /Leetcode/2096.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2096.cpp -------------------------------------------------------------------------------- /Leetcode/2099.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2099.cpp -------------------------------------------------------------------------------- /Leetcode/2101.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2101.cpp -------------------------------------------------------------------------------- /Leetcode/2109.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2109.cpp -------------------------------------------------------------------------------- /Leetcode/2115.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2115.cpp -------------------------------------------------------------------------------- /Leetcode/2125.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2125.cpp -------------------------------------------------------------------------------- /Leetcode/2130.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2130.cpp -------------------------------------------------------------------------------- /Leetcode/2131.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2131.cpp -------------------------------------------------------------------------------- /Leetcode/2134.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2134.cpp -------------------------------------------------------------------------------- /Leetcode/214.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/214.cpp -------------------------------------------------------------------------------- /Leetcode/2140.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2140.cpp -------------------------------------------------------------------------------- /Leetcode/2141.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2141.cpp -------------------------------------------------------------------------------- /Leetcode/2145.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2145.cpp -------------------------------------------------------------------------------- /Leetcode/2147.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2147.cpp -------------------------------------------------------------------------------- /Leetcode/215.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/215.cpp -------------------------------------------------------------------------------- /Leetcode/2163.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2163.cpp -------------------------------------------------------------------------------- /Leetcode/2176.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2176.cpp -------------------------------------------------------------------------------- /Leetcode/2179.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2179.cpp -------------------------------------------------------------------------------- /Leetcode/2185.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2185.cpp -------------------------------------------------------------------------------- /Leetcode/2191.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2191.cpp -------------------------------------------------------------------------------- /Leetcode/2196.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2196.cpp -------------------------------------------------------------------------------- /Leetcode/2197.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2197.cpp -------------------------------------------------------------------------------- /Leetcode/2200.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2200.cpp -------------------------------------------------------------------------------- /Leetcode/2206.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2206.cpp -------------------------------------------------------------------------------- /Leetcode/2220.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2220.cpp -------------------------------------------------------------------------------- /Leetcode/2221.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2221.cpp -------------------------------------------------------------------------------- /Leetcode/2226.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2226.cpp -------------------------------------------------------------------------------- /Leetcode/225.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/225.cpp -------------------------------------------------------------------------------- /Leetcode/2251.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2251.cpp -------------------------------------------------------------------------------- /Leetcode/2257.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2257.cpp -------------------------------------------------------------------------------- /Leetcode/2264.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2264.cpp -------------------------------------------------------------------------------- /Leetcode/2265.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2265.cpp -------------------------------------------------------------------------------- /Leetcode/2273.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2273.cpp -------------------------------------------------------------------------------- /Leetcode/2275.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2275.cpp -------------------------------------------------------------------------------- /Leetcode/228.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/228.cpp -------------------------------------------------------------------------------- /Leetcode/2281.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2281.cpp -------------------------------------------------------------------------------- /Leetcode/229.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/229.cpp -------------------------------------------------------------------------------- /Leetcode/2300.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2300.cpp -------------------------------------------------------------------------------- /Leetcode/2305.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2305.cpp -------------------------------------------------------------------------------- /Leetcode/231.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/231.cpp -------------------------------------------------------------------------------- /Leetcode/2311.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2311.cpp -------------------------------------------------------------------------------- /Leetcode/232-2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/232-2.cpp -------------------------------------------------------------------------------- /Leetcode/232.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/232.cpp -------------------------------------------------------------------------------- /Leetcode/2322.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2322.cpp -------------------------------------------------------------------------------- /Leetcode/2326.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2326.cpp -------------------------------------------------------------------------------- /Leetcode/2327.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2327.cpp -------------------------------------------------------------------------------- /Leetcode/2337.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2337.cpp -------------------------------------------------------------------------------- /Leetcode/2338.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2338.cpp -------------------------------------------------------------------------------- /Leetcode/2342.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2342.cpp -------------------------------------------------------------------------------- /Leetcode/2348.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2348.cpp -------------------------------------------------------------------------------- /Leetcode/2352.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2352.cpp -------------------------------------------------------------------------------- /Leetcode/2353.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2353.cpp -------------------------------------------------------------------------------- /Leetcode/2357.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2357.cpp -------------------------------------------------------------------------------- /Leetcode/2359.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2359.cpp -------------------------------------------------------------------------------- /Leetcode/2366.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2366.cpp -------------------------------------------------------------------------------- /Leetcode/2375.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2375.cpp -------------------------------------------------------------------------------- /Leetcode/238-2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/238-2.cpp -------------------------------------------------------------------------------- /Leetcode/238.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/238.cpp -------------------------------------------------------------------------------- /Leetcode/2385.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2385.cpp -------------------------------------------------------------------------------- /Leetcode/239.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/239.cpp -------------------------------------------------------------------------------- /Leetcode/2391.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2391.cpp -------------------------------------------------------------------------------- /Leetcode/24.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/24.cpp -------------------------------------------------------------------------------- /Leetcode/2401.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2401.cpp -------------------------------------------------------------------------------- /Leetcode/241.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/241.cpp -------------------------------------------------------------------------------- /Leetcode/2411.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2411.cpp -------------------------------------------------------------------------------- /Leetcode/2416.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2416.cpp -------------------------------------------------------------------------------- /Leetcode/2418.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2418.cpp -------------------------------------------------------------------------------- /Leetcode/2419.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2419.cpp -------------------------------------------------------------------------------- /Leetcode/2425.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2425.cpp -------------------------------------------------------------------------------- /Leetcode/2428.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2428.cpp -------------------------------------------------------------------------------- /Leetcode/2429.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2429.cpp -------------------------------------------------------------------------------- /Leetcode/2433.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2433.cpp -------------------------------------------------------------------------------- /Leetcode/2434.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2434.cpp -------------------------------------------------------------------------------- /Leetcode/2438.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2438.cpp -------------------------------------------------------------------------------- /Leetcode/2444.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2444.cpp -------------------------------------------------------------------------------- /Leetcode/2448.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2448.cpp -------------------------------------------------------------------------------- /Leetcode/2457.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2457.cpp -------------------------------------------------------------------------------- /Leetcode/2458.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2458.cpp -------------------------------------------------------------------------------- /Leetcode/2461.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2461.cpp -------------------------------------------------------------------------------- /Leetcode/2463.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2463.cpp -------------------------------------------------------------------------------- /Leetcode/2466.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2466.cpp -------------------------------------------------------------------------------- /Leetcode/2478.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2478.cpp -------------------------------------------------------------------------------- /Leetcode/2483.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2483.cpp -------------------------------------------------------------------------------- /Leetcode/2487.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2487.cpp -------------------------------------------------------------------------------- /Leetcode/2491.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2491.cpp -------------------------------------------------------------------------------- /Leetcode/2493.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2493.cpp -------------------------------------------------------------------------------- /Leetcode/2501.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2501.cpp -------------------------------------------------------------------------------- /Leetcode/2514.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2514.cpp -------------------------------------------------------------------------------- /Leetcode/2516.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2516.cpp -------------------------------------------------------------------------------- /Leetcode/2523.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2523.cpp -------------------------------------------------------------------------------- /Leetcode/2529.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2529.cpp -------------------------------------------------------------------------------- /Leetcode/2530.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2530.cpp -------------------------------------------------------------------------------- /Leetcode/2537.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2537.cpp -------------------------------------------------------------------------------- /Leetcode/2542.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2542.cpp -------------------------------------------------------------------------------- /Leetcode/2551.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2551.cpp -------------------------------------------------------------------------------- /Leetcode/2558.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2558.cpp -------------------------------------------------------------------------------- /Leetcode/2563.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2563.cpp -------------------------------------------------------------------------------- /Leetcode/2566.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2566.cpp -------------------------------------------------------------------------------- /Leetcode/2598.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2598.cpp -------------------------------------------------------------------------------- /Leetcode/2601.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2601.cpp -------------------------------------------------------------------------------- /Leetcode/2616.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2616.cpp -------------------------------------------------------------------------------- /Leetcode/2641.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2641.cpp -------------------------------------------------------------------------------- /Leetcode/2642.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2642.cpp -------------------------------------------------------------------------------- /Leetcode/2657.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2657.cpp -------------------------------------------------------------------------------- /Leetcode/2658.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2658.cpp -------------------------------------------------------------------------------- /Leetcode/2678.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2678.cpp -------------------------------------------------------------------------------- /Leetcode/2683.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2683.cpp -------------------------------------------------------------------------------- /Leetcode/2684.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2684.cpp -------------------------------------------------------------------------------- /Leetcode/2696.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2696.cpp -------------------------------------------------------------------------------- /Leetcode/2707.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2707.cpp -------------------------------------------------------------------------------- /Leetcode/273.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/273.cpp -------------------------------------------------------------------------------- /Leetcode/2749.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2749.cpp -------------------------------------------------------------------------------- /Leetcode/2785.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2785.cpp -------------------------------------------------------------------------------- /Leetcode/2787.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2787.cpp -------------------------------------------------------------------------------- /Leetcode/2799.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2799.cpp -------------------------------------------------------------------------------- /Leetcode/2807.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2807.cpp -------------------------------------------------------------------------------- /Leetcode/2825.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2825.cpp -------------------------------------------------------------------------------- /Leetcode/2826.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2826.cpp -------------------------------------------------------------------------------- /Leetcode/2843.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2843.cpp -------------------------------------------------------------------------------- /Leetcode/2845.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2845.cpp -------------------------------------------------------------------------------- /Leetcode/2849.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2849.cpp -------------------------------------------------------------------------------- /Leetcode/2860.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2860.cpp -------------------------------------------------------------------------------- /Leetcode/287.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/287.cpp -------------------------------------------------------------------------------- /Leetcode/2870.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2870.cpp -------------------------------------------------------------------------------- /Leetcode/2873.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2873.cpp -------------------------------------------------------------------------------- /Leetcode/2874.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2874.cpp -------------------------------------------------------------------------------- /Leetcode/2894.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2894.cpp -------------------------------------------------------------------------------- /Leetcode/2900.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2900.cpp -------------------------------------------------------------------------------- /Leetcode/2901.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2901.cpp -------------------------------------------------------------------------------- /Leetcode/2914.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2914.cpp -------------------------------------------------------------------------------- /Leetcode/2918.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2918.cpp -------------------------------------------------------------------------------- /Leetcode/2924.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2924.cpp -------------------------------------------------------------------------------- /Leetcode/2938.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2938.cpp -------------------------------------------------------------------------------- /Leetcode/2966.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2966.cpp -------------------------------------------------------------------------------- /Leetcode/2976.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2976.cpp -------------------------------------------------------------------------------- /Leetcode/2999.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/2999.cpp -------------------------------------------------------------------------------- /Leetcode/300.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/300.cpp -------------------------------------------------------------------------------- /Leetcode/3000.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3000.cpp -------------------------------------------------------------------------------- /Leetcode/3005.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3005.cpp -------------------------------------------------------------------------------- /Leetcode/3011.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3011.cpp -------------------------------------------------------------------------------- /Leetcode/3016.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3016.cpp -------------------------------------------------------------------------------- /Leetcode/3021.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3021.cpp -------------------------------------------------------------------------------- /Leetcode/3024.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3024.cpp -------------------------------------------------------------------------------- /Leetcode/3025.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3025.cpp -------------------------------------------------------------------------------- /Leetcode/3027.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3027.cpp -------------------------------------------------------------------------------- /Leetcode/3042.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3042.cpp -------------------------------------------------------------------------------- /Leetcode/3043.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3043.cpp -------------------------------------------------------------------------------- /Leetcode/3066.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3066.cpp -------------------------------------------------------------------------------- /Leetcode/3068.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3068.cpp -------------------------------------------------------------------------------- /Leetcode/3085.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3085.cpp -------------------------------------------------------------------------------- /Leetcode/3100.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3100.cpp -------------------------------------------------------------------------------- /Leetcode/3105.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3105.cpp -------------------------------------------------------------------------------- /Leetcode/3108.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3108.cpp -------------------------------------------------------------------------------- /Leetcode/3133.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3133.cpp -------------------------------------------------------------------------------- /Leetcode/3136.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3136.cpp -------------------------------------------------------------------------------- /Leetcode/3147.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3147.cpp -------------------------------------------------------------------------------- /Leetcode/3152.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3152.cpp -------------------------------------------------------------------------------- /Leetcode/316.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/316.cpp -------------------------------------------------------------------------------- /Leetcode/3163.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3163.cpp -------------------------------------------------------------------------------- /Leetcode/3169.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3169.cpp -------------------------------------------------------------------------------- /Leetcode/3174.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3174.cpp -------------------------------------------------------------------------------- /Leetcode/3186.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3186.cpp -------------------------------------------------------------------------------- /Leetcode/3191.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3191.cpp -------------------------------------------------------------------------------- /Leetcode/3195.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3195.cpp -------------------------------------------------------------------------------- /Leetcode/3200.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3200.cpp -------------------------------------------------------------------------------- /Leetcode/3201.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3201.cpp -------------------------------------------------------------------------------- /Leetcode/3202.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3202.cpp -------------------------------------------------------------------------------- /Leetcode/3217.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3217.cpp -------------------------------------------------------------------------------- /Leetcode/3223.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3223.cpp -------------------------------------------------------------------------------- /Leetcode/3227.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3227.cpp -------------------------------------------------------------------------------- /Leetcode/3243.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3243.cpp -------------------------------------------------------------------------------- /Leetcode/326.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/326.cpp -------------------------------------------------------------------------------- /Leetcode/3272.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3272.cpp -------------------------------------------------------------------------------- /Leetcode/3277.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3277.cpp -------------------------------------------------------------------------------- /Leetcode/33.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/33.cpp -------------------------------------------------------------------------------- /Leetcode/3305.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3305.cpp -------------------------------------------------------------------------------- /Leetcode/3306.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3306.cpp -------------------------------------------------------------------------------- /Leetcode/3307.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3307.cpp -------------------------------------------------------------------------------- /Leetcode/332.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/332.cpp -------------------------------------------------------------------------------- /Leetcode/3330.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3330.cpp -------------------------------------------------------------------------------- /Leetcode/3333.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3333.cpp -------------------------------------------------------------------------------- /Leetcode/3335.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3335.cpp -------------------------------------------------------------------------------- /Leetcode/3337.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3337.cpp -------------------------------------------------------------------------------- /Leetcode/3341.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3341.cpp -------------------------------------------------------------------------------- /Leetcode/3342.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3342.cpp -------------------------------------------------------------------------------- /Leetcode/3343.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3343.cpp -------------------------------------------------------------------------------- /Leetcode/3346.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3346.cpp -------------------------------------------------------------------------------- /Leetcode/3347.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3347.cpp -------------------------------------------------------------------------------- /Leetcode/3349.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3349.cpp -------------------------------------------------------------------------------- /Leetcode/3350.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3350.cpp -------------------------------------------------------------------------------- /Leetcode/3355.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3355.cpp -------------------------------------------------------------------------------- /Leetcode/3356.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3356.cpp -------------------------------------------------------------------------------- /Leetcode/3362.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3362.cpp -------------------------------------------------------------------------------- /Leetcode/3363.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3363.cpp -------------------------------------------------------------------------------- /Leetcode/3372.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3372.cpp -------------------------------------------------------------------------------- /Leetcode/3373.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3373.cpp -------------------------------------------------------------------------------- /Leetcode/3375.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3375.cpp -------------------------------------------------------------------------------- /Leetcode/338-2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/338-2.cpp -------------------------------------------------------------------------------- /Leetcode/338.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/338.cpp -------------------------------------------------------------------------------- /Leetcode/3394.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/3394.cpp -------------------------------------------------------------------------------- /Leetcode/343.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/343.cpp -------------------------------------------------------------------------------- /Leetcode/350.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/350.cpp -------------------------------------------------------------------------------- /Leetcode/377.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/377.cpp -------------------------------------------------------------------------------- /Leetcode/38.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/38.cpp -------------------------------------------------------------------------------- /Leetcode/380.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/380.cpp -------------------------------------------------------------------------------- /Leetcode/386.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/386.cpp -------------------------------------------------------------------------------- /Leetcode/387.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/387.cpp -------------------------------------------------------------------------------- /Leetcode/389.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/389.cpp -------------------------------------------------------------------------------- /Leetcode/392.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/392.cpp -------------------------------------------------------------------------------- /Leetcode/4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/4.cpp -------------------------------------------------------------------------------- /Leetcode/40.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/40.cpp -------------------------------------------------------------------------------- /Leetcode/407.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/407.cpp -------------------------------------------------------------------------------- /Leetcode/416.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/416.cpp -------------------------------------------------------------------------------- /Leetcode/432.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/432.cpp -------------------------------------------------------------------------------- /Leetcode/435.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/435.cpp -------------------------------------------------------------------------------- /Leetcode/440.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/440.cpp -------------------------------------------------------------------------------- /Leetcode/445.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/445.cpp -------------------------------------------------------------------------------- /Leetcode/451.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/451.cpp -------------------------------------------------------------------------------- /Leetcode/456.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/456.cpp -------------------------------------------------------------------------------- /Leetcode/459.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/459.cpp -------------------------------------------------------------------------------- /Leetcode/46.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/46.cpp -------------------------------------------------------------------------------- /Leetcode/476.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/476.cpp -------------------------------------------------------------------------------- /Leetcode/486.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/486.cpp -------------------------------------------------------------------------------- /Leetcode/49.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/49.cpp -------------------------------------------------------------------------------- /Leetcode/493.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/493.cpp -------------------------------------------------------------------------------- /Leetcode/498.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/498.cpp -------------------------------------------------------------------------------- /Leetcode/5-2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/5-2.cpp -------------------------------------------------------------------------------- /Leetcode/5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/5.cpp -------------------------------------------------------------------------------- /Leetcode/50.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/50.cpp -------------------------------------------------------------------------------- /Leetcode/501.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/501.cpp -------------------------------------------------------------------------------- /Leetcode/518.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/518.cpp -------------------------------------------------------------------------------- /Leetcode/523.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/523.cpp -------------------------------------------------------------------------------- /Leetcode/530.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/530.cpp -------------------------------------------------------------------------------- /Leetcode/539.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/539.cpp -------------------------------------------------------------------------------- /Leetcode/542.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/542.cpp -------------------------------------------------------------------------------- /Leetcode/576.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/576.cpp -------------------------------------------------------------------------------- /Leetcode/590.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/590.cpp -------------------------------------------------------------------------------- /Leetcode/592.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/592.cpp -------------------------------------------------------------------------------- /Leetcode/594.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/594.cpp -------------------------------------------------------------------------------- /Leetcode/606.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/606.cpp -------------------------------------------------------------------------------- /Leetcode/611.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/611.cpp -------------------------------------------------------------------------------- /Leetcode/624.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/624.cpp -------------------------------------------------------------------------------- /Leetcode/629.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/629.cpp -------------------------------------------------------------------------------- /Leetcode/63.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/63.cpp -------------------------------------------------------------------------------- /Leetcode/641.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/641.cpp -------------------------------------------------------------------------------- /Leetcode/645.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/645.cpp -------------------------------------------------------------------------------- /Leetcode/650.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/650.cpp -------------------------------------------------------------------------------- /Leetcode/664.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/664.cpp -------------------------------------------------------------------------------- /Leetcode/670.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/670.cpp -------------------------------------------------------------------------------- /Leetcode/673.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/673.cpp -------------------------------------------------------------------------------- /Leetcode/68.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/68.cpp -------------------------------------------------------------------------------- /Leetcode/684.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/684.cpp -------------------------------------------------------------------------------- /Leetcode/688.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/688.cpp -------------------------------------------------------------------------------- /Leetcode/70.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/70.cpp -------------------------------------------------------------------------------- /Leetcode/703.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/703.cpp -------------------------------------------------------------------------------- /Leetcode/705.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/705.cpp -------------------------------------------------------------------------------- /Leetcode/706.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/706.cpp -------------------------------------------------------------------------------- /Leetcode/712.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/712.cpp -------------------------------------------------------------------------------- /Leetcode/714.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/714.cpp -------------------------------------------------------------------------------- /Leetcode/719.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/719.cpp -------------------------------------------------------------------------------- /Leetcode/725.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/725.cpp -------------------------------------------------------------------------------- /Leetcode/729.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/729.cpp -------------------------------------------------------------------------------- /Leetcode/73.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/73.cpp -------------------------------------------------------------------------------- /Leetcode/731.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/731.cpp -------------------------------------------------------------------------------- /Leetcode/735.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/735.cpp -------------------------------------------------------------------------------- /Leetcode/739.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/739.cpp -------------------------------------------------------------------------------- /Leetcode/744.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/744.cpp -------------------------------------------------------------------------------- /Leetcode/746.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/746.cpp -------------------------------------------------------------------------------- /Leetcode/767.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/767.cpp -------------------------------------------------------------------------------- /Leetcode/77.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/77.cpp -------------------------------------------------------------------------------- /Leetcode/773.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/773.cpp -------------------------------------------------------------------------------- /Leetcode/778.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/778.cpp -------------------------------------------------------------------------------- /Leetcode/779.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/779.cpp -------------------------------------------------------------------------------- /Leetcode/790.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/790.cpp -------------------------------------------------------------------------------- /Leetcode/802.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/802.cpp -------------------------------------------------------------------------------- /Leetcode/803.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/803.cpp -------------------------------------------------------------------------------- /Leetcode/808.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/808.cpp -------------------------------------------------------------------------------- /Leetcode/81.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/81.cpp -------------------------------------------------------------------------------- /Leetcode/812.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/812.cpp -------------------------------------------------------------------------------- /Leetcode/823.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/823.cpp -------------------------------------------------------------------------------- /Leetcode/827.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/827.cpp -------------------------------------------------------------------------------- /Leetcode/837.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/837.cpp -------------------------------------------------------------------------------- /Leetcode/838.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/838.cpp -------------------------------------------------------------------------------- /Leetcode/840.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/840.cpp -------------------------------------------------------------------------------- /Leetcode/852.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/852.cpp -------------------------------------------------------------------------------- /Leetcode/859.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/859.cpp -------------------------------------------------------------------------------- /Leetcode/86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/86.cpp -------------------------------------------------------------------------------- /Leetcode/860.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/860.cpp -------------------------------------------------------------------------------- /Leetcode/863.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/863.cpp -------------------------------------------------------------------------------- /Leetcode/864.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/864.cpp -------------------------------------------------------------------------------- /Leetcode/872.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/872.cpp -------------------------------------------------------------------------------- /Leetcode/874.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/874.cpp -------------------------------------------------------------------------------- /Leetcode/880.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/880.cpp -------------------------------------------------------------------------------- /Leetcode/884.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/884.cpp -------------------------------------------------------------------------------- /Leetcode/896.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/896.cpp -------------------------------------------------------------------------------- /Leetcode/898.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/898.cpp -------------------------------------------------------------------------------- /Leetcode/904.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/904.cpp -------------------------------------------------------------------------------- /Leetcode/905.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/905.cpp -------------------------------------------------------------------------------- /Leetcode/909.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/909.cpp -------------------------------------------------------------------------------- /Leetcode/912.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/912.cpp -------------------------------------------------------------------------------- /Leetcode/916.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/916.cpp -------------------------------------------------------------------------------- /Leetcode/92.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/92.cpp -------------------------------------------------------------------------------- /Leetcode/921.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/921.cpp -------------------------------------------------------------------------------- /Leetcode/931.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/931.cpp -------------------------------------------------------------------------------- /Leetcode/935.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/935.cpp -------------------------------------------------------------------------------- /Leetcode/938.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/938.cpp -------------------------------------------------------------------------------- /Leetcode/951.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/951.cpp -------------------------------------------------------------------------------- /Leetcode/962.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/962.cpp -------------------------------------------------------------------------------- /Leetcode/97.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/Leetcode/97.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/README.md -------------------------------------------------------------------------------- /SPOJ/ALIENS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/SPOJ/ALIENS.cpp -------------------------------------------------------------------------------- /SPOJ/ANGELS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/SPOJ/ANGELS.cpp -------------------------------------------------------------------------------- /SPOJ/BABY.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/SPOJ/BABY.cpp -------------------------------------------------------------------------------- /SPOJ/COT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/SPOJ/COT.cpp -------------------------------------------------------------------------------- /SPOJ/CSUMQ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/SPOJ/CSUMQ.cpp -------------------------------------------------------------------------------- /SPOJ/DIVREL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/SPOJ/DIVREL.cpp -------------------------------------------------------------------------------- /SPOJ/DQUERY.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/SPOJ/DQUERY.cpp -------------------------------------------------------------------------------- /SPOJ/DYNALCA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/SPOJ/DYNALCA.cpp -------------------------------------------------------------------------------- /SPOJ/ELIS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/SPOJ/ELIS.cpp -------------------------------------------------------------------------------- /SPOJ/KMEDIAN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/SPOJ/KMEDIAN.cpp -------------------------------------------------------------------------------- /SPOJ/LCA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/SPOJ/LCA.cpp -------------------------------------------------------------------------------- /SPOJ/LCS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/SPOJ/LCS.cpp -------------------------------------------------------------------------------- /SPOJ/LPRIME.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/SPOJ/LPRIME.cpp -------------------------------------------------------------------------------- /SPOJ/MLIS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/SPOJ/MLIS.cpp -------------------------------------------------------------------------------- /SPOJ/MMMGAME.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/SPOJ/MMMGAME.cpp -------------------------------------------------------------------------------- /SPOJ/MSUBSTR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/SPOJ/MSUBSTR.cpp -------------------------------------------------------------------------------- /SPOJ/MTOTALF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/SPOJ/MTOTALF.cpp -------------------------------------------------------------------------------- /SPOJ/MUDDY.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/SPOJ/MUDDY.cpp -------------------------------------------------------------------------------- /SPOJ/OILCOMP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/SPOJ/OILCOMP.cpp -------------------------------------------------------------------------------- /SPOJ/PARITY.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/SPOJ/PARITY.cpp -------------------------------------------------------------------------------- /SPOJ/POTHOLE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/SPOJ/POTHOLE.cpp -------------------------------------------------------------------------------- /SPOJ/QCJ4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/SPOJ/QCJ4.cpp -------------------------------------------------------------------------------- /SPOJ/QMAX3VN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/SPOJ/QMAX3VN.cpp -------------------------------------------------------------------------------- /SPOJ/QUEST4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/SPOJ/QUEST4.cpp -------------------------------------------------------------------------------- /SPOJ/RPLN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/SPOJ/RPLN.cpp -------------------------------------------------------------------------------- /SPOJ/SCITIES.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/SPOJ/SCITIES.cpp -------------------------------------------------------------------------------- /SPOJ/SERVERS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/SPOJ/SERVERS.cpp -------------------------------------------------------------------------------- /SPOJ/SRTMACH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/SPOJ/SRTMACH.cpp -------------------------------------------------------------------------------- /SPOJ/WEBISL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/SPOJ/WEBISL.cpp -------------------------------------------------------------------------------- /SPOJ/XMAX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/SPOJ/XMAX.cpp -------------------------------------------------------------------------------- /URI/1001.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1001.cpp -------------------------------------------------------------------------------- /URI/1002.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1002.cpp -------------------------------------------------------------------------------- /URI/1003.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1003.cpp -------------------------------------------------------------------------------- /URI/1004.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1004.cpp -------------------------------------------------------------------------------- /URI/1005.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1005.cpp -------------------------------------------------------------------------------- /URI/1006.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1006.cpp -------------------------------------------------------------------------------- /URI/1007.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1007.cpp -------------------------------------------------------------------------------- /URI/1008.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1008.cpp -------------------------------------------------------------------------------- /URI/1009.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1009.cpp -------------------------------------------------------------------------------- /URI/1010.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1010.cpp -------------------------------------------------------------------------------- /URI/1011.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1011.cpp -------------------------------------------------------------------------------- /URI/1012.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1012.cpp -------------------------------------------------------------------------------- /URI/1013.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1013.cpp -------------------------------------------------------------------------------- /URI/1014.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1014.cpp -------------------------------------------------------------------------------- /URI/1015.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1015.cpp -------------------------------------------------------------------------------- /URI/1016.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1016.cpp -------------------------------------------------------------------------------- /URI/1017.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1017.cpp -------------------------------------------------------------------------------- /URI/1018.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1018.cpp -------------------------------------------------------------------------------- /URI/1019.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1019.cpp -------------------------------------------------------------------------------- /URI/1020.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1020.cpp -------------------------------------------------------------------------------- /URI/1021.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1021.cpp -------------------------------------------------------------------------------- /URI/1022.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1022.cpp -------------------------------------------------------------------------------- /URI/1023.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1023.cpp -------------------------------------------------------------------------------- /URI/1024.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1024.cpp -------------------------------------------------------------------------------- /URI/1025.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1025.cpp -------------------------------------------------------------------------------- /URI/1026.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1026.cpp -------------------------------------------------------------------------------- /URI/1027.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1027.cpp -------------------------------------------------------------------------------- /URI/1028.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1028.cpp -------------------------------------------------------------------------------- /URI/1029.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1029.cpp -------------------------------------------------------------------------------- /URI/1030.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1030.cpp -------------------------------------------------------------------------------- /URI/1031.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1031.cpp -------------------------------------------------------------------------------- /URI/1032.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1032.cpp -------------------------------------------------------------------------------- /URI/1034.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1034.cpp -------------------------------------------------------------------------------- /URI/1035.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1035.cpp -------------------------------------------------------------------------------- /URI/1036.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1036.cpp -------------------------------------------------------------------------------- /URI/1037.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1037.cpp -------------------------------------------------------------------------------- /URI/1038.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1038.cpp -------------------------------------------------------------------------------- /URI/1039.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1039.cpp -------------------------------------------------------------------------------- /URI/1040.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1040.cpp -------------------------------------------------------------------------------- /URI/1041.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1041.cpp -------------------------------------------------------------------------------- /URI/1042.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1042.cpp -------------------------------------------------------------------------------- /URI/1043.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1043.cpp -------------------------------------------------------------------------------- /URI/1044.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1044.cpp -------------------------------------------------------------------------------- /URI/1045.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1045.cpp -------------------------------------------------------------------------------- /URI/1046.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1046.cpp -------------------------------------------------------------------------------- /URI/1047.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1047.cpp -------------------------------------------------------------------------------- /URI/1048.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1048.cpp -------------------------------------------------------------------------------- /URI/1049.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1049.cpp -------------------------------------------------------------------------------- /URI/1050.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1050.cpp -------------------------------------------------------------------------------- /URI/1051.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1051.cpp -------------------------------------------------------------------------------- /URI/1052.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1052.cpp -------------------------------------------------------------------------------- /URI/1053.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1053.cpp -------------------------------------------------------------------------------- /URI/1054.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1054.cpp -------------------------------------------------------------------------------- /URI/1055.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1055.cpp -------------------------------------------------------------------------------- /URI/1056.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1056.cpp -------------------------------------------------------------------------------- /URI/1058.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1058.cpp -------------------------------------------------------------------------------- /URI/1059.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1059.cpp -------------------------------------------------------------------------------- /URI/1060.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1060.cpp -------------------------------------------------------------------------------- /URI/1061.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1061.cpp -------------------------------------------------------------------------------- /URI/1062.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1062.cpp -------------------------------------------------------------------------------- /URI/1063.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1063.cpp -------------------------------------------------------------------------------- /URI/1064.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1064.cpp -------------------------------------------------------------------------------- /URI/1065.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1065.cpp -------------------------------------------------------------------------------- /URI/1066.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1066.cpp -------------------------------------------------------------------------------- /URI/1067.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1067.cpp -------------------------------------------------------------------------------- /URI/1068.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1068.cpp -------------------------------------------------------------------------------- /URI/1069.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1069.cpp -------------------------------------------------------------------------------- /URI/1070.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1070.cpp -------------------------------------------------------------------------------- /URI/1071.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1071.cpp -------------------------------------------------------------------------------- /URI/1072.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1072.cpp -------------------------------------------------------------------------------- /URI/1073.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1073.cpp -------------------------------------------------------------------------------- /URI/1074.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1074.cpp -------------------------------------------------------------------------------- /URI/1075.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1075.cpp -------------------------------------------------------------------------------- /URI/1076.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1076.cpp -------------------------------------------------------------------------------- /URI/1077.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1077.cpp -------------------------------------------------------------------------------- /URI/1078.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1078.cpp -------------------------------------------------------------------------------- /URI/1079.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1079.cpp -------------------------------------------------------------------------------- /URI/1080.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1080.cpp -------------------------------------------------------------------------------- /URI/1081.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1081.cpp -------------------------------------------------------------------------------- /URI/1082.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1082.cpp -------------------------------------------------------------------------------- /URI/1083.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1083.cpp -------------------------------------------------------------------------------- /URI/1084.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1084.cpp -------------------------------------------------------------------------------- /URI/1085.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1085.cpp -------------------------------------------------------------------------------- /URI/1086.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1086.cpp -------------------------------------------------------------------------------- /URI/1087.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1087.cpp -------------------------------------------------------------------------------- /URI/1088.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1088.cpp -------------------------------------------------------------------------------- /URI/1089.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1089.cpp -------------------------------------------------------------------------------- /URI/1091.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1091.cpp -------------------------------------------------------------------------------- /URI/1093.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1093.cpp -------------------------------------------------------------------------------- /URI/1094.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1094.cpp -------------------------------------------------------------------------------- /URI/1095.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1095.cpp -------------------------------------------------------------------------------- /URI/1096.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1096.cpp -------------------------------------------------------------------------------- /URI/1097.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1097.cpp -------------------------------------------------------------------------------- /URI/1098.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1098.cpp -------------------------------------------------------------------------------- /URI/1099.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1099.cpp -------------------------------------------------------------------------------- /URI/1100.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1100.cpp -------------------------------------------------------------------------------- /URI/1101.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1101.cpp -------------------------------------------------------------------------------- /URI/1102.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1102.cpp -------------------------------------------------------------------------------- /URI/1103.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1103.cpp -------------------------------------------------------------------------------- /URI/1104.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1104.cpp -------------------------------------------------------------------------------- /URI/1105.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1105.cpp -------------------------------------------------------------------------------- /URI/1106.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1106.cpp -------------------------------------------------------------------------------- /URI/1107.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1107.cpp -------------------------------------------------------------------------------- /URI/1109.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1109.cpp -------------------------------------------------------------------------------- /URI/1110.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1110.cpp -------------------------------------------------------------------------------- /URI/1112.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1112.cpp -------------------------------------------------------------------------------- /URI/1113.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1113.cpp -------------------------------------------------------------------------------- /URI/1114.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1114.cpp -------------------------------------------------------------------------------- /URI/1115.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1115.cpp -------------------------------------------------------------------------------- /URI/1116.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1116.cpp -------------------------------------------------------------------------------- /URI/1117.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1117.cpp -------------------------------------------------------------------------------- /URI/1118.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1118.cpp -------------------------------------------------------------------------------- /URI/1119.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1119.cpp -------------------------------------------------------------------------------- /URI/1121.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1121.cpp -------------------------------------------------------------------------------- /URI/1122.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1122.cpp -------------------------------------------------------------------------------- /URI/1123.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1123.cpp -------------------------------------------------------------------------------- /URI/1124.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1124.cpp -------------------------------------------------------------------------------- /URI/1125.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1125.cpp -------------------------------------------------------------------------------- /URI/1126.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1126.cpp -------------------------------------------------------------------------------- /URI/1128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1128.cpp -------------------------------------------------------------------------------- /URI/1129.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1129.cpp -------------------------------------------------------------------------------- /URI/1130.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1130.cpp -------------------------------------------------------------------------------- /URI/1131.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1131.cpp -------------------------------------------------------------------------------- /URI/1132.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1132.cpp -------------------------------------------------------------------------------- /URI/1133.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1133.cpp -------------------------------------------------------------------------------- /URI/1134.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1134.cpp -------------------------------------------------------------------------------- /URI/1135.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1135.cpp -------------------------------------------------------------------------------- /URI/1136.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1136.cpp -------------------------------------------------------------------------------- /URI/1137.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1137.cpp -------------------------------------------------------------------------------- /URI/1138.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1138.cpp -------------------------------------------------------------------------------- /URI/1140.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1140.cpp -------------------------------------------------------------------------------- /URI/1142.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1142.cpp -------------------------------------------------------------------------------- /URI/1143.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1143.cpp -------------------------------------------------------------------------------- /URI/1144.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1144.cpp -------------------------------------------------------------------------------- /URI/1145.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1145.cpp -------------------------------------------------------------------------------- /URI/1146.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1146.cpp -------------------------------------------------------------------------------- /URI/1147.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1147.cpp -------------------------------------------------------------------------------- /URI/1148.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1148.cpp -------------------------------------------------------------------------------- /URI/1149.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1149.cpp -------------------------------------------------------------------------------- /URI/1150.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1150.cpp -------------------------------------------------------------------------------- /URI/1151.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1151.cpp -------------------------------------------------------------------------------- /URI/1152.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1152.cpp -------------------------------------------------------------------------------- /URI/1153.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1153.cpp -------------------------------------------------------------------------------- /URI/1154.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1154.cpp -------------------------------------------------------------------------------- /URI/1155.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1155.cpp -------------------------------------------------------------------------------- /URI/1156.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1156.cpp -------------------------------------------------------------------------------- /URI/1157.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1157.cpp -------------------------------------------------------------------------------- /URI/1158.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1158.cpp -------------------------------------------------------------------------------- /URI/1159.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1159.cpp -------------------------------------------------------------------------------- /URI/1160.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1160.cpp -------------------------------------------------------------------------------- /URI/1161.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1161.cpp -------------------------------------------------------------------------------- /URI/1162.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1162.cpp -------------------------------------------------------------------------------- /URI/1163.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1163.cpp -------------------------------------------------------------------------------- /URI/1164.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1164.cpp -------------------------------------------------------------------------------- /URI/1165.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1165.cpp -------------------------------------------------------------------------------- /URI/1166.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1166.cpp -------------------------------------------------------------------------------- /URI/1167.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1167.cpp -------------------------------------------------------------------------------- /URI/1168.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1168.cpp -------------------------------------------------------------------------------- /URI/1169.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1169.cpp -------------------------------------------------------------------------------- /URI/1170.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1170.cpp -------------------------------------------------------------------------------- /URI/1171.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1171.cpp -------------------------------------------------------------------------------- /URI/1172.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1172.cpp -------------------------------------------------------------------------------- /URI/1173.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1173.cpp -------------------------------------------------------------------------------- /URI/1174.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1174.cpp -------------------------------------------------------------------------------- /URI/1175.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1175.cpp -------------------------------------------------------------------------------- /URI/1176.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1176.cpp -------------------------------------------------------------------------------- /URI/1177.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1177.cpp -------------------------------------------------------------------------------- /URI/1178.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1178.cpp -------------------------------------------------------------------------------- /URI/1179.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1179.cpp -------------------------------------------------------------------------------- /URI/1180.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1180.cpp -------------------------------------------------------------------------------- /URI/1181.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1181.cpp -------------------------------------------------------------------------------- /URI/1182.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1182.cpp -------------------------------------------------------------------------------- /URI/1183.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1183.cpp -------------------------------------------------------------------------------- /URI/1184.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1184.cpp -------------------------------------------------------------------------------- /URI/1185.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1185.cpp -------------------------------------------------------------------------------- /URI/1186.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1186.cpp -------------------------------------------------------------------------------- /URI/1187.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1187.cpp -------------------------------------------------------------------------------- /URI/1188.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1188.cpp -------------------------------------------------------------------------------- /URI/1189.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1189.cpp -------------------------------------------------------------------------------- /URI/1190.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1190.cpp -------------------------------------------------------------------------------- /URI/1191.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1191.cpp -------------------------------------------------------------------------------- /URI/1192.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1192.cpp -------------------------------------------------------------------------------- /URI/1193.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1193.cpp -------------------------------------------------------------------------------- /URI/1194.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1194.cpp -------------------------------------------------------------------------------- /URI/1195.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1195.cpp -------------------------------------------------------------------------------- /URI/1196.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1196.cpp -------------------------------------------------------------------------------- /URI/1197.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1197.cpp -------------------------------------------------------------------------------- /URI/1198.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1198.cpp -------------------------------------------------------------------------------- /URI/1199.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1199.cpp -------------------------------------------------------------------------------- /URI/1200.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1200.cpp -------------------------------------------------------------------------------- /URI/1202.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1202.cpp -------------------------------------------------------------------------------- /URI/1203.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1203.cpp -------------------------------------------------------------------------------- /URI/1204.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1204.cpp -------------------------------------------------------------------------------- /URI/1205.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1205.cpp -------------------------------------------------------------------------------- /URI/1206.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1206.cpp -------------------------------------------------------------------------------- /URI/1209.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1209.cpp -------------------------------------------------------------------------------- /URI/1211.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1211.cpp -------------------------------------------------------------------------------- /URI/1212.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1212.cpp -------------------------------------------------------------------------------- /URI/1213.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1213.cpp -------------------------------------------------------------------------------- /URI/1214.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1214.cpp -------------------------------------------------------------------------------- /URI/1215.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1215.cpp -------------------------------------------------------------------------------- /URI/1216.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1216.cpp -------------------------------------------------------------------------------- /URI/1217.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1217.cpp -------------------------------------------------------------------------------- /URI/1219.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1219.cpp -------------------------------------------------------------------------------- /URI/1220.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1220.cpp -------------------------------------------------------------------------------- /URI/1221.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1221.cpp -------------------------------------------------------------------------------- /URI/1222.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1222.cpp -------------------------------------------------------------------------------- /URI/1223.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1223.cpp -------------------------------------------------------------------------------- /URI/1224.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1224.cpp -------------------------------------------------------------------------------- /URI/1225.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1225.cpp -------------------------------------------------------------------------------- /URI/1226.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1226.cpp -------------------------------------------------------------------------------- /URI/1227.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1227.cpp -------------------------------------------------------------------------------- /URI/1228.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1228.cpp -------------------------------------------------------------------------------- /URI/1229.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1229.cpp -------------------------------------------------------------------------------- /URI/1231.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1231.cpp -------------------------------------------------------------------------------- /URI/1256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1256.cpp -------------------------------------------------------------------------------- /URI/1259.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1259.cpp -------------------------------------------------------------------------------- /URI/1265.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1265.cpp -------------------------------------------------------------------------------- /URI/1281.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1281.cpp -------------------------------------------------------------------------------- /URI/1282.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1282.cpp -------------------------------------------------------------------------------- /URI/1283.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1283.cpp -------------------------------------------------------------------------------- /URI/1291.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1291.cpp -------------------------------------------------------------------------------- /URI/1292.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1292.cpp -------------------------------------------------------------------------------- /URI/1293.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1293.cpp -------------------------------------------------------------------------------- /URI/1294.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1294.cpp -------------------------------------------------------------------------------- /URI/1295.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1295.cpp -------------------------------------------------------------------------------- /URI/1296.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1296.cpp -------------------------------------------------------------------------------- /URI/1298.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1298.cpp -------------------------------------------------------------------------------- /URI/1301.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1301.cpp -------------------------------------------------------------------------------- /URI/1311.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1311.cpp -------------------------------------------------------------------------------- /URI/1325.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1325.cpp -------------------------------------------------------------------------------- /URI/1336.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1336.cpp -------------------------------------------------------------------------------- /URI/1338.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1338.cpp -------------------------------------------------------------------------------- /URI/1347.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1347.cpp -------------------------------------------------------------------------------- /URI/1350.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1350.cpp -------------------------------------------------------------------------------- /URI/1361.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1361.cpp -------------------------------------------------------------------------------- /URI/1362.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1362.cpp -------------------------------------------------------------------------------- /URI/1363.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1363.cpp -------------------------------------------------------------------------------- /URI/1371.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1371.cpp -------------------------------------------------------------------------------- /URI/1381.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1381.cpp -------------------------------------------------------------------------------- /URI/1410.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1410.cpp -------------------------------------------------------------------------------- /URI/1416.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1416.cpp -------------------------------------------------------------------------------- /URI/1420.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1420.cpp -------------------------------------------------------------------------------- /URI/1421.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1421.cpp -------------------------------------------------------------------------------- /URI/1424.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1424.cpp -------------------------------------------------------------------------------- /URI/1435.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1435.cpp -------------------------------------------------------------------------------- /URI/1446.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1446.cpp -------------------------------------------------------------------------------- /URI/1462.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1462.cpp -------------------------------------------------------------------------------- /URI/1467.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1467.cpp -------------------------------------------------------------------------------- /URI/1469.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1469.cpp -------------------------------------------------------------------------------- /URI/1471.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1471.cpp -------------------------------------------------------------------------------- /URI/1472.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1472.cpp -------------------------------------------------------------------------------- /URI/1473.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1473.cpp -------------------------------------------------------------------------------- /URI/1474.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1474.cpp -------------------------------------------------------------------------------- /URI/1476.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1476.cpp -------------------------------------------------------------------------------- /URI/1488.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1488.cpp -------------------------------------------------------------------------------- /URI/1503.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1503.cpp -------------------------------------------------------------------------------- /URI/1514.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1514.cpp -------------------------------------------------------------------------------- /URI/1530.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1530.cpp -------------------------------------------------------------------------------- /URI/1532.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1532.cpp -------------------------------------------------------------------------------- /URI/1553.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1553.cpp -------------------------------------------------------------------------------- /URI/1577.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1577.cpp -------------------------------------------------------------------------------- /URI/1599.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1599.cpp -------------------------------------------------------------------------------- /URI/1602.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1602.cpp -------------------------------------------------------------------------------- /URI/1606.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1606.cpp -------------------------------------------------------------------------------- /URI/1617.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1617.cpp -------------------------------------------------------------------------------- /URI/1621.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1621.cpp -------------------------------------------------------------------------------- /URI/1664.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1664.cpp -------------------------------------------------------------------------------- /URI/1683.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1683.cpp -------------------------------------------------------------------------------- /URI/1708.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1708.cpp -------------------------------------------------------------------------------- /URI/1709.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1709.cpp -------------------------------------------------------------------------------- /URI/1710.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1710.cpp -------------------------------------------------------------------------------- /URI/1712.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1712.cpp -------------------------------------------------------------------------------- /URI/1713.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1713.cpp -------------------------------------------------------------------------------- /URI/1714.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1714.cpp -------------------------------------------------------------------------------- /URI/1715.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1715.cpp -------------------------------------------------------------------------------- /URI/1716.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1716.cpp -------------------------------------------------------------------------------- /URI/1717.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1717.cpp -------------------------------------------------------------------------------- /URI/1718.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1718.cpp -------------------------------------------------------------------------------- /URI/1720.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1720.cpp -------------------------------------------------------------------------------- /URI/1745.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1745.cpp -------------------------------------------------------------------------------- /URI/1749.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1749.cpp -------------------------------------------------------------------------------- /URI/1766.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1766.cpp -------------------------------------------------------------------------------- /URI/1794.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1794.cpp -------------------------------------------------------------------------------- /URI/1795.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1795.cpp -------------------------------------------------------------------------------- /URI/1796.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1796.cpp -------------------------------------------------------------------------------- /URI/1797.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1797.cpp -------------------------------------------------------------------------------- /URI/1798.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1798.cpp -------------------------------------------------------------------------------- /URI/1799.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1799.cpp -------------------------------------------------------------------------------- /URI/1801.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1801.cpp -------------------------------------------------------------------------------- /URI/1804.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1804.cpp -------------------------------------------------------------------------------- /URI/1806.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1806.cpp -------------------------------------------------------------------------------- /URI/1810.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1810.cpp -------------------------------------------------------------------------------- /URI/1816.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1816.cpp -------------------------------------------------------------------------------- /URI/1824.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1824.cpp -------------------------------------------------------------------------------- /URI/1835.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1835.cpp -------------------------------------------------------------------------------- /URI/1856.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1856.cpp -------------------------------------------------------------------------------- /URI/1910.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1910.cpp -------------------------------------------------------------------------------- /URI/1911.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1911.cpp -------------------------------------------------------------------------------- /URI/1913.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1913.cpp -------------------------------------------------------------------------------- /URI/1914.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1914.cpp -------------------------------------------------------------------------------- /URI/1916.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1916.cpp -------------------------------------------------------------------------------- /URI/1917.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1917.cpp -------------------------------------------------------------------------------- /URI/1919.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1919.cpp -------------------------------------------------------------------------------- /URI/1920.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1920.cpp -------------------------------------------------------------------------------- /URI/1928.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1928.cpp -------------------------------------------------------------------------------- /URI/1931.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1931.cpp -------------------------------------------------------------------------------- /URI/1932.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1932.cpp -------------------------------------------------------------------------------- /URI/1933.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1933.cpp -------------------------------------------------------------------------------- /URI/1935.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1935.cpp -------------------------------------------------------------------------------- /URI/1936.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1936.cpp -------------------------------------------------------------------------------- /URI/1938.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1938.cpp -------------------------------------------------------------------------------- /URI/1940.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1940.cpp -------------------------------------------------------------------------------- /URI/1941.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1941.cpp -------------------------------------------------------------------------------- /URI/1973.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/1973.cpp -------------------------------------------------------------------------------- /URI/2103.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/2103.cpp -------------------------------------------------------------------------------- /URI/2164.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/2164.cpp -------------------------------------------------------------------------------- /URI/2345.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/2345.cpp -------------------------------------------------------------------------------- /URI/2347.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/2347.cpp -------------------------------------------------------------------------------- /URI/2348.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/2348.cpp -------------------------------------------------------------------------------- /URI/2349.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/2349.cpp -------------------------------------------------------------------------------- /URI/2350.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/2350.cpp -------------------------------------------------------------------------------- /URI/2351.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/2351.cpp -------------------------------------------------------------------------------- /URI/2353.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/2353.cpp -------------------------------------------------------------------------------- /URI/2354.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/2354.cpp -------------------------------------------------------------------------------- /URI/2572.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/2572.cpp -------------------------------------------------------------------------------- /URI/2626.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/2626.cpp -------------------------------------------------------------------------------- /URI/2627.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/2627.cpp -------------------------------------------------------------------------------- /URI/2629.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/2629.cpp -------------------------------------------------------------------------------- /URI/2630.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/2630.cpp -------------------------------------------------------------------------------- /URI/2631.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/2631.cpp -------------------------------------------------------------------------------- /URI/2632.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/2632.cpp -------------------------------------------------------------------------------- /URI/2633.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/2633.cpp -------------------------------------------------------------------------------- /URI/2634.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/2634.cpp -------------------------------------------------------------------------------- /URI/2635.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/2635.cpp -------------------------------------------------------------------------------- /URI/2636.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/URI/2636.cpp -------------------------------------------------------------------------------- /UVa/10010.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/10010.cpp -------------------------------------------------------------------------------- /UVa/10038.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/10038.cpp -------------------------------------------------------------------------------- /UVa/10107.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/10107.cpp -------------------------------------------------------------------------------- /UVa/10114.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/10114.cpp -------------------------------------------------------------------------------- /UVa/10141.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/10141.cpp -------------------------------------------------------------------------------- /UVa/10192.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/10192.cpp -------------------------------------------------------------------------------- /UVa/10245.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/10245.cpp -------------------------------------------------------------------------------- /UVa/10258.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/10258.cpp -------------------------------------------------------------------------------- /UVa/10263.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/10263.cpp -------------------------------------------------------------------------------- /UVa/10264.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/10264.cpp -------------------------------------------------------------------------------- /UVa/10298.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/10298.cpp -------------------------------------------------------------------------------- /UVa/1047.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/1047.cpp -------------------------------------------------------------------------------- /UVa/10550.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/10550.cpp -------------------------------------------------------------------------------- /UVa/10594.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/10594.cpp -------------------------------------------------------------------------------- /UVa/10652.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/10652.cpp -------------------------------------------------------------------------------- /UVa/10679.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/10679.cpp -------------------------------------------------------------------------------- /UVa/10855.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/10855.cpp -------------------------------------------------------------------------------- /UVa/10920.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/10920.cpp -------------------------------------------------------------------------------- /UVa/10976.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/10976.cpp -------------------------------------------------------------------------------- /UVa/11022.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/11022.cpp -------------------------------------------------------------------------------- /UVa/11044.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/11044.cpp -------------------------------------------------------------------------------- /UVa/11107.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/11107.cpp -------------------------------------------------------------------------------- /UVa/1111.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/1111.cpp -------------------------------------------------------------------------------- /UVa/11151.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/11151.cpp -------------------------------------------------------------------------------- /UVa/11172.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/11172.cpp -------------------------------------------------------------------------------- /UVa/1124.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/1124.cpp -------------------------------------------------------------------------------- /UVa/11242.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/11242.cpp -------------------------------------------------------------------------------- /UVa/11258.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/11258.cpp -------------------------------------------------------------------------------- /UVa/11265.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/11265.cpp -------------------------------------------------------------------------------- /UVa/11283.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/11283.cpp -------------------------------------------------------------------------------- /UVa/11364.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/11364.cpp -------------------------------------------------------------------------------- /UVa/11417.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/11417.cpp -------------------------------------------------------------------------------- /UVa/11424.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/11424.cpp -------------------------------------------------------------------------------- /UVa/11426.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/11426.cpp -------------------------------------------------------------------------------- /UVa/11475.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/11475.cpp -------------------------------------------------------------------------------- /UVa/11498.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/11498.cpp -------------------------------------------------------------------------------- /UVa/11507.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/11507.cpp -------------------------------------------------------------------------------- /UVa/11547.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/11547.cpp -------------------------------------------------------------------------------- /UVa/11553.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/11553.cpp -------------------------------------------------------------------------------- /UVa/11559.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/11559.cpp -------------------------------------------------------------------------------- /UVa/11576.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/11576.cpp -------------------------------------------------------------------------------- /UVa/11581.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/11581.cpp -------------------------------------------------------------------------------- /UVa/11727.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/11727.cpp -------------------------------------------------------------------------------- /UVa/11799.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/11799.cpp -------------------------------------------------------------------------------- /UVa/11926.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/11926.cpp -------------------------------------------------------------------------------- /UVa/11933.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/11933.cpp -------------------------------------------------------------------------------- /UVa/11988.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/11988.cpp -------------------------------------------------------------------------------- /UVa/12060.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/12060.cpp -------------------------------------------------------------------------------- /UVa/12250.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/12250.cpp -------------------------------------------------------------------------------- /UVa/12279.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/12279.cpp -------------------------------------------------------------------------------- /UVa/12289.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/12289.cpp -------------------------------------------------------------------------------- /UVa/12356.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/12356.cpp -------------------------------------------------------------------------------- /UVa/1237.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/1237.cpp -------------------------------------------------------------------------------- /UVa/12372.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/12372.cpp -------------------------------------------------------------------------------- /UVa/12403.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/12403.cpp -------------------------------------------------------------------------------- /UVa/12455.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/12455.cpp -------------------------------------------------------------------------------- /UVa/12524.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/12524.cpp -------------------------------------------------------------------------------- /UVa/12577.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/12577.cpp -------------------------------------------------------------------------------- /UVa/1260.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/1260.cpp -------------------------------------------------------------------------------- /UVa/12799.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/12799.cpp -------------------------------------------------------------------------------- /UVa/146.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/146.cpp -------------------------------------------------------------------------------- /UVa/272.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/272.cpp -------------------------------------------------------------------------------- /UVa/422.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/422.cpp -------------------------------------------------------------------------------- /UVa/514.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/514.cpp -------------------------------------------------------------------------------- /UVa/526.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/526.cpp -------------------------------------------------------------------------------- /UVa/556.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/556.cpp -------------------------------------------------------------------------------- /UVa/573.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/573.cpp -------------------------------------------------------------------------------- /UVa/621.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/621.cpp -------------------------------------------------------------------------------- /UVa/681.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/681.cpp -------------------------------------------------------------------------------- /UVa/760.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/760.cpp -------------------------------------------------------------------------------- /UVa/920.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/920.cpp -------------------------------------------------------------------------------- /UVa/927.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splucs/Competitive-Programming/HEAD/UVa/927.cpp --------------------------------------------------------------------------------