04 2021 档案

摘要:from : acwing #include <bits/stdc++.h> using namespace std; const int N = 100001; int n, m; int tree[N], a[N]; int lowbit(int x){ return x & -x; } voi 阅读全文
posted @ 2021-04-08 14:06 acwarming 阅读(49) 评论(0) 推荐(0)
摘要:不是连续子串 #include<bits/stdc++.h> using namespace std; int a[1005], dp[1005]; int main(){ int n; cin >> n; for(int i = 1; i <= n; i ++ ) cin >> a[i]; int 阅读全文
posted @ 2021-04-05 20:51 acwarming 阅读(56) 评论(0) 推荐(0)