摘要: 1: #include <bits/stdc++.h> using namespace std; int n; int FFT(int n){ int k = 1; for(int i = 0; i < n; i++){ if(k >= n) return i; k *= 2; } } /* //方 阅读全文
posted @ 2022-11-27 21:57 荣荣荣荣荣荣 阅读(38) 评论(0) 推荐(0)