Skip to content

java: Created network delay time #635

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 26, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions java/743-Network-Delay-Time.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
// Bellman Ford ALgorithm
// Time Complexty (n * t) | Space Complexity O(n) where t is the length of times
class Solution {
public int networkDelayTime(int[][] times, int n, int k) {

// initialize an array with max value of size n
int[] paths = new int[n];
Arrays.fill(paths, Integer.MAX_VALUE);

paths[k - 1] = 0;

for (int i = 0; i < n; i++){

// make a copy of paths
int[] temp = new int[n];
temp = Arrays.copyOf(paths, paths.length);

// loop through times
for(int j = 0; j < times.length; j ++){

int src = times[j][0]; // source
int tgt = times[j][1]; // target
int time = times[j][2]; // time

if (temp[src - 1] != Integer.MAX_VALUE && temp[src - 1] + time < temp[tgt - 1]){
temp[tgt - 1] = temp[src - 1] + time;
}

}

// set paths to temp
paths = temp;

}

int result= Integer.MIN_VALUE;

// calculate max value
for(int i = 0; i < n;i++){
if(paths[i] == Integer.MAX_VALUE) {
return -1;
}
result = Math.max(result, paths[i]);
}

// return result
return result;

}
}
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy