Giter VIP home page Giter VIP logo

graduationceremony's Introduction

graduationCeremony

Assignment for Impact Analytics: Question:

Question

In a university, your attendance determines whether you will be allowed to attend your graduation ceremony. You are not allowed to miss classes for four or more consecutive days. Your graduation ceremony is on the last day of the academic year, which is the Nth day.

Your task is to determine the following:

  1. The number of ways to attend classes over N days.
  2. The probability that you will miss your graduation ceremony.

Represent the solution in the string format as "Answer of (2) / Answer of (1)", don't actually divide or reduce the fraction to decimal

Test cases:

for 5 days: 14/29

for 10 days: 372/773

Solutions: Method 1:=> Brute Force:

  1. Here we are calculating every permutation of a string based on starting where the student will be absent for 0 days till N days.
  2. This is stored in a set and then checked accordingly for the ways to attend and in those ways to attend, we are checking if he's absent on last day that is graduation day.
  3. If absent then the count is taken as number of days to miss ceremony

Method 2:=> Optimised solution

  1. Here iterative approach is followed by using dynamic programming.
  2. dp[i][j] = you attended i day and missed j consecutive days
  3. For 0 days you cant attend or nor miss so dp[0][0] = 1, since there's only one way of doing it
  4. We have taken four state for each row because either you can miss 0 day, 1 day, 2 day or 3 day.
  5. Now for first day if we miss 0 consecutive days, we should sum all values for 0th days. That will be total number of ways to attend on day1.
  6. that's why dp[i][0] = no ways to attend i day if you dont miss any day. It will be same as dp[i-1][0] + dp[i-1][1] + dp[i-1][2] + dp[i-1][3]

graduationceremony's People

Contributors

shubhamshinde477 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.