diff --git a/totamjung/js/db.js b/totamjung/js/db.js index c701f938..02a2bdcb 100644 --- a/totamjung/js/db.js +++ b/totamjung/js/db.js @@ -403,6 +403,11 @@ const db = { tag: 'dp_digit', alias: [], }, + 207: { + name: "덱을 이용한 구간 최댓값 트릭", + tag: "deque_trick", + alias: ['덱 트릭'], + }, }; // 제거해야 하는 기호 [, A->a 공백 _ - / tag: #] export default db; diff --git a/totamjung/js/widget.js b/totamjung/js/widget.js index d5ea3bce..45f08c62 100644 --- a/totamjung/js/widget.js +++ b/totamjung/js/widget.js @@ -205,6 +205,7 @@ const algorithmToId = { '지수승강 보조정리': 204, '유리 등차수열의 내림 합': 205, '자릿수를 이용한 다이나믹 프로그래밍': 206, + '덱을 이용한 구간 최댓값 트릭': 207, Mathematics: 1, Implementation: 2, 'Dynamic Programming': 3, @@ -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 = { diff --git a/totamjung/manifest.json b/totamjung/manifest.json index 635bf8b1..4769ceb8 100644 --- a/totamjung/manifest.json +++ b/totamjung/manifest.json @@ -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/*"], diff --git a/totamjung/options.html b/totamjung/options.html index ca86d064..31a31278 100644 --- a/totamjung/options.html +++ b/totamjung/options.html @@ -26,7 +26,7 @@

  • 문제 추첨 설정
  • -
    v1.1.2.4
    +
    v1.1.2.5