上一页 1 ··· 3 4 5 6 7 8 9 10 11 12 下一页
摘要: #include<bits/stdc++.h> using namespace std; const int N = 1e6+6; void Mergesort(int l,int r); int main() { freopen("working.in","r",stdin); freopen(" 阅读全文
posted @ 2024-01-26 21:02 yeyou26 阅读(73) 评论(0) 推荐(0)
摘要: #include<bits/stdc++.h> using namespace std; int a[114514]; void Quicksort(int l,int r); int main() { freopen("working.in","r",stdin); freopen("workin 阅读全文
posted @ 2024-01-26 21:01 yeyou26 阅读(24) 评论(0) 推荐(0)
摘要: lll Read() { bool flag=0; char ch=getchar(); lll ans=0; while(!isdigit(ch) && ~ch) { flag|=(ch=='-'); ch=getchar(); } while(isdigit(ch) && ~ch) { ans= 阅读全文
posted @ 2024-01-26 21:01 yeyou26 阅读(90) 评论(0) 推荐(0)
摘要: //lg 1226 //快速幂 #include<bits/stdc++.h> using namespace std; long long a,n,p; long long nn; long long qpow() { long long b=a; long long ans=1; while(n 阅读全文
posted @ 2024-01-26 20:59 yeyou26 阅读(30) 评论(0) 推荐(0)
摘要: #include<bits/stdc++.h> using namespace std; int bkt[1005]; int n; int a[10005]; int main() { n=100; srand(time(0)); for(int i=1;i<=n;i++) a[i]=rand() 阅读全文
posted @ 2024-01-26 20:59 yeyou26 阅读(13) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 10 11 12 下一页