Giter VIP home page Giter VIP logo

parallel-alogrithm-project's Introduction

Parallel Computation of Longest Path Problem in a Grid

  • Implementation of finding the longest path between any two vertices in a grid using OpenMP for parallel computation.
  • The code uses OpenMP constructs to parallelize the process of searching for the longest path, thereby reducing the overall computation time.
  • The program takes as input a grid containing only 1s or 1s and 0s, where 1 represents a free cell that can be traversed, and 0 represents an obstacle.
  • The user can specify the source and destination vertices to find the longest path between them.

Input


Input

Output


Output

Analysis and Comparison


Serial Alogrithm:

  • Works by exploring all possible paths from the source to the destination.
  • At each step, the algorithm can move in any of the four directions (up, down, left, or right) as long as the next cell is within the boundaries of the matrix, has a value of 1, and has not been visited before.
  • The algorithm explores all possible paths, we visit each cell multiple times. Therefore, the worst-case time complexity of the serial algorithm is O(4^(MN)), where M and N are the dimensions of the matrix.

Parallel Algorithm:

  • Divides the search space into smaller subspaces that can be explored independently by different threads.
  • Each thread works on a separate subproblem, and the results are combined using a critical section to obtain the final result.
  • The number of threads used by the program is determined by the OpenMP runtime system and depends on the number of available processors and other factors.
  • Assuming that the parallel algorithm uses P threads to explore the search space, the time complexity can be reduced to O(4^(MN/P)).

parallel-alogrithm-project's People

Contributors

sidd-007 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.