摘要:
A: 点击查看代码 #include<bits/stdc++.h> using namespace std; int n,a,b; priority_queue <int> q; int sum=0; int main() { scanf("%d%d%d",&n,&a,&b); //cin>>n>>
阅读全文
posted @ 2024-11-14 21:07
cathy_zro
阅读(5)
推荐(0)
编辑
摘要:
A:错排问题 点击查看代码 #include<bits/stdc++.h> using namespace std; int w; long long a[22]; int main() { cin>>w; a[1]=0; a[2]=1; for(int i=3;i<=w;i++) { a[i]=(
阅读全文
posted @ 2024-11-14 21:00
cathy_zro
阅读(5)
推荐(0)
编辑
摘要:
首先,拉张图 树状数组,相对于线段树来说,空间复杂度更小,但是可以处理的信息具有局限性 常用于处理区间(矩阵)查改(差分转化为单点查改),单点查改 板子题1 Ac code: 点击查看代码 #include<bits/stdc++.h> #define lowbit x&-x using names
阅读全文
posted @ 2024-11-14 20:52
cathy_zro
阅读(1)
推荐(0)
编辑