码迷,mamicode.com
首页 >  
搜索关键字:cout    ( 7219个结果
HJ8-合并表记录
按照key值升序输出: #include<iostream> using namespace std; #include<map> int main() { map<int,int>m; int n; cin >> n; while(n--) { int a = 0, b = 0; cin >> a ...
分类:其他好文   时间:2021-04-10 13:21:54    阅读次数:0
[CF865D] Buy Low Sell High - 带撤销贪心
已知接下来N天的股票价格,每天你可以买进一股股票,卖出一股股票,或者什么也不做.N天之后你拥有的股票应为0,当然,希望这N天内能够赚足够多的钱 ...
分类:其他好文   时间:2021-04-10 12:53:02    阅读次数:0
输入与输出
1. cout的setprecision头文件:#include<iomanip> cout<<setprecision(1)<<fixed<<"T "<<num1<<" D "<<num2<<" H "<<calc_h(num1,num2)<<endl; 2. printf打印double,用%f ...
分类:其他好文   时间:2021-04-09 13:28:24    阅读次数:0
单词的提取
#include #include<stdio.h> #include #include #include//按字典序输出 using namespace std; vector words; map<string,bool > dic; int main() { //连续读入字符 string w ...
分类:其他好文   时间:2021-04-09 13:13:53    阅读次数:0
2872. 子串分值和
题目链接:https://www.acwing.com/problem/content/2875/ 思路:对于每个字母 只有他在子串中第一个出现的时候才有贡献 所以考虑从1~n枚举 对于每个s[i] 计算出所有包含他的子串,且他是第一个出现的种类字母的子串数量即可 lst[i] 记录的是 i类字母上 ...
分类:其他好文   时间:2021-04-08 13:58:13    阅读次数:0
“浪潮杯”第九届山东省ACM大学生程序设计竞赛 F: Four-tuples容斥定理
题目 F : Four-tuples 输入 1 1 1 2 2 3 3 4 4 输出 1 题意 给l1, r1, l2, r2, l3, r3, l4, r4? , 八个数据, 要求输出在区间[l1, r1] , [l2, r2] , [l3, r3] , [l4, r4?] (记为A, B, C, ...
分类:其他好文   时间:2021-04-08 13:43:44    阅读次数:0
[CF864E] Fire - 背包dp
某人的房子着火了,他想从大火中带走价值总和尽量多的物品,每次他只能带走一个,分别给出挽救某物品需要的时间t,该物品开始燃烧的时间d(在d时间开始燃烧就不能再挽救该物品了),该物品的价值p。约束:n(1<=n<=100) ti(1<=ti<=20),di(1<=di<=2000),pi(1<=pi<=... ...
分类:其他好文   时间:2021-04-06 14:18:55    阅读次数:0
C++ 按行输入
string s; while(getline(cin,s)){ cout<<s<<endl; } ...
分类:编程语言   时间:2021-04-06 14:01:34    阅读次数:0
剑指 Offer 36. 二叉搜索树与双向链表
仅供自己学习 思路: 按照题目要求我们需要定义一个head头节点,并且因为树是二叉搜索树,所以要采取中序遍历才能得到从小到大的排序。 按照中序遍历的模板 dfs(root->left); cout<<root->val; dfs(root->right); 同样我们也通过这个模板写DFS,这里因为是 ...
分类:其他好文   时间:2021-04-05 12:33:29    阅读次数:0
leetcode1006.笨阶乘
不难 class Solution { public: int clumsy(int N) { int i; if(N==3) return 6; if(N==2||N==1) return N; int a=N*(N-1)/(N-2)+N-3; N-=4; int sign=1; long lon ...
分类:其他好文   时间:2021-04-02 13:02:35    阅读次数:0
7219条   上一页 1 ... 5 6 7 8 9 ... 722 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!