search
HomeBackend DevelopmentC++Programming in C++, find the number of paths from one point to another in a grid

Programming in C++, find the number of paths from one point to another in a grid

In this article, we are given a problem where we need to find the total number of paths from point A to point B, where A and B are fixed points i.e. A is a grid The upper left corner point in , B is the lower right corner point in the grid, e.g. −

Input : N = 5
Output : 252

Input : N = 4
Output : 70

Input : N = 3
Output : 20

In the given problem, we can formalize the answer and derive the result through simple observations.

Method of finding the solution

In this method, we derive a formula through observation, that is, when crossing the grid from A to B, we need to go to the right n times, Traveling down n times, this means we need to find all possible combinations of paths, so we get the combined formula of (n n) and n.

Example

#include<bits/stdc++.h>

using namespace std;
int fact(int n){ // factorial function 
   if(n <= 1)
      return 1;
   return n * fact(n-1);
}
int main() {
   int n = 5; // given n
   int answer = 0; // our answer
   answer = fact(n+n); // finding factorial of 2*n
   answer = answer / (fact(n) * fact(n)); // (2*n)! / (n! + n!)
   cout << answer << "\n";
}

Output

252

Explanation of the above code

In this code, we calculate the combined formula of 2*n to n, because We know that from point A to point B, we need exactly 2*n operations in two directions, that is, there are n operations in one direction and n operations in the other direction, so we find all possibilities of these operations The combination is (2*n)!/ (n! n!). The overall time complexity of the given program is O(1), which means that our complexity does not depend on the given n.

Conclusion

In this article, we discussed a problem to find the number of routes from one point to another point in a grid. We also learned a C program for this problem and our complete approach to solving it. We can write the same program in other languages ​​such as C, java, python and other languages. We hope this article was helpful to you.

The above is the detailed content of Programming in C++, find the number of paths from one point to another in a grid. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:tutorialspoint. If there is any infringement, please contact admin@php.cn delete
用于精确目标检测的多网格冗余边界框标注用于精确目标检测的多网格冗余边界框标注Jun 01, 2024 pm 09:46 PM

一、前言目前领先的目标检测器是基于深度CNN的主干分类器网络重新调整用途的两级或单级网络。YOLOv3就是这样一种众所周知的最先进的单级检测器,它接收输入图像并将其划分为大小相等的网格矩阵。具有目标中心的网格单元负责检测特定目标。今天分享的,就是提出了一种新的数学方法,该方法为每个目标分配多个网格,以实现精确的tight-fit边界框预测。研究者还提出了一种有效的离线复制粘贴数据增强来进行目标检测。新提出的方法显着优于一些当前最先进的目标检测器,并有望获得更好的性能。二、背景目标检测网络旨在使用

苹果手机中设置相机网格的操作步骤苹果手机中设置相机网格的操作步骤Mar 26, 2024 pm 07:21 PM

1、打开苹果手机的桌面,找到并点击进入【设置】,2、在设置的页面点击进入【相机】。3、点击打开【网格】右侧的开关即可。

CSS布局技巧:实现圆形网格图标布局的最佳实践CSS布局技巧:实现圆形网格图标布局的最佳实践Oct 20, 2023 am 10:46 AM

CSS布局技巧:实现圆形网格图标布局的最佳实践在现代网页设计中,网格布局是一种常见且强大的布局技术。而圆形网格图标布局则是一种更加独特和有趣的设计选择。本文将介绍一些最佳实践和具体代码示例,帮助你实现圆形网格图标布局。HTML结构首先,我们需要设置一个容器元素,在这个容器里放置图标。我们可以使用一个无序列表(&lt;ul&gt;)作为容器,列表项(&lt;l

使用C++编写,找出由三条线上的一组点组成的三角形的数量使用C++编写,找出由三条线上的一组点组成的三角形的数量Sep 09, 2023 am 09:53 AM

现在我们得到了3行中存在的几个点;例如,我们需要找出这些点可以形成多少个三角形Input:m=3,n=4,k=5Output:205Input:m=2,n=2,k=1Output:10我们将应用一些组合数学来解决这个问题,并制定一些公式来解决这个问题。寻找解决方案的方法在这种方法中,我们将设计一个公式:将组合学应用于当前情况,这个公式将为我们提供结果。上述方法的C++代码这是我们可以用作求解的输入的C++语法给定的问题-示例#include<bits/stdc++.h>#define

“丶”这个点用键盘怎么打出来?“丶”这个点用键盘怎么打出来?Feb 15, 2024 pm 01:51 PM

在使用键盘的打字的时候会有很多的用户比较好奇“丶”这个点用键盘是怎么打出来的?那么下面就来看一下小编给大家带来的键盘上打出这个“丶”符号的方法吧。一、“丶”点用键盘打出打出直接输入【dian】在选择栏上就会看到【丶】的标点符号。二、特殊符号在搜狗拼音输入法中,当切换至中文状态后,按下v键会出现一些特殊的符号。这些符号包括数字(如:v123)、日期(如:v2013/1/1)、算式(如:v1+1)和函数(如:v2~3)。这些符号可以方便地输入各种不同的信息。2.接着再按下数字键,0到9随便一个都可以

如何在Java中检查三个点是否共线?如何在Java中检查三个点是否共线?Sep 05, 2023 pm 06:41 PM

如果三个点都位于一条直线上,则称这三个点共线。如果这些点不在同一条直线上,则它们不是共线点。这意味着如果三个点(x1,y1),(x2,y2),(x3,y3)在同一条直线上,则它们是共线的。其中,x1、y1、x2、y2、x3、y3是x轴和y轴上的点,(x1,y1)、(x2,y2)、(x3,y3)是坐标。数学上,有两种方法可以确定三个点是否共线。通过使用点求三角形的面积,如果三角形的面积为零,则三个点共线。Formulatofindareaoftriangle=0。5*[x1*(y2-y3)+x2*

C++程序用于找出机器人在网格中到达特定单元所需的跳跃次数C++程序用于找出机器人在网格中到达特定单元所需的跳跃次数Sep 17, 2023 pm 07:17 PM

假设我们有一个hxw的网格。网格在一个名为'initGrid'的二维数组中表示,其中网格中的每个单元格都用'#'或'.'表示。'#'表示网格中有障碍物,'.'表示该单元格上有一条路径。现在,一个机器人被放置在网格上的一个单元格'c'上,该单元格具有行号x和列号y。机器人必须从一个具有行号p和列号q的单元格'd'移动到另一个单元格。单元格坐标c和d都以整数对的形式给出。现在,机器人可以按以下方式从一个单元格移动到另一个单元格:如果机器人想要移动到的单元格位于当前单元格的垂直或水平相邻位置,机器人可

C++程序用于计算机器人在网格中完成一次行程所需的总成本C++程序用于计算机器人在网格中完成一次行程所需的总成本Aug 25, 2023 pm 04:53 PM

假设我们有一个尺寸为hxw的网格。网格中的每个单元格包含一个正整数。现在有一个路径查找机器人放置在特定的单元格(p,q)上(其中p是行号,q是列号),它可以移动到单元格(i,j)。移动操作有一个特定的成本,等于|p-i|+|q-j|。现在有q个旅行,具有以下属性。每个旅行有两个值(x,y),并且有一个共同的值d。机器人放置在一个值为x的单元格上,然后移动到另一个值为x+d的单元格。然后它移动到另一个值为x+d+d的单元格。这个过程将继续,直到机器人到达一个值大于或等于y的单元格。y-x是d的倍数

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.