蓝桥杯2023年第十四届省赛真题-冶炼金属 摘要:#include<iostream> using namespace std; const int MAX_N = 1e4 + 1; // 规定数据范围不超 int N, A[MAX_N], B…… 题解列表 2024年03月05日 0 点赞 0 评论 548 浏览 评分:9.9
冶炼金属--超快解法 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>#include<algorithm>using namespace std;const int i…… 题解列表 2024年02月23日 0 点赞 0 评论 385 浏览 评分:9.9
冶炼金属二分法代码 摘要:解题思路:注意事项:参考代码://冶炼金属:二分#include<bits/stdc++.h>#define int long longusing namespace std;const int N …… 题解列表 2024年01月30日 0 点赞 0 评论 133 浏览 评分:0.0
冶炼金属 20行代码 摘要:解题思路:注意max和min+1就OK注意事项:参考代码:#includeusing namespace std;int main(){ int a,b,x,y,n; cin>>n; int…… 题解列表 2024年01月27日 0 点赞 0 评论 558 浏览 评分:9.9
冶炼金属之列个不等式就出来了 摘要:解题思路:以375 353 259 2为例,上限集合:59/v>=2,53/v>=2,75/v>=3,下限集合:59/v>=3,53/v>=3,75/v>=4(下限求解出来需要加1)参考代码:#inc…… 题解列表 2024年01月14日 0 点赞 0 评论 495 浏览 评分:9.9
冶炼金属二分写法 摘要:``` #include #define int long long using namespace std; const int N=110,mod=1e9+7; typedef lon…… 题解列表 2024年01月05日 0 点赞 0 评论 411 浏览 评分:9.9
新手思路解法 摘要:参考代码:#include<iostream>using namespace std;int N = 10001;int main(){ int n,a[N][3]; cin>>n; …… 题解列表 2023年11月17日 0 点赞 0 评论 351 浏览 评分:7.3
[蓝桥杯2023年第十四届省赛真题-冶炼金属] 暴力出奇迹 摘要:参考代码:#include <bits/stdc++.h>using namespace std;const int N = 10010;int a[N], b[N];int main(void) {…… 题解列表 2023年11月06日 0 点赞 2 评论 1165 浏览 评分:9.9
演练金属-数学方法需要注意的边界问题 摘要:解题思路:注意事项:假设这个题目的转换率为x那么有//3x <= 75 < 4x,注意右边界取不到的,所以会有一个加一的操作//2x <= 53 < 3x, 2x <= 59 < 3x参考代码:```…… 题解列表 2023年09月01日 0 点赞 0 评论 214 浏览 评分:6.0
3150: 蓝桥杯2023年第十四届省赛真题-冶炼金属 摘要:解题思路:其实这是一道数学题,根据给出的样例进行计算,比如75 3 这组,所求V在V*3>=75并且V*4<75,分别向上取整和向下取整就能获得这组的最大最小,一共n组,在这n组中向上取整的取最大值,…… 题解列表 2023年08月17日 0 点赞 0 评论 339 浏览 评分:4.0