-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
346 lines (340 loc) · 13.1 KB
/
index.html
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="Switzerland's biggest programming contest">
<meta name="author" content="PolyProg">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Facebook -->
<meta property="og:type" content="website">
<meta property="og:title" content="HC2">
<meta property="og:image" content="http://hc2.ch/images/preview.jpg">
<meta property="og:url" content="http://hc2.ch">
<meta property="og:description" content="Switzerland's biggest programming contest">
<title>HC2 2018</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/main.css">
<link rel="icon" type="image/png" href="images/favicon-16.png" sizes="16x16">
<link rel="icon" type="image/png" href="images/favicon-32.png" sizes="32x32">
<script>
// Basic protection against dumb bots
function msgto(mailID, mailDomain) {
var txt = mailID + "@" + mailDomain;
document.write("<a href=\"mailto:" + txt + "\">" + txt + "</a>");
};
</script>
</head>
<body>
<section class="section-title">
<img class="logo"
src="images/logos/hc2.svg"
alt="HC2">
<h1>
March 17, 2018
</h1>
<p>
<h2>
The contest is over - take a look at <a href="https://photos.app.goo.gl/t6jEwP5FAZMAQtDZ2" target="_blank">the photos</a> and <a href="scoreboard.html" target="_blank">the scoreboard</a>!
</h2>
</p>
<p>
<h2>
You can try the problems on <a href="http://codeforces.com/contest/958" target="_blank">the online mirror</a>, and view <a href="editorial.pdf" target="_blank">the solutions</a>.
</h2>
</p>
<p>
<h3>
Follow us on <a href="https://www.facebook.com/polyprog/"
target="_blank"
rel="noreferrer">Facebook</a>
for updates!
</h3>
</p>
<p>
<h3>
Check out the problems from past editions:
<a href="http://codeforces.com/contest/802" target="_blank" rel="noreferrer">2017</a>,
<a href="http://codeforces.com/contest/690" target="_blank" rel="noreferrer">2016</a>,
<a href="http://polyprog.epfl.ch/zip/hc2/2015.zip" target="_blank" rel="noreferrer">2015</a>,
<a href="http://polyprog.epfl.ch/zip/hc2/2014.zip" target="_blank" rel="noreferrer">2014</a>,
<a href="http://polyprog.epfl.ch/zip/hc2/2013.zip" target="_blank" rel="noreferrer">2013</a>,
<a href="http://polyprog.epfl.ch/zip/hc2/2012.zip" target="_blank" rel="noreferrer">2012</a>,
<a href="http://polyprog.epfl.ch/zip/hc2/2011.zip" target="_blank" rel="noreferrer">2011</a>, and
<a href="http://polyprog.epfl.ch/zip/hc2/2010.zip" target="_blank" rel="noreferrer">2010</a>
</h3>
</p>
</section>
<section class="section-info">
<div class="row no-padding">
<div class="col-md-6 vertical-center">
<div class="text-container">
<p>
HC2 is Switzerland's biggest programming contest, held at EPFL in Lausanne.
</p>
<p>
Solve challenging problems in teams of up to 3 people using short programs.
</p>
<p>
Meet new friends, win prizes, and have fun for a day!
</p>
</div>
</div><!-- comment to avoid extra spaces with inline-block, thanks CSS...
--><div class="col-md-6 vertical-center">
<div class="maps-container">
<div id="maps-canvas"></div>
<script>
window.onload = function () {
var options = {
zoom: 9,
center: { lat: 46.520231, lng: 6.564728 },
mapTypeId: google.maps.MapTypeId.ROADMAP,
clickableIcons: false,
disableDefaultUI: true
};
var map = new google.maps.Map(document.getElementById("maps-canvas"), options);
new google.maps.Marker({
map: map,
position: options.center
});
};
</script>
</div>
</div>
</div>
</section>
<section>
<h1>Environment</h1>
<div class="row">
<div class="col-md-3">
<h3>OS</h3>
<p>
Ubuntu 16.04 with XFCE desktop
</p>
</div>
<div class="col-md-3">
<h3>Hardware</h3>
<p>
Swiss keyboard, two-button mouse
</p>
</div>
<div class="col-md-3">
<h3>Software</h3>
<p>
Emacs, Geany, Vim, NetBeans, Code::Blocks, Eclipse, GDB
</p>
</div>
<div class="col-md-3">
<h3>Languages</h3>
<p>
C++11, Java 8, Python 2.7 and 3.5
</p>
</div>
</div>
</section>
<section id="schedule">
<h1>Schedule</h1>
<div class="row">
<table class="table table-striped">
<tr>
<td>10:30-11:30</td>
<td>Check-in & Breakfast</td>
</tr>
<tr>
<td>11:30</td>
<td>Opening Ceremony / Sponsors Presentation</td>
</tr>
<tr>
<td>12:30</td>
<td>Dry Run Contest</td>
</tr>
<tr>
<td>13:00</td>
<td>Lunch</td>
</tr>
<tr>
<td>13:30</td>
<td>Contest Begins</td>
</tr>
<tr>
<td>18:00</td>
<td>Contest Ends</td>
</tr>
<tr>
<td>18:30</td>
<td>Results / Closing Ceremony</td>
</tr>
<tr>
<td>19:30</td>
<td>Dinner (optional)</td>
</tr>
</table>
</div>
</section>
<section>
<h1>F.A.Q.</h1>
<div class="row">
<div class="col-md-4">
<h3>Can I participate?</h3>
<p>
You must be <strong>at least 14 years old</strong>. No need to be a student, but students and professionals compete in separate categories.
</p>
</div>
<div class="col-md-4">
<h3>What should I bring?</h3>
<p>
Your good mood! Nothing is needed - we will provide your team with a computer, pen and paper.
</p>
</div>
<div class="col-md-4">
<h3>Where is it?</h3>
<p>
HC2 is in the CO building at EPFL.
<br>
You can find directions <a href="http://information.epfl.ch/access"
rel="noreferrer"
target="_blank">here</a>.
</p>
</div>
</div>
<div class="row">
<div class="col-md-4">
<h3>What about food?</h3>
<p>
We will provide you with breakfast and lunch; you can optionally join for dinner for CHF 15 more.
</p>
</div>
<div class="col-md-4">
<h3>What if I don't have a team?</h3>
<p>
Don't worry! Register as a single participant, and we'll try to find you a team.
You can always participate alone, of course.
</p>
</div>
<div class="col-md-4">
<h3>I have another question...</h3>
<p>
Check out the <a href="/pdf/rules.pdf"
target="_blank">rules</a>,
message us on <a href="https://facebook.com/polyprog/"
target="_blank"
rel="noreferrer">Facebook</a>,
<br>
or email us at at
<script>msgto("info", "hc2.ch")</script>!
</p>
</div>
</div>
</section>
<section>
<h1>Sponsors</h1>
<div class="row row-centered sponsor">
<div class="col-centered">
<a href="https://www.adnovum.ch/en/"
rel="noreferrer"
target="_blank">
<img src="images/logos/adnovum.svg"
alt="AdNovum">
</a>
</div>
<div class="col-centered">
<a href="http://www.open.ch"
rel="noreferrer"
target="_blank">
<img src="images/logos/opensystems.svg"
alt="Open Systems">
</a>
</div>
</div>
<h3>Organizers</h3>
<div class="row row-centered sponsor">
<!-- NOTE: EPFL requires that their logo be first -->
<div class="col-centered">
<a href="http://epfl.ch/"
rel="noreferrer"
target="_blank">
<img src="images/logos/epfl.svg"
alt="EPFL">
</a>
</div>
<div class="col-centered">
<a href="http://polyprog.epfl.ch/"
rel="noreferrer"
target="_blank">
<img src="images/logos/polyprog.svg"
alt="PolyProg">
</a>
</div>
</div>
</section>
<!-- TODO
<section class="section-info section-footer">
<h1>Committee</h1>
<div class="row row-centered">
<div class="col-centered">
<a class="staff-link"
target="_blank"
rel="noreferrer"
href="https://www.linkedin.com/in/blagovestakostova">
<div class="staff-container">
<img class="staff-pic"
src="images/staff/betty_kostova.jpg"
alt="Picture of Betty Kostova">
<div class="staff-info">
<span class="staff-firstname">
Betty
</span>
<br>
<span class="staff-lastname">
Kostova
</span>
</div>
</div>
</a>
</div>
<div class="col-centered">
<a class="staff-link"
target="_blank"
rel="noreferrer"
href="https://www.linkedin.com/in/solalpirelli">
<div class="staff-container">
<img class="staff-pic"
src="images/staff/solal_pirelli.jpg"
alt="Picture of Solal Pirelli">
<div class="staff-info">
<span class="staff-firstname">
Solal
</span>
<br>
<span class="staff-lastname">
Pirelli
</span>
</div>
</div>
</a>
</div>
<div class="col-centered">
<a class="staff-link"
target="_blank"
rel="noreferrer"
href="https://www.linkedin.com/in/tatiana-nikitina">
<div class="staff-container">
<img class="staff-pic"
src="images/staff/tatiana_nikitina.jpg"
alt="Picture of Tatiana Nikitina">
<div class="staff-info">
<span class="staff-firstname">
Tatiana
</span>
<br>
<span class="staff-lastname">
Nikitina
</span>
</div>
</div>
</a>
</div>
</div>
</section> -->
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCFaLvzdfQhOnW06QJwgupdDk_t3FTdH64"></script>
</body>
</html>