Daffodil International University

Faculty of Science and Information Technology => Software Engineering => Topic started by: motiur.swe on November 02, 2017, 03:00:14 PM

Title: Programming Languages for ACM-ICPC Problem Solving
Post by: motiur.swe on November 02, 2017, 03:00:14 PM
Which programming language you prefer for ACM-ICPC contest?
Please provide your interest by voting on the poll.

Thanks.
Title: Re: Programming Languages for ACM-ICPC Problem Solving
Post by: Razu_Ahmed on November 03, 2017, 10:54:55 AM
C++ is the most preferred language for competitive programming, due to its performance and the availability of the powerful standard template library (STL) which has an efficient implementation for common data structures (stack, queue, priority queue, map, etc.) and common routines (e.g. sorting, searching, etc.).

However, for certain types of problems, you might feel better to do it in Java or Python. Like dealing with big integers which are not supported primitively in C++.

So, I would suggest you (which are problem solver) focus on C++ but get some exposure to another language like Python or Java.