上车人数 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; const int M=1000+5; struct num{ int b1,b…… 题解列表 2018年05月13日 0 点赞 0 评论 472 浏览 评分:2.0
上车人数-题解(C++代码) 摘要:# 递推 ![](/image_editor_upload/20200216015901_30666.jpg) ```cpp #include #include #include #inc…… 题解列表 2020年02月16日 0 点赞 0 评论 351 浏览 评分:0.0
上车人数-题解(C++代码) 摘要: #include #include using namespace std; int main() { int a,n,m,x,b; …… 题解列表 2020年03月22日 0 点赞 0 评论 387 浏览 评分:9.9
1179: 上车人数 摘要:```cpp #include #include using namespace std; int main() { int a,n,m,x,b; while(cin>>…… 题解列表 2022年11月18日 0 点赞 0 评论 160 浏览 评分:9.9
本人小白,我想我思路符合大部分人 进来看看喽 摘要:解题思路:先将例题的列出来找规律,就一个数列,主要就是通过循环求第二站的上下车人数注意事项:数组大小和sum为第一站和后面站上的人数和参考代码:#include<bits/stdc++.h>using…… 题解列表 2022年12月10日 0 点赞 0 评论 77 浏览 评分:9.9
1179: 上车人数(有点意思) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a[100],b[100],c[100];//数组a上车…… 题解列表 2024年03月14日 0 点赞 0 评论 127 浏览 评分:9.9
上车人数(模拟 + 递推) 摘要:解题思路:递推系数规律, 计算第二站上下车人数, 按照递推公式计算第x站人数注意事项:第n站下车的人数是第n-1站出发时的人数参考代码:#include<iostream>#inclu…… 题解列表 2025年01月21日 0 点赞 0 评论 23 浏览 评分:0.0