蓝桥杯算法提高VIP-最小乘积(提高型)-题解(C++代码) 摘要:``` #include #include using namespace std; int n,m; int a[2][1005]; bool cmp(int a,int …… 题解列表 2020年06月21日 0 点赞 0 评论 304 浏览 评分:0.0
蓝桥杯算法提高VIP-最小乘积(提高型) (C++描述,排两次序,部分最优->整体最优) 摘要:``` #include #include using namespace std; const int N=1010; bool cmp(int x,int y){ return x…… 题解列表 2019年09月21日 0 点赞 0 评论 531 浏览 评分:9.9
蓝桥杯算法提高VIP-最小乘积(提高型) (C++代码) 摘要:解题思路:将读入的两个数组从小到大进行排序,然后根据数组第一个元素的正负进行判断。当第数组的最小元素为负时,使其与另一个数组的最大元素相乘;当数组的最小元素为正时,使其与另一个数组的最小元素相乘。之后…… 题解列表 2019年02月27日 0 点赞 0 评论 476 浏览 评分:0.0
蓝桥杯算法提高VIP-最小乘积(提高型) (习惯加算法思维) 摘要:解题思路:输入,排序,计算,输出这里用到了sort和memsetsort用于排序,加头文件algorithm没有compare的时候,默认的是从小到大,不需要写第三个参数memset用于给数组初始化,…… 题解列表 2018年12月09日 2 点赞 2 评论 340 浏览 评分:0.0
蓝桥杯算法提高VIP-最小乘积(提高型) (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<algorithm> using namespace std; const int M=10001; in…… 题解列表 2018年03月27日 0 点赞 0 评论 585 浏览 评分:0.0
蓝桥杯算法提高VIP-最小乘积(提高型) (C++代码) 摘要:#include<iostream> #include<algorithm> using namespace std; int compare(int a,int b){ return…… 题解列表 2018年03月09日 1 点赞 0 评论 683 浏览 评分:0.0