├── README.md ├── ad-hoc (easy) ├── A │ └── A_MO_Salah_running_down_the_wing.cpp ├── B │ └── B_Looking_for_Taste.cpp ├── C │ └── C_Can_look_like_a.cpp ├── D │ └── D_Endure_Invests_in_Apples.cpp ├── E │ └── E_Fouad_Wears_Suits.cpp ├── F │ └── F_For_it_being_a.cpp ├── G │ └── G_Giza.txt ├── H │ └── H_Jewels.cpp.txt ├── I │ └── I_Cars.cpp ├── J │ └── J_Teams.cpp ├── K │ └── K_ICPCs_In_Egypt.cpp ├── L │ └── L_Hala_and_Average.cpp ├── M │ └── M_Too_Late.cpp ├── N │ └── N_Wired_Mall.cpp ├── O │ └── O_Calculator.cpp ├── P │ └── P_Division_Problem.cpp ├── Q │ └── Q_Great.cpp ├── R │ └── R_Kudos_to_those_who.cpp ├── S │ └── S_Leverage_their_skill.cpp ├── T │ └── T_Now_and_next.cpp ├── U │ └── U_Giza.cpp ├── V │ └── V_Luxor.cpp ├── W │ └── W_Calculator.cpp ├── X │ └── X_PUBG_Update.cpp ├── Y │ └── Y_Languid_Guardian.cpp └── Z │ └── Z_Intern_Judges.cpp ├── ad-hoc (medium) └── o │ └── solution(Troy_).cpp ├── data-structure (hard) └── R │ └── Zoma17.cpp ├── data-structure (medium) ├── zb │ └── sol1.cpp └── zc │ └── sol1.cpp ├── dp (easy) ├── a │ ├── sol1.cpp │ └── solution(Lord_Baraa).cpp ├── b │ ├── sol1.cpp │ └── solution(Lord_Baraa).cpp ├── c │ └── solution(Lord_Baraa).cpp ├── d │ └── solution(Lord_Baraa).cpp ├── e │ └── solution(Lord_Baraa).cpp ├── f │ └── solution(Lord_Baraa).cpp └── g │ └── solution(Lord_Baraa).cpp ├── dp (medium) ├── d │ └── solution(Lord_Baraa).cpp └── k │ └── solution(Lord_Baraa).cpp ├── number theory (easy) └── j │ └── sol1.cpp └── number theory (medium) ├── h └── solution(Lord_Baraa)(Hashing).cpp ├── i └── solution(Lord_Baraa).cpp ├── o └── solution(Lord_Baraa).cpp ├── p └── solution(Lord_Baraa).cpp ├── q └── solution(Lord_Baraa).cpp ├── r └── solution(Lord_Baraa).cpp ├── s └── solution(Lord_Baraa).cpp ├── u └── solution(Lord_Baraa).cpp ├── v └── gcd_primefacts.cpp └── w └── seive_spf.cpp /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/README.md -------------------------------------------------------------------------------- /ad-hoc (easy)/A/A_MO_Salah_running_down_the_wing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/ad-hoc (easy)/A/A_MO_Salah_running_down_the_wing.cpp -------------------------------------------------------------------------------- /ad-hoc (easy)/B/B_Looking_for_Taste.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/ad-hoc (easy)/B/B_Looking_for_Taste.cpp -------------------------------------------------------------------------------- /ad-hoc (easy)/C/C_Can_look_like_a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/ad-hoc (easy)/C/C_Can_look_like_a.cpp -------------------------------------------------------------------------------- /ad-hoc (easy)/D/D_Endure_Invests_in_Apples.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/ad-hoc (easy)/D/D_Endure_Invests_in_Apples.cpp -------------------------------------------------------------------------------- /ad-hoc (easy)/E/E_Fouad_Wears_Suits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/ad-hoc (easy)/E/E_Fouad_Wears_Suits.cpp -------------------------------------------------------------------------------- /ad-hoc (easy)/F/F_For_it_being_a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/ad-hoc (easy)/F/F_For_it_being_a.cpp -------------------------------------------------------------------------------- /ad-hoc (easy)/G/G_Giza.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/ad-hoc (easy)/G/G_Giza.txt -------------------------------------------------------------------------------- /ad-hoc (easy)/H/H_Jewels.cpp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/ad-hoc (easy)/H/H_Jewels.cpp.txt -------------------------------------------------------------------------------- /ad-hoc (easy)/I/I_Cars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/ad-hoc (easy)/I/I_Cars.cpp -------------------------------------------------------------------------------- /ad-hoc (easy)/J/J_Teams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/ad-hoc (easy)/J/J_Teams.cpp -------------------------------------------------------------------------------- /ad-hoc (easy)/K/K_ICPCs_In_Egypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/ad-hoc (easy)/K/K_ICPCs_In_Egypt.cpp -------------------------------------------------------------------------------- /ad-hoc (easy)/L/L_Hala_and_Average.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/ad-hoc (easy)/L/L_Hala_and_Average.cpp -------------------------------------------------------------------------------- /ad-hoc (easy)/M/M_Too_Late.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/ad-hoc (easy)/M/M_Too_Late.cpp -------------------------------------------------------------------------------- /ad-hoc (easy)/N/N_Wired_Mall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/ad-hoc (easy)/N/N_Wired_Mall.cpp -------------------------------------------------------------------------------- /ad-hoc (easy)/O/O_Calculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/ad-hoc (easy)/O/O_Calculator.cpp -------------------------------------------------------------------------------- /ad-hoc (easy)/P/P_Division_Problem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/ad-hoc (easy)/P/P_Division_Problem.cpp -------------------------------------------------------------------------------- /ad-hoc (easy)/Q/Q_Great.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/ad-hoc (easy)/Q/Q_Great.cpp -------------------------------------------------------------------------------- /ad-hoc (easy)/R/R_Kudos_to_those_who.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/ad-hoc (easy)/R/R_Kudos_to_those_who.cpp -------------------------------------------------------------------------------- /ad-hoc (easy)/S/S_Leverage_their_skill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/ad-hoc (easy)/S/S_Leverage_their_skill.cpp -------------------------------------------------------------------------------- /ad-hoc (easy)/T/T_Now_and_next.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/ad-hoc (easy)/T/T_Now_and_next.cpp -------------------------------------------------------------------------------- /ad-hoc (easy)/U/U_Giza.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/ad-hoc (easy)/U/U_Giza.cpp -------------------------------------------------------------------------------- /ad-hoc (easy)/V/V_Luxor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/ad-hoc (easy)/V/V_Luxor.cpp -------------------------------------------------------------------------------- /ad-hoc (easy)/W/W_Calculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/ad-hoc (easy)/W/W_Calculator.cpp -------------------------------------------------------------------------------- /ad-hoc (easy)/X/X_PUBG_Update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/ad-hoc (easy)/X/X_PUBG_Update.cpp -------------------------------------------------------------------------------- /ad-hoc (easy)/Y/Y_Languid_Guardian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/ad-hoc (easy)/Y/Y_Languid_Guardian.cpp -------------------------------------------------------------------------------- /ad-hoc (easy)/Z/Z_Intern_Judges.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/ad-hoc (easy)/Z/Z_Intern_Judges.cpp -------------------------------------------------------------------------------- /ad-hoc (medium)/o/solution(Troy_).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/ad-hoc (medium)/o/solution(Troy_).cpp -------------------------------------------------------------------------------- /data-structure (hard)/R/Zoma17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/data-structure (hard)/R/Zoma17.cpp -------------------------------------------------------------------------------- /data-structure (medium)/zb/sol1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/data-structure (medium)/zb/sol1.cpp -------------------------------------------------------------------------------- /data-structure (medium)/zc/sol1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/data-structure (medium)/zc/sol1.cpp -------------------------------------------------------------------------------- /dp (easy)/a/sol1.cpp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dp (easy)/a/solution(Lord_Baraa).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/dp (easy)/a/solution(Lord_Baraa).cpp -------------------------------------------------------------------------------- /dp (easy)/b/sol1.cpp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dp (easy)/b/solution(Lord_Baraa).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/dp (easy)/b/solution(Lord_Baraa).cpp -------------------------------------------------------------------------------- /dp (easy)/c/solution(Lord_Baraa).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/dp (easy)/c/solution(Lord_Baraa).cpp -------------------------------------------------------------------------------- /dp (easy)/d/solution(Lord_Baraa).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/dp (easy)/d/solution(Lord_Baraa).cpp -------------------------------------------------------------------------------- /dp (easy)/e/solution(Lord_Baraa).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/dp (easy)/e/solution(Lord_Baraa).cpp -------------------------------------------------------------------------------- /dp (easy)/f/solution(Lord_Baraa).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/dp (easy)/f/solution(Lord_Baraa).cpp -------------------------------------------------------------------------------- /dp (easy)/g/solution(Lord_Baraa).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/dp (easy)/g/solution(Lord_Baraa).cpp -------------------------------------------------------------------------------- /dp (medium)/d/solution(Lord_Baraa).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/dp (medium)/d/solution(Lord_Baraa).cpp -------------------------------------------------------------------------------- /dp (medium)/k/solution(Lord_Baraa).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/dp (medium)/k/solution(Lord_Baraa).cpp -------------------------------------------------------------------------------- /number theory (easy)/j/sol1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/number theory (easy)/j/sol1.cpp -------------------------------------------------------------------------------- /number theory (medium)/h/solution(Lord_Baraa)(Hashing).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/number theory (medium)/h/solution(Lord_Baraa)(Hashing).cpp -------------------------------------------------------------------------------- /number theory (medium)/i/solution(Lord_Baraa).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/number theory (medium)/i/solution(Lord_Baraa).cpp -------------------------------------------------------------------------------- /number theory (medium)/o/solution(Lord_Baraa).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/number theory (medium)/o/solution(Lord_Baraa).cpp -------------------------------------------------------------------------------- /number theory (medium)/p/solution(Lord_Baraa).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/number theory (medium)/p/solution(Lord_Baraa).cpp -------------------------------------------------------------------------------- /number theory (medium)/q/solution(Lord_Baraa).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/number theory (medium)/q/solution(Lord_Baraa).cpp -------------------------------------------------------------------------------- /number theory (medium)/r/solution(Lord_Baraa).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/number theory (medium)/r/solution(Lord_Baraa).cpp -------------------------------------------------------------------------------- /number theory (medium)/s/solution(Lord_Baraa).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/number theory (medium)/s/solution(Lord_Baraa).cpp -------------------------------------------------------------------------------- /number theory (medium)/u/solution(Lord_Baraa).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/number theory (medium)/u/solution(Lord_Baraa).cpp -------------------------------------------------------------------------------- /number theory (medium)/v/gcd_primefacts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/number theory (medium)/v/gcd_primefacts.cpp -------------------------------------------------------------------------------- /number theory (medium)/w/seive_spf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoamenAhmedMostafa/ACPC-Topic-Focused-Training-Archive/HEAD/number theory (medium)/w/seive_spf.cpp --------------------------------------------------------------------------------