upd: add some files

This commit is contained in:
2023-11-06 11:47:56 +08:00
parent 3e0ca43a03
commit 59aef02010
83 changed files with 32860 additions and 1 deletions

16
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,16 @@
{
"version": "2.3.1",
"configurations": [
{
"name": "Debug ANTLR4 grammar",
"type": "antlr-debug",
"request": "launch",
"input": "./a.txt", // 输入文件(即你要运行的 Python 代码文件)
"grammar": "./resources/Python3Parser.g4", // 语法文件
"startRule": "file_input", // 语法入口规则,我们的公式语法入口规则是 file_input
"printParseTree": true, // 是否 打印/可视化 parse tree
"visualParseTree": true
}
]
}

View File

@ -13,9 +13,17 @@ include_directories(
add_subdirectory(${PROJECT_SOURCE_DIR}/generated)
### YOU CAN"T MODIFY THE CODE ABOVE
add_subdirectory(libs)
add_subdirectory(test)
file(GLOB_RECURSE main_src src/*.cpp)
include_directories(${PROJECT_SOURCE_DIR}/include)
link_directories(${PROJECT_SOURCE_DIR}/src)
add_executable(code ${main_src}) # Add all *.cpp file after src/main.cpp, like src/Evalvisitor.cpp did
target_include_directories(code PRIVATE ${PROJECT_SOURCE_DIR}/libs)
target_link_directories(code PRIVATE ${PROJECT_SOURCE_DIR}/libs/int2048)
target_link_libraries(code int2048)
### YOU CAN'T MODIFY THE CODE BELOW
target_link_libraries(code PyAntlr)

1
libs/CMakeLists.txt Normal file
View File

@ -0,0 +1 @@
add_subdirectory(int2048)

7024
libs/clipp/clipp.h Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,4 @@
set(PROJECT_NAME ${CMAKE_PROJECT_NAME})
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_FLAGS "-O2")
add_library(int2048 STATIC int2048.cpp)

931
libs/int2048/int2048.cpp Normal file
View File

@ -0,0 +1,931 @@
/**
* @file int2048.cpp --- 2048-bit integer class implementation
*
* @details This file contains the implementation of the 2048-bit integer class.
*
* Codesytle: This file is written in a sytle mainly based on Google C++ Style
* Guide. As I use Clang-format to format my code, so the code style may be a
* little bit strange sometimes, in that case I'll manually format the
* code.What's sepecial is the comment:
* 1. Multi-line comments are always before the code they comment on.
* Usually the code they comment on is a complex procedure,like the definition
* of a function,a class or a variable with complex operation. If a multi-line
* comment is in one line, it will start with "/*" instead of "/**",otherwise it
* will start with "/**" and in the format of Doxygen.
* 2. Single-line comments are always after the code they comment on.
* Usually they are in the same line with the code they comment on,but sometimes
* they may come in the next lines. single-line comments shouldn't exceed 3
* lines as they are intended to be short and easy to understand.
* 3. Temporary disabled code will be marked with "//" in the front of each
* 4. Some comments have special meanings,like "//TODO", "//FIXME", "//XXX","//
* clang-format off" and "// clang-format on". They are not controlled by the
* previous rules.
*/
#include "int2048.h"
#include <cassert>
#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <utility>
static_assert(sizeof(int) == 4, "sizeof(int) != 4");
static_assert(sizeof(long long) == 8, "sizeof(long long)!=8");
namespace ZYM {
// 构造函数
int2048::int2048() {
// 实现构造函数逻辑
buf_length = kDefaultLength;
val = new int[buf_length]();
flag = 1;
num_length = 1;
}
int2048::~int2048() {
// 实现析构函数逻辑
if (val != nullptr) delete[] val;
}
int2048::int2048(long long input_value) {
// 实现构造函数逻辑
buf_length = kDefaultLength;
val = new int[buf_length]();
if (input_value < 0) {
flag = -1;
input_value = -input_value;
} else
flag = 1;
if (input_value == 0) {
num_length = 1;
return;
}
num_length = 0;
const static int kPow10[9] = {1, 10, 100, 1000, 10000,
100000, 1000000, 10000000, 100000000};
while (input_value > 0) {
val[num_length / kNum] += (input_value % 10) * kPow10[num_length % kNum];
input_value /= 10;
num_length++;
}
}
int2048::int2048(const std::string &input_value) {
// 实现构造函数逻辑
buf_length = (input_value.length() + kNum - 1) / kNum * kMemAdditionScalar;
val = new int[buf_length]();
flag = 1;
num_length = 0;
if (input_value[0] == '-') {
flag = -1;
}
const static int kPow10[9] = {1, 10, 100, 1000, 10000,
100000, 1000000, 10000000, 100000000};
int read_highest_pos = (flag > 0 ? 0 : 1);
while (input_value[read_highest_pos] == '0' &&
read_highest_pos + 1 < input_value.length())
read_highest_pos++;
for (int i = input_value.length() - 1; i >= read_highest_pos; i--) {
val[num_length / kNum] +=
(input_value[i] - '0') * kPow10[num_length % kNum];
num_length++;
}
if (num_length == 1 && val[0] == 0) flag = 1;
}
int2048::int2048(const int2048 &input_value) {
buf_length = input_value.buf_length;
val = new int[buf_length]();
memcpy(val, input_value.val, buf_length * sizeof(int));
flag = input_value.flag;
num_length = input_value.num_length;
}
/**
* @brief Move constructor
*
* @param input_value
*
* @details Note that after moving, the input_value will be set to 0.
*/
int2048::int2048(int2048 &&input_value) noexcept {
buf_length = input_value.buf_length;
val = input_value.val;
flag = input_value.flag;
num_length = input_value.num_length;
input_value.buf_length = kDefaultLength;
input_value.flag = 1;
input_value.num_length = 1;
input_value.val = new int[input_value.buf_length]();
}
// 读入一个大整数
void int2048::read(const std::string &input_value) {
delete[] val;
buf_length = (input_value.length() + kNum - 1) / kNum * kMemAdditionScalar;
val = new int[buf_length]();
flag = 1;
num_length = 0;
if (input_value[0] == '-') {
flag = -1;
}
const static int kPow10[9] = {1, 10, 100, 1000, 10000,
100000, 1000000, 10000000, 100000000};
int read_highest_pos = (flag > 0 ? 0 : 1);
while (input_value[read_highest_pos] == '0' &&
read_highest_pos + 1 < input_value.length())
read_highest_pos++;
for (int i = input_value.length() - 1; i >= read_highest_pos; i--) {
val[num_length / kNum] +=
(input_value[i] - '0') * kPow10[num_length % kNum];
num_length++;
}
if (num_length == 1 && val[0] == 0) flag = 1;
}
// 输出储存的大整数,无需换行
void int2048::print() {
// 实现输出逻辑
char *buf = new char[num_length + 5];
char *p = buf;
if (flag == -1) *p++ = '-';
const static int kPow10[9] = {1, 10, 100, 1000, 10000,
100000, 1000000, 10000000, 100000000};
for (int i = num_length - 1; i >= 0; i--)
*p++ = char('0' + val[i / int2048::kNum] / kPow10[i % int2048::kNum] % 10);
*p++ = 0;
std::cout << buf;
delete[] buf;
}
void int2048::print_debug() {
// 实现输出逻辑
char *buf = new char[num_length + 5];
char *p = buf;
if (flag == -1) *p++ = '-';
const static int kPow10[9] = {1, 10, 100, 1000, 10000,
100000, 1000000, 10000000, 100000000};
for (int i = num_length - 1; i >= 0; i--)
*p++ = char('0' + val[i / int2048::kNum] / kPow10[i % int2048::kNum] % 10);
*p++ = 0;
std::cerr << buf << std::endl;
delete[] buf;
}
/**
* @brief Claim memory for the number
*
* @param number_length The length of the number
*
* @details If the number_length is smaller than the current buf_length/4 or
* bigger than current buf_length, then val will be reset to accomodate
* number_length*2 numbers. Something like std::vector.
*/
void int2048::ClaimMem(size_t number_length) {
size_t new_number_blocks = (number_length + kNum - 1) / kNum;
if (new_number_blocks > buf_length) {
int *new_val = new int[new_number_blocks * kMemAdditionScalar]();
memcpy(new_val, val, buf_length * sizeof(int));
delete[] val;
val = new_val;
buf_length = new_number_blocks * kMemAdditionScalar;
} else if (new_number_blocks * kMemDeleteScalar < buf_length) {
int *new_val = new int[new_number_blocks * kMemAdditionScalar]();
memcpy(new_val, val, new_number_blocks * sizeof(int));
delete[] val;
val = new_val;
buf_length = new_number_blocks * kMemAdditionScalar;
}
}
/**
* @brief Compare two unsigned numbers
*
* @param A The first number
* @param B The second number
*
* @return -1 if A < B, 0 if A == B, 1 if A > B
*
* @details This function is used to compare two numbers wittout considering the
* sign.
*/
inline int UnsignedCmp(const int2048 &A, const int2048 &B) {
if (A.num_length != B.num_length) return A.num_length < B.num_length ? -1 : 1;
int number_of_blocks = (A.num_length + int2048::kNum - 1) / int2048::kNum;
for (int i = number_of_blocks - 1; i >= 0; i--)
if (A.val[i] != B.val[i]) return A.val[i] < B.val[i] ? -1 : 1;
return 0;
}
inline void UnsignedAdd(int2048 &A, const int2048 *const pB) {
if (&A == pB) throw "UnsignedAdd: A and B are the same object";
A.ClaimMem(std::max(A.num_length, pB->num_length) + 2);
for (int i = 0;
i < (std::max(A.num_length, pB->num_length) + int2048::kNum - 1) /
int2048::kNum;
i++) {
if (i < (pB->num_length + int2048::kNum - 1) / int2048::kNum)
A.val[i] += pB->val[i];
if (i + 1 < A.buf_length) A.val[i + 1] += A.val[i] / int2048::kStoreBase;
A.val[i] %= int2048::kStoreBase;
}
A.num_length = std::max(A.num_length, pB->num_length);
const static int kPow10[9] = {1, 10, 100, 1000, 10000,
100000, 1000000, 10000000, 100000000};
if (A.val[A.num_length / int2048::kNum] /
kPow10[A.num_length % int2048::kNum] >
0)
A.num_length++;
}
// 加上一个大整数
int2048 &int2048::add(const int2048 &B) {
// 实现加法逻辑
const int2048 *pB = &B;
if (this->flag == pB->flag) {
if (this == &B) pB = new int2048(B);
UnsignedAdd(*this, pB);
} else if (this->flag == 1 && pB->flag == -1) {
int cmp = UnsignedCmp(*this, *pB);
if (cmp >= 0) {
if (this == &B) pB = new int2048(B);
UnsignedMinus(*this, pB);
this->flag = 1;
} else {
int2048 new_B = std::move(*this);
*this = B;
UnsignedMinus(*this, &new_B);
this->flag = -1;
}
} else if (this->flag == -1 && pB->flag == 1) {
int cmp = UnsignedCmp(*this, *pB);
if (cmp >= 0) {
if (this == &B) pB = new int2048(B);
UnsignedMinus(*this, pB);
this->flag = -1;
if (this->num_length == 1 && this->val[0] == 0) this->flag = 1;
} else {
int2048 new_B = std::move(*this);
*this = B;
UnsignedMinus(*this, &new_B);
this->flag = 1;
}
}
if (pB != &B) delete pB;
return *this;
}
// 返回两个大整数之和
int2048 add(int2048 A, const int2048 &B) {
// 实现加法逻辑
return std::move(A.add(B));
}
inline void UnsignedMinus(int2048 &A, const int2048 *const pB) {
if (&A == pB) throw "UnsignedMinus: A and B are the same object";
for (int i = 0; i < (pB->num_length + int2048::kNum - 1) / int2048::kNum;
i++) {
A.val[i] -= pB->val[i];
if (A.val[i] < 0) {
A.val[i] += int2048::kStoreBase;
A.val[i + 1]--;
}
}
const static int kPow10[9] = {1, 10, 100, 1000, 10000,
100000, 1000000, 10000000, 100000000};
int new_length = 0;
for (int i = 0; i < A.num_length; i++)
if (A.val[i / int2048::kNum] / kPow10[i % int2048::kNum] > 0)
new_length = i + 1;
A.num_length = new_length;
if (A.num_length == 0) A.num_length = 1;
A.ClaimMem(A.num_length);
}
// 减去一个大整数
int2048 &int2048::minus(const int2048 &B) {
// 实现减法逻辑
const int2048 *pB = &B;
if (this->flag == B.flag) {
int cmp = UnsignedCmp(*this, *pB);
if (cmp >= 0) {
if (this == &B) pB = new int2048(B);
UnsignedMinus(*this, pB);
if (this->num_length == 1 && this->val[0] == 0) this->flag = 1;
} else {
int2048 new_B = std::move(*this);
*this = B;
UnsignedMinus(*this, &new_B);
this->flag = -this->flag;
if (this->num_length == 1 && this->val[0] == 0) this->flag = 1;
}
} else {
if (this == &B) pB = new int2048(B);
UnsignedAdd(*this, pB);
}
if (pB != &B) delete pB;
return *this;
}
// 返回两个大整数之差
int2048 minus(int2048 A, const int2048 &B) {
// 实现减法逻辑
return std::move(A.minus(B));
}
// 运算符重载
int2048 int2048::operator+() const {
// 实现一元加法逻辑
return std::move(int2048(*this));
}
int2048 int2048::operator-() const {
// 实现一元减法逻辑
int2048 ret(*this);
if (!(ret.num_length == 1 && ret.val[0] == 0)) ret.flag = -ret.flag;
return std::move(ret);
}
int2048 &int2048::operator=(const int2048 &B) {
// 实现赋值运算符逻辑
// similar to int2048::int2048(const int2048 &input_value)
if (this == &B) return *this;
delete[] val;
buf_length = B.buf_length;
val = new int[buf_length]();
memcpy(val, B.val, buf_length * sizeof(int));
flag = B.flag;
num_length = B.num_length;
return *this;
}
int2048 &int2048::operator=(int2048 &&B) noexcept {
// 实现移动赋值运算符逻辑
if (this == &B) return *this;
delete[] val;
buf_length = B.buf_length;
val = B.val;
flag = B.flag;
num_length = B.num_length;
B.buf_length = kDefaultLength;
B.flag = 1;
B.num_length = 1;
B.val = new int[B.buf_length]();
return *this;
}
int2048 &int2048::operator+=(const int2048 &B) {
// 实现复合加法逻辑
return this->add(B);
}
int2048 operator+(int2048 A, const int2048 &B) {
// 实现加法逻辑
A.add(B);
return std::move(A);
}
int2048 &int2048::operator-=(const int2048 &B) {
// 实现复合减法逻辑
return this->minus(B);
}
int2048 operator-(int2048 A, const int2048 &B) {
// 实现减法逻辑
A.minus(B);
return std::move(A);
}
__int128_t int2048::QuickPow(__int128_t v, long long q) {
__int128_t ret = 1;
v %= int2048::kNTTMod;
while (q > 0) {
if (q & 1) (ret *= v) %= int2048::kNTTMod;
(v *= v) %= int2048::kNTTMod;
q >>= 1;
}
return ret;
}
/**
* @brief Move the number to the left by L digits. That is, v'=v*(10^L)
*/
void int2048::LeftMoveBy(int L) {
const static long long kPow10[9] = {1, 10, 100,
1000, 10000, 100000,
1000000, 10000000, 100000000};
int big_move = L / int2048::kNum;
int small_move = L % int2048::kNum;
this->ClaimMem(this->num_length + L);
for (int i = this->buf_length - 1; i >= big_move; i--) {
this->val[i] = this->val[i - big_move];
}
for (int i = 0; i < big_move; i++) {
this->val[i] = 0;
}
this->num_length += big_move * int2048::kNum;
if (small_move == 0) return;
for (int i = this->buf_length - 1; i >= 0; i--) {
this->val[i] =
((long long)this->val[i] * kPow10[small_move]) % int2048::kStoreBase;
if (i - 1 >= 0) {
this->val[i] += this->val[i - 1] / kPow10[int2048::kNum - small_move];
}
}
this->val[big_move] =
(this->val[big_move] / kPow10[small_move]) * kPow10[small_move];
this->num_length += small_move;
}
/**
* @brief Move the number to the right by L digits. That is, v'=v//(10^L)
*/
void int2048::RightMoveBy(int L) {
if (L >= this->num_length) {
this->num_length = 1;
this->val[0] = 0;
return;
}
int big_move = L / int2048::kNum;
int small_move = L % int2048::kNum;
for (int i = 0; i < this->buf_length - big_move; i++) {
this->val[i] = this->val[i + big_move];
}
for (int i = this->buf_length - big_move; i < this->buf_length; i++) {
this->val[i] = 0;
}
this->num_length -= big_move * int2048::kNum;
if (small_move == 0) return;
const static int kPow10[9] = {1, 10, 100, 1000, 10000,
100000, 1000000, 10000000, 100000000};
for (int i = 0; i < this->buf_length; i++) {
this->val[i] /= kPow10[small_move];
if (i + 1 < this->buf_length) {
this->val[i] += this->val[i + 1] % kPow10[small_move] *
kPow10[int2048::kNum - small_move];
}
}
this->num_length -= small_move;
}
/**
* @brief the definition of NTTTransform
*
* @param a the array to be transformed
* @param NTT_blocks the length of the array
* @param inverse whether to do inverse transform
*
* @details the array a will be transformed to a new array a', which is the NTT.
* Note that the base in NTT is 10000.
*/
void int2048::NTTTransform(__int128_t *a, int NTT_blocks,
bool inverse = false) {
for (int i = 1, j = 0; i < NTT_blocks; i++) {
int bit = NTT_blocks >> 1;
while (j >= bit) {
j -= bit;
bit >>= 1;
}
j += bit;
if (i < j) std::swap(a[i], a[j]);
}
for (int len = 2; len <= NTT_blocks; len <<= 1) {
__int128_t wlen = QuickPow(int2048::kNTTRoot, (int2048::kNTTMod - 1) / len);
if (inverse) wlen = QuickPow(wlen, int2048::kNTTMod - 2);
for (int i = 0; i < NTT_blocks; i += len) {
__int128_t w = 1;
for (int j = 0; j < len / 2; j++) {
__int128_t u = a[i + j], v = a[i + j + len / 2] * w % int2048::kNTTMod;
a[i + j] = (u + v) % int2048::kNTTMod;
a[i + j + len / 2] = (u - v + int2048::kNTTMod) % int2048::kNTTMod;
(w *= wlen) %= int2048::kNTTMod;
}
}
}
if (inverse) {
__int128_t inv = QuickPow(NTT_blocks, int2048::kNTTMod - 2);
for (int i = 0; i < NTT_blocks; i++) (a[i] *= inv) %= int2048::kNTTMod;
}
}
/**
* @brief Unsigned multiply two numbers
*
* @param A The first number
* @param pB The second number
*
* @details This function will multiply two numbers without considering the
* sign.
*/
inline void UnsignedMultiply(int2048 &A, const int2048 *pB) {
if (&A == pB) throw "UnsignedMultiply: A and B are the same object";
int blocks_of_A = ((A.num_length + int2048::kNum - 1) / int2048::kNum);
int blocks_of_B = ((pB->num_length + int2048::kNum - 1) / int2048::kNum);
int max_blocks = blocks_of_A + blocks_of_B;
int NTT_blocks = 1;
while (NTT_blocks < (max_blocks << 1)) NTT_blocks <<= 1;
__int128_t *pDA = new __int128_t[NTT_blocks]();
__int128_t *pDB = new __int128_t[NTT_blocks]();
__int128_t *pDC = new __int128_t[NTT_blocks]();
for (int i = 0; i < blocks_of_A; i++) {
pDA[i << 1] = A.val[i] % int2048::kNTTBlcokBase;
pDA[(i << 1) | 1] = A.val[i] / int2048::kNTTBlcokBase;
}
for (int i = 0; i < blocks_of_B; i++) {
pDB[i << 1] = pB->val[i] % int2048::kNTTBlcokBase;
pDB[(i << 1) | 1] = pB->val[i] / int2048::kNTTBlcokBase;
}
A.NTTTransform(pDA, NTT_blocks);
A.NTTTransform(pDB, NTT_blocks);
for (int i = 0; i < NTT_blocks; i++)
pDC[i] = (pDA[i] * pDB[i]) % int2048::kNTTMod;
A.NTTTransform(pDC, NTT_blocks, true);
for (int i = 0; i < NTT_blocks - 1; i++) {
pDC[i + 1] += pDC[i] / int2048::kNTTBlcokBase;
pDC[i] %= int2048::kNTTBlcokBase;
}
if (pDC[NTT_blocks - 1] >= int2048::kNTTBlcokBase)
throw "UnsignedMultiply: NTT result overflow";
int flag_store = A.flag;
A.ClaimMem(NTT_blocks * 4);
memset(A.val, 0, A.buf_length * sizeof(int));
for (int i = 0; i < NTT_blocks / 2; i++) {
A.val[i] = pDC[(i << 1) | 1] * int2048::kNTTBlcokBase + pDC[i << 1];
}
A.num_length = NTT_blocks * 4;
const static int kPow10[9] = {1, 10, 100, 1000, 10000,
100000, 1000000, 10000000, 100000000};
while (A.val[(A.num_length - 1) / int2048::kNum] /
kPow10[(A.num_length - 1) % int2048::kNum] ==
0) {
A.num_length--;
if (A.num_length == 0) {
A.num_length = 1;
break;
}
}
delete[] pDA;
delete[] pDB;
delete[] pDC;
}
int2048 &int2048::Multiply(const int2048 &B) {
// 实现复合乘法逻辑
const int2048 *pB = &B;
if (this == &B) pB = new int2048(B);
if ((this->num_length == 1 && this->val[0] == 0) ||
(pB->num_length == 1 && pB->val[0] == 0)) {
*this = std::move(int2048(0));
if (pB != &B) delete pB;
return *this;
}
this->flag = this->flag * pB->flag;
UnsignedMultiply(*this, pB);
if (pB != &B) delete pB;
return *this;
}
int2048 Multiply(int2048 A, const int2048 &B) {
// 实现乘法逻辑
return std::move(A.Multiply(B));
}
int2048 &int2048::operator*=(const int2048 &B) {
// 实现复合乘法逻辑
return this->Multiply(B);
}
int2048 operator*(int2048 A, const int2048 &B) {
// 实现乘法逻辑
A.Multiply(B);
return std::move(A);
}
/**
* @brief Unsigned multiply a number by an integer
*
* @param v The integer
*
* @details This function will multiply a number by an integer without
* considering the sign.
*/
void int2048::UnsignedMultiplyByInt(int v) {
if (v < 0) throw "UnsignedMultiplyByInt: v < 0";
if (v == 0) {
*this = std::move(int2048(0));
return;
}
if (v == 1) return;
int blocks = (this->num_length + int2048::kNum - 1) / int2048::kNum;
this->ClaimMem(this->num_length + int2048::kNum * 2);
blocks += 2;
long long c = 0;
for (int i = 0; i < blocks; i++) {
long long tmp = (long long)this->val[i] * v + c;
c = tmp / int2048::kStoreBase;
this->val[i] = tmp % int2048::kStoreBase;
}
this->num_length = blocks * int2048::kNum;
const static int kPow10[9] = {1, 10, 100, 1000, 10000,
100000, 1000000, 10000000, 100000000};
while (this->num_length > 1 &&
this->val[(this->num_length - 1) / int2048::kNum] /
kPow10[(this->num_length - 1) % int2048::kNum] ==
0)
this->num_length--;
}
/**
* @brief Estimate the inverse of B, which is the result of [10^2n/B]
*/
int2048 GetInv(const int2048 &B, int n) {
const static int kPow10[9] = {1, 10, 100, 1000, 10000,
100000, 1000000, 10000000, 100000000};
int total_blocks = (B.num_length + int2048::kNum - 1) / int2048::kNum;
if (n <= 16) {
/**
* This code block is used to calculate the inverse of B when n is small.
*/
long long b = 0;
for (int j = B.num_length - 1, i = 0; i < n; i++, j--)
b = b * 10 + (B.val[j / int2048::kNum] / kPow10[j % int2048::kNum]) % 10;
int2048 res;
res.ClaimMem((2 * n) + 1);
res.val[2 * n / int2048::kNum] = kPow10[2 * n % int2048::kNum];
__uint128_t c = 0;
int tmp_B = (((2 * n) + 1) + int2048::kNum - 1) / int2048::kNum;
for (int i = tmp_B - 1; i >= 0; i--) {
c = c * int2048::kStoreBase + res.val[i];
res.val[i] = c / b;
c %= b;
assert(res.val[i] < int2048::kStoreBase);
}
res.num_length = (2 * n) + 1;
while (res.num_length > 1 &&
res.val[(res.num_length - 1) / int2048::kNum] /
kPow10[(res.num_length - 1) % int2048::kNum] ==
0)
res.num_length--;
return std::move(res);
}
int k = (n + 2) >> 1;
int2048 sub_soluton = std::move(GetInv(B, k));
int2048 sub_soluton_copy_1(sub_soluton);
int2048 sub_soluton_copy_2(sub_soluton);
sub_soluton_copy_1.UnsignedMultiplyByInt(2);
sub_soluton_copy_1.LeftMoveBy((n - k));
// Now sub_soluton_copy_1 is 2*sub_soluton*10^(n-k)
/*now we get the current B*/
int2048 current_B;
current_B.ClaimMem(n);
for (int i = B.num_length - 1, j = n - 1; j >= 0; j--, i--)
current_B.val[j / int2048::kNum] +=
(B.val[i / int2048::kNum] / kPow10[i % int2048::kNum] % 10) *
kPow10[j % int2048::kNum];
// current_B is the highest n numbers of B
current_B.num_length = n;
// std::cerr << "n=" << n << " while B=";
// int2048 new_B = B;
// new_B.print_debug();
// std::cerr << "current_B: ";
// current_B.print_debug();
UnsignedMultiply(sub_soluton_copy_2, &current_B);
UnsignedMultiply(sub_soluton_copy_2, &sub_soluton);
sub_soluton_copy_2.RightMoveBy(2 * k);
// Now sub_soluton_copy_2 is sub_soluton^2*current_B/(10^2k)
UnsignedMinus(sub_soluton_copy_1, &sub_soluton_copy_2);
int2048 res = sub_soluton_copy_1;
// Now we get an estimation for [10^2n/current_B]
/*Now begin doing some ajustments*/
int2048 remain;
remain.ClaimMem((2 * n) + 1);
remain.val[2 * n / int2048::kNum] = kPow10[2 * n % int2048::kNum];
remain.num_length = (2 * n) + 1;
UnsignedMultiply(sub_soluton_copy_1, &current_B);
int cmp = UnsignedCmp(remain, sub_soluton_copy_1);
if (cmp == 0) return std::move(res);
if (cmp > 0) {
UnsignedMinus(remain, &sub_soluton_copy_1);
for (int i = 64; i > 0; i >>= 1) {
int2048 tmp_B(current_B);
tmp_B.UnsignedMultiplyByInt(i);
if (UnsignedCmp(remain, tmp_B) >= 0) {
res += i;
UnsignedMinus(remain, &tmp_B);
}
}
return std::move(res);
} else {
UnsignedMinus(sub_soluton_copy_1, &remain);
for (int i = 64; i > 0; i >>= 1) {
int2048 tmp_B(current_B);
tmp_B.UnsignedMultiplyByInt(i);
if (UnsignedCmp(sub_soluton_copy_1, tmp_B) >= 0) {
res -= i;
UnsignedMinus(sub_soluton_copy_1, &tmp_B);
}
}
int2048 tmp_zero(0);
if (UnsignedCmp(sub_soluton_copy_1, tmp_zero) != 0) res -= 1;
return std::move(res);
}
}
/**
* @brief Unsigned divide two numbers
*
* @param A The first number
* @param pB The second number
*
* @details This function will divide two numbers without considering the sign.
* reference:
* <https://github.com/lzyrapx/Competitive-Programming-Docs/blob/master/WC%E8%AE%B2%E8%AF%BE%E8%B5%84%E6%96%99/%E7%90%86%E6%80%A7%E6%84%89%E6%82%A6%E2%80%94%E2%80%94%E9%AB%98%E7%B2%BE%E5%BA%A6%E6%95%B0%E5%80%BC%E8%AE%A1%E7%AE%97%EF%BC%882012WC%EF%BC%89.pdf>
*/
inline void UnsignedDivide(int2048 &A, const int2048 *pB) {
int2048 B(*pB);
int L1 = A.num_length;
int L2 = B.num_length;
if (L2 <= 16) {
long long b = B.val[0] + (long long)B.val[1] * int2048::kStoreBase;
__uint128_t c = 0;
int blocks_of_A = (A.num_length + int2048::kNum - 1) / int2048::kNum;
for (int i = blocks_of_A - 1; i >= 0; i--) {
c = c * int2048::kStoreBase + A.val[i];
A.val[i] = c / b;
c %= b;
assert(A.val[i] < int2048::kStoreBase);
}
A.num_length = blocks_of_A * int2048::kNum;
const static int kPow10[9] = {1, 10, 100, 1000, 10000,
100000, 1000000, 10000000, 100000000};
while (A.num_length > 1 &&
A.val[(A.num_length - 1) / int2048::kNum] /
kPow10[(A.num_length - 1) % int2048::kNum] ==
0)
A.num_length--;
return;
}
if (UnsignedCmp(A, *pB) < 0) {
A = std::move(int2048(0));
return;
}
if (2 * L2 < L1) {
int delta = L1 - 2 * L2;
A.LeftMoveBy(delta);
L1 += delta;
B.LeftMoveBy(delta);
L2 += delta;
}
assert(L1 == A.num_length);
assert(L2 == B.num_length);
assert(2 * L2 >= L1);
/*Now we calculate [10^2n/B]*/
int2048 res_hat = std::move(GetInv(B, L2));
UnsignedMultiply(res_hat, &A);
res_hat.RightMoveBy(2 * L2);
// now res_hat is [[10^2n/B]*A/(10^2L2)]
/*Now begin doing ajustments*/
int2048 remain(A), tmp_B(B);
UnsignedMultiply(tmp_B, &res_hat);
UnsignedMinus(remain, &tmp_B);
// now remain is A-res_hat*B
for (int i = 8; i > 0; i >>= 1) {
tmp_B = B;
tmp_B.UnsignedMultiplyByInt(i);
if (UnsignedCmp(remain, tmp_B) >= 0) {
res_hat += i;
UnsignedMinus(remain, &tmp_B);
}
}
A = std::move(res_hat);
}
int2048 &int2048::Divide(const int2048 &B) {
if (B.num_length == 1 && B.val[0] == 0) {
*this = std::move(int2048(0));
return *this;
// throw "Divide: divide by zero";
}
if (this == &B) {
*this = std::move(int2048(1));
return *this;
}
int2048 origin_A(*this);
int flag_store = this->flag * B.flag;
UnsignedDivide(*this, &B);
this->flag = flag_store;
if (this->flag == -1) {
if (origin_A != (*this) * B) {
*this -= 1;
}
}
if (this->num_length == 1 && this->val[0] == 0) this->flag = 1;
return *this;
}
int2048 Divide(int2048 A, const int2048 &B) {
A.Divide(B);
return std::move(A);
}
int2048 &int2048::operator/=(const int2048 &B) {
// 实现复合除法逻辑
return this->Divide(B);
}
int2048 operator/(int2048 A, const int2048 &B) {
// 实现除法逻辑
A.Divide(B);
return std::move(A);
}
int2048 &int2048::operator%=(const int2048 &B) {
// 实现复合取模逻辑
int2048 C(*this);
C.Divide(B);
this->minus(C.Multiply(B));
return *this;
}
int2048 operator%(int2048 A, const int2048 &B) {
// 实现取模逻辑
int2048 C(A);
C.Divide(B);
A.minus(C.Multiply(B));
return std::move(A);
}
std::istream &operator>>(std::istream &stream, int2048 &V) {
// 实现输入运算符逻辑
std::string v_str;
stream >> v_str;
V.read(v_str);
return stream;
}
std::ostream &operator<<(std::ostream &stream, const int2048 &v) {
// 实现输出运算符逻辑
char *buf = new char[v.num_length + 5];
char *p = buf;
if (v.flag == -1) *p++ = '-';
const static int kPow10[9] = {1, 10, 100, 1000, 10000,
100000, 1000000, 10000000, 100000000};
for (int i = v.num_length - 1; i >= 0; i--)
*p++ =
char('0' + v.val[i / int2048::kNum] / kPow10[i % int2048::kNum] % 10);
*p++ = 0;
stream << buf;
delete[] buf;
return stream;
}
bool operator==(const int2048 &A, const int2048 &B) {
// 实现等于运算符逻辑
if (A.flag != B.flag) return false;
return UnsignedCmp(A, B) == 0;
}
bool operator!=(const int2048 &A, const int2048 &B) {
// 实现不等于运算符逻辑
if (A.flag != B.flag) return true;
return UnsignedCmp(A, B) != 0;
}
bool operator<(const int2048 &A, const int2048 &B) {
// 实现小于运算符逻辑
if (A.flag != B.flag) return A.flag < B.flag;
int cmp = UnsignedCmp(A, B);
if (A.flag == 1)
return cmp < 0;
else
return cmp > 0;
}
bool operator>(const int2048 &A, const int2048 &B) {
// 实现大于运算符逻辑
if (A.flag != B.flag) return A.flag > B.flag;
int cmp = UnsignedCmp(A, B);
if (A.flag == 1)
return cmp > 0;
else
return cmp < 0;
}
bool operator<=(const int2048 &A, const int2048 &B) {
// 实现小于等于运算符逻辑
if (A.flag != B.flag) return A.flag < B.flag;
int cmp = UnsignedCmp(A, B);
if (A.flag == 1)
return cmp <= 0;
else
return cmp >= 0;
}
bool operator>=(const int2048 &A, const int2048 &B) {
// 实现大于等于运算符逻辑
if (A.flag != B.flag) return A.flag > B.flag;
int cmp = UnsignedCmp(A, B);
if (A.flag == 1)
return cmp >= 0;
else
return cmp <= 0;
}
} // namespace ZYM

139
libs/int2048/int2048.h Normal file
View File

@ -0,0 +1,139 @@
#pragma once
#ifndef SJTU_BIGINTEGER
#define SJTU_BIGINTEGER
#include <complex>
#include <cstdio>
#include <cstring>
#include <iostream>
#include <vector>
namespace ZYM {
class int2048 {
/**
* If the interger is negative, flag = -1, otherwise flag = 1.
* num_length is the length of the integer, (num_length+kNum-1)/kNum is the
* length of val with data. Note that position in val without data is 0.
* buf_length is the accessiable length of val.
*/
const static int kStoreBase = 100000000, kNum = 8, kDefaultLength = 10;
const static int kMemAdditionScalar = 2, kMemDeleteScalar = 4;
/**
* the follow data used by NTT is generated by this code:
#!/usr/bin/python3
from sympy import isprime,primitive_root
found=False
for i in range(0,20):
for j in range(2**i,(2**(i+1))):
V=j*(2**(57-i))+1
if isprime(V):
found=True
print(j,57-i)
print("number=",V)
print("root=",primitive_root(V))
exit(0)
* it out puts:
95 55
number= 180143985094819841
root= 6
*/
const static __int128_t kNTTMod = 180143985094819841ll;
const static __int128_t kNTTRoot = 6;
const static int kNTTBlockNum = 4;
const static int kNTTBlcokBase = 10000;
size_t buf_length = 0;
int *val = nullptr;
signed char flag = +1;
int num_length = 0;
__int128_t QuickPow(__int128_t v, long long q);
void NTTTransform(__int128_t *, int, bool);
friend int2048 GetInv(const int2048 &, int);
void UnsignedMultiplyByInt(int);
public:
int2048();
int2048(long long);
int2048(const std::string &);
int2048(const int2048 &);
int2048(int2048 &&) noexcept;
~int2048();
/**
* @brief Move the integer left (*10^k) or right(//10^k).
*/
void LeftMoveBy(int);
void RightMoveBy(int);
void read(const std::string &);
void print();
void print_debug();
// function print_debug is used to print the data in val to stderr(with '\n'),
// for debug
void ClaimMem(size_t);
// something like vector's reserve
/**
* Fuctions whose name starts with Unsigned are basic operation. It receives
* int2048& A and const int2048* pB(UnsignedCmp receives const int2048& B),
* and do the operation A op= *pB. Warning: the address of A and pB must be
* different.
*/
inline friend int UnsignedCmp(const int2048 &, const int2048 &);
inline friend void UnsignedAdd(int2048 &, const int2048 *);
inline friend void UnsignedMinus(int2048 &, const int2048 *);
int2048 &add(const int2048 &);
friend int2048 add(int2048, const int2048 &);
int2048 &minus(const int2048 &);
friend int2048 minus(int2048, const int2048 &);
int2048 operator+() const;
int2048 operator-() const;
int2048 &operator=(const int2048 &);
int2048 &operator=(int2048 &&) noexcept;
int2048 &operator+=(const int2048 &);
friend int2048 operator+(int2048, const int2048 &);
int2048 &operator-=(const int2048 &);
friend int2048 operator-(int2048, const int2048 &);
inline friend void UnsignedMultiply(int2048 &, const int2048 *);
int2048 &Multiply(const int2048 &);
friend int2048 Multiply(int2048, const int2048 &);
int2048 &operator*=(const int2048 &);
friend int2048 operator*(int2048, const int2048 &);
inline friend void UnsignedDivide(int2048 &, const int2048 *);
int2048 &Divide(const int2048 &);
friend int2048 Divide(int2048, const int2048 &);
/**
* If the denominator is zero, the result is undefined.
* But actually it will return 0 with no exception thrown.
* And % operation is also based on this rule.
*/
int2048 &operator/=(const int2048 &);
friend int2048 operator/(int2048, const int2048 &);
int2048 &operator%=(const int2048 &);
friend int2048 operator%(int2048, const int2048 &);
friend std::istream &operator>>(std::istream &, int2048 &);
friend std::ostream &operator<<(std::ostream &, const int2048 &);
friend bool operator==(const int2048 &, const int2048 &);
friend bool operator!=(const int2048 &, const int2048 &);
friend bool operator<(const int2048 &, const int2048 &);
friend bool operator>(const int2048 &, const int2048 &);
friend bool operator<=(const int2048 &, const int2048 &);
friend bool operator>=(const int2048 &, const int2048 &);
};
} // namespace sjtu
#endif

24596
libs/json/json.hpp Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1 +1,2 @@
#include "Evalvisitor.h"
#include "int2048/int2048.h"

View File

@ -3,6 +3,7 @@
#include "Python3Parser.h"
#include "antlr4-runtime.h"
#include <iostream>
#include "int2048/int2048.h"
using namespace antlr4;
// TODO: regenerating files in directory named "generated" is dangerous.
// if you really need to regenerate,please ask TA for help.

9
test/CMakeLists.txt Normal file
View File

@ -0,0 +1,9 @@
set(PROJECT_NAME ${CMAKE_PROJECT_NAME})
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_FLAGS "-O2")
set(ENV{MAKEFLAGS} "-j16")
include_directories(${PROJECT_SOURCE_DIR}/libs)
include_directories(${PROJECT_SOURCE_DIR}/include)
link_directories(${PROJECT_SOURCE_DIR}/src)
add_executable(test-core test-core.cpp)
target_precompile_headers(test-core PUBLIC ${PROJECT_SOURCE_DIR}/libs/clipp/clipp.h ${PROJECT_SOURCE_DIR}/libs/json/json.hpp)

7
test/config.json Normal file
View File

@ -0,0 +1,7 @@
{
"StatusInterpreter":{"0":"OK","1":"Wrong Answer","139":"Segmentation fault","137":"(Killed) maybe Time Limit Error"},
"Cases":
[
{"command":"cat OK","uid":"#1","tid":"/1/1"}
]
}

122
test/test-core.cpp Normal file
View File

@ -0,0 +1,122 @@
#include <cstdlib>
#include <fstream>
#include <iostream>
#include <string>
#include <unordered_map>
#include <vector>
#include "clipp/clipp.h"
#include "json/json.hpp"
std::string getDirectory(const std::string &filepath) {
size_t found = filepath.find_last_of("/\\");
return filepath.substr(0, found);
}
#define DeEscape std::string
int main(int argc, char *argv[]) {
bool continuous = false;
bool test_all = false;
bool test_listed_cases = false;
std::vector<std::string> listed_cases;
std::string filePath(__FILE__);
std::string directoryPath = getDirectory(filePath);
std::string config_file = directoryPath + "/config.json";
bool use_custoem_config = false;
std::string new_config = "";
bool test_sub_tree = false;
std::string sub_tree;
bool read_lists_from_stdin = false;
bool read_lists_from_file = false;
std::string list_file_path;
// clang-format off
auto cli=(
clipp::option("--config").set(config_file).doc("config file path") & clipp::value("config file path",config_file),
clipp::option("-c","--continuous").set(continuous).doc("continuous mode"),
(
clipp::required("-a","--all").set(test_all).doc("test all")|
(clipp::required("-s","--subtree").set(test_sub_tree).doc("test subtree") & clipp::value("subtree",sub_tree))|
(clipp::required("-l","--list").set(test_listed_cases).doc("test listed cases") & clipp::values("cases",listed_cases))|
(clipp::required("-i","--stdin").set(read_lists_from_stdin).doc("read test list from stdin"))|
(clipp::required("-f","--filelist").set(read_lists_from_file).doc("read test list from file") & clipp::value("file",list_file_path))
)
);
// clang-format on
if (!clipp::parse(argc, argv, cli)) {
std::cout << clipp::make_man_page(cli, argv[0]);
return 0;
}
if (use_custoem_config) config_file = new_config;
using json = nlohmann::json;
std::ifstream conf(config_file);
json config = json::parse(conf);
std::unordered_map<std::string, std::string> index;
for (int i = 0; i < config["Cases"].size(); i++) {
index[DeEscape(config["Cases"][i]["tid"])] =
DeEscape(config["Cases"][i]["command"]);
index[DeEscape(config["Cases"][i]["uid"])] =
DeEscape(config["Cases"][i]["command"]);
}
if (test_all) {
listed_cases.clear();
for (int i = 0; i < config["Cases"].size(); i++) {
listed_cases.push_back(DeEscape(config["Cases"][i]["tid"]));
}
} else if (test_sub_tree) {
listed_cases.clear();
for (int i = 0; i < config["Cases"].size(); i++) {
if (DeEscape(config["Cases"][i]["tid"]).find(sub_tree) == 0 &&
(DeEscape(config["Cases"][i]["tid"]).length() == sub_tree.length() ||
DeEscape(config["Cases"][i]["tid"])[sub_tree.length()] == '/')) {
listed_cases.push_back(DeEscape(config["Cases"][i]["tid"]));
}
}
} else if (read_lists_from_stdin) {
listed_cases.clear();
std::string line;
while (std::getline(std::cin, line)) {
listed_cases.push_back(line);
}
} else if (read_lists_from_file) {
listed_cases.clear();
std::ifstream list_file(list_file_path);
std::string line;
while (std::getline(list_file, line)) {
listed_cases.push_back(line);
}
} else if (!test_listed_cases)
throw std::runtime_error("No test cases specified");
int total_cases = 0, total_passed = 0;
for (int i = 0; i < listed_cases.size(); i++) {
std::cerr << "Testing " << listed_cases[i] << std::endl;
if (index.find(listed_cases[i]) == index.end()) {
std::cerr << "Test " << listed_cases[i] << " not found" << std::endl;
std::cerr << '\n' << std::endl;
continue;
}
std::cerr << "Command = " << index[listed_cases[i]] << std::endl;
int status = system(index[listed_cases[i]].c_str()) / 256;
total_cases++;
if (status == 0) total_passed++;
if (status == 0) {
std::cerr << "Test " << listed_cases[i] << " passed" << std::endl;
} else {
std::cerr << "Test " << listed_cases[i] << " failed" << std::endl;
std::cerr << "status code = " << status << std::endl;
std::cerr
<< "Brief info: "
<< (config["StatusInterpreter"].contains(std::to_string(status))
? DeEscape(
config["StatusInterpreter"][std::to_string(status)])
: std::string("Unknown Error"))
<< std::endl;
if (!continuous) {
std::cerr << total_passed << "/" << total_cases << " cases passed"
<< std::endl;
return status;
}
}
std::cerr << total_passed << "/" << total_cases << " cases passed"
<< std::endl;
std::cerr << '\n' << std::endl;
}
return 0;
}