摘要:
#include #include #include #include using namespace std; typedef long long ll; const int mod=998244353; int a[2002][2002]; int b[2002][2002]; int n,m; inline int fp(int a,int b){ int ... 阅读全文
摘要:
#define DEFAULT_CAPACITY 3 typedef int Rank; class Fib { private: int f, g; public: Fib( int n ) { f = 1; g = 0; while( g class Vector { protected: Rank _size; int _capacity; T* _elem; ... 阅读全文