C++语言训练-谁家孩子跑最慢(Vector,集合) 摘要:解题思路:建立两个vector<set<int>> 分别代表李、王家选手得分, 按照题目要求初始化李、王家可能的得分集合。 计算每一种可能的交集, 如果为空集, 则判断1分是否在李 、 王家, 否则就…… 题解列表 2024年08月13日 0 点赞 0 评论 123 浏览 评分:9.9
C语言训练-谁家孩子跑最慢* 摘要:```cpp #include using namespace std; int main(){ int a,b,c,d,i,j,k; for(a=1;ad){ if…… 题解列表 2023年02月01日 0 点赞 0 评论 110 浏览 评分:0.0
谁家孩子跑最慢*(数学很好做,直接输出结果) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ cout<<'W'; return 0;}…… 题解列表 2022年10月28日 0 点赞 2 评论 172 浏览 评分:7.3
1153: C语言训练-谁家孩子跑最慢* 摘要:方法一: ```cpp #include #include using namespace std; int main() { int s[7]={1,2,3,4,5,6,7};…… 题解列表 2022年10月23日 0 点赞 0 评论 194 浏览 评分:6.0
#C++1153——简单穷举法 摘要:****************************************************************************************************…… 题解列表 2022年07月11日 0 点赞 0 评论 322 浏览 评分:9.9
代码不长,for比较多,新手易懂 摘要:解题思路:将名次等价于分数,每家15分,9、8已经固定,7个数分为2、2、3组然后遍历注意事项:如下参考代码:#include<iostream>using namespace std; int…… 题解列表 2022年04月03日 0 点赞 0 评论 424 浏览 评分:7.0
较容易理解的解法 摘要:解题思路:总分为45,平均每家15,所以a+b=6,c+d=7;注意事项:参考代码:#include<iostream>using namespace std;int add(int a, int b…… 题解列表 2022年01月27日 0 点赞 0 评论 99 浏览 评分:0.0
C语言训练-谁家孩子跑最慢* -题解(C++代码,感觉有些麻烦) 摘要:解题思路:思路倒是很简单,我就是通过全排列在做一个筛选从而找出符合题目要求的排列。注意事项:下面是代码,你们应该都能看得懂参考代码:#include<iostream> #include<algor…… 题解列表 2020年08月10日 0 点赞 0 评论 186 浏览 评分:0.0
C语言训练-谁家孩子跑最慢* -题解(C++代码) 摘要:# 思路 穷举。 可以做一些优化。例如写成下面这样, for (int x = 1; x < 10; x++) for (int y = x + 2; y < 10; y++) for (i…… 题解列表 2020年01月01日 0 点赞 0 评论 540 浏览 评分:8.7
C语言训练-谁家孩子跑最慢* (C++代码) 摘要:解题思路: 暴力求解注意事项:参考代码:#include <iostream>#include <bits/stdc++.h>using namespace std;int main(){ co…… 题解列表 2019年04月24日 0 点赞 0 评论 309 浏览 评分:2.0