自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(5)
  • 收藏
  • 关注

原创 洛谷 P1824 进击的奶牛 题解

题目描述Farmer John 建造了一个有 NN(22 \le≤ NN \le≤ 100000100000) 个隔间的牛棚,这些隔间分布在一条直线上,坐标是 x_1x1​ ,...,x_NxN​ (0 \le≤ x_ixi​ \le≤ 10000000001000000000)。他的 CC(22 \le≤ CC \le≤ NN) 头牛不满于隔间的位置分布,它们为牛棚里其他的牛的存在而愤怒。为了防止牛之间的互相打斗,Farmer John 想把这些牛安置在指定的隔间,所有牛中相邻两头的最近距离越大越

2022-02-09 20:37:10 1008

原创 高精度2------------------高精度加法(有点小毛病。。。)

#include<bits/stdc++.h>using namespace std;//待改变!!!!!!!!!!!int a[400],c[400001];int main(){ string s1; int b; cin>>s1>>b; int k=s1.size()-1; int p=0; for(int i=k;i>=0;i--) { a[p]=s1[i]-'0'; ...

2021-11-14 19:58:51 734 1

原创 高精度1------高精度乘法

高精度乘法#include<bits/stdc++.h>using namespace std;int a[400],c[400001];int main(){ string s1; int b; cin>>s1>>b; int k=s1.size()-1; int p=0; for(int i=k;i>=0;i--) { a[p]=s1[i]-'0'; p++; } for(int i=0;i<400;i++) {

2021-11-14 19:55:36 813

原创 插入排序模板

思路就是每次交换最大、最小值,具体不多讲 其实是懒 直接贴代码:#include <iostream>using namespace std;int a[8]={2,5,9,1,7,6,8,0};void print(){ for(int i=0;i<8;i++) cout<<a[i]<<" "; cout<<endl;}void sel_sort(int n){ for(int i...

2021-11-14 19:51:14 968

原创 如何用c++实现控制台指令? 孙的博客

可以用“system(“。。。”)”实现,下面是样例 :)#include<bits/stdc++.h>using namespace std;int main(){ system("dir c:"); system("pause"); system("tree c:\Windows"); system("pause"); system("Nslookup"); system("pause"); system("calc"..

2021-10-13 19:30:00 728

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除