摘要: A: 点击查看代码 #include<bits/stdc++.h> using namespace std; const int maxx=1005; const int dx[4]={0,0,1,-1}; const int dy[4]={1,-1,0,0}; int n,sx,sy,tx,ty; 阅读全文
posted @ 2024-11-22 22:17 cathyzro 阅读(32) 评论(0) 推荐(0)
摘要: A: 点击查看代码 #include<bits/stdc++.h> using namespace std; int t,ss=0,ans=0x7fffffff; int n; int w[26]; void dfs(int a,int b,int c){//遍历人数,选择人数,总体重 if(b== 阅读全文
posted @ 2024-11-22 22:10 cathyzro 阅读(51) 评论(0) 推荐(0)
摘要: A:数列分段 点击查看代码 #include<bits/stdc++.h> using namespace std; int m,n; int a[100002]; int l,r; bool check(int limit){ int cnt=1,sum=0; for(int i=1;i<=n;i 阅读全文
posted @ 2024-11-18 09:36 cathyzro 阅读(23) 评论(0) 推荐(0)
摘要: A: 点击查看代码 #include<bits/stdc++.h> using namespace std; const int N=1e6+10; int n[N]; int m,mm,nn; int main() { scanf("%d%d",&m,&nn); for(int i=1;i<=m; 阅读全文
posted @ 2024-11-15 16:24 cathyzro 阅读(13) 评论(0) 推荐(0)
摘要: 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 cathyzro 阅读(36) 评论(0) 推荐(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 cathyzro 阅读(26) 评论(0) 推荐(0)
摘要: 点击查看代码 #include<bits/stdc++.h> using namespace std; const int N=114514; namespace rw{ inline int read(){ int nb=0,f=1; char c=getchar(); while(c>'9' | 阅读全文
posted @ 2024-11-13 17:21 cathyzro 阅读(14) 评论(0) 推荐(0)
摘要: 瞎写---致敬老(小)Cathy公元2024年的CSP-S第二轮 emmm...... 前置:csp-s打完了,那么下一站->NOIP! csp-s总结: T1:脚打,emmmA了,但是耗时不短(30min?) T2:没A,问题在于细节的处理以及情况的考虑:恼怒————加速度大于零这种最无脑的情况居然挂掉了 如果实在要为我100pts->?pts找一个合理的解释的 阅读全文
posted @ 2024-10-31 16:32 cathyzro 阅读(2) 评论(0) 推荐(0)