码迷,mamicode.com
首页 >  
搜索关键字:iostream    ( 13291个结果
CF1509C The Sports Festival
原题链接 题意:每次加一个数,要求最小 $\sum max_ - min_, 题解:本来以为就是纯贪心,然后发现竟然是区间dp,就是先排完序,然后就加入然后取 \(min\)。 代码: #include <iostream> #include <bits/stdc++.h> using namesp ...
分类:其他好文   时间:2021-06-02 13:04:14    阅读次数:0
基于八叉树的动态障碍物滤出
#话不多说直接上代码 #include <pcl/point_cloud.h> #include <pcl/octree/octree_pointcloud_changedetector.h> #include <iostream> #include <vector> #include <ctime ...
分类:其他好文   时间:2021-06-02 12:48:57    阅读次数:0
Codeforces Round #722 (Div. 2)
题目:https://codeforc.es/contest/1529 A. Eshag Loves Big Arrays 题意:略 题解:发现随便取两个不同的数,一定可以删掉大的那个数。所以最后留下的肯定是最小的所有数。 #include<iostream> #include<algorithm> ...
分类:其他好文   时间:2021-05-25 18:14:45    阅读次数:0
异常 名称空间
异常 try { 被检查的语句 } catch(异常信息类型[变量名]) { 进行异常处理的语句 } #include <math.h> #include <iostream> using namespace std; double triangle(double a, double b, doub ...
分类:其他好文   时间:2021-05-25 18:14:25    阅读次数:0
O(logn)最长上升子序列并输出
O(logn)最长上升子序列并输出 +++ pre数组记录转移。 #include <iostream> #include <cstdio> #include <cstring> #include <algorithm> using namespace std; const int N = 1e6 ...
分类:其他好文   时间:2021-05-25 17:36:48    阅读次数:0
无线通讯网
#include<cstdio> #include<iostream> #include<cstring> #include<cmath> #include<algorithm> using namespace std; const int N=505; int s,p,tot,cnt; struc ...
分类:其他好文   时间:2021-05-24 16:03:43    阅读次数:0
大乱炖之字符串与指针
大乱炖之字符串 1.字符串: 字符串最后一位 ‘\0’结束 1.cin>> 接受一个字符串,遇“空格”、“Tab”、“回车”都结束 #include <iostream> using namespace std; int main() { char c[10]; cin>>c; cout<<c; r ...
分类:其他好文   时间:2021-05-24 15:51:08    阅读次数:0
[设计模式]3.2工厂模式
一、C++的浅拷贝与深拷贝对比Java的浅克隆与深克隆案例 C++部分 #include<iostream> #include<string> using namespace std; class Email { private: string title; /*这里是一个指针,当经行拷贝时,会产生 ...
分类:其他好文   时间:2021-05-24 14:17:06    阅读次数:0
2021ccpc黑龙江省赛dp题
#include <iostream> #include <cstring> #include <cmath> using namespace std; using ll=long long ; const int maxn=1e3+10; int dp[maxn][maxn]; int sum[m ...
分类:其他好文   时间:2021-05-24 13:59:03    阅读次数:0
jsonCPP
jsoncpp是一个用于操作json数据的C++开源库 代码地址:https://github.com/open-source-parsers/jsoncpp 使用文档:http://open-source-parsers.github.io/jsoncpp-docs/doxygen/index.h ...
分类:Web程序   时间:2021-05-24 12:49:23    阅读次数:0
13291条   上一页 1 2 3 4 5 6 ... 1330 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!