码迷,mamicode.com
首页 >  
搜索关键字:easy    ( 5384个结果
上海交通大学机试 整除问题 Easy
基本思想: 无; 关键点: 无; #include<iostream> #include<vector> #include<algorithm> #include<math.h> #include<string> using namespace std; void mutlip(string &s, ...
分类:其他好文   时间:2020-03-12 00:02:57    阅读次数:68
清华大学机试 约数的个数 Easy
基本思想: 无; 关键点: 无; #include<iostream> #include<vector> #include<algorithm> #include<math.h> using namespace std; typedef long long ll; void charge(ll n) ...
分类:其他好文   时间:2020-03-11 12:32:20    阅读次数:80
北京大学机试 首字母大写 Easy *注意空格还包括制表符
基本思想: 其实如果只有空格完全可以stringstream来做; 关键点: 无; #include<iostream> #include<vector> #include<string> #include<sstream> using namespace std; int main() { str ...
分类:其他好文   时间:2020-03-11 01:28:51    阅读次数:85
北京大学机试 单词替换 Easy
基本思想: 无; 关键点: 无; #include<iostream> #include<string> #include<vector> #include<sstream> using namespace std; vector<string>vec; int main() { string s; ...
分类:其他好文   时间:2020-03-11 00:47:44    阅读次数:97
刷题121. Best Time to Buy and Sell Stock
一、题目说明 题目121. Best Time to Buy and Sell Stock,有一列数,第i个元素是第i天股票的价格,只允许一次交易(买和卖),计算如何利润最大化。难度是Easy! 二、我的解答 不动脑子,用brute force方法: 三、优化措施 一遍扫描,计算最小值,计算最大利润 ...
分类:其他好文   时间:2020-03-10 20:19:22    阅读次数:42
北邮 找最小数 Easy
基本思想: 无; 关键点: 无; #include<iostream> #include<string> #include<algorithm> #include<vector> using namespace std; struct node { int x; int y; }; node num ...
分类:其他好文   时间:2020-03-10 20:03:04    阅读次数:53
北京大学 打印极值点下表 Easy
基本思想: 无; 关键点: 无; #include<iostream> #include<string> #include<algorithm> #include<vector> using namespace std; const int maxn = 90; bool flag[maxn]; i ...
分类:其他好文   时间:2020-03-10 19:57:27    阅读次数:65
哈工大机试 Easy *枚举,个人感觉dp贪心也可以,但是一定要注意double 1/3得问题
基本思想: 无; 关键点: 无; #include<iostream> #include<string> #include<vector> using namespace std; double p1 = 5; double p2 = 3; double p3 = 1.0 / 3; void cha ...
分类:其他好文   时间:2020-03-10 12:06:47    阅读次数:69
超EASY 五步实现Eclipse ASN.1 SDK和插件安装
Eclipse ASN.1 SDK和插件安装说明 ASN.1 SDK和插件安装说明 这些安装说明假设您已经安装了某种类型的Eclipse。 如果你没有,Eclipse可以从http://www.eclipse.org/downloads/下载。 以下步骤将安装ASN.1开发工具和可选的ASN.1编译 ...
分类:系统相关   时间:2020-03-10 11:51:33    阅读次数:118
杭电ACMOJ 人见人爱A^B Easy *第一次见到快速幂取模
基本思想: 快速幂取模,如果不去模,就是快速幂大数问题; 关键点: 无; #include<iostream> #include<string> using namespace std; typedef long long ll; string s; //int f[maxn]; void mult ...
分类:其他好文   时间:2020-03-09 13:51:23    阅读次数:53
5384条   上一页 1 ... 26 27 28 29 30 ... 539 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!