Skip to content

Commit eaa6ed6

Browse files
committed
more bitsets
1 parent 079f14a commit eaa6ed6

File tree

1 file changed

+28
-10
lines changed

1 file changed

+28
-10
lines changed

content/5_Plat/Bitsets.mdx

+28-10
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,13 @@ export const problems = {
5757
],
5858
ad: [
5959
new Problem(
60-
'Plat',
61-
'Equilateral Triangles',
62-
'1021',
63-
'Normal',
60+
'TOKI',
61+
'Tzaph & Number Line',
62+
'https://tlx.toki.id/contests/troc-15-div-1/problems/E',
63+
'Easy',
6464
false,
65-
['Bitset', 'Sliding Window'],
66-
'Again, the intended solution runs in $O(N^3)$. Of course, it is still possible to pass $O(N^4)$ solutions with bitset! See the analysis [here](http://www.usaco.org/current/data/sol_triangles_platinum_feb20.html).'
65+
['Bitset'],
66+
''
6767
),
6868
new Problem(
6969
'Baltic OI',
@@ -83,6 +83,24 @@ export const problems = {
8383
['Knapsack', 'Bitset'],
8484
'baltic-10-candies'
8585
),
86+
new Problem(
87+
'COCI',
88+
'2015 - Uzastopni',
89+
'https://oj.uz/problem/view/COCI15_uzastopni',
90+
'Normal',
91+
false,
92+
['Bitset'],
93+
''
94+
),
95+
new Problem(
96+
'Plat',
97+
'Equilateral Triangles',
98+
'1021',
99+
'Hard',
100+
false,
101+
['Bitset', 'Sliding Window'],
102+
'Again, the intended solution runs in $O(N^3)$. Of course, it is still possible to pass $O(N^4)$ solutions with bitset! See the analysis [here](http://www.usaco.org/current/data/sol_triangles_platinum_feb20.html).'
103+
),
86104
new Problem(
87105
'IZhO',
88106
'2017 - Bootfall',
@@ -102,12 +120,12 @@ export const problems = {
102120
'baltic-15-tug'
103121
),
104122
new Problem(
105-
'COCI',
106-
'2015 - Uzastopni',
107-
'https://oj.uz/problem/view/COCI15_uzastopni',
123+
'CF',
124+
'Rectangular Polyline',
125+
'https://codeforces.com/contest/1444/problem/D',
108126
'Hard',
109127
false,
110-
['Bitset'],
128+
[],
111129
''
112130
),
113131
],

0 commit comments

Comments
 (0)