Skip to content

Commit f71a361

Browse files
committed
feat: add new tags and update tag reflection policy
1 parent 80cf244 commit f71a361

File tree

1 file changed

+100
-0
lines changed

1 file changed

+100
-0
lines changed

posts/ko/updates/250503/index.mdx

+100
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
---
2+
title: 태그 추가, 수정 및 태그 반영 공식 수정 안내 (2025년 5월 3일)
3+
index: -20250503
4+
---
5+
6+
안녕하세요! 우리 모두가 만들어가는 알고리즘 문제해결 학습의 이정표 **solved.ac**입니다.
7+
8+
## 새로운 태그 추가
9+
10+
새로운 태그 24개가 추가되었습니다.
11+
12+
- [#angle_sorting](https://solved.ac/problems/tags/angle_sorting)
13+
- [#beats](https://solved.ac/problems/tags/beats)
14+
- [#bitset_lcs](https://solved.ac/problems/tags/bitset_lcs)
15+
- [#bulldozer](https://solved.ac/problems/tags/bulldozer)
16+
- [#cdq](https://solved.ac/problems/tags/cdq)
17+
- [#cyclic_group](https://solved.ac/problems/tags/cyclic_group)
18+
- [#dial](https://solved.ac/problems/tags/dial)
19+
- [#difference_array](https://solved.ac/problems/tags/difference_array)
20+
- [#grid_graph](https://solved.ac/problems/tags/grid_graph)
21+
- [#harmonic_number](https://solved.ac/problems/tags/harmonic_number)
22+
- [#invariant](https://solved.ac/problems/tags/invariant)
23+
- [#kinetic_segtree](https://solved.ac/problems/tags/kinetic_segtree)
24+
- [#lcs](https://solved.ac/problems/tags/lcs)
25+
- [#li_chao_tree](https://solved.ac/problems/tags/li_chao_tree)
26+
- [#maximum_subarray](https://solved.ac/problems/tags/maximum_subarray)
27+
- [#parity](https://solved.ac/problems/tags/parity)
28+
- [#pisano](https://solved.ac/problems/tags/pisano)
29+
- [#prime_factorization](https://solved.ac/problems/tags/prime_factorization)
30+
- [#rerooting](https://solved.ac/problems/tags/rerooting)
31+
- [#set](https://solved.ac/problems/tags/set)
32+
- [#traceback](https://solved.ac/problems/tags/traceback)
33+
- [#tree_diameter](https://solved.ac/problems/tags/tree_diameter)
34+
- [#treewidth](https://solved.ac/problems/tags/treewidth)
35+
- [#xor_basis](https://solved.ac/problems/tags/xor_basis)
36+
37+
새로운 태그 관계들이 추가되었습니다. $A \leftarrow B$는 $B$가 $A$의 하위 태그라는 의미이며, $B$로 기여할 경우 $A$도 자동으로 기여됩니다.
38+
39+
- #bitset ← #bitset_lcs
40+
- #cyclic_group ← #pisano
41+
- #data_structures ← #set
42+
- #divide_and_conquer ← #cdq
43+
- #dp_tree ← #rerooting
44+
- #geometry ← #angle_sorting
45+
- #geometry ← #bulldozer
46+
- #graphs ← #flow
47+
- #graphs ← #grid_graph
48+
- #lcs ← #bitset_lcs
49+
- #math ← #harmonic_number
50+
- #number_theory ← #prime_factorization
51+
- #prime_factorization ← #pollard_rho
52+
- #segtree ← #beats
53+
- #segtree ← #kinetic_segtree
54+
- #segtree ← #li_chao_tree
55+
- #set ← #hash_set
56+
- #set ← #tree_set
57+
- #shortest_path ← #dial
58+
- #sorting ← #angle_sorting
59+
- #trees ← #tree_diameter
60+
- #trees ← #treewidth
61+
62+
기존의 일부 태그 관계들은 삭제되었습니다.
63+
64+
- #number_theory ← #pollard_rho
65+
- #data_structures ← #hash_set
66+
- #data_structures ← #tree_set
67+
68+
몇몇 태그의 이름이 변경되었습니다.
69+
70+
- #directed_mst (ko): 유향 최소 신장 트리 → 유향 최소 스패닝 트리
71+
- #lis (ko): 가장 긴 증가하는 부분 수열 (o(n log n)) → 가장 긴 증가하는 부분 수열 문제
72+
- #lis (en): longest increasing sequence in o(n log n) → longest increasing sequence problem
73+
74+
## 태그 반영 공식 수정
75+
76+
문제에 등록되는 태그는 기여자들이 남긴 태그의 수를 기반으로 계산되고 있습니다. 태그가 문제에 등록되는 조건이 다소 수정됩니다.
77+
78+
### 기존
79+
80+
기존에는 $1$개 이상의 태그가 붙어 있는 기여가 $N$개이고, 어떤 태그 $T$가 등록되어 있는 기여가 $M_T$개일 때,
81+
82+
$$
83+
M_T > 0 \quad \text{이면서,} \quad M_T \geq 0.3 \times N
84+
$$
85+
86+
인 경우에 태그 $T$가 문제에 등록되었습니다.
87+
88+
### 수정
89+
90+
이제부터는 각 태그 $T$에 대해, 태그 $T$가 솔브드에 추가된 시점이 $D$라면,
91+
92+
- $1$개 이상의 태그가 등록되어 있고, $D$ 이후에 기여된 기여의 수가 $N_D$개이고,
93+
- 태그 $T$가 등록되어 있고, $D$ 이후에 기여된 기여의 수가 $m_{T,D}$개이며,
94+
- 시점 상관없이 태그 $T$가 등록되어 있는 기여의 수가 $M_T$개일 때,
95+
96+
$$
97+
M_T > 0 \quad \text{이면서,} \quad m_{T,D} \geq 0.3 \times N_D
98+
$$
99+
100+
인 경우에 태그 $T$가 문제에 등록됩니다.

0 commit comments

Comments
 (0)