1179: 上车人数(有点意思)
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a[100],b[100],c[100];//数组a上车……
穷举法,注意边界的细节问题
摘要:解题思路:注意事项:参考代码:import java.util.Scanner;
public class Main {
public static void main(String[……
本人小白,我想我思路符合大部分人 进来看看喽
摘要:解题思路:先将例题的列出来找规律,就一个数列,主要就是通过循环求第二站的上下车人数注意事项:数组大小和sum为第一站和后面站上的人数和参考代码:#include<bits/stdc++.h>using……
1179: 上车人数
摘要:```cpp
#include
#include
using namespace std;
int main()
{
int a,n,m,x,b;
while(cin>>……
1179 上车人数 斐波那契数列的应用
摘要:# # 思路
先尝试一下计算出在某一站的总人数的通项公式,设a为第一站上车的人数,b为第二站上车和下车的人数,可计算出通项公式为`f1(n)*a+f2(n)*b`,其中:
f1(0)=f1(1)=……
编写题解 1179: 上车人数
摘要:解题思路:注意事项:参考代码:a,n,m,x=map(int,input().split())
up=[a]
def get(a,x,z):
up=[a,x]
down=[0,……
上车人数(虽然不是自己做出来的,但是能看懂别人的代码,从而读懂弄通,进行一次精简优化,也是一项进步,难道不是吗?)
摘要:```c
#include
int onbus(int n,int *l ,int c) // 车上总人数,n对应于x(第x站),*l对应于gobus的地址,实参a传入c中
{
if……
题解 1179: 上车人数
摘要:参考代码:#include <stdio.h>#include <stdlib.h>#include<math.h>int main(){ int a,n,m,x; scanf("%d%d……
Python自己调用自己
摘要:a,n,m,x=map(int,input().split())def qiushu(zs,ss,s,dj): if dj==n-1: if zs==m: r……