会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
Chri_K
博客园
首页
新随笔
联系
订阅
管理
公告
2020年10月29日
二分函数
摘要: 二分降序(找第一个小于或小于等于的数) int n=5;//5个元素 a[0]=9,a[1]=7,a[2]=5,a[3]=3,a[4]=1;//降序 cout<<lower_bound(a,a+n,5,greater<int>())-a<<endl;//得到的是下标 2 cout<<upper_bo
阅读全文
posted @ 2020-10-29 15:07 Chri_K
阅读(18)
评论(0)
推荐(0)
编辑
构造(排列组合 插板法)
摘要: #include <iostream> #include <cstdio> #include <cmath> #include <cstring> using namespace std; typedef long long ll; const int maxn = 1000000; const i
阅读全文
posted @ 2020-10-29 14:50 Chri_K
阅读(152)
评论(0)
推荐(0)
编辑
字符串(string)(字符串相加)
摘要: #include<iostream> #include<cstring> using namespace std; int main() { int t; cin>>t; string a,b; while(t--) { cin>>a>>b; if(a+b>b+a) { cout<<">"<<end
阅读全文
posted @ 2020-10-29 13:13 Chri_K
阅读(129)
评论(0)
推荐(0)
编辑
读入优化
摘要: ios::sync_with_stdio(false); std::cin >>a; cin.tie(0);
阅读全文
posted @ 2020-10-29 07:34 Chri_K
阅读(3)
评论(0)
推荐(0)
编辑