摘要:
02表示法 直接递归即可,稍微写个高精。 点击查看代码 #include<bits/stdc++.h> using namespace std; //#define int __int128 const int N=1e4; string s; int b[N],c[N],len; int a[N] 阅读全文
摘要:
小 Z 的手套(gloves) 二分枚举即可 点击查看代码 #include<bits/stdc++.h> using namespace std; #define int long long const int N=2e5+107; int n,m; int l[N],r[N]; int read 阅读全文
摘要:
好数(number 没啥好说的直接 \(O(n^2)\) 枚举即可。 点击查看代码 #include<bits/stdc++.h> using namespace std; const int N=2e6+107; const int d=2e5; int n,a[N],sum[N]; int re 阅读全文