摘要:
F. Zero Remainder Sum || dp #include <cstdio> #include <algorithm> #include <cstring> using namespace std; const int maxn = 73; int a[maxn][maxn], dp[ 阅读全文
摘要:
单调队列 https://ac.nowcoder.com/acm/problem/50528 #include <cstdio> using namespace std; const int maxn= 1e6 + 4; int a[maxn], dq[maxn]; int main() { int 阅读全文