-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
160 lines (154 loc) · 6.38 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
<html>
<head>
<title>XJTU ACM</title>
<meta charset="utf-8">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui">
<link href="https://cdn.bootcss.com/reveal.js/3.5.0/css/reveal.min.css" rel="stylesheet">
<link href="https://cdn.bootcss.com/reveal.js/3.5.0/css/theme/black.min.css" rel="stylesheet">
<style>
.footer {
color: white;
position: fixed;
bottom: 0;
display: block;
width: 100%;
}
.footer p {
text-align: center;
}
* {
font-family: consolas !important;
color: white;
}
</style>
</head>
<body>
<div class="reveal">
<div class="slides">
<section>
<h2>Quick Entrance</h2>
<ul>
<li>this -> <a href="https://www.xjtuacm.com">www.xjtuacm.com</a></li>
<li>Board -> <a href="https://board.xjtuacm.com">board.xjtuacm.com</a></li>
<li>Online Judge -> <a href="https://oj.xjtuacm.com">oj.xjtuacm.com</a></li>
<li>GitLab -> <a href="https://git.xjtuacm.com">git.xjtuacm.com</a></li>
<li>Public Resources -> <a href="https://pub.xjtuacm.com">pub.xjtuacm.com</a></li>
<li>FTP -> <a href="ftp://ftp.xjtuacm.com">ftp.xjtuacm.com</a></li>
<li>VPN -> vpn.xjtuacm.com</li>
<li>DNS -> dns.xjtuacm.com</li>
</ul>
</section>
<section id="home">
<h1>XJTU ACM</h1>
<small>www.xjtuacm.com</small>
</section>
<section id="short-semester-course">
<section id="ssc">
<p>ACM Short Semester Course</p>
<small>A series of topics about algorithm contest</small>
</section>
<section id="ssc-2017">
<h5>2017 Summer</h5>
<p>This course mainly introduces several algorithms and data structures in the domain of ACM/ICPC, encouraging
practice, to enhance the skill of programming, building basic knowledge system for students willing
to join XJTU ACM Team. </p>
</section>
<section id="ssc-2017-content">
<p>There are 10-day courses and corresponding homework</p>
<p>and a FINAL CONTEST.</p>
<p>Attendance(10%) + Homework(60%) + Contest(30%)</p>
<p>The cource is from 4 p.m. to 7 p.m. everyday in the following schedule.</p>
</section>
<section id="ssc-2017-agenda-1">
<h5>2017 Summer Agenda</h5>
<small>Jun 26 - Jul 8</small>
<table>
<thead>
<tr>
<td>Date</td>
<td>Topic</td>
</tr>
</thead>
<tbody>
<tr>
<td>Jun 26</td>
<td>Overview</td>
</tr>
<tr>
<td>Jun 27</td>
<td>Greedy | Divide and Conquer</td>
</tr>
<tr>
<td>Jun 28</td>
<td>Searching</td>
</tr>
<tr>
<td>Jun 29</td>
<td>Data Structure</td>
</tr>
<tr>
<td>Jun 30</td>
<td>Dynamic Programming</td>
</tr>
</tbody>
</table>
</section>
<section id="ssc-2017-agenda-2">
<h5>2017 Summer Agenda</h5>
<small>Jun 26 - Jul 8</small>
<table>
<thead>
<tr>
<td>Date</td>
<td>Topic</td>
</tr>
</thead>
<tbody>
<tr>
<td>Jul 3</td>
<td>Number Theory</td>
</tr>
<tr>
<td>Jul 4</td>
<td>Graph Theory</td>
</tr>
<tr>
<td>Jul 5</td>
<td>String</td>
</tr>
<tr>
<td>Jul 6</td>
<td>Fragments</td>
</tr>
<tr>
<td>Jul 7</td>
<td>Typical Problems</td>
</tr>
</tbody>
</table>
</section>
<section id="ssc-2017-agenda-3">
<h5>2017 Summer Final Contest</h5>
<small>Jul 8, 3-hour programming time!</small>
</section>
<section id="ssc-2017-sign-up">
<h3>Sign Up</h3>
<small>2017 Summer, XJTU students Only</small>
<p>Email your real name, student ID number and class name to <a href="mailto:sylxjtu@outlook.com">sylxjtu@outlook.com</a>.</p>
</section>
</section>
</div>
</div>
<div class="footer">
<p>Copyright © 2017 - 2018, XJTU ACM Team. All Right Reserved.</p>
</div>
<script src="https://cdn.bootcss.com/reveal.js/3.5.0/js/reveal.min.js"></script>
<script>
Reveal.initialize({
history: true
});
</script>
</body>
</html>