-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompetition.html
More file actions
81 lines (66 loc) · 3.85 KB
/
competition.html
File metadata and controls
81 lines (66 loc) · 3.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="keywords"
content="competitive programming algorithms dsa ACM ICPC programozási verseny programming contest felkészítő szakkör preparation study group student club BME VIK CS SZIT leetcode codeforces" />
<meta
name="description"
content="Competitive programming and the ACM ICPC contest at BME VIK SZIT."
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Competitive programming and the ACM ICPC contest</title>
<link rel="stylesheet" type="text/css" href="./assets/css/style.css" />
</head>
<body>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
<script type="text/javascript" src="./assets/js/anim.js"></script>
<script type="text/javascript" src="./assets/js/initanim.js"></script>
<h1>Competitive Programming</h1>
<nav>
<ul class="menu">
<li><a href=".">Home</a></li>
<li><a href="./competition.html">Contest</a></li>
<li><a href="./preparation.html">Preparation</a></li>
<li><a href="./archives.html">Archives</a></li>
<li><a href="./contact.html">Contact</a></li>
</ul>
</nav>
<h2>
<a name="competitive-programming">Competitive programming</a>
</h2>
<p>
Competitive programming is a mental sport (just like chess), where participants tackle a challenging set of algorithmical and mathematical problems by writing computer programs that can solve them.
</p>
<p>
Judging of the solutions is based on a large set of hidden testcases, for each of which the program must return the correct solution under a very tight time and memory limit. In order to pass these testcases, participants must employ their knowledge of various data structures and algorithms.
</p>
<p>
Practicing this sport will train you to think and code fast under pressure, enhance your problem solving skills, find bugs and edge cases in code quicker, understand the workings of complex algorithms and come up with creative solutions to problems. - All of these skills translate well into any field in IT and will prepare you for FAANG interviews too. Also, it is fun!
</p>
<h2>
<a name="icpc">ICPC</a>
</h2>
<p>
The International Collegiate Programming Contest, known as the ICPC, is one of the oldest, largest, and most prestigious competitive programming contests among the universities of the world.
</p>
<a href="https://news.icpc.global/gallery/">
<img width="100%" src="https://live.staticflickr.com/65535/52490068172_972cc42346_b.jpg">
<center>ICPC World Finals 2021, Dhaka, Bangladesh</center>
</a>
<p>
The competition is open to teams of three, who are currently enrolled at the same university and all members meet the <a href="https://cerc.acm.si/#participation">eligibility requirements</a>. The teams have 5 hours to work on 10-12 exercises, using a single computer, provided by the organizers. Using hand-written or printed materials is allowed, however other electronic devices (phones, calculators, pendrives) and the Internet are not.
</p>
<p>
There are three tiers of the competition:
<ul>
<li>1st Round: <a href="http://versenyek.inf.elte.hu/">Hungarian Qualifiers</a></li>
<li>2nd Round: <a href="https://cerc.acm.si/">ICPC CERC (Central European Regional Contest)</a></li>
<li>3rd Round: <a href="https://icpc.global/">ICPC World Finals</a></li>
</ul>
</p>
<p>
In the qualification round the first 2 teams from Budapest University of Technology and Economics will advance to the regional round, held in Ljubljana, Slovenia. Travel and stay is organized and funded by the university for our teams.
</p>
</body>
</html>