Skip to content

Commit

Permalink
✨ feat: "덱을 이용한 구간 최댓값 트릭" 알고리즘 분류를 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
wzrabbit committed Aug 24, 2024
1 parent 93a56a4 commit 3bfb37c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
5 changes: 5 additions & 0 deletions totamjung/js/db.js
Original file line number Diff line number Diff line change
Expand Up @@ -403,6 +403,11 @@ const db = {
tag: 'dp_digit',
alias: [],
},
207: {
name: "덱을 이용한 구간 최댓값 트릭",
tag: "deque_trick",
alias: ['덱 트릭'],
},
};
// 제거해야 하는 기호 [, A->a 공백 _ - / tag: #]
export default db;
2 changes: 2 additions & 0 deletions totamjung/js/widget.js
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,7 @@ const algorithmToId = {
'지수승강 보조정리': 204,
'유리 등차수열의 내림 합': 205,
'자릿수를 이용한 다이나믹 프로그래밍': 206,
'덱을 이용한 구간 최댓값 트릭': 207,
Mathematics: 1,
Implementation: 2,
'Dynamic Programming': 3,
Expand Down Expand Up @@ -410,6 +411,7 @@ const algorithmToId = {
'Lifting The Exponent Lemma': 204,
'Sum Of Floor Of Rational Arithmetic Sequence': 205,
'Digit Dp': 206,
'Deque Range Maximum Trick': 207,
};

const resetSettings = {
Expand Down
2 changes: 1 addition & 1 deletion totamjung/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "토탐정",
"description": "[BOJ-Extension] 알고리즘 분류 가리개 & 랜덤 디펜스, 토탐정!",
"version": "1.1.2.4",
"version": "1.1.2.5",
"manifest_version": 3,
"permissions": ["storage"],
"host_permissions": ["https://solved.ac/api/v3/search/*"],
Expand Down
2 changes: 1 addition & 1 deletion totamjung/options.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ <h1 class="header">
<li id="category-block-02">문제 추첨 설정</li>
</ul>
</div>
<div class="version">v1.1.2.4</div>
<div class="version">v1.1.2.5</div>
<img class="header-btn" id="guide-btn" src="../images/guide_link.png" />
<img
class="header-btn"
Expand Down

0 comments on commit 3bfb37c

Please sign in to comment.