diff --git a/totamjung/js/db.js b/totamjung/js/db.js index 6f4820d4..c701f938 100644 --- a/totamjung/js/db.js +++ b/totamjung/js/db.js @@ -395,6 +395,14 @@ const db = { 200: { name: '함수형 그래프', tag: 'functional_graph', alias: [] }, 201: { name: '방향 비순환 그래프', tag: 'dag', alias: [] }, 202: { name: '최단 경로', tag: 'shortest_path', alias: [] }, + 203: { name: '린드스트롬-게셀-비엔노 보조정리', tag: 'lgv', alias: [] }, + 204: { name: '지수승강 보조정리', tag: 'lte', alias: [] }, + 205: { name: '유리 등차수열의 내림 합', tag: 'floor_sum', alias: [] }, + 206: { + name: '자릿수를 이용한 다이나믹 프로그래밍', + tag: 'dp_digit', + alias: [], + }, }; // 제거해야 하는 기호 [, A->a 공백 _ - / tag: #] export default db; diff --git a/totamjung/js/widget.js b/totamjung/js/widget.js index 656391d1..d5ea3bce 100644 --- a/totamjung/js/widget.js +++ b/totamjung/js/widget.js @@ -201,7 +201,10 @@ const algorithmToId = { '함수형 그래프': 200, '방향 비순환 그래프': 201, '최단 경로': 202, - + '린드스트롬–게셀–비엔노 보조정리': 203, + '지수승강 보조정리': 204, + '유리 등차수열의 내림 합': 205, + '자릿수를 이용한 다이나믹 프로그래밍': 206, Mathematics: 1, Implementation: 2, 'Dynamic Programming': 3, @@ -403,6 +406,10 @@ const algorithmToId = { 'Functional Graph': 200, 'Directed Acyclic Graph': 201, 'Shortest Path': 202, + 'Lindström–gessel–viennot Lemma': 203, + 'Lifting The Exponent Lemma': 204, + 'Sum Of Floor Of Rational Arithmetic Sequence': 205, + 'Digit Dp': 206, }; const resetSettings = {