Skip to content

Commit 1ad148c

Browse files
authored
Merge pull request #8 from wzrabbit/add-over-rating-docs
docs: 오버 레이팅 문서 추가
2 parents 96d2934 + 7b6970d commit 1ad148c

4 files changed

Lines changed: 76 additions & 0 deletions

File tree

posts/en/stats/over-rating.mdx

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
title: Over Rating
3+
index: 40
4+
---
5+
6+
**Over Rating** is a rating calculated based on more problems than the [AC Rating](/en/stats/ac-rating), and rises as you solve more difficult problems on Baekjoon Online Judge. The 1,000 most difficult problems you have solved are reflected in your rating.
7+
8+
## Checking Over Rating
9+
10+
You can check the Over Rating at the bottom of the **AC Rating** section on your profile page.
11+
12+
![Over Rating card on the profile page](/stats/over-rating-card-en.png)
13+
14+
## Formula
15+
16+
The Over Rating is determined by the following formula:
17+
18+
$$
19+
\begin{aligned}
20+
\left(\text{Over Rating}\right) &= 11.8 \times \left(\text{Number of solved problems (up to }1\,000\text{)}\right) \\
21+
&+ 0.2 \times \left(\text{Sum of the difficulty values of the top }1\,000\text{ solved problems}\right)
22+
\end{aligned}
23+
$$
24+
25+
- **Difficulty value** refers to the difficulty of the problem, converted to 1 point for <Tier t={1} />, 2 points for <Tier t={2} />, &hellip; 30 points for <Tier t={30} />. The higher the difficulty of the problem, the higher the rating you can achieve.
26+
- Reference: Guide [**Problem Level**](/en/problem/level)
27+
28+
## Special Effects
29+
30+
Once the Over Rating reaches certain thresholds, a special gradient effect is applied to the AC Rating section on the profile page.
31+
32+
| Over Rating | Gradient |
33+
| :-----------------------: | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |
34+
| 16,000.0 &ndash; | <span style={{display: "block", width: "260px", height: "32px", opacity: 0.2, background: "linear-gradient(135deg, rgb(29, 255, 255), rgb(11, 176, 255), rgb(248, 71, 255), rgb(234, 13, 0), rgb(255, 251, 0), rgb(32, 216, 0))"}} /> |
35+
| 15,000.0 &ndash; 15,999.9 | <span style={{display: "block", width: "260px", height: "32px", opacity: 0.2, background: "linear-gradient(135deg, rgb(126, 226, 179), rgb(107, 200, 254), rgb(145, 243, 127), rgb(255, 241, 39), rgb(255, 183, 92), rgb(253, 176, 172), rgb(255, 183, 92), rgb(255, 241, 39), rgb(145, 243, 127), rgb(107, 200, 254))"}} /> |
36+
| 14,000.0 &ndash; 14,999.9 | <span style={{display: "block", width: "260px", height: "32px", opacity: 0.2, background: "linear-gradient(135deg, rgb(255, 207, 95), rgb(255, 194, 80) 28%, rgb(255, 255, 102) 31%, rgb(255, 255, 109), rgb(255, 209, 109), rgb(255, 255, 84) 58%, rgb(255, 183, 74) 64%, rgb(255, 180, 67), rgb(255, 255, 255))"}} /> |
37+
| 13,000.0 &ndash; 13,999.9 | <span style={{display: "block", width: "260px", height: "32px", opacity: 0.2, background: "linear-gradient(135deg, rgb(207, 215, 247), rgb(127, 145, 249), rgb(127, 190, 249) 45%, rgb(160, 239, 255) 47%, rgb(98, 233, 248), rgb(252, 242, 130))"}} /> |
38+
| 12,000.0 &ndash; 12,999.9 | <span style={{display: "block", width: "260px", height: "32px", opacity: 0.2, background: "linear-gradient(135deg, rgb(247, 226, 207), rgb(249, 164, 127), rgb(249, 164, 127) 45%, rgb(255, 225, 160) 47%, rgb(248, 128, 98), rgb(252, 173, 130))"}} /> |

posts/ko/stats/over-rating.mdx

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
title: 오버 레이팅
3+
index: 40
4+
---
5+
6+
**오버 레이팅**이란 [AC 레이팅](/ko/stats/ac-rating)보다 더 많은 문제 수를 반영하는, 백준 온라인 저지에서 어려운 문제를 많이 해결할수록 오르는 지표입니다. 해결한 문제 중 어려운 문제 1,000문제가 레이팅에 반영됩니다.
7+
8+
## 오버 레이팅의 확인
9+
10+
자신의 프로필 페이지의 **AC Rating** 섹션의 하단에서 오버 레이팅을 확인할 수 있습니다.
11+
12+
![프로필 페이지의 오버 레이팅 카드](/stats/over-rating-card-ko.png)
13+
14+
## 공식
15+
16+
오버 레이팅은 다음과 같은 공식으로 결정됩니다.
17+
18+
$$
19+
\begin{aligned}
20+
\left(\text{오버 레이팅}\right) &= 11.8 \times \left(\text{해결한 문제 수 (최대 }1\,000\text{)}\right) \\
21+
&+ 0.2 \times \left(\text{해결한 난이도 상위 }1\,000\text{문제의 난이도 값의 합}\right)
22+
\end{aligned}
23+
$$
24+
25+
- **난이도 값**이란, 문제의 난이도를 <Tier t={1} />를 1점, <Tier t={2} />를 2점, &hellip; <Tier t={30} />을 30점으로 바꾼 수를 말합니다. 어려운 문제를 해결할수록 높은 레이팅을 달성할 수 있습니다.
26+
- 참고: 가이드 [「문제 난이도」](/ko/problem/level)
27+
28+
## 특수 효과
29+
30+
오버 레이팅이 특정 점수 이상일 경우, 프로필 페이지의 AC Rating 섹션에 특별한 그라데이션 효과가 적용됩니다.
31+
32+
| 오버 레이팅 | 그라데이션 |
33+
| :-----------------------: | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |
34+
| 16,000.0 &ndash; | <span style={{display: "block", width: "260px", height: "32px", opacity: 0.2, background: "linear-gradient(135deg, rgb(29, 255, 255), rgb(11, 176, 255), rgb(248, 71, 255), rgb(234, 13, 0), rgb(255, 251, 0), rgb(32, 216, 0))"}} /> |
35+
| 15,000.0 &ndash; 15,999.9 | <span style={{display: "block", width: "260px", height: "32px", opacity: 0.2, background: "linear-gradient(135deg, rgb(126, 226, 179), rgb(107, 200, 254), rgb(145, 243, 127), rgb(255, 241, 39), rgb(255, 183, 92), rgb(253, 176, 172), rgb(255, 183, 92), rgb(255, 241, 39), rgb(145, 243, 127), rgb(107, 200, 254))"}} /> |
36+
| 14,000.0 &ndash; 14,999.9 | <span style={{display: "block", width: "260px", height: "32px", opacity: 0.2, background: "linear-gradient(135deg, rgb(255, 207, 95), rgb(255, 194, 80) 28%, rgb(255, 255, 102) 31%, rgb(255, 255, 109), rgb(255, 209, 109), rgb(255, 255, 84) 58%, rgb(255, 183, 74) 64%, rgb(255, 180, 67), rgb(255, 255, 255))"}} /> |
37+
| 13,000.0 &ndash; 13,999.9 | <span style={{display: "block", width: "260px", height: "32px", opacity: 0.2, background: "linear-gradient(135deg, rgb(207, 215, 247), rgb(127, 145, 249), rgb(127, 190, 249) 45%, rgb(160, 239, 255) 47%, rgb(98, 233, 248), rgb(252, 242, 130))"}} /> |
38+
| 12,000.0 &ndash; 12,999.9 | <span style={{display: "block", width: "260px", height: "32px", opacity: 0.2, background: "linear-gradient(135deg, rgb(247, 226, 207), rgb(249, 164, 127), rgb(249, 164, 127) 45%, rgb(255, 225, 160) 47%, rgb(248, 128, 98), rgb(252, 173, 130))"}} /> |
59.6 KB
Loading
59.1 KB
Loading

0 commit comments

Comments
 (0)