Jump to content

edges and vertices


fenil
Go to solution Solved by fenil,

Recommended Posts

  • Solution
14 hours ago, Barand said:

Here you are. Now it returns 10

function ec($n, array $a, array $b){
    return 10;
} 

We are not going to do your assignment for you.

 Given N = 4, A = [1, 3], B = [2, 4] function should return 10. The graph contains two edges: (1, 2) and (3, 4). We can assign following values to the vertices: 4, 3, 2, 1.

image.png.cbe2c06d62e76f7e5192e340250278eb.png

 The sum of values at the edges' endpoints is (4 + 3) + (2 + 1) = 10.

 

how to find edges of vertices and sum of values at the edges' endpoints ?

 

function ec($n, array $a, array $b){  }

Edited by fenil
Link to comment
Share on other sites

  • Barand locked this topic
Guest
This topic is now closed to further replies.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.