From 3bfb37cec7a6f7ad549fdfeb8fa1fabfb5132632 Mon Sep 17 00:00:00 2001 From: WizardRabbit Date: Sat, 24 Aug 2024 12:36:47 +0900 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat:=20"=EB=8D=B1=EC=9D=84=20?= =?UTF-8?q?=EC=9D=B4=EC=9A=A9=ED=95=9C=20=EA=B5=AC=EA=B0=84=20=EC=B5=9C?= =?UTF-8?q?=EB=8C=93=EA=B0=92=20=ED=8A=B8=EB=A6=AD"=20=EC=95=8C=EA=B3=A0?= =?UTF-8?q?=EB=A6=AC=EC=A6=98=20=EB=B6=84=EB=A5=98=EB=A5=BC=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- totamjung/js/db.js | 5 +++++ totamjung/js/widget.js | 2 ++ totamjung/manifest.json | 2 +- totamjung/options.html | 2 +- 4 files changed, 9 insertions(+), 2 deletions(-) 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