upd: TimesByInt

This commit is contained in:
2023-11-01 14:10:43 +08:00
parent c36e8f8337
commit 65900061fc
3 changed files with 44 additions and 19 deletions

View File

@ -48,7 +48,7 @@ root= 6
__int128_t QuickPow(__int128_t v, long long q);
void NTTTransform(__int128_t *, int, bool);
public:
int2048();
int2048(long long);
@ -57,7 +57,7 @@ root= 6
int2048(int2048 &&) noexcept;
~int2048();
void UnsignedMultiplyByInt(int);
void LeftMoveBy(int);
void RightMoveBy(int);
@ -114,6 +114,7 @@ root= 6
friend bool operator<=(const int2048 &, const int2048 &);
friend bool operator>=(const int2048 &, const int2048 &);
};
int2048 GetInv(const int2048 &,int);
} // namespace sjtu
#endif