├── Algorithms ├── Graphs │ ├── Dijkstra.cpp │ ├── FloydWarshall.cpp │ └── Prim.cpp └── NumberTheory │ ├── FastExpo.cpp │ ├── FastModExpo.cpp │ ├── PrimeFactor.cpp │ └── PrimeFactorUnique.cpp ├── CodeForces ├── 1084C.cpp ├── 1195C.cpp ├── 1206A.cpp ├── 1206B.cpp ├── 1206C.cpp ├── 1206D.cpp ├── 1207A.cpp ├── 1207B.cpp ├── 1207C.cpp ├── 1208A.cpp ├── 1208B.cpp ├── 1208C.cpp ├── 1209A.cpp ├── 1209B.cpp ├── 1209C.cpp ├── 1209D.cpp ├── 1228A.cpp ├── 1228B.cpp ├── 1228C.cpp ├── 1234A.cpp ├── 1234B.cpp ├── 1234C.cpp ├── 1234D.cpp ├── 1238A.cpp ├── 1238B.cpp ├── 1244A.cpp ├── 1244B.cpp ├── 1244D.cpp ├── 1245C.cpp ├── 1247A.cpp ├── 1247B.cpp ├── 1253A.cpp ├── 1253B.cpp ├── 1253C.cpp ├── 1256A.cpp ├── 1256B.cpp ├── 1256C.cpp ├── 1256D.cpp ├── 1257A.cpp ├── 1257B.cpp ├── 380C.cpp ├── 52C.cpp └── 954A.cpp ├── GoogleCodeJam ├── 2019 │ └── Qual │ │ ├── 1.cpp │ │ └── 2.cpp ├── 2020 │ ├── 1A │ │ ├── pascalwalk.cpp │ │ ├── patternmatching.py │ │ └── squaredance.cpp │ └── Qual │ │ ├── 1.cpp │ │ ├── 2.cpp │ │ └── 3.cpp └── gcj_template.cpp ├── README.md ├── USACO ├── Contests │ ├── 2016 │ │ └── January │ │ │ └── Silver │ │ │ ├── angry.cpp │ │ │ └── div7.cpp │ ├── 2017 │ │ ├── December │ │ │ └── Silver │ │ │ │ ├── citystate.cpp │ │ │ │ ├── haybales.cpp │ │ │ │ └── moocast.cpp │ │ └── January │ │ │ └── Silver │ │ │ ├── cowcode.cpp │ │ │ ├── cowdance.cpp │ │ │ └── hps.cpp │ ├── 2018 │ │ ├── December │ │ │ ├── Bronze │ │ │ │ ├── billboard.cpp │ │ │ │ ├── measurement.cpp │ │ │ │ └── shuffle.cpp │ │ │ ├── Gold │ │ │ │ ├── barnpainting.cpp │ │ │ │ ├── hayfeast.cpp │ │ │ │ └── piepie.cpp │ │ │ └── Silver │ │ │ │ ├── homework.cpp │ │ │ │ ├── measurement.cpp │ │ │ │ └── shuffle.cpp │ │ ├── February │ │ │ ├── Bronze │ │ │ │ ├── hoofball.cpp │ │ │ │ ├── taming.cpp │ │ │ │ ├── teleport.cpp │ │ │ │ └── teleport.md │ │ │ └── Silver │ │ │ │ ├── reststops.cpp │ │ │ │ └── snowboots.cpp │ │ ├── January │ │ │ ├── Bronze │ │ │ │ ├── billboard.cpp │ │ │ │ ├── lifeguards.cpp │ │ │ │ ├── lifeguards.md │ │ │ │ ├── outofplace.cpp │ │ │ │ └── outofplace.md │ │ │ └── Silver │ │ │ │ ├── mootube.cpp │ │ │ │ └── rental.cpp │ │ └── Open │ │ │ └── Bronze │ │ │ ├── family.cpp │ │ │ ├── milkorder.cpp │ │ │ ├── tttt.cpp │ │ │ └── ttttNew.cpp │ └── 2019 │ │ ├── December │ │ ├── Bronze │ │ │ ├── backforth.cpp │ │ │ ├── blist.cpp │ │ │ └── mixmilk.cpp │ │ ├── Gold │ │ │ ├── cowpatibility.cpp │ │ │ ├── dining.cpp │ │ │ └── teamwork.cpp │ │ └── Silver │ │ │ ├── USconvention.cpp │ │ │ ├── USconvention2.cpp │ │ │ └── mooyomooyo.cpp │ │ └── January │ │ ├── Gold │ │ ├── poetry.cpp │ │ ├── shortcut.cpp │ │ └── sleepy.cpp │ │ └── Silver │ │ ├── mountains.cpp │ │ └── perimeter.cpp └── Training │ ├── Chapter1 │ ├── Section1.2 │ │ ├── beads.cpp │ │ ├── beads.py │ │ ├── friday.py │ │ ├── gift1.py │ │ └── ride.py │ ├── Section1.3 │ │ ├── dualpal.py │ │ ├── milk2.py │ │ ├── namenum.py │ │ ├── palsquare.py │ │ └── transform.py │ ├── Section1.4 │ │ ├── barn1.cpp │ │ ├── combo.cpp │ │ ├── combo.md │ │ ├── crypt1.cpp │ │ ├── crypt1.md │ │ ├── milk.cpp │ │ ├── skidesign.cpp │ │ ├── wormhole.cpp │ │ └── wormhole.md │ ├── Section1.5 │ │ ├── ariprog.cpp │ │ └── milk3.cpp │ └── Section1.6 │ │ ├── numtri.cpp │ │ ├── pprime.cpp │ │ └── sprime.cpp │ ├── Chapter2 │ ├── Section2.1 │ │ ├── castle.cpp │ │ ├── frac1.cpp │ │ ├── hamming.cpp │ │ ├── holstein.cpp │ │ └── sort3.cpp │ ├── Section2.2 │ │ ├── lamps.cpp │ │ ├── preface.cpp │ │ ├── runround.cpp │ │ └── subset.cpp │ ├── Section2.3 │ │ ├── concom.cpp │ │ ├── money.cpp │ │ ├── nocows.cpp │ │ ├── prefix.cpp │ │ └── zerosum.cpp │ └── Section2.4 │ │ ├── comehome.cpp │ │ ├── cowtour.cpp │ │ ├── fracdec.cpp │ │ ├── maze1.cpp │ │ └── ttwo.cpp │ └── Chapter3 │ ├── Section3.1 │ ├── agrinet.cpp │ ├── contact.cpp │ ├── humble.cpp │ ├── inflate.cpp │ └── stamps.cpp │ └── Section3.2 │ └── fact4.cpp ├── default_template.cpp └── misc └── seekaword.cpp /Algorithms/Graphs/Dijkstra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/Algorithms/Graphs/Dijkstra.cpp -------------------------------------------------------------------------------- /Algorithms/Graphs/FloydWarshall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/Algorithms/Graphs/FloydWarshall.cpp -------------------------------------------------------------------------------- /Algorithms/Graphs/Prim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/Algorithms/Graphs/Prim.cpp -------------------------------------------------------------------------------- /Algorithms/NumberTheory/FastExpo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/Algorithms/NumberTheory/FastExpo.cpp -------------------------------------------------------------------------------- /Algorithms/NumberTheory/FastModExpo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/Algorithms/NumberTheory/FastModExpo.cpp -------------------------------------------------------------------------------- /Algorithms/NumberTheory/PrimeFactor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/Algorithms/NumberTheory/PrimeFactor.cpp -------------------------------------------------------------------------------- /Algorithms/NumberTheory/PrimeFactorUnique.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/Algorithms/NumberTheory/PrimeFactorUnique.cpp -------------------------------------------------------------------------------- /CodeForces/1084C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/CodeForces/1084C.cpp -------------------------------------------------------------------------------- /CodeForces/1195C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/CodeForces/1195C.cpp -------------------------------------------------------------------------------- /CodeForces/1206A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/CodeForces/1206A.cpp -------------------------------------------------------------------------------- /CodeForces/1206B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/CodeForces/1206B.cpp -------------------------------------------------------------------------------- /CodeForces/1206C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/CodeForces/1206C.cpp -------------------------------------------------------------------------------- /CodeForces/1206D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/CodeForces/1206D.cpp -------------------------------------------------------------------------------- /CodeForces/1207A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/CodeForces/1207A.cpp -------------------------------------------------------------------------------- /CodeForces/1207B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/CodeForces/1207B.cpp -------------------------------------------------------------------------------- /CodeForces/1207C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/CodeForces/1207C.cpp -------------------------------------------------------------------------------- /CodeForces/1208A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/CodeForces/1208A.cpp -------------------------------------------------------------------------------- /CodeForces/1208B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/CodeForces/1208B.cpp -------------------------------------------------------------------------------- /CodeForces/1208C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/CodeForces/1208C.cpp -------------------------------------------------------------------------------- /CodeForces/1209A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/CodeForces/1209A.cpp -------------------------------------------------------------------------------- /CodeForces/1209B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/CodeForces/1209B.cpp -------------------------------------------------------------------------------- /CodeForces/1209C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/CodeForces/1209C.cpp -------------------------------------------------------------------------------- /CodeForces/1209D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/CodeForces/1209D.cpp -------------------------------------------------------------------------------- /CodeForces/1228A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/CodeForces/1228A.cpp -------------------------------------------------------------------------------- /CodeForces/1228B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/CodeForces/1228B.cpp -------------------------------------------------------------------------------- /CodeForces/1228C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/CodeForces/1228C.cpp -------------------------------------------------------------------------------- /CodeForces/1234A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/CodeForces/1234A.cpp -------------------------------------------------------------------------------- /CodeForces/1234B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/CodeForces/1234B.cpp -------------------------------------------------------------------------------- /CodeForces/1234C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/CodeForces/1234C.cpp -------------------------------------------------------------------------------- /CodeForces/1234D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/CodeForces/1234D.cpp -------------------------------------------------------------------------------- /CodeForces/1238A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/CodeForces/1238A.cpp -------------------------------------------------------------------------------- /CodeForces/1238B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/CodeForces/1238B.cpp -------------------------------------------------------------------------------- /CodeForces/1244A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/CodeForces/1244A.cpp -------------------------------------------------------------------------------- /CodeForces/1244B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/CodeForces/1244B.cpp -------------------------------------------------------------------------------- /CodeForces/1244D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/CodeForces/1244D.cpp -------------------------------------------------------------------------------- /CodeForces/1245C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/CodeForces/1245C.cpp -------------------------------------------------------------------------------- /CodeForces/1247A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/CodeForces/1247A.cpp -------------------------------------------------------------------------------- /CodeForces/1247B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/CodeForces/1247B.cpp -------------------------------------------------------------------------------- /CodeForces/1253A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/CodeForces/1253A.cpp -------------------------------------------------------------------------------- /CodeForces/1253B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/CodeForces/1253B.cpp -------------------------------------------------------------------------------- /CodeForces/1253C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/CodeForces/1253C.cpp -------------------------------------------------------------------------------- /CodeForces/1256A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/CodeForces/1256A.cpp -------------------------------------------------------------------------------- /CodeForces/1256B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/CodeForces/1256B.cpp -------------------------------------------------------------------------------- /CodeForces/1256C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/CodeForces/1256C.cpp -------------------------------------------------------------------------------- /CodeForces/1256D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/CodeForces/1256D.cpp -------------------------------------------------------------------------------- /CodeForces/1257A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/CodeForces/1257A.cpp -------------------------------------------------------------------------------- /CodeForces/1257B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/CodeForces/1257B.cpp -------------------------------------------------------------------------------- /CodeForces/380C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/CodeForces/380C.cpp -------------------------------------------------------------------------------- /CodeForces/52C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/CodeForces/52C.cpp -------------------------------------------------------------------------------- /CodeForces/954A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/CodeForces/954A.cpp -------------------------------------------------------------------------------- /GoogleCodeJam/2019/Qual/1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/GoogleCodeJam/2019/Qual/1.cpp -------------------------------------------------------------------------------- /GoogleCodeJam/2019/Qual/2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/GoogleCodeJam/2019/Qual/2.cpp -------------------------------------------------------------------------------- /GoogleCodeJam/2020/1A/pascalwalk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/GoogleCodeJam/2020/1A/pascalwalk.cpp -------------------------------------------------------------------------------- /GoogleCodeJam/2020/1A/patternmatching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/GoogleCodeJam/2020/1A/patternmatching.py -------------------------------------------------------------------------------- /GoogleCodeJam/2020/1A/squaredance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/GoogleCodeJam/2020/1A/squaredance.cpp -------------------------------------------------------------------------------- /GoogleCodeJam/2020/Qual/1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/GoogleCodeJam/2020/Qual/1.cpp -------------------------------------------------------------------------------- /GoogleCodeJam/2020/Qual/2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/GoogleCodeJam/2020/Qual/2.cpp -------------------------------------------------------------------------------- /GoogleCodeJam/2020/Qual/3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/GoogleCodeJam/2020/Qual/3.cpp -------------------------------------------------------------------------------- /GoogleCodeJam/gcj_template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/GoogleCodeJam/gcj_template.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/README.md -------------------------------------------------------------------------------- /USACO/Contests/2016/January/Silver/angry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2016/January/Silver/angry.cpp -------------------------------------------------------------------------------- /USACO/Contests/2016/January/Silver/div7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2016/January/Silver/div7.cpp -------------------------------------------------------------------------------- /USACO/Contests/2017/December/Silver/citystate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2017/December/Silver/citystate.cpp -------------------------------------------------------------------------------- /USACO/Contests/2017/December/Silver/haybales.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2017/December/Silver/haybales.cpp -------------------------------------------------------------------------------- /USACO/Contests/2017/December/Silver/moocast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2017/December/Silver/moocast.cpp -------------------------------------------------------------------------------- /USACO/Contests/2017/January/Silver/cowcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2017/January/Silver/cowcode.cpp -------------------------------------------------------------------------------- /USACO/Contests/2017/January/Silver/cowdance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2017/January/Silver/cowdance.cpp -------------------------------------------------------------------------------- /USACO/Contests/2017/January/Silver/hps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2017/January/Silver/hps.cpp -------------------------------------------------------------------------------- /USACO/Contests/2018/December/Bronze/billboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2018/December/Bronze/billboard.cpp -------------------------------------------------------------------------------- /USACO/Contests/2018/December/Bronze/measurement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2018/December/Bronze/measurement.cpp -------------------------------------------------------------------------------- /USACO/Contests/2018/December/Bronze/shuffle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2018/December/Bronze/shuffle.cpp -------------------------------------------------------------------------------- /USACO/Contests/2018/December/Gold/barnpainting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2018/December/Gold/barnpainting.cpp -------------------------------------------------------------------------------- /USACO/Contests/2018/December/Gold/hayfeast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2018/December/Gold/hayfeast.cpp -------------------------------------------------------------------------------- /USACO/Contests/2018/December/Gold/piepie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2018/December/Gold/piepie.cpp -------------------------------------------------------------------------------- /USACO/Contests/2018/December/Silver/homework.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2018/December/Silver/homework.cpp -------------------------------------------------------------------------------- /USACO/Contests/2018/December/Silver/measurement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2018/December/Silver/measurement.cpp -------------------------------------------------------------------------------- /USACO/Contests/2018/December/Silver/shuffle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2018/December/Silver/shuffle.cpp -------------------------------------------------------------------------------- /USACO/Contests/2018/February/Bronze/hoofball.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2018/February/Bronze/hoofball.cpp -------------------------------------------------------------------------------- /USACO/Contests/2018/February/Bronze/taming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2018/February/Bronze/taming.cpp -------------------------------------------------------------------------------- /USACO/Contests/2018/February/Bronze/teleport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2018/February/Bronze/teleport.cpp -------------------------------------------------------------------------------- /USACO/Contests/2018/February/Bronze/teleport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2018/February/Bronze/teleport.md -------------------------------------------------------------------------------- /USACO/Contests/2018/February/Silver/reststops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2018/February/Silver/reststops.cpp -------------------------------------------------------------------------------- /USACO/Contests/2018/February/Silver/snowboots.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2018/February/Silver/snowboots.cpp -------------------------------------------------------------------------------- /USACO/Contests/2018/January/Bronze/billboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2018/January/Bronze/billboard.cpp -------------------------------------------------------------------------------- /USACO/Contests/2018/January/Bronze/lifeguards.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2018/January/Bronze/lifeguards.cpp -------------------------------------------------------------------------------- /USACO/Contests/2018/January/Bronze/lifeguards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2018/January/Bronze/lifeguards.md -------------------------------------------------------------------------------- /USACO/Contests/2018/January/Bronze/outofplace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2018/January/Bronze/outofplace.cpp -------------------------------------------------------------------------------- /USACO/Contests/2018/January/Bronze/outofplace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2018/January/Bronze/outofplace.md -------------------------------------------------------------------------------- /USACO/Contests/2018/January/Silver/mootube.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2018/January/Silver/mootube.cpp -------------------------------------------------------------------------------- /USACO/Contests/2018/January/Silver/rental.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2018/January/Silver/rental.cpp -------------------------------------------------------------------------------- /USACO/Contests/2018/Open/Bronze/family.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2018/Open/Bronze/family.cpp -------------------------------------------------------------------------------- /USACO/Contests/2018/Open/Bronze/milkorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2018/Open/Bronze/milkorder.cpp -------------------------------------------------------------------------------- /USACO/Contests/2018/Open/Bronze/tttt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2018/Open/Bronze/tttt.cpp -------------------------------------------------------------------------------- /USACO/Contests/2018/Open/Bronze/ttttNew.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2018/Open/Bronze/ttttNew.cpp -------------------------------------------------------------------------------- /USACO/Contests/2019/December/Bronze/backforth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2019/December/Bronze/backforth.cpp -------------------------------------------------------------------------------- /USACO/Contests/2019/December/Bronze/blist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2019/December/Bronze/blist.cpp -------------------------------------------------------------------------------- /USACO/Contests/2019/December/Bronze/mixmilk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2019/December/Bronze/mixmilk.cpp -------------------------------------------------------------------------------- /USACO/Contests/2019/December/Gold/cowpatibility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2019/December/Gold/cowpatibility.cpp -------------------------------------------------------------------------------- /USACO/Contests/2019/December/Gold/dining.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2019/December/Gold/dining.cpp -------------------------------------------------------------------------------- /USACO/Contests/2019/December/Gold/teamwork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2019/December/Gold/teamwork.cpp -------------------------------------------------------------------------------- /USACO/Contests/2019/December/Silver/USconvention.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2019/December/Silver/USconvention.cpp -------------------------------------------------------------------------------- /USACO/Contests/2019/December/Silver/USconvention2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2019/December/Silver/USconvention2.cpp -------------------------------------------------------------------------------- /USACO/Contests/2019/December/Silver/mooyomooyo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2019/December/Silver/mooyomooyo.cpp -------------------------------------------------------------------------------- /USACO/Contests/2019/January/Gold/poetry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2019/January/Gold/poetry.cpp -------------------------------------------------------------------------------- /USACO/Contests/2019/January/Gold/shortcut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2019/January/Gold/shortcut.cpp -------------------------------------------------------------------------------- /USACO/Contests/2019/January/Gold/sleepy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2019/January/Gold/sleepy.cpp -------------------------------------------------------------------------------- /USACO/Contests/2019/January/Silver/mountains.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2019/January/Silver/mountains.cpp -------------------------------------------------------------------------------- /USACO/Contests/2019/January/Silver/perimeter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Contests/2019/January/Silver/perimeter.cpp -------------------------------------------------------------------------------- /USACO/Training/Chapter1/Section1.2/beads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter1/Section1.2/beads.cpp -------------------------------------------------------------------------------- /USACO/Training/Chapter1/Section1.2/beads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter1/Section1.2/beads.py -------------------------------------------------------------------------------- /USACO/Training/Chapter1/Section1.2/friday.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter1/Section1.2/friday.py -------------------------------------------------------------------------------- /USACO/Training/Chapter1/Section1.2/gift1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter1/Section1.2/gift1.py -------------------------------------------------------------------------------- /USACO/Training/Chapter1/Section1.2/ride.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter1/Section1.2/ride.py -------------------------------------------------------------------------------- /USACO/Training/Chapter1/Section1.3/dualpal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter1/Section1.3/dualpal.py -------------------------------------------------------------------------------- /USACO/Training/Chapter1/Section1.3/milk2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter1/Section1.3/milk2.py -------------------------------------------------------------------------------- /USACO/Training/Chapter1/Section1.3/namenum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter1/Section1.3/namenum.py -------------------------------------------------------------------------------- /USACO/Training/Chapter1/Section1.3/palsquare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter1/Section1.3/palsquare.py -------------------------------------------------------------------------------- /USACO/Training/Chapter1/Section1.3/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter1/Section1.3/transform.py -------------------------------------------------------------------------------- /USACO/Training/Chapter1/Section1.4/barn1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter1/Section1.4/barn1.cpp -------------------------------------------------------------------------------- /USACO/Training/Chapter1/Section1.4/combo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter1/Section1.4/combo.cpp -------------------------------------------------------------------------------- /USACO/Training/Chapter1/Section1.4/combo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter1/Section1.4/combo.md -------------------------------------------------------------------------------- /USACO/Training/Chapter1/Section1.4/crypt1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter1/Section1.4/crypt1.cpp -------------------------------------------------------------------------------- /USACO/Training/Chapter1/Section1.4/crypt1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter1/Section1.4/crypt1.md -------------------------------------------------------------------------------- /USACO/Training/Chapter1/Section1.4/milk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter1/Section1.4/milk.cpp -------------------------------------------------------------------------------- /USACO/Training/Chapter1/Section1.4/skidesign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter1/Section1.4/skidesign.cpp -------------------------------------------------------------------------------- /USACO/Training/Chapter1/Section1.4/wormhole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter1/Section1.4/wormhole.cpp -------------------------------------------------------------------------------- /USACO/Training/Chapter1/Section1.4/wormhole.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter1/Section1.4/wormhole.md -------------------------------------------------------------------------------- /USACO/Training/Chapter1/Section1.5/ariprog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter1/Section1.5/ariprog.cpp -------------------------------------------------------------------------------- /USACO/Training/Chapter1/Section1.5/milk3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter1/Section1.5/milk3.cpp -------------------------------------------------------------------------------- /USACO/Training/Chapter1/Section1.6/numtri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter1/Section1.6/numtri.cpp -------------------------------------------------------------------------------- /USACO/Training/Chapter1/Section1.6/pprime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter1/Section1.6/pprime.cpp -------------------------------------------------------------------------------- /USACO/Training/Chapter1/Section1.6/sprime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter1/Section1.6/sprime.cpp -------------------------------------------------------------------------------- /USACO/Training/Chapter2/Section2.1/castle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter2/Section2.1/castle.cpp -------------------------------------------------------------------------------- /USACO/Training/Chapter2/Section2.1/frac1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter2/Section2.1/frac1.cpp -------------------------------------------------------------------------------- /USACO/Training/Chapter2/Section2.1/hamming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter2/Section2.1/hamming.cpp -------------------------------------------------------------------------------- /USACO/Training/Chapter2/Section2.1/holstein.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter2/Section2.1/holstein.cpp -------------------------------------------------------------------------------- /USACO/Training/Chapter2/Section2.1/sort3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter2/Section2.1/sort3.cpp -------------------------------------------------------------------------------- /USACO/Training/Chapter2/Section2.2/lamps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter2/Section2.2/lamps.cpp -------------------------------------------------------------------------------- /USACO/Training/Chapter2/Section2.2/preface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter2/Section2.2/preface.cpp -------------------------------------------------------------------------------- /USACO/Training/Chapter2/Section2.2/runround.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter2/Section2.2/runround.cpp -------------------------------------------------------------------------------- /USACO/Training/Chapter2/Section2.2/subset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter2/Section2.2/subset.cpp -------------------------------------------------------------------------------- /USACO/Training/Chapter2/Section2.3/concom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter2/Section2.3/concom.cpp -------------------------------------------------------------------------------- /USACO/Training/Chapter2/Section2.3/money.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter2/Section2.3/money.cpp -------------------------------------------------------------------------------- /USACO/Training/Chapter2/Section2.3/nocows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter2/Section2.3/nocows.cpp -------------------------------------------------------------------------------- /USACO/Training/Chapter2/Section2.3/prefix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter2/Section2.3/prefix.cpp -------------------------------------------------------------------------------- /USACO/Training/Chapter2/Section2.3/zerosum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter2/Section2.3/zerosum.cpp -------------------------------------------------------------------------------- /USACO/Training/Chapter2/Section2.4/comehome.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter2/Section2.4/comehome.cpp -------------------------------------------------------------------------------- /USACO/Training/Chapter2/Section2.4/cowtour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter2/Section2.4/cowtour.cpp -------------------------------------------------------------------------------- /USACO/Training/Chapter2/Section2.4/fracdec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter2/Section2.4/fracdec.cpp -------------------------------------------------------------------------------- /USACO/Training/Chapter2/Section2.4/maze1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter2/Section2.4/maze1.cpp -------------------------------------------------------------------------------- /USACO/Training/Chapter2/Section2.4/ttwo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter2/Section2.4/ttwo.cpp -------------------------------------------------------------------------------- /USACO/Training/Chapter3/Section3.1/agrinet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter3/Section3.1/agrinet.cpp -------------------------------------------------------------------------------- /USACO/Training/Chapter3/Section3.1/contact.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter3/Section3.1/contact.cpp -------------------------------------------------------------------------------- /USACO/Training/Chapter3/Section3.1/humble.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter3/Section3.1/humble.cpp -------------------------------------------------------------------------------- /USACO/Training/Chapter3/Section3.1/inflate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter3/Section3.1/inflate.cpp -------------------------------------------------------------------------------- /USACO/Training/Chapter3/Section3.1/stamps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter3/Section3.1/stamps.cpp -------------------------------------------------------------------------------- /USACO/Training/Chapter3/Section3.2/fact4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/USACO/Training/Chapter3/Section3.2/fact4.cpp -------------------------------------------------------------------------------- /default_template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/default_template.cpp -------------------------------------------------------------------------------- /misc/seekaword.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WilliamHYZhang/Competitive-Programming/HEAD/misc/seekaword.cpp --------------------------------------------------------------------------------