Triangle Counting UVA - 11401(遞推)

大白書講的很好。。 #include <iostream> #include <cstring> using namespace std; typedef long long LL; const int MAXN = 1001000; LL n,A[MAXN]; int main() { A[3] = 0; for(LL i=4;i<MAXN;i++) A[i]
相關文章
相關標籤/搜索