id
int64 0
5k
| problem_text
stringlengths 886
3.79k
| graph
stringlengths 803
4.62k
| path
listlengths 1
18
| exact_answer
int64 1
18
|
---|---|---|---|---|
300 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Julia Maynard, Frederick Alvarado, Margaret Sloan, Michael Burnett, Stephanie Woodard, Chad Stewart, Andrew Marshall, Samuel West, Ashley Davis, Selena Copeland, Melanie Murphy, William Cortez, Tamara Carlson, Lisa Archer, Christopher Taylor, Michelle Nelson
- Fiendship connections: Julia Maynard to Michelle Nelson, Julia Maynard to William Cortez, Frederick Alvarado to Samuel West, Frederick Alvarado to Michelle Nelson, Margaret Sloan to Christopher Taylor, Margaret Sloan to Tamara Carlson, Michael Burnett to Tamara Carlson, Michael Burnett to Selena Copeland, Stephanie Woodard to Christopher Taylor, Chad Stewart to Melanie Murphy, Chad Stewart to Ashley Davis, Andrew Marshall to Ashley Davis, Samuel West to Christopher Taylor, Selena Copeland to Melanie Murphy, Tamara Carlson to Christopher Taylor
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Julia Maynard", "id": 2451363}, {"name": "Frederick Alvarado", "id": 2439141}, {"name": "Margaret Sloan", "id": 2664197}, {"name": "Michael Burnett", "id": 2577912}, {"name": "Stephanie Woodard", "id": 2664201}, {"name": "Chad Stewart", "id": 2493162}, {"name": "Andrew Marshall", "id": 2467754}, {"name": "Samuel West", "id": 2416591}, {"name": "Ashley Davis", "id": 4256208}, {"name": "Selena Copeland", "id": 2459089}, {"name": "Melanie Murphy", "id": 2583377}, {"name": "William Cortez", "id": 3860340}, {"name": "Tamara Carlson", "id": 2445687}, {"name": "Lisa Archer", "id": 2417816}, {"name": "Christopher Taylor", "id": 2406873}, {"name": "Michelle Nelson", "id": 2977244}], "links": [{"source": 2451363, "target": 2977244}, {"source": 2451363, "target": 3860340}, {"source": 2439141, "target": 2416591}, {"source": 2439141, "target": 2977244}, {"source": 2664197, "target": 2406873}, {"source": 2664197, "target": 2445687}, {"source": 2577912, "target": 2445687}, {"source": 2577912, "target": 2459089}, {"source": 2664201, "target": 2406873}, {"source": 2493162, "target": 2583377}, {"source": 2493162, "target": 4256208}, {"source": 2467754, "target": 4256208}, {"source": 2416591, "target": 2406873}, {"source": 2459089, "target": 2583377}, {"source": 2445687, "target": 2406873}]}
|
[
2451363,
2417816
] | 2 |
301 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Mr. Omar Adams DDS, Sarah Lawson, Danny Wilson, Stephanie Evans, Heather Hopkins, Stanley Spence, Brian Turner, Sheila Pearson, Jared Johnson, Gina Yates, Alexis Miranda, Roberto Gardner, Christopher Barron, Dalton Payne, Taylor Underwood, Brandon Flores
- Fiendship connections: Mr. Omar Adams DDS to Sarah Lawson, Mr. Omar Adams DDS to Stephanie Evans, Mr. Omar Adams DDS to Stanley Spence, Mr. Omar Adams DDS to Heather Hopkins, Sarah Lawson to Sheila Pearson, Sarah Lawson to Stephanie Evans, Danny Wilson to Jared Johnson, Stanley Spence to Jared Johnson, Brian Turner to Christopher Barron, Brian Turner to Dalton Payne, Brian Turner to Alexis Miranda, Sheila Pearson to Brandon Flores, Gina Yates to Dalton Payne, Alexis Miranda to Christopher Barron, Alexis Miranda to Dalton Payne, Roberto Gardner to Dalton Payne, Christopher Barron to Dalton Payne, Taylor Underwood to Brandon Flores
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Mr. Omar Adams DDS", "id": 2493281}, {"name": "Sarah Lawson", "id": 2493378}, {"name": "Danny Wilson", "id": 2404197}, {"name": "Stephanie Evans", "id": 3043272}, {"name": "Heather Hopkins", "id": 4783245}, {"name": "Stanley Spence", "id": 3591567}, {"name": "Brian Turner", "id": 1380848}, {"name": "Sheila Pearson", "id": 2465841}, {"name": "Jared Johnson", "id": 2437042}, {"name": "Gina Yates", "id": 1035379}, {"name": "Alexis Miranda", "id": 1430388}, {"name": "Roberto Gardner", "id": 1138198}, {"name": "Christopher Barron", "id": 831031}, {"name": "Dalton Payne", "id": 1430360}, {"name": "Taylor Underwood", "id": 2491670}, {"name": "Brandon Flores", "id": 2538559}], "links": [{"source": 2493281, "target": 2493378}, {"source": 2493281, "target": 3043272}, {"source": 2493281, "target": 3591567}, {"source": 2493281, "target": 4783245}, {"source": 2493378, "target": 2465841}, {"source": 2493378, "target": 3043272}, {"source": 2404197, "target": 2437042}, {"source": 3591567, "target": 2437042}, {"source": 1380848, "target": 831031}, {"source": 1380848, "target": 1430360}, {"source": 1380848, "target": 1430388}, {"source": 2465841, "target": 2538559}, {"source": 1035379, "target": 1430360}, {"source": 1430388, "target": 831031}, {"source": 1430388, "target": 1430360}, {"source": 1138198, "target": 1430360}, {"source": 831031, "target": 1430360}, {"source": 2491670, "target": 2538559}]}
|
[
2493281,
1380848
] | 2 |
302 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Dwayne Soto, Kelly Burns, Michael Bailey, Lori Fox, Christopher Rubio MD, Carl Meyers, Robert Stewart, Kathryn Hendricks, Tracy Davis, Michael Thompson, Benjamin Callahan, Richard Mack, Bobby Coleman, Michele Lewis, Stephen Houston, Paul Anthony, Kathy Myers, Rachel Miller
- Fiendship connections: Dwayne Soto to Robert Stewart, Kelly Burns to Stephen Houston, Kelly Burns to Michael Thompson, Kelly Burns to Michele Lewis, Michael Bailey to Robert Stewart, Lori Fox to Stephen Houston, Christopher Rubio MD to Stephen Houston, Christopher Rubio MD to Richard Mack, Christopher Rubio MD to Michael Thompson, Christopher Rubio MD to Bobby Coleman, Carl Meyers to Bobby Coleman, Carl Meyers to Tracy Davis, Carl Meyers to Kathryn Hendricks, Robert Stewart to Kathy Myers, Robert Stewart to Michele Lewis, Robert Stewart to Kathryn Hendricks, Tracy Davis to Richard Mack, Michael Thompson to Stephen Houston, Michael Thompson to Bobby Coleman, Benjamin Callahan to Kathy Myers, Richard Mack to Bobby Coleman, Michele Lewis to Kathy Myers
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Dwayne Soto", "id": 4816640}, {"name": "Kelly Burns", "id": 2427329}, {"name": "Michael Bailey", "id": 4816674}, {"name": "Lori Fox", "id": 4322403}, {"name": "Christopher Rubio MD", "id": 2471294}, {"name": "Carl Meyers", "id": 2458981}, {"name": "Robert Stewart", "id": 2495494}, {"name": "Kathryn Hendricks", "id": 4037670}, {"name": "Tracy Davis", "id": 3213854}, {"name": "Michael Thompson", "id": 2471498}, {"name": "Benjamin Callahan", "id": 2548714}, {"name": "Richard Mack", "id": 2471443}, {"name": "Bobby Coleman", "id": 2548409}, {"name": "Michele Lewis", "id": 3324120}, {"name": "Stephen Houston", "id": 2471417}, {"name": "Paul Anthony", "id": 2406300}, {"name": "Kathy Myers", "id": 2475005}, {"name": "Rachel Miller", "id": 2449310}], "links": [{"source": 4816640, "target": 2495494}, {"source": 2427329, "target": 2471417}, {"source": 2427329, "target": 2471498}, {"source": 2427329, "target": 3324120}, {"source": 4816674, "target": 2495494}, {"source": 4322403, "target": 2471417}, {"source": 2471294, "target": 2471417}, {"source": 2471294, "target": 2471443}, {"source": 2471294, "target": 2471498}, {"source": 2471294, "target": 2548409}, {"source": 2458981, "target": 2548409}, {"source": 2458981, "target": 3213854}, {"source": 2458981, "target": 4037670}, {"source": 2495494, "target": 2475005}, {"source": 2495494, "target": 3324120}, {"source": 2495494, "target": 4037670}, {"source": 3213854, "target": 2471443}, {"source": 2471498, "target": 2471417}, {"source": 2471498, "target": 2548409}, {"source": 2548714, "target": 2475005}, {"source": 2471443, "target": 2548409}, {"source": 3324120, "target": 2475005}]}
|
[
4816640,
2406300,
2449310
] | 3 |
303 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Brandy Snow, Christina Rodriguez, Jessica Salazar, Kyle Griffith, Jeffrey Jones, Michael Williams, Kelly James, Matthew Kelly, Laura Johnson, Sara Rogers, Jonathan Page, Ryan Casey, Melanie Lopez, Carolyn Conrad, Brian Willis
- Fiendship connections: Christina Rodriguez to Brian Willis, Christina Rodriguez to Jonathan Page, Jessica Salazar to Carolyn Conrad, Jessica Salazar to Melanie Lopez, Kyle Griffith to Kelly James, Jeffrey Jones to Laura Johnson, Jeffrey Jones to Matthew Kelly, Jeffrey Jones to Michael Williams, Michael Williams to Ryan Casey, Kelly James to Sara Rogers
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Brandy Snow", "id": 2482944}, {"name": "Christina Rodriguez", "id": 5108609}, {"name": "Jessica Salazar", "id": 2502146}, {"name": "Kyle Griffith", "id": 2346467}, {"name": "Jeffrey Jones", "id": 237861}, {"name": "Michael Williams", "id": 509190}, {"name": "Kelly James", "id": 1900776}, {"name": "Matthew Kelly", "id": 479561}, {"name": "Laura Johnson", "id": 68972}, {"name": "Sara Rogers", "id": 994764}, {"name": "Jonathan Page", "id": 5018607}, {"name": "Ryan Casey", "id": 116401}, {"name": "Melanie Lopez", "id": 4914676}, {"name": "Carolyn Conrad", "id": 2502134}, {"name": "Brian Willis", "id": 4984607}], "links": [{"source": 5108609, "target": 4984607}, {"source": 5108609, "target": 5018607}, {"source": 2502146, "target": 2502134}, {"source": 2502146, "target": 4914676}, {"source": 2346467, "target": 1900776}, {"source": 237861, "target": 68972}, {"source": 237861, "target": 479561}, {"source": 237861, "target": 509190}, {"source": 509190, "target": 116401}, {"source": 1900776, "target": 994764}]}
|
[
2482944,
5108609,
2502146,
1900776,
237861
] | 5 |
304 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Lindsay Young, Patricia Duran, Mary Arias DVM, Madison Rivera, Jennifer Mcclain, Jessica Brooks, Carolyn Boone, Sarah Cunningham, Jennifer Avery, Joan Shields, Jesse Williams, Corey Haynes, Susan Miller, Nathan Andrews, Theresa Doyle, Aaron Simmons, Annette Lee, Tabitha Smith, Brittany Guzman, Michele Holt, Melissa Lee, Luis Chung, Mary Trevino, Alyssa Alvarez, Jamie Richards, Wendy Wise
- Fiendship connections: Lindsay Young to Theresa Doyle, Patricia Duran to Tabitha Smith, Patricia Duran to Aaron Simmons, Patricia Duran to Brittany Guzman, Mary Arias DVM to Jennifer Mcclain, Mary Arias DVM to Wendy Wise, Madison Rivera to Carolyn Boone, Jennifer Mcclain to Jesse Williams, Jennifer Mcclain to Sarah Cunningham, Jennifer Mcclain to Jessica Brooks, Jennifer Mcclain to Wendy Wise, Jennifer Avery to Theresa Doyle, Joan Shields to Annette Lee, Susan Miller to Annette Lee, Nathan Andrews to Mary Trevino, Theresa Doyle to Jamie Richards, Aaron Simmons to Alyssa Alvarez, Aaron Simmons to Brittany Guzman, Aaron Simmons to Melissa Lee, Brittany Guzman to Alyssa Alvarez
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Lindsay Young", "id": 1242231}, {"name": "Patricia Duran", "id": 2416789}, {"name": "Mary Arias DVM", "id": 5032857}, {"name": "Madison Rivera", "id": 614555}, {"name": "Jennifer Mcclain", "id": 4961188}, {"name": "Jessica Brooks", "id": 5220264}, {"name": "Carolyn Boone", "id": 50987}, {"name": "Sarah Cunningham", "id": 5059769}, {"name": "Jennifer Avery", "id": 1034813}, {"name": "Joan Shields", "id": 2493119}, {"name": "Jesse Williams", "id": 5435988}, {"name": "Corey Haynes", "id": 2460506}, {"name": "Susan Miller", "id": 2463323}, {"name": "Nathan Andrews", "id": 2426851}, {"name": "Theresa Doyle", "id": 1492580}, {"name": "Aaron Simmons", "id": 2450663}, {"name": "Annette Lee", "id": 2656489}, {"name": "Tabitha Smith", "id": 2426089}, {"name": "Brittany Guzman", "id": 2450672}, {"name": "Michele Holt", "id": 2404849}, {"name": "Melissa Lee", "id": 3850354}, {"name": "Luis Chung", "id": 4947826}, {"name": "Mary Trevino", "id": 3307636}, {"name": "Alyssa Alvarez", "id": 2404087}, {"name": "Jamie Richards", "id": 1554809}, {"name": "Wendy Wise", "id": 5136381}], "links": [{"source": 1242231, "target": 1492580}, {"source": 2416789, "target": 2426089}, {"source": 2416789, "target": 2450663}, {"source": 2416789, "target": 2450672}, {"source": 5032857, "target": 4961188}, {"source": 5032857, "target": 5136381}, {"source": 614555, "target": 50987}, {"source": 4961188, "target": 5435988}, {"source": 4961188, "target": 5059769}, {"source": 4961188, "target": 5220264}, {"source": 4961188, "target": 5136381}, {"source": 1034813, "target": 1492580}, {"source": 2493119, "target": 2656489}, {"source": 2463323, "target": 2656489}, {"source": 2426851, "target": 3307636}, {"source": 1492580, "target": 1554809}, {"source": 2450663, "target": 2404087}, {"source": 2450663, "target": 2450672}, {"source": 2450663, "target": 3850354}, {"source": 2450672, "target": 2404087}]}
|
[
1554809,
2450663,
5059769,
50987,
2656489,
2460506,
2426851,
2404849,
4947826
] | 9 |
305 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Jonathan Johnson, Emily Stark MD, Manuel Oneill, Gregg Smith, Carol Lopez, Jared Perez, Andrew Johnson, Timothy Jennings, Megan Hunt, James Roberson, Heather Taylor, Brittany Snyder, Steve Ramsey, Christopher Brooks, Claudia Pierce, Charles Bauer, Eric Smith, Julie Pratt, Hunter Khan, Regina Henderson, Kenneth Scott, Marissa Cohen, Michael Raymond, Michelle Reed
- Fiendship connections: Jonathan Johnson to Gregg Smith, Jonathan Johnson to Emily Stark MD, Emily Stark MD to Claudia Pierce, Manuel Oneill to Gregg Smith, Gregg Smith to Jared Perez, Carol Lopez to Christopher Brooks, Carol Lopez to Eric Smith, Andrew Johnson to Christopher Brooks, Timothy Jennings to Christopher Brooks, Megan Hunt to Christopher Brooks, James Roberson to Christopher Brooks, Heather Taylor to Christopher Brooks, Brittany Snyder to Christopher Brooks, Steve Ramsey to Christopher Brooks, Charles Bauer to Marissa Cohen, Kenneth Scott to Michelle Reed, Kenneth Scott to Michael Raymond, Michael Raymond to Michelle Reed
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Jonathan Johnson", "id": 2093826}, {"name": "Emily Stark MD", "id": 1994115}, {"name": "Manuel Oneill", "id": 1170052}, {"name": "Gregg Smith", "id": 1076616}, {"name": "Carol Lopez", "id": 3607821}, {"name": "Jared Perez", "id": 925325}, {"name": "Andrew Johnson", "id": 3607823}, {"name": "Timothy Jennings", "id": 3607824}, {"name": "Megan Hunt", "id": 3607825}, {"name": "James Roberson", "id": 3607826}, {"name": "Heather Taylor", "id": 3607827}, {"name": "Brittany Snyder", "id": 3607828}, {"name": "Steve Ramsey", "id": 3607829}, {"name": "Christopher Brooks", "id": 2438299}, {"name": "Claudia Pierce", "id": 1055775}, {"name": "Charles Bauer", "id": 1018029}, {"name": "Eric Smith", "id": 2439226}, {"name": "Julie Pratt", "id": 2458939}, {"name": "Hunter Khan", "id": 2438208}, {"name": "Regina Henderson", "id": 1013578}, {"name": "Kenneth Scott", "id": 1318479}, {"name": "Marissa Cohen", "id": 891478}, {"name": "Michael Raymond", "id": 1330529}, {"name": "Michelle Reed", "id": 1199721}], "links": [{"source": 2093826, "target": 1076616}, {"source": 2093826, "target": 1994115}, {"source": 1994115, "target": 1055775}, {"source": 1170052, "target": 1076616}, {"source": 1076616, "target": 925325}, {"source": 3607821, "target": 2438299}, {"source": 3607821, "target": 2439226}, {"source": 3607823, "target": 2438299}, {"source": 3607824, "target": 2438299}, {"source": 3607825, "target": 2438299}, {"source": 3607826, "target": 2438299}, {"source": 3607827, "target": 2438299}, {"source": 3607828, "target": 2438299}, {"source": 3607829, "target": 2438299}, {"source": 1018029, "target": 891478}, {"source": 1318479, "target": 1199721}, {"source": 1318479, "target": 1330529}, {"source": 1330529, "target": 1199721}]}
|
[
2093826,
3607821,
1018029,
2458939,
2438208,
1013578,
1199721
] | 7 |
306 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Chad Moore, Lauren Sullivan, Janice Anderson, Daniel Campos, Melissa Davis, Alexander Orozco II, Matthew Mccullough, Mr. Adam Coffey III, Betty Gray, Richard Price, Michael Hamilton, Theresa Brock, Robert Johnson, Brandon Chang, Sean Faulkner, Diana Wilson, Katie Chapman
- Fiendship connections: Chad Moore to Lauren Sullivan, Lauren Sullivan to Daniel Campos, Lauren Sullivan to Sean Faulkner, Lauren Sullivan to Robert Johnson, Lauren Sullivan to Diana Wilson, Lauren Sullivan to Janice Anderson, Lauren Sullivan to Betty Gray, Melissa Davis to Katie Chapman, Alexander Orozco II to Brandon Chang, Alexander Orozco II to Robert Johnson, Alexander Orozco II to Richard Price, Mr. Adam Coffey III to Katie Chapman, Mr. Adam Coffey III to Brandon Chang, Theresa Brock to Sean Faulkner
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Chad Moore", "id": 3250817}, {"name": "Lauren Sullivan", "id": 2454914}, {"name": "Janice Anderson", "id": 3950467}, {"name": "Daniel Campos", "id": 2473978}, {"name": "Melissa Davis", "id": 2494949}, {"name": "Alexander Orozco II", "id": 2472678}, {"name": "Matthew Mccullough", "id": 2457736}, {"name": "Mr. Adam Coffey III", "id": 2417628}, {"name": "Betty Gray", "id": 3950477}, {"name": "Richard Price", "id": 4384943}, {"name": "Michael Hamilton", "id": 2493232}, {"name": "Theresa Brock", "id": 2447570}, {"name": "Robert Johnson", "id": 3950163}, {"name": "Brandon Chang", "id": 2973111}, {"name": "Sean Faulkner", "id": 3060762}, {"name": "Diana Wilson", "id": 3950204}, {"name": "Katie Chapman", "id": 2973086}], "links": [{"source": 3250817, "target": 2454914}, {"source": 2454914, "target": 2473978}, {"source": 2454914, "target": 3060762}, {"source": 2454914, "target": 3950163}, {"source": 2454914, "target": 3950204}, {"source": 2454914, "target": 3950467}, {"source": 2454914, "target": 3950477}, {"source": 2494949, "target": 2973086}, {"source": 2472678, "target": 2973111}, {"source": 2472678, "target": 3950163}, {"source": 2472678, "target": 4384943}, {"source": 2417628, "target": 2973086}, {"source": 2417628, "target": 2973111}, {"source": 2447570, "target": 3060762}]}
|
[
3250817,
2457736,
2493232
] | 3 |
307 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Larry Herrera, Michael Johnson, Julia Alexander, John Underwood, Ashlee Smith, Sean Schwartz, Julie Smith, Lisa Jones, Juan Gonzalez, Jordan Bernard, Veronica Hayes, Toni Morgan, Pamela Mitchell, Chad Estrada, Jordan Hernandez, John Hopkins, Michael Vazquez MD, Kimberly Wheeler, Tracy Rosario, Jordan Herrera, Sydney Curry, Taylor Robles
- Fiendship connections: Larry Herrera to Taylor Robles, Larry Herrera to Sydney Curry, Michael Johnson to Juan Gonzalez, Michael Johnson to Julia Alexander, Julia Alexander to Taylor Robles, Julia Alexander to Julie Smith, John Underwood to Sean Schwartz, John Underwood to Pamela Mitchell, John Underwood to Ashlee Smith, Sean Schwartz to Veronica Hayes, Lisa Jones to Veronica Hayes, Lisa Jones to Jordan Hernandez, Juan Gonzalez to Taylor Robles, Jordan Bernard to Toni Morgan, Veronica Hayes to Sydney Curry, Toni Morgan to Kimberly Wheeler, Toni Morgan to Jordan Hernandez, Toni Morgan to Pamela Mitchell, Toni Morgan to Taylor Robles, Pamela Mitchell to Chad Estrada, John Hopkins to Jordan Herrera, John Hopkins to Michael Vazquez MD, Michael Vazquez MD to Taylor Robles, Michael Vazquez MD to Jordan Herrera, Michael Vazquez MD to Kimberly Wheeler, Tracy Rosario to Jordan Herrera
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Larry Herrera", "id": 192129}, {"name": "Michael Johnson", "id": 4615}, {"name": "Julia Alexander", "id": 23047}, {"name": "John Underwood", "id": 316683}, {"name": "Ashlee Smith", "id": 316684}, {"name": "Sean Schwartz", "id": 2709}, {"name": "Julie Smith", "id": 419865}, {"name": "Lisa Jones", "id": 94747}, {"name": "Juan Gonzalez", "id": 31011}, {"name": "Jordan Bernard", "id": 3492}, {"name": "Veronica Hayes", "id": 10533}, {"name": "Toni Morgan", "id": 941}, {"name": "Pamela Mitchell", "id": 316462}, {"name": "Chad Estrada", "id": 316463}, {"name": "Jordan Hernandez", "id": 109999}, {"name": "John Hopkins", "id": 26686}, {"name": "Michael Vazquez MD", "id": 6602}, {"name": "Kimberly Wheeler", "id": 71759}, {"name": "Tracy Rosario", "id": 47826}, {"name": "Jordan Herrera", "id": 6235}, {"name": "Sydney Curry", "id": 31731}, {"name": "Taylor Robles", "id": 4602}], "links": [{"source": 192129, "target": 4602}, {"source": 192129, "target": 31731}, {"source": 4615, "target": 31011}, {"source": 4615, "target": 23047}, {"source": 23047, "target": 4602}, {"source": 23047, "target": 419865}, {"source": 316683, "target": 2709}, {"source": 316683, "target": 316462}, {"source": 316683, "target": 316684}, {"source": 2709, "target": 10533}, {"source": 94747, "target": 10533}, {"source": 94747, "target": 109999}, {"source": 31011, "target": 4602}, {"source": 3492, "target": 941}, {"source": 10533, "target": 31731}, {"source": 941, "target": 71759}, {"source": 941, "target": 109999}, {"source": 941, "target": 316462}, {"source": 941, "target": 4602}, {"source": 316462, "target": 316463}, {"source": 26686, "target": 6235}, {"source": 26686, "target": 6602}, {"source": 6602, "target": 4602}, {"source": 6602, "target": 6235}, {"source": 6602, "target": 71759}, {"source": 47826, "target": 6235}]}
|
[
192129
] | 1 |
308 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Michele Fitzgerald, Sherri Ward, Tim Orozco, Jasmine Holmes, Hannah Schroeder, Christopher Edwards, Mary Welch, Sandra Vargas, Kyle Mcdonald, Karen Kramer, Catherine Cooper, Dr. Margaret Santos, Natalie Pierce, Rebecca Hall, Bryan Warner, Carl Gregory, Tristan Shannon, Jennifer Underwood, Nathaniel Washington, Michelle Campbell, Jill Phillips, Holly Harris
- Fiendship connections: Michele Fitzgerald to Kyle Mcdonald, Sherri Ward to Kyle Mcdonald, Tim Orozco to Kyle Mcdonald, Jasmine Holmes to Mary Welch, Hannah Schroeder to Nathaniel Washington, Hannah Schroeder to Holly Harris, Christopher Edwards to Kyle Mcdonald, Mary Welch to Jennifer Underwood, Kyle Mcdonald to Rebecca Hall, Karen Kramer to Jill Phillips, Karen Kramer to Carl Gregory, Dr. Margaret Santos to Jennifer Underwood, Bryan Warner to Michelle Campbell, Jennifer Underwood to Michelle Campbell
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Michele Fitzgerald", "id": 2460290}, {"name": "Sherri Ward", "id": 2633219}, {"name": "Tim Orozco", "id": 2633224}, {"name": "Jasmine Holmes", "id": 1113736}, {"name": "Hannah Schroeder", "id": 5755402}, {"name": "Christopher Edwards", "id": 2633226}, {"name": "Mary Welch", "id": 1369613}, {"name": "Sandra Vargas", "id": 4929300}, {"name": "Kyle Mcdonald", "id": 2406425}, {"name": "Karen Kramer", "id": 960929}, {"name": "Catherine Cooper", "id": 844197}, {"name": "Dr. Margaret Santos", "id": 1731120}, {"name": "Natalie Pierce", "id": 1424440}, {"name": "Rebecca Hall", "id": 2502462}, {"name": "Bryan Warner", "id": 1000526}, {"name": "Carl Gregory", "id": 1539540}, {"name": "Tristan Shannon", "id": 2455512}, {"name": "Jennifer Underwood", "id": 1075546}, {"name": "Nathaniel Washington", "id": 5169762}, {"name": "Michelle Campbell", "id": 828516}, {"name": "Jill Phillips", "id": 837355}, {"name": "Holly Harris", "id": 5353198}], "links": [{"source": 2460290, "target": 2406425}, {"source": 2633219, "target": 2406425}, {"source": 2633224, "target": 2406425}, {"source": 1113736, "target": 1369613}, {"source": 5755402, "target": 5169762}, {"source": 5755402, "target": 5353198}, {"source": 2633226, "target": 2406425}, {"source": 1369613, "target": 1075546}, {"source": 2406425, "target": 2502462}, {"source": 960929, "target": 837355}, {"source": 960929, "target": 1539540}, {"source": 1731120, "target": 1075546}, {"source": 1000526, "target": 828516}, {"source": 1075546, "target": 828516}]}
|
[
2460290,
828516,
5755402,
4929300,
960929,
844197,
1424440,
2455512
] | 8 |
309 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Charlene James, Karen Patterson, Juan Osborn, Benjamin Ramos, Andre Wells, Matthew Bradshaw, Lisa Day, Terry Luna, Dakota Green, Johnny Mack, Holly Watson, Krystal Adams, Faith Vega, Aaron Hart, Brian Morgan, Kimberly Haas, David Rivera
- Fiendship connections: Charlene James to Karen Patterson, Karen Patterson to Kimberly Haas, Karen Patterson to Benjamin Ramos, Karen Patterson to David Rivera, Karen Patterson to Juan Osborn, Karen Patterson to Andre Wells, Karen Patterson to Matthew Bradshaw, Karen Patterson to Lisa Day, Karen Patterson to Terry Luna, Karen Patterson to Dakota Green, Karen Patterson to Johnny Mack, Karen Patterson to Holly Watson, Karen Patterson to Krystal Adams, Karen Patterson to Faith Vega, Karen Patterson to Aaron Hart, Karen Patterson to Brian Morgan
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Charlene James", "id": 4942464}, {"name": "Karen Patterson", "id": 5818725}, {"name": "Juan Osborn", "id": 5846312}, {"name": "Benjamin Ramos", "id": 5252008}, {"name": "Andre Wells", "id": 5846314}, {"name": "Matthew Bradshaw", "id": 5846315}, {"name": "Lisa Day", "id": 5846317}, {"name": "Terry Luna", "id": 5846318}, {"name": "Dakota Green", "id": 5846319}, {"name": "Johnny Mack", "id": 5846321}, {"name": "Holly Watson", "id": 5846322}, {"name": "Krystal Adams", "id": 5846323}, {"name": "Faith Vega", "id": 5846324}, {"name": "Aaron Hart", "id": 5846325}, {"name": "Brian Morgan", "id": 5846327}, {"name": "Kimberly Haas", "id": 4928920}, {"name": "David Rivera", "id": 5538810}], "links": [{"source": 4942464, "target": 5818725}, {"source": 5818725, "target": 4928920}, {"source": 5818725, "target": 5252008}, {"source": 5818725, "target": 5538810}, {"source": 5818725, "target": 5846312}, {"source": 5818725, "target": 5846314}, {"source": 5818725, "target": 5846315}, {"source": 5818725, "target": 5846317}, {"source": 5818725, "target": 5846318}, {"source": 5818725, "target": 5846319}, {"source": 5818725, "target": 5846321}, {"source": 5818725, "target": 5846322}, {"source": 5818725, "target": 5846323}, {"source": 5818725, "target": 5846324}, {"source": 5818725, "target": 5846325}, {"source": 5818725, "target": 5846327}]}
|
[
4942464
] | 1 |
310 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Christina Murphy, Rachel Clark, Joseph Williams, William Kelley, Jason Weeks, Andrew Gould, Bradley Garner, Crystal Lucas, John Sullivan, Marc Durham, Sally Welch, Taylor Howard, Kenneth Martinez, Michele Perry, Chelsea King, Bonnie Hernandez, Erica Pope, Philip Baker
- Fiendship connections: Rachel Clark to John Sullivan, William Kelley to Marc Durham, Jason Weeks to Sally Welch, Andrew Gould to John Sullivan, John Sullivan to Philip Baker, John Sullivan to Erica Pope, John Sullivan to Sally Welch
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Christina Murphy", "id": 5640609}, {"name": "Rachel Clark", "id": 5020964}, {"name": "Joseph Williams", "id": 5603908}, {"name": "William Kelley", "id": 5878118}, {"name": "Jason Weeks", "id": 4930021}, {"name": "Andrew Gould", "id": 5020008}, {"name": "Bradley Garner", "id": 5410953}, {"name": "Crystal Lucas", "id": 861034}, {"name": "John Sullivan", "id": 5108619}, {"name": "Marc Durham", "id": 5079116}, {"name": "Sally Welch", "id": 5377066}, {"name": "Taylor Howard", "id": 5079656}, {"name": "Kenneth Martinez", "id": 5261169}, {"name": "Michele Perry", "id": 5257207}, {"name": "Chelsea King", "id": 5130264}, {"name": "Bonnie Hernandez", "id": 4979961}, {"name": "Erica Pope", "id": 5029274}, {"name": "Philip Baker", "id": 4999837}], "links": [{"source": 5020964, "target": 5108619}, {"source": 5878118, "target": 5079116}, {"source": 4930021, "target": 5377066}, {"source": 5020008, "target": 5108619}, {"source": 5108619, "target": 4999837}, {"source": 5108619, "target": 5029274}, {"source": 5108619, "target": 5377066}]}
|
[
5640609,
5020964,
5603908,
5079116,
5410953,
861034,
5079656,
5261169,
5257207,
5130264,
4979961
] | 11 |
311 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Cindy Collins, Anthony Black, Patrick Salas, Nicole Duran, Jimmy Jones, Lori Shaffer, Brian Anderson, Tiffany Nicholson, Miss Diane Dillon MD, Matthew Andrews, Corey Brooks, Cynthia Gonzalez, Jason Brown, John Lee, Katie Orr
- Fiendship connections: Cindy Collins to Tiffany Nicholson, Anthony Black to Katie Orr, Anthony Black to Jason Brown, Patrick Salas to Cynthia Gonzalez, Patrick Salas to Jason Brown, Nicole Duran to John Lee, Nicole Duran to Miss Diane Dillon MD, Nicole Duran to Brian Anderson, Jimmy Jones to Tiffany Nicholson, Lori Shaffer to Matthew Andrews, Lori Shaffer to Miss Diane Dillon MD, Tiffany Nicholson to Corey Brooks, Tiffany Nicholson to Matthew Andrews, Cynthia Gonzalez to John Lee
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Cindy Collins", "id": 4133762}, {"name": "Anthony Black", "id": 2528292}, {"name": "Patrick Salas", "id": 4189125}, {"name": "Nicole Duran", "id": 2482376}, {"name": "Jimmy Jones", "id": 4133740}, {"name": "Lori Shaffer", "id": 2473614}, {"name": "Brian Anderson", "id": 4639216}, {"name": "Tiffany Nicholson", "id": 2462353}, {"name": "Miss Diane Dillon MD", "id": 4343827}, {"name": "Matthew Andrews", "id": 4133716}, {"name": "Corey Brooks", "id": 3351220}, {"name": "Cynthia Gonzalez", "id": 2480084}, {"name": "Jason Brown", "id": 2480117}, {"name": "John Lee", "id": 3737373}, {"name": "Katie Orr", "id": 2417790}], "links": [{"source": 4133762, "target": 2462353}, {"source": 2528292, "target": 2417790}, {"source": 2528292, "target": 2480117}, {"source": 4189125, "target": 2480084}, {"source": 4189125, "target": 2480117}, {"source": 2482376, "target": 3737373}, {"source": 2482376, "target": 4343827}, {"source": 2482376, "target": 4639216}, {"source": 4133740, "target": 2462353}, {"source": 2473614, "target": 4133716}, {"source": 2473614, "target": 4343827}, {"source": 2462353, "target": 3351220}, {"source": 2462353, "target": 4133716}, {"source": 2480084, "target": 3737373}]}
|
[
4133762
] | 1 |
312 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Ashley Coleman, Jessica Gordon, Joseph Smith, Richard King, John Fleming, Jennifer Johnson, Dr. Kelly Cline, Mary Garcia, Jacqueline Anderson, Ryan Robinson, Maria Reed, Austin Williams, Barbara Vargas, Patrick Walton, Thomas Harper, Brittany Carpenter, Elizabeth Bush, Jonathan Sanders, Ashley Harvey
- Fiendship connections: Ashley Coleman to Patrick Walton, Ashley Coleman to Thomas Harper, Jessica Gordon to Richard King, Richard King to Jonathan Sanders, Richard King to Jacqueline Anderson, Richard King to John Fleming, John Fleming to Jacqueline Anderson, John Fleming to Mary Garcia, Jennifer Johnson to Ryan Robinson, Jennifer Johnson to Dr. Kelly Cline, Dr. Kelly Cline to Elizabeth Bush, Dr. Kelly Cline to Thomas Harper, Maria Reed to Barbara Vargas, Austin Williams to Thomas Harper
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Ashley Coleman", "id": 5243397}, {"name": "Jessica Gordon", "id": 5074960}, {"name": "Joseph Smith", "id": 5075861}, {"name": "Richard King", "id": 5573150}, {"name": "John Fleming", "id": 5678372}, {"name": "Jennifer Johnson", "id": 5381929}, {"name": "Dr. Kelly Cline", "id": 5381930}, {"name": "Mary Garcia", "id": 5678380}, {"name": "Jacqueline Anderson", "id": 4942139}, {"name": "Ryan Robinson", "id": 5017414}, {"name": "Maria Reed", "id": 4964295}, {"name": "Austin Williams", "id": 5859783}, {"name": "Barbara Vargas", "id": 4964298}, {"name": "Patrick Walton", "id": 4929884}, {"name": "Thomas Harper", "id": 5096674}, {"name": "Brittany Carpenter", "id": 4973795}, {"name": "Elizabeth Bush", "id": 4962662}, {"name": "Jonathan Sanders", "id": 4933498}, {"name": "Ashley Harvey", "id": 5870335}], "links": [{"source": 5243397, "target": 4929884}, {"source": 5243397, "target": 5096674}, {"source": 5074960, "target": 5573150}, {"source": 5573150, "target": 4933498}, {"source": 5573150, "target": 4942139}, {"source": 5573150, "target": 5678372}, {"source": 5678372, "target": 4942139}, {"source": 5678372, "target": 5678380}, {"source": 5381929, "target": 5017414}, {"source": 5381929, "target": 5381930}, {"source": 5381930, "target": 4962662}, {"source": 5381930, "target": 5096674}, {"source": 4964295, "target": 4964298}, {"source": 5859783, "target": 5096674}]}
|
[
5096674,
5678372,
5075861,
4964298,
4973795,
5870335
] | 6 |
313 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Scott Mckenzie, Brittany Griffin, Bethany Brown, Ryan Cruz, Tracey Gillespie, Carolyn Gutierrez, Dr. Amanda Campbell, Michael Rodriguez MD, Charlene Becker, Evan Hayes, John Cruz, Ronald Hudson, Nathaniel Aguirre, Lauren Clark, Melody Cruz, Randy Frank, Jason White, Luke Smith, Grant Anderson, Joshua White
- Fiendship connections: Scott Mckenzie to Bethany Brown, Brittany Griffin to Dr. Amanda Campbell, Brittany Griffin to Evan Hayes, Brittany Griffin to John Cruz, Ryan Cruz to Evan Hayes, Ryan Cruz to Joshua White, Ryan Cruz to Randy Frank, Carolyn Gutierrez to Charlene Becker, Dr. Amanda Campbell to Evan Hayes, Michael Rodriguez MD to Evan Hayes, Charlene Becker to Jason White, Charlene Becker to Luke Smith, Charlene Becker to Ronald Hudson, Evan Hayes to John Cruz, Evan Hayes to Randy Frank, Evan Hayes to Joshua White, Lauren Clark to Randy Frank, Melody Cruz to Jason White, Randy Frank to Joshua White, Jason White to Luke Smith
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Scott Mckenzie", "id": 5029511}, {"name": "Brittany Griffin", "id": 993941}, {"name": "Bethany Brown", "id": 5624090}, {"name": "Ryan Cruz", "id": 1974940}, {"name": "Tracey Gillespie", "id": 4929187}, {"name": "Carolyn Gutierrez", "id": 4989605}, {"name": "Dr. Amanda Campbell", "id": 1045423}, {"name": "Michael Rodriguez MD", "id": 1290162}, {"name": "Charlene Becker", "id": 5310390}, {"name": "Evan Hayes", "id": 1045432}, {"name": "John Cruz", "id": 1007295}, {"name": "Ronald Hudson", "id": 5902408}, {"name": "Nathaniel Aguirre", "id": 4945871}, {"name": "Lauren Clark", "id": 1678161}, {"name": "Melody Cruz", "id": 5002068}, {"name": "Randy Frank", "id": 1416053}, {"name": "Jason White", "id": 4958837}, {"name": "Luke Smith", "id": 5492733}, {"name": "Grant Anderson", "id": 5045246}, {"name": "Joshua White", "id": 1092991}], "links": [{"source": 5029511, "target": 5624090}, {"source": 993941, "target": 1045423}, {"source": 993941, "target": 1045432}, {"source": 993941, "target": 1007295}, {"source": 1974940, "target": 1045432}, {"source": 1974940, "target": 1092991}, {"source": 1974940, "target": 1416053}, {"source": 4989605, "target": 5310390}, {"source": 1045423, "target": 1045432}, {"source": 1290162, "target": 1045432}, {"source": 5310390, "target": 4958837}, {"source": 5310390, "target": 5492733}, {"source": 5310390, "target": 5902408}, {"source": 1045432, "target": 1007295}, {"source": 1045432, "target": 1416053}, {"source": 1045432, "target": 1092991}, {"source": 1678161, "target": 1416053}, {"source": 5002068, "target": 4958837}, {"source": 1416053, "target": 1092991}, {"source": 4958837, "target": 5492733}]}
|
[
5624090,
1092991,
4929187,
4989605,
4945871,
5045246
] | 6 |
314 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Steven Pitts, Jennifer Carey, Marie Silva, Ashley Stewart, Julia Gomez, Joseph Hernandez, Joshua Smith, Robin Sanchez, Andre Wilson, Derek Riddle, Debra Reynolds, Thomas Prince, James Mueller MD, Dr. Tim Alvarado, Adam Tanner, Russell Nguyen, Mary Hale, Parker Park
- Fiendship connections: Steven Pitts to Julia Gomez, Steven Pitts to Russell Nguyen, Steven Pitts to Parker Park, Jennifer Carey to Joshua Smith, Marie Silva to Joseph Hernandez, Ashley Stewart to Andre Wilson, Ashley Stewart to Parker Park, Julia Gomez to Andre Wilson, Julia Gomez to Parker Park, Joshua Smith to Debra Reynolds, Robin Sanchez to Derek Riddle, Andre Wilson to Parker Park, Derek Riddle to Mary Hale, Debra Reynolds to James Mueller MD, Thomas Prince to Parker Park
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Steven Pitts", "id": 1424543}, {"name": "Jennifer Carey", "id": 2478593}, {"name": "Marie Silva", "id": 3307429}, {"name": "Ashley Stewart", "id": 1206470}, {"name": "Julia Gomez", "id": 1619735}, {"name": "Joseph Hernandez", "id": 2428333}, {"name": "Joshua Smith", "id": 2634832}, {"name": "Robin Sanchez", "id": 819024}, {"name": "Andre Wilson", "id": 1375025}, {"name": "Derek Riddle", "id": 1509171}, {"name": "Debra Reynolds", "id": 2450163}, {"name": "Thomas Prince", "id": 1333747}, {"name": "James Mueller MD", "id": 3846838}, {"name": "Dr. Tim Alvarado", "id": 2433459}, {"name": "Adam Tanner", "id": 2495518}, {"name": "Russell Nguyen", "id": 1665531}, {"name": "Mary Hale", "id": 1312830}, {"name": "Parker Park", "id": 2119647}], "links": [{"source": 1424543, "target": 1619735}, {"source": 1424543, "target": 1665531}, {"source": 1424543, "target": 2119647}, {"source": 2478593, "target": 2634832}, {"source": 3307429, "target": 2428333}, {"source": 1206470, "target": 1375025}, {"source": 1206470, "target": 2119647}, {"source": 1619735, "target": 1375025}, {"source": 1619735, "target": 2119647}, {"source": 2634832, "target": 2450163}, {"source": 819024, "target": 1509171}, {"source": 1375025, "target": 2119647}, {"source": 1509171, "target": 1312830}, {"source": 2450163, "target": 3846838}, {"source": 1333747, "target": 2119647}]}
|
[
1424543,
2634832,
3307429,
819024,
2433459,
2495518
] | 6 |
315 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Elijah Larson, Brandon Walters, David Thomas, Paul Burgess, Jennifer Johnson, Dr. Kelly Cline, Jennifer Russell, Jeffrey Webb, Adam Hayden, Jodi Ruiz, Ryan Robinson, Edward Campbell, Michael Welch, Thomas Harper, Elizabeth Bush, Tyler Bailey, Nina Garcia, Eric Johnson, Deanna Gonzales
- Fiendship connections: Elijah Larson to Eric Johnson, Brandon Walters to Tyler Bailey, David Thomas to Michael Welch, David Thomas to Jennifer Russell, Jennifer Johnson to Ryan Robinson, Jennifer Johnson to Dr. Kelly Cline, Dr. Kelly Cline to Elizabeth Bush, Dr. Kelly Cline to Thomas Harper, Jennifer Russell to Jodi Ruiz, Jennifer Russell to Michael Welch, Jeffrey Webb to Eric Johnson, Adam Hayden to Ryan Robinson, Edward Campbell to Michael Welch
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Elijah Larson", "id": 5346688}, {"name": "Brandon Walters", "id": 5317768}, {"name": "David Thomas", "id": 1094924}, {"name": "Paul Burgess", "id": 1006748}, {"name": "Jennifer Johnson", "id": 5381929}, {"name": "Dr. Kelly Cline", "id": 5381930}, {"name": "Jennifer Russell", "id": 1571248}, {"name": "Jeffrey Webb", "id": 5346362}, {"name": "Adam Hayden", "id": 5982011}, {"name": "Jodi Ruiz", "id": 937659}, {"name": "Ryan Robinson", "id": 5017414}, {"name": "Edward Campbell", "id": 1263437}, {"name": "Michael Welch", "id": 1236050}, {"name": "Thomas Harper", "id": 5096674}, {"name": "Elizabeth Bush", "id": 4962662}, {"name": "Tyler Bailey", "id": 4931948}, {"name": "Nina Garcia", "id": 5107568}, {"name": "Eric Johnson", "id": 5814646}, {"name": "Deanna Gonzales", "id": 5090431}], "links": [{"source": 5346688, "target": 5814646}, {"source": 5317768, "target": 4931948}, {"source": 1094924, "target": 1236050}, {"source": 1094924, "target": 1571248}, {"source": 5381929, "target": 5017414}, {"source": 5381929, "target": 5381930}, {"source": 5381930, "target": 4962662}, {"source": 5381930, "target": 5096674}, {"source": 1571248, "target": 937659}, {"source": 1571248, "target": 1236050}, {"source": 5346362, "target": 5814646}, {"source": 5982011, "target": 5017414}, {"source": 1263437, "target": 1236050}]}
|
[
5346688,
5317768,
1094924,
1006748,
5096674,
5107568,
5090431
] | 7 |
316 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Nicole Johnson, Heather Washington, Kelsey Garcia, Kylie Summers, Christy Gates, Jesse Compton, Ryan Silva, Adam Sharp, Ann Mills, Michael Murray, Keith Skinner, Mary Mcmillan, Robert Cain, Mary Jackson, Kelly White, Rebecca Collins
- Fiendship connections: Nicole Johnson to Heather Washington, Kelsey Garcia to Mary Mcmillan, Kylie Summers to Kelly White, Kylie Summers to Keith Skinner, Christy Gates to Robert Cain, Christy Gates to Keith Skinner, Jesse Compton to Ann Mills, Jesse Compton to Mary Mcmillan, Jesse Compton to Mary Jackson, Ryan Silva to Mary Mcmillan, Ann Mills to Mary Mcmillan, Keith Skinner to Robert Cain, Mary Mcmillan to Mary Jackson
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Nicole Johnson", "id": 2495328}, {"name": "Heather Washington", "id": 2495362}, {"name": "Kelsey Garcia", "id": 1060098}, {"name": "Kylie Summers", "id": 2940356}, {"name": "Christy Gates", "id": 2415270}, {"name": "Jesse Compton", "id": 950664}, {"name": "Ryan Silva", "id": 1109929}, {"name": "Adam Sharp", "id": 2478732}, {"name": "Ann Mills", "id": 1083629}, {"name": "Michael Murray", "id": 1116108}, {"name": "Keith Skinner", "id": 2451442}, {"name": "Mary Mcmillan", "id": 1591955}, {"name": "Robert Cain", "id": 2408725}, {"name": "Mary Jackson", "id": 1898935}, {"name": "Kelly White", "id": 2416506}, {"name": "Rebecca Collins", "id": 949150}], "links": [{"source": 2495328, "target": 2495362}, {"source": 1060098, "target": 1591955}, {"source": 2940356, "target": 2416506}, {"source": 2940356, "target": 2451442}, {"source": 2415270, "target": 2408725}, {"source": 2415270, "target": 2451442}, {"source": 950664, "target": 1083629}, {"source": 950664, "target": 1591955}, {"source": 950664, "target": 1898935}, {"source": 1109929, "target": 1591955}, {"source": 1083629, "target": 1591955}, {"source": 2451442, "target": 2408725}, {"source": 1591955, "target": 1898935}]}
|
[
2495328,
1060098,
2940356,
2478732,
1116108,
949150
] | 6 |
317 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Amanda Blair, Andrew Blair, Anna Patterson, Randy Mullen, Lisa Jones, Monica Manning, Jamie Khan, Gerald Norris, Jose Glover, Michael Webb, Jacob Davis, James Diaz, Nicholas Hogan, Matthew Martinez, Nicole Hardin, Zachary Short, Mark Aguirre, Anna Mckinney, Sergio Combs, Holly Perry, George Garcia, Gary Avery, Rodney Trujillo
- Fiendship connections: Amanda Blair to James Diaz, Amanda Blair to Zachary Short, Amanda Blair to Holly Perry, Amanda Blair to Andrew Blair, Amanda Blair to Anna Patterson, Amanda Blair to Jamie Khan, Randy Mullen to Gary Avery, Lisa Jones to Gary Avery, Gerald Norris to Gary Avery, Jose Glover to Rodney Trujillo, Michael Webb to Gary Avery, Jacob Davis to Rodney Trujillo, Jacob Davis to George Garcia, Matthew Martinez to Gary Avery, Matthew Martinez to Mark Aguirre, Nicole Hardin to Anna Mckinney, Nicole Hardin to Rodney Trujillo, Anna Mckinney to Rodney Trujillo, Sergio Combs to Gary Avery, George Garcia to Rodney Trujillo
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Amanda Blair", "id": 5641602}, {"name": "Andrew Blair", "id": 5641605}, {"name": "Anna Patterson", "id": 5641606}, {"name": "Randy Mullen", "id": 499591}, {"name": "Lisa Jones", "id": 49800}, {"name": "Monica Manning", "id": 928775}, {"name": "Jamie Khan", "id": 5641607}, {"name": "Gerald Norris", "id": 205191}, {"name": "Jose Glover", "id": 1477391}, {"name": "Michael Webb", "id": 78095}, {"name": "Jacob Davis", "id": 1396126}, {"name": "James Diaz", "id": 4947873}, {"name": "Nicholas Hogan", "id": 1392294}, {"name": "Matthew Martinez", "id": 14376}, {"name": "Nicole Hardin", "id": 1873971}, {"name": "Zachary Short", "id": 4974014}, {"name": "Mark Aguirre", "id": 19907}, {"name": "Anna Mckinney", "id": 1108819}, {"name": "Sergio Combs", "id": 169184}, {"name": "Holly Perry", "id": 5103089}, {"name": "George Garcia", "id": 1981044}, {"name": "Gary Avery", "id": 10365}, {"name": "Rodney Trujillo", "id": 2041086}], "links": [{"source": 5641602, "target": 4947873}, {"source": 5641602, "target": 4974014}, {"source": 5641602, "target": 5103089}, {"source": 5641602, "target": 5641605}, {"source": 5641602, "target": 5641606}, {"source": 5641602, "target": 5641607}, {"source": 499591, "target": 10365}, {"source": 49800, "target": 10365}, {"source": 205191, "target": 10365}, {"source": 1477391, "target": 2041086}, {"source": 78095, "target": 10365}, {"source": 1396126, "target": 2041086}, {"source": 1396126, "target": 1981044}, {"source": 14376, "target": 10365}, {"source": 14376, "target": 19907}, {"source": 1873971, "target": 1108819}, {"source": 1873971, "target": 2041086}, {"source": 1108819, "target": 2041086}, {"source": 169184, "target": 10365}, {"source": 1981044, "target": 2041086}]}
|
[
4947873,
169184,
928775,
2041086,
1392294
] | 5 |
318 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: John Meyers DDS, Timothy Mckinney, Christina Russell MD, Jessica Kaufman, Vincent Price, Jeffrey Martinez, Jason White Jr., Paul Pena, Jared Riddle, Matthew House, Peter Rodriguez, Darryl Coffey, Courtney Waters, Tara Reed, Anna Smith, Jordan Foster, Tiffany Nguyen, Meghan Brown
- Fiendship connections: Christina Russell MD to Jessica Kaufman, Jessica Kaufman to Courtney Waters, Jason White Jr. to Darryl Coffey, Peter Rodriguez to Anna Smith, Tara Reed to Jordan Foster, Jordan Foster to Meghan Brown
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "John Meyers DDS", "id": 5040544}, {"name": "Timothy Mckinney", "id": 2459233}, {"name": "Christina Russell MD", "id": 4145222}, {"name": "Jessica Kaufman", "id": 2464009}, {"name": "Vincent Price", "id": 5075785}, {"name": "Jeffrey Martinez", "id": 4999049}, {"name": "Jason White Jr.", "id": 2621101}, {"name": "Paul Pena", "id": 2453421}, {"name": "Jared Riddle", "id": 2467021}, {"name": "Matthew House", "id": 4946029}, {"name": "Peter Rodriguez", "id": 2443569}, {"name": "Darryl Coffey", "id": 2407219}, {"name": "Courtney Waters", "id": 2436372}, {"name": "Tara Reed", "id": 5518839}, {"name": "Anna Smith", "id": 3717081}, {"name": "Jordan Foster", "id": 4946042}, {"name": "Tiffany Nguyen", "id": 2465980}, {"name": "Meghan Brown", "id": 5625405}], "links": [{"source": 4145222, "target": 2464009}, {"source": 2464009, "target": 2436372}, {"source": 2621101, "target": 2407219}, {"source": 2443569, "target": 3717081}, {"source": 5518839, "target": 4946042}, {"source": 4946042, "target": 5625405}]}
|
[
5040544,
2459233,
2464009,
5075785,
4999049,
2407219,
2453421,
2467021,
4946029,
2443569,
4946042,
2465980
] | 12 |
319 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Robert James, Larry Walker, Regina Holland, Ariana Harmon, Jade Woodward, Jay Bolton, Zachary Taylor, Daniel Foster, Bradley Campbell, Benjamin Sims, Cory Howard, Patricia Thompson, Angela Torres, Mrs. Julia Carlson, Austin Martin, Melanie Payne
- Fiendship connections: Robert James to Angela Torres, Larry Walker to Austin Martin, Larry Walker to Ariana Harmon, Regina Holland to Austin Martin, Daniel Foster to Austin Martin, Bradley Campbell to Melanie Payne, Bradley Campbell to Benjamin Sims
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Robert James", "id": 2475522}, {"name": "Larry Walker", "id": 2498947}, {"name": "Regina Holland", "id": 3933156}, {"name": "Ariana Harmon", "id": 2461704}, {"name": "Jade Woodward", "id": 1082572}, {"name": "Jay Bolton", "id": 2488045}, {"name": "Zachary Taylor", "id": 1864653}, {"name": "Daniel Foster", "id": 2456303}, {"name": "Bradley Campbell", "id": 792592}, {"name": "Benjamin Sims", "id": 851092}, {"name": "Cory Howard", "id": 2488629}, {"name": "Patricia Thompson", "id": 2466998}, {"name": "Angela Torres", "id": 4441431}, {"name": "Mrs. Julia Carlson", "id": 2482136}, {"name": "Austin Martin", "id": 2455708}, {"name": "Melanie Payne", "id": 1176351}], "links": [{"source": 2475522, "target": 4441431}, {"source": 2498947, "target": 2455708}, {"source": 2498947, "target": 2461704}, {"source": 3933156, "target": 2455708}, {"source": 2456303, "target": 2455708}, {"source": 792592, "target": 1176351}, {"source": 792592, "target": 851092}]}
|
[
2475522,
2498947,
1082572,
2488045,
1864653,
792592,
2488629,
2466998,
2482136
] | 9 |
320 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Kelly Robbins, Michelle Lopez, Robin Hall, Michael Booth, Erin Turner, Kevin Brown, Stacey Wells, Diana Fletcher, Timothy Evans, Erik Lawson, Breanna Wong, Ashley Davis, Ashley Collins, Richard Huffman, Anne Thomas, Kyle Delacruz, Stephanie Harris
- Fiendship connections: Michelle Lopez to Stacey Wells, Michelle Lopez to Timothy Evans, Robin Hall to Kevin Brown, Michael Booth to Stacey Wells, Michael Booth to Diana Fletcher, Michael Booth to Anne Thomas, Michael Booth to Stephanie Harris, Michael Booth to Kevin Brown, Erin Turner to Anne Thomas, Erin Turner to Stephanie Harris, Kevin Brown to Ashley Collins, Stacey Wells to Breanna Wong, Stacey Wells to Anne Thomas, Stacey Wells to Stephanie Harris, Diana Fletcher to Anne Thomas, Diana Fletcher to Stephanie Harris, Diana Fletcher to Kyle Delacruz, Timothy Evans to Richard Huffman, Erik Lawson to Anne Thomas, Erik Lawson to Stephanie Harris, Anne Thomas to Stephanie Harris, Anne Thomas to Kyle Delacruz, Kyle Delacruz to Stephanie Harris
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Kelly Robbins", "id": 1952929}, {"name": "Michelle Lopez", "id": 1152922}, {"name": "Robin Hall", "id": 1419909}, {"name": "Michael Booth", "id": 1485222}, {"name": "Erin Turner", "id": 1287909}, {"name": "Kevin Brown", "id": 1479914}, {"name": "Stacey Wells", "id": 851339}, {"name": "Diana Fletcher", "id": 1226956}, {"name": "Timothy Evans", "id": 1142986}, {"name": "Erik Lawson", "id": 1469967}, {"name": "Breanna Wong", "id": 917776}, {"name": "Ashley Davis", "id": 979059}, {"name": "Ashley Collins", "id": 1504243}, {"name": "Richard Huffman", "id": 1631159}, {"name": "Anne Thomas", "id": 1394778}, {"name": "Kyle Delacruz", "id": 1562935}, {"name": "Stephanie Harris", "id": 1394783}], "links": [{"source": 1152922, "target": 851339}, {"source": 1152922, "target": 1142986}, {"source": 1419909, "target": 1479914}, {"source": 1485222, "target": 851339}, {"source": 1485222, "target": 1226956}, {"source": 1485222, "target": 1394778}, {"source": 1485222, "target": 1394783}, {"source": 1485222, "target": 1479914}, {"source": 1287909, "target": 1394778}, {"source": 1287909, "target": 1394783}, {"source": 1479914, "target": 1504243}, {"source": 851339, "target": 917776}, {"source": 851339, "target": 1394778}, {"source": 851339, "target": 1394783}, {"source": 1226956, "target": 1394778}, {"source": 1226956, "target": 1394783}, {"source": 1226956, "target": 1562935}, {"source": 1142986, "target": 1631159}, {"source": 1469967, "target": 1394778}, {"source": 1469967, "target": 1394783}, {"source": 1394778, "target": 1394783}, {"source": 1394778, "target": 1562935}, {"source": 1562935, "target": 1394783}]}
|
[
1952929,
1394778,
979059
] | 3 |
321 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: James Garrison, Hayley Carpenter, Adam Edwards, Jacob Simmons, Dr. John Lee, William Collins, Samantha Walsh, Matthew Dunn, Jeffrey Smith, Timothy Davis, Wesley Pineda, Aaron Norris, Benjamin Bishop, Joseph Russo, Benjamin Webb, Kathy Davis
- Fiendship connections: James Garrison to Dr. John Lee, Hayley Carpenter to Samantha Walsh, Adam Edwards to Benjamin Webb, Jacob Simmons to Benjamin Webb, Dr. John Lee to Wesley Pineda, Samantha Walsh to Wesley Pineda, Samantha Walsh to Timothy Davis, Matthew Dunn to Benjamin Webb, Jeffrey Smith to Benjamin Bishop, Jeffrey Smith to Kathy Davis, Jeffrey Smith to Benjamin Webb, Aaron Norris to Benjamin Webb, Benjamin Bishop to Kathy Davis, Benjamin Webb to Kathy Davis
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "James Garrison", "id": 3695809}, {"name": "Hayley Carpenter", "id": 4312258}, {"name": "Adam Edwards", "id": 1033251}, {"name": "Jacob Simmons", "id": 1042724}, {"name": "Dr. John Lee", "id": 2443211}, {"name": "William Collins", "id": 2421675}, {"name": "Samantha Walsh", "id": 2478384}, {"name": "Matthew Dunn", "id": 982161}, {"name": "Jeffrey Smith", "id": 924660}, {"name": "Timothy Davis", "id": 4288500}, {"name": "Wesley Pineda", "id": 3695894}, {"name": "Aaron Norris", "id": 778936}, {"name": "Benjamin Bishop", "id": 829434}, {"name": "Joseph Russo", "id": 2454363}, {"name": "Benjamin Webb", "id": 1779390}, {"name": "Kathy Davis", "id": 1417087}], "links": [{"source": 3695809, "target": 2443211}, {"source": 4312258, "target": 2478384}, {"source": 1033251, "target": 1779390}, {"source": 1042724, "target": 1779390}, {"source": 2443211, "target": 3695894}, {"source": 2478384, "target": 3695894}, {"source": 2478384, "target": 4288500}, {"source": 982161, "target": 1779390}, {"source": 924660, "target": 829434}, {"source": 924660, "target": 1417087}, {"source": 924660, "target": 1779390}, {"source": 778936, "target": 1779390}, {"source": 829434, "target": 1417087}, {"source": 1779390, "target": 1417087}]}
|
[
3695809,
1033251,
2421675,
2454363
] | 4 |
322 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Chad Berry, Terry Carter, Amanda Gonzales, Janet Dodson, Dr. Nicole Jennings MD, Jill Eaton, Casey Silva, Amber Faulkner, Nicole Martin, Charles Howell, David Matthews, Courtney Cox, Nicole Hunter, William Anderson, Anthony Yu, John Miller, Sarah Jackson, Kathleen Olson
- Fiendship connections: Chad Berry to Jill Eaton, Terry Carter to Amanda Gonzales, Amanda Gonzales to John Miller, Amanda Gonzales to Casey Silva, Amanda Gonzales to Courtney Cox, Amanda Gonzales to Charles Howell, Janet Dodson to Nicole Hunter, Janet Dodson to Charles Howell, Dr. Nicole Jennings MD to Anthony Yu, Dr. Nicole Jennings MD to Sarah Jackson, Jill Eaton to Anthony Yu, Amber Faulkner to Kathleen Olson, Amber Faulkner to Courtney Cox, Nicole Martin to David Matthews, Charles Howell to John Miller, Charles Howell to David Matthews, Charles Howell to William Anderson, David Matthews to John Miller, David Matthews to Courtney Cox, Sarah Jackson to Kathleen Olson
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Chad Berry", "id": 1329792}, {"name": "Terry Carter", "id": 1776096}, {"name": "Amanda Gonzales", "id": 1340773}, {"name": "Janet Dodson", "id": 1543399}, {"name": "Dr. Nicole Jennings MD", "id": 978074}, {"name": "Jill Eaton", "id": 938826}, {"name": "Casey Silva", "id": 1115180}, {"name": "Amber Faulkner", "id": 1856173}, {"name": "Nicole Martin", "id": 861135}, {"name": "Charles Howell", "id": 2174256}, {"name": "David Matthews", "id": 1571667}, {"name": "Courtney Cox", "id": 1142964}, {"name": "Nicole Hunter", "id": 1694997}, {"name": "William Anderson", "id": 1644470}, {"name": "Anthony Yu", "id": 917693}, {"name": "John Miller", "id": 1092792}, {"name": "Sarah Jackson", "id": 1108218}, {"name": "Kathleen Olson", "id": 973565}], "links": [{"source": 1329792, "target": 938826}, {"source": 1776096, "target": 1340773}, {"source": 1340773, "target": 1092792}, {"source": 1340773, "target": 1115180}, {"source": 1340773, "target": 1142964}, {"source": 1340773, "target": 2174256}, {"source": 1543399, "target": 1694997}, {"source": 1543399, "target": 2174256}, {"source": 978074, "target": 917693}, {"source": 978074, "target": 1108218}, {"source": 938826, "target": 917693}, {"source": 1856173, "target": 973565}, {"source": 1856173, "target": 1142964}, {"source": 861135, "target": 1571667}, {"source": 2174256, "target": 1092792}, {"source": 2174256, "target": 1571667}, {"source": 2174256, "target": 1644470}, {"source": 1571667, "target": 1092792}, {"source": 1571667, "target": 1142964}, {"source": 1108218, "target": 973565}]}
|
[
1329792
] | 1 |
323 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Ashley Bruce, Jimmy Ferguson, Eric Gregory, Marcus Stewart MD, Isabel Campbell, Rhonda Scott, Kristin Nelson, Nicholas Rivas, Anna Goodman, Jeffrey Bryan, Joseph Silva, Mr. Alexander Hill, Jesse Williams, Hannah Mitchell, Michelle Foster, Jennifer White, William Evans, Michelle Martin, Juan Adams
- Fiendship connections: Ashley Bruce to Marcus Stewart MD, Jimmy Ferguson to Juan Adams, Jimmy Ferguson to Marcus Stewart MD, Eric Gregory to Joseph Silva, Eric Gregory to Michelle Martin, Isabel Campbell to Rhonda Scott, Isabel Campbell to Nicholas Rivas, Rhonda Scott to Anna Goodman, Kristin Nelson to Michelle Foster, Nicholas Rivas to William Evans, Jeffrey Bryan to Joseph Silva, Jeffrey Bryan to Michelle Foster, Jesse Williams to Michelle Martin, Hannah Mitchell to Michelle Foster, Michelle Foster to William Evans, Michelle Foster to Juan Adams
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Ashley Bruce", "id": 2474376}, {"name": "Jimmy Ferguson", "id": 2647177}, {"name": "Eric Gregory", "id": 2439440}, {"name": "Marcus Stewart MD", "id": 2473747}, {"name": "Isabel Campbell", "id": 2416787}, {"name": "Rhonda Scott", "id": 2442017}, {"name": "Kristin Nelson", "id": 2446115}, {"name": "Nicholas Rivas", "id": 2443556}, {"name": "Anna Goodman", "id": 2432937}, {"name": "Jeffrey Bryan", "id": 2457263}, {"name": "Joseph Silva", "id": 2529584}, {"name": "Mr. Alexander Hill", "id": 2453301}, {"name": "Jesse Williams", "id": 2405313}, {"name": "Hannah Mitchell", "id": 2491719}, {"name": "Michelle Foster", "id": 3453520}, {"name": "Jennifer White", "id": 2491729}, {"name": "William Evans", "id": 2432095}, {"name": "Michelle Martin", "id": 2549353}, {"name": "Juan Adams", "id": 2463338}], "links": [{"source": 2474376, "target": 2473747}, {"source": 2647177, "target": 2463338}, {"source": 2647177, "target": 2473747}, {"source": 2439440, "target": 2529584}, {"source": 2439440, "target": 2549353}, {"source": 2416787, "target": 2442017}, {"source": 2416787, "target": 2443556}, {"source": 2442017, "target": 2432937}, {"source": 2446115, "target": 3453520}, {"source": 2443556, "target": 2432095}, {"source": 2457263, "target": 2529584}, {"source": 2457263, "target": 3453520}, {"source": 2405313, "target": 2549353}, {"source": 2491719, "target": 3453520}, {"source": 3453520, "target": 2432095}, {"source": 3453520, "target": 2463338}]}
|
[
2442017,
2453301,
2491729
] | 3 |
324 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Evelyn Wright, Brittany Castaneda, Alyssa Graham, Steven Huber, Mark Haas, Robert Smith, Steven Robinson, Brenda Chase, Denise Malone, Stephen Solis, Victoria Rojas, James Frey, Amanda Rogers, Amy Ferguson, David Hood, Bradley Smith, Lauren Wilson, William Williams, Amy Norman
- Fiendship connections: Brittany Castaneda to Mark Haas, Brittany Castaneda to Alyssa Graham, Alyssa Graham to Mark Haas, Alyssa Graham to Amy Norman, Robert Smith to Amy Norman, Steven Robinson to David Hood, Steven Robinson to James Frey, Steven Robinson to Bradley Smith, Steven Robinson to Amy Ferguson, Steven Robinson to Stephen Solis, Brenda Chase to Amanda Rogers, Stephen Solis to James Frey, Stephen Solis to Bradley Smith, Stephen Solis to Amy Ferguson, Amy Ferguson to Bradley Smith, Lauren Wilson to William Williams
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Evelyn Wright", "id": 1415812}, {"name": "Brittany Castaneda", "id": 4966409}, {"name": "Alyssa Graham", "id": 5255067}, {"name": "Steven Huber", "id": 2451743}, {"name": "Mark Haas", "id": 4966437}, {"name": "Robert Smith", "id": 5255079}, {"name": "Steven Robinson", "id": 780588}, {"name": "Brenda Chase", "id": 4630966}, {"name": "Denise Malone", "id": 4966590}, {"name": "Stephen Solis", "id": 1173829}, {"name": "Victoria Rojas", "id": 4929225}, {"name": "James Frey", "id": 1049818}, {"name": "Amanda Rogers", "id": 2482142}, {"name": "Amy Ferguson", "id": 1101537}, {"name": "David Hood", "id": 903393}, {"name": "Bradley Smith", "id": 1100260}, {"name": "Lauren Wilson", "id": 2405479}, {"name": "William Williams", "id": 2572392}, {"name": "Amy Norman", "id": 4976895}], "links": [{"source": 4966409, "target": 4966437}, {"source": 4966409, "target": 5255067}, {"source": 5255067, "target": 4966437}, {"source": 5255067, "target": 4976895}, {"source": 5255079, "target": 4976895}, {"source": 780588, "target": 903393}, {"source": 780588, "target": 1049818}, {"source": 780588, "target": 1100260}, {"source": 780588, "target": 1101537}, {"source": 780588, "target": 1173829}, {"source": 4630966, "target": 2482142}, {"source": 1173829, "target": 1049818}, {"source": 1173829, "target": 1100260}, {"source": 1173829, "target": 1101537}, {"source": 1101537, "target": 1100260}, {"source": 2405479, "target": 2572392}]}
|
[
1415812,
4966437,
2451743,
903393,
2482142,
4966590,
4929225,
2572392
] | 8 |
325 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Sara Salinas, Bruce Hodges, Brian Smith, Nicole Hernandez, Thomas Miller, Christopher Chang, Justin Floyd, Vanessa Hernandez, Andrew Green, Sherri Hubbard, Mark Miller, Kathleen Whitney, Natasha Monroe, Rachel Cook, Mrs. Pamela Johnson DVM, Scott Neal, Anthony Allen, Pamela Maynard, Stephanie Howe, Debra Burgess, Angela Walsh, Daryl Mcgee
- Fiendship connections: Sara Salinas to Natasha Monroe, Sara Salinas to Sherri Hubbard, Sara Salinas to Mark Miller, Bruce Hodges to Angela Walsh, Bruce Hodges to Natasha Monroe, Bruce Hodges to Andrew Green, Brian Smith to Angela Walsh, Brian Smith to Nicole Hernandez, Nicole Hernandez to Mrs. Pamela Johnson DVM, Nicole Hernandez to Scott Neal, Nicole Hernandez to Kathleen Whitney, Nicole Hernandez to Justin Floyd, Thomas Miller to Sherri Hubbard, Thomas Miller to Anthony Allen, Christopher Chang to Scott Neal, Christopher Chang to Angela Walsh, Christopher Chang to Justin Floyd, Justin Floyd to Scott Neal, Justin Floyd to Vanessa Hernandez, Vanessa Hernandez to Pamela Maynard, Vanessa Hernandez to Angela Walsh, Andrew Green to Natasha Monroe, Sherri Hubbard to Stephanie Howe, Mark Miller to Stephanie Howe, Natasha Monroe to Anthony Allen, Rachel Cook to Daryl Mcgee, Mrs. Pamela Johnson DVM to Scott Neal, Mrs. Pamela Johnson DVM to Pamela Maynard, Mrs. Pamela Johnson DVM to Angela Walsh, Mrs. Pamela Johnson DVM to Daryl Mcgee, Scott Neal to Pamela Maynard, Scott Neal to Debra Burgess, Pamela Maynard to Angela Walsh, Debra Burgess to Angela Walsh
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Sara Salinas", "id": 4959878}, {"name": "Bruce Hodges", "id": 4959885}, {"name": "Brian Smith", "id": 5034256}, {"name": "Nicole Hernandez", "id": 4929171}, {"name": "Thomas Miller", "id": 4976279}, {"name": "Christopher Chang", "id": 4934810}, {"name": "Justin Floyd", "id": 4956067}, {"name": "Vanessa Hernandez", "id": 5020327}, {"name": "Andrew Green", "id": 5001777}, {"name": "Sherri Hubbard", "id": 4959924}, {"name": "Mark Miller", "id": 4977972}, {"name": "Kathleen Whitney", "id": 4973118}, {"name": "Natasha Monroe", "id": 4993481}, {"name": "Rachel Cook", "id": 4966345}, {"name": "Mrs. Pamela Johnson DVM", "id": 4929113}, {"name": "Scott Neal", "id": 4929115}, {"name": "Anthony Allen", "id": 4993500}, {"name": "Pamela Maynard", "id": 4929121}, {"name": "Stephanie Howe", "id": 4993507}, {"name": "Debra Burgess", "id": 5317352}, {"name": "Angela Walsh", "id": 4929130}, {"name": "Daryl Mcgee", "id": 4929134}], "links": [{"source": 4959878, "target": 4993481}, {"source": 4959878, "target": 4959924}, {"source": 4959878, "target": 4977972}, {"source": 4959885, "target": 4929130}, {"source": 4959885, "target": 4993481}, {"source": 4959885, "target": 5001777}, {"source": 5034256, "target": 4929130}, {"source": 5034256, "target": 4929171}, {"source": 4929171, "target": 4929113}, {"source": 4929171, "target": 4929115}, {"source": 4929171, "target": 4973118}, {"source": 4929171, "target": 4956067}, {"source": 4976279, "target": 4959924}, {"source": 4976279, "target": 4993500}, {"source": 4934810, "target": 4929115}, {"source": 4934810, "target": 4929130}, {"source": 4934810, "target": 4956067}, {"source": 4956067, "target": 4929115}, {"source": 4956067, "target": 5020327}, {"source": 5020327, "target": 4929121}, {"source": 5020327, "target": 4929130}, {"source": 5001777, "target": 4993481}, {"source": 4959924, "target": 4993507}, {"source": 4977972, "target": 4993507}, {"source": 4993481, "target": 4993500}, {"source": 4966345, "target": 4929134}, {"source": 4929113, "target": 4929115}, {"source": 4929113, "target": 4929121}, {"source": 4929113, "target": 4929130}, {"source": 4929113, "target": 4929134}, {"source": 4929115, "target": 4929121}, {"source": 4929115, "target": 5317352}, {"source": 4929121, "target": 4929130}, {"source": 5317352, "target": 4929130}]}
|
[
4959878
] | 1 |
326 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Ashley Hernandez, Carlos Russell Jr., Frank Vang, Barbara Proctor, Diane Hicks, Jason Wolfe, Mark White, Mark Hooper, Kendra Miller, Kenneth Henson, Andrew Gonzalez, Brenda Boyd, Latasha Lopez, Dennis Miller, James Sanders, Michael Parker, Sara James, Mitchell Patel, Kelly Moore, Kathleen Russell MD, Danny Parks, Alexander Wilson, Christopher Kent, Kevin Miranda, Kathleen Mccoy, Lindsay Torres, Barry Medina, Brian Rivera, Shannon Davis
- Fiendship connections: Ashley Hernandez to Diane Hicks, Ashley Hernandez to Kelly Moore, Frank Vang to Michael Parker, Barbara Proctor to Mitchell Patel, Diane Hicks to Kelly Moore, Diane Hicks to Christopher Kent, Diane Hicks to Brian Rivera, Diane Hicks to Sara James, Diane Hicks to Mitchell Patel, Diane Hicks to Kathleen Mccoy, Jason Wolfe to Kathleen Russell MD, Jason Wolfe to Kevin Miranda, Mark White to Kendra Miller, Mark Hooper to Kevin Miranda, Mark Hooper to Kelly Moore, Mark Hooper to Andrew Gonzalez, Kendra Miller to Danny Parks, Kendra Miller to Dennis Miller, Kenneth Henson to Michael Parker, Kenneth Henson to Barry Medina, Andrew Gonzalez to Kevin Miranda, Brenda Boyd to Lindsay Torres, Brenda Boyd to Sara James, Latasha Lopez to Alexander Wilson, James Sanders to Michael Parker, Kelly Moore to Christopher Kent, Kelly Moore to Alexander Wilson, Kathleen Russell MD to Kevin Miranda, Kathleen Russell MD to Barry Medina, Danny Parks to Christopher Kent, Kevin Miranda to Barry Medina
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Ashley Hernandez", "id": 4273282}, {"name": "Carlos Russell Jr.", "id": 2438148}, {"name": "Frank Vang", "id": 4540294}, {"name": "Barbara Proctor", "id": 2454164}, {"name": "Diane Hicks", "id": 2468758}, {"name": "Jason Wolfe", "id": 3118998}, {"name": "Mark White", "id": 2526758}, {"name": "Mark Hooper", "id": 2474155}, {"name": "Kendra Miller", "id": 2483895}, {"name": "Kenneth Henson", "id": 2478523}, {"name": "Andrew Gonzalez", "id": 3132027}, {"name": "Brenda Boyd", "id": 2476988}, {"name": "Latasha Lopez", "id": 2482883}, {"name": "Dennis Miller", "id": 3313733}, {"name": "James Sanders", "id": 3029446}, {"name": "Michael Parker", "id": 2478541}, {"name": "Sara James", "id": 3167949}, {"name": "Mitchell Patel", "id": 3893455}, {"name": "Kelly Moore", "id": 2488412}, {"name": "Kathleen Russell MD", "id": 2420957}, {"name": "Danny Parks", "id": 2457950}, {"name": "Alexander Wilson", "id": 4325602}, {"name": "Christopher Kent", "id": 3016036}, {"name": "Kevin Miranda", "id": 2421101}, {"name": "Kathleen Mccoy", "id": 4273266}, {"name": "Lindsay Torres", "id": 2722291}, {"name": "Barry Medina", "id": 2570491}, {"name": "Brian Rivera", "id": 3117564}, {"name": "Shannon Davis", "id": 2426878}], "links": [{"source": 4273282, "target": 2468758}, {"source": 4273282, "target": 2488412}, {"source": 4540294, "target": 2478541}, {"source": 2454164, "target": 3893455}, {"source": 2468758, "target": 2488412}, {"source": 2468758, "target": 3016036}, {"source": 2468758, "target": 3117564}, {"source": 2468758, "target": 3167949}, {"source": 2468758, "target": 3893455}, {"source": 2468758, "target": 4273266}, {"source": 3118998, "target": 2420957}, {"source": 3118998, "target": 2421101}, {"source": 2526758, "target": 2483895}, {"source": 2474155, "target": 2421101}, {"source": 2474155, "target": 2488412}, {"source": 2474155, "target": 3132027}, {"source": 2483895, "target": 2457950}, {"source": 2483895, "target": 3313733}, {"source": 2478523, "target": 2478541}, {"source": 2478523, "target": 2570491}, {"source": 3132027, "target": 2421101}, {"source": 2476988, "target": 2722291}, {"source": 2476988, "target": 3167949}, {"source": 2482883, "target": 4325602}, {"source": 3029446, "target": 2478541}, {"source": 2488412, "target": 3016036}, {"source": 2488412, "target": 4325602}, {"source": 2420957, "target": 2421101}, {"source": 2420957, "target": 2570491}, {"source": 2457950, "target": 3016036}, {"source": 2421101, "target": 2570491}]}
|
[
4273282,
2438148,
2426878
] | 3 |
327 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Melissa Archer, Sarah Parker, David Brown, Monica Carlson MD, Ricky Stewart, Madison Diaz, Matthew Morgan, Joe Kelley, Ryan Sawyer, Mariah Neal, Stephen Williams, David Brooks, Jessica Evans, Scott Russell, Alan Holmes, Bryan Rivera
- Fiendship connections: Melissa Archer to Bryan Rivera, Sarah Parker to Madison Diaz, Sarah Parker to David Brooks, David Brown to Scott Russell, David Brown to Bryan Rivera, David Brown to Ricky Stewart, Monica Carlson MD to Mariah Neal, Monica Carlson MD to Matthew Morgan, Ricky Stewart to Ryan Sawyer, Madison Diaz to Scott Russell, Matthew Morgan to David Brooks, Joe Kelley to Ryan Sawyer, Joe Kelley to Jessica Evans, Stephen Williams to Alan Holmes, Stephen Williams to Jessica Evans, Scott Russell to Bryan Rivera
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Melissa Archer", "id": 810175}, {"name": "Sarah Parker", "id": 919266}, {"name": "David Brown", "id": 822076}, {"name": "Monica Carlson MD", "id": 1824425}, {"name": "Ricky Stewart", "id": 1068458}, {"name": "Madison Diaz", "id": 819343}, {"name": "Matthew Morgan", "id": 1169647}, {"name": "Joe Kelley", "id": 774416}, {"name": "Ryan Sawyer", "id": 856210}, {"name": "Mariah Neal", "id": 945171}, {"name": "Stephen Williams", "id": 877685}, {"name": "David Brooks", "id": 893495}, {"name": "Jessica Evans", "id": 973528}, {"name": "Scott Russell", "id": 772476}, {"name": "Alan Holmes", "id": 926783}, {"name": "Bryan Rivera", "id": 828159}], "links": [{"source": 810175, "target": 828159}, {"source": 919266, "target": 819343}, {"source": 919266, "target": 893495}, {"source": 822076, "target": 772476}, {"source": 822076, "target": 828159}, {"source": 822076, "target": 1068458}, {"source": 1824425, "target": 945171}, {"source": 1824425, "target": 1169647}, {"source": 1068458, "target": 856210}, {"source": 819343, "target": 772476}, {"source": 1169647, "target": 893495}, {"source": 774416, "target": 856210}, {"source": 774416, "target": 973528}, {"source": 877685, "target": 926783}, {"source": 877685, "target": 973528}, {"source": 772476, "target": 828159}]}
|
[
810175
] | 1 |
328 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Brad Daniels, Stacy Brown, Mary Bean, Felicia Mccoy PhD, Mikayla Hickman, Stephanie Perkins, Alexis Davis, Kathleen Thompson, Dale Bailey, Ronald Cook, Michele Carroll, Patrick Gomez, Kayla Hernandez, Lorraine Boyd, Mrs. Denise Wood, Kristin Pratt, Dylan Ball, Jesse Delgado, Amanda Sanders, Malik Bean, Bridget Lowery, Mark Hopkins, Mark Oliver, Patricia Forbes
- Fiendship connections: Brad Daniels to Kayla Hernandez, Brad Daniels to Amanda Sanders, Stacy Brown to Kathleen Thompson, Mary Bean to Jesse Delgado, Felicia Mccoy PhD to Dylan Ball, Felicia Mccoy PhD to Alexis Davis, Mikayla Hickman to Stephanie Perkins, Mikayla Hickman to Malik Bean, Mikayla Hickman to Kathleen Thompson, Mikayla Hickman to Lorraine Boyd, Stephanie Perkins to Kathleen Thompson, Alexis Davis to Kayla Hernandez, Alexis Davis to Dale Bailey, Alexis Davis to Jesse Delgado, Alexis Davis to Mrs. Denise Wood, Kathleen Thompson to Patricia Forbes, Kathleen Thompson to Bridget Lowery, Kathleen Thompson to Malik Bean, Kathleen Thompson to Mark Oliver, Michele Carroll to Malik Bean, Bridget Lowery to Patricia Forbes
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Brad Daniels", "id": 2430849}, {"name": "Stacy Brown", "id": 1594497}, {"name": "Mary Bean", "id": 2428033}, {"name": "Felicia Mccoy PhD", "id": 4531463}, {"name": "Mikayla Hickman", "id": 1210378}, {"name": "Stephanie Perkins", "id": 1093536}, {"name": "Alexis Davis", "id": 2503202}, {"name": "Kathleen Thompson", "id": 1592740}, {"name": "Dale Bailey", "id": 3049382}, {"name": "Ronald Cook", "id": 790573}, {"name": "Michele Carroll", "id": 1585975}, {"name": "Patrick Gomez", "id": 2474295}, {"name": "Kayla Hernandez", "id": 2442426}, {"name": "Lorraine Boyd", "id": 2125246}, {"name": "Mrs. Denise Wood", "id": 4926276}, {"name": "Kristin Pratt", "id": 2442182}, {"name": "Dylan Ball", "id": 2479431}, {"name": "Jesse Delgado", "id": 3324370}, {"name": "Amanda Sanders", "id": 3399510}, {"name": "Malik Bean", "id": 1099230}, {"name": "Bridget Lowery", "id": 1030116}, {"name": "Mark Hopkins", "id": 2427374}, {"name": "Mark Oliver", "id": 1595254}, {"name": "Patricia Forbes", "id": 783864}], "links": [{"source": 2430849, "target": 2442426}, {"source": 2430849, "target": 3399510}, {"source": 1594497, "target": 1592740}, {"source": 2428033, "target": 3324370}, {"source": 4531463, "target": 2479431}, {"source": 4531463, "target": 2503202}, {"source": 1210378, "target": 1093536}, {"source": 1210378, "target": 1099230}, {"source": 1210378, "target": 1592740}, {"source": 1210378, "target": 2125246}, {"source": 1093536, "target": 1592740}, {"source": 2503202, "target": 2442426}, {"source": 2503202, "target": 3049382}, {"source": 2503202, "target": 3324370}, {"source": 2503202, "target": 4926276}, {"source": 1592740, "target": 783864}, {"source": 1592740, "target": 1030116}, {"source": 1592740, "target": 1099230}, {"source": 1592740, "target": 1595254}, {"source": 1585975, "target": 1099230}, {"source": 1030116, "target": 783864}]}
|
[
2430849,
1093536,
790573,
2474295,
2442182,
2427374
] | 6 |
329 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Sarah Thompson, Melissa Hill, Thomas Abbott, Tommy Lewis, Matthew Chase, Bradley Brewer, Rebecca Williams, Cassandra Morales, Madison Johnson, Joanna Moon, David Woods, Sarah Ortega, Peter Snow, Catherine Perez, Tracy Leonard
- Fiendship connections: Melissa Hill to David Woods, Melissa Hill to Tracy Leonard, Thomas Abbott to Tracy Leonard, Tommy Lewis to Cassandra Morales, Matthew Chase to Catherine Perez, Matthew Chase to Peter Snow, Bradley Brewer to David Woods, Cassandra Morales to David Woods, Joanna Moon to David Woods, Peter Snow to Catherine Perez
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Sarah Thompson", "id": 2477569}, {"name": "Melissa Hill", "id": 5330819}, {"name": "Thomas Abbott", "id": 4971652}, {"name": "Tommy Lewis", "id": 4994565}, {"name": "Matthew Chase", "id": 2418153}, {"name": "Bradley Brewer", "id": 5766890}, {"name": "Rebecca Williams", "id": 2459005}, {"name": "Cassandra Morales", "id": 4967699}, {"name": "Madison Johnson", "id": 904437}, {"name": "Joanna Moon", "id": 5765368}, {"name": "David Woods", "id": 4994457}, {"name": "Sarah Ortega", "id": 2471514}, {"name": "Peter Snow", "id": 3006524}, {"name": "Catherine Perez", "id": 2456253}, {"name": "Tracy Leonard", "id": 5064735}], "links": [{"source": 5330819, "target": 4994457}, {"source": 5330819, "target": 5064735}, {"source": 4971652, "target": 5064735}, {"source": 4994565, "target": 4967699}, {"source": 2418153, "target": 2456253}, {"source": 2418153, "target": 3006524}, {"source": 5766890, "target": 4994457}, {"source": 4967699, "target": 4994457}, {"source": 5765368, "target": 4994457}, {"source": 3006524, "target": 2456253}]}
|
[
2477569,
5330819,
2418153,
2459005,
904437,
2471514
] | 6 |
330 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Nicole Willis, Mr. Gerald Sanders, Michael Randolph, Alexa Newman, John Shelton, Heather Hunter, Laura Mason, Brandy Miller, Dr. Kenneth Rivera, Jeremy Griffin, Julie Vasquez, Melissa Carter, Julie Franco, Steven Hamilton, Christina Lucero, Christopher Carlson, Richard Garcia, Kelly Campbell, Kimberly Rosales DDS, Jason Kelly
- Fiendship connections: Nicole Willis to Jason Kelly, Nicole Willis to Julie Vasquez, Nicole Willis to Jeremy Griffin, Nicole Willis to Julie Franco, Mr. Gerald Sanders to Michael Randolph, Mr. Gerald Sanders to Alexa Newman, Alexa Newman to Dr. Kenneth Rivera, Alexa Newman to Kelly Campbell, Alexa Newman to Kimberly Rosales DDS, Heather Hunter to Brandy Miller, Laura Mason to Julie Vasquez, Brandy Miller to Richard Garcia, Brandy Miller to Melissa Carter, Brandy Miller to Christopher Carlson, Steven Hamilton to Jason Kelly
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Nicole Willis", "id": 42372}, {"name": "Mr. Gerald Sanders", "id": 221578}, {"name": "Michael Randolph", "id": 92684}, {"name": "Alexa Newman", "id": 420624}, {"name": "John Shelton", "id": 1252902}, {"name": "Heather Hunter", "id": 1295539}, {"name": "Laura Mason", "id": 13502}, {"name": "Brandy Miller", "id": 1504449}, {"name": "Dr. Kenneth Rivera", "id": 246728}, {"name": "Jeremy Griffin", "id": 704202}, {"name": "Julie Vasquez", "id": 277712}, {"name": "Melissa Carter", "id": 1675608}, {"name": "Julie Franco", "id": 704218}, {"name": "Steven Hamilton", "id": 56798}, {"name": "Christina Lucero", "id": 1369186}, {"name": "Christopher Carlson", "id": 1556707}, {"name": "Richard Garcia", "id": 859751}, {"name": "Kelly Campbell", "id": 647802}, {"name": "Kimberly Rosales DDS", "id": 647803}, {"name": "Jason Kelly", "id": 1020}], "links": [{"source": 42372, "target": 1020}, {"source": 42372, "target": 277712}, {"source": 42372, "target": 704202}, {"source": 42372, "target": 704218}, {"source": 221578, "target": 92684}, {"source": 221578, "target": 420624}, {"source": 420624, "target": 246728}, {"source": 420624, "target": 647802}, {"source": 420624, "target": 647803}, {"source": 1295539, "target": 1504449}, {"source": 13502, "target": 277712}, {"source": 1504449, "target": 859751}, {"source": 1504449, "target": 1675608}, {"source": 1504449, "target": 1556707}, {"source": 56798, "target": 1020}]}
|
[
13502,
246728,
1252902,
1504449,
1369186
] | 5 |
331 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Daniel Hart, Michael Robinson, Bruce Perez III, Susan Hines, Michael Garcia, Emily Morris, Joshua Kane, Brian Brandt, Steven Lamb, Terri Wells, Debra Hayes, Jackie Newman, Christine Little, Kelly Glover, Angela Kane, Ryan Jones, Christopher Roberts, Emily Cole
- Fiendship connections: Daniel Hart to Christopher Roberts, Daniel Hart to Michael Garcia, Daniel Hart to Terri Wells, Daniel Hart to Kelly Glover, Bruce Perez III to Steven Lamb, Bruce Perez III to Debra Hayes, Susan Hines to Emily Cole, Susan Hines to Christine Little, Michael Garcia to Terri Wells, Joshua Kane to Jackie Newman
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Daniel Hart", "id": 2410081}, {"name": "Michael Robinson", "id": 2456994}, {"name": "Bruce Perez III", "id": 2478979}, {"name": "Susan Hines", "id": 5475908}, {"name": "Michael Garcia", "id": 2410084}, {"name": "Emily Morris", "id": 2527400}, {"name": "Joshua Kane", "id": 1002}, {"name": "Brian Brandt", "id": 2485868}, {"name": "Steven Lamb", "id": 2427821}, {"name": "Terri Wells", "id": 2726711}, {"name": "Debra Hayes", "id": 4527925}, {"name": "Jackie Newman", "id": 755670}, {"name": "Christine Little", "id": 5100085}, {"name": "Kelly Glover", "id": 2726713}, {"name": "Angela Kane", "id": 2462394}, {"name": "Ryan Jones", "id": 2468667}, {"name": "Christopher Roberts", "id": 2406910}, {"name": "Emily Cole", "id": 4931679}], "links": [{"source": 2410081, "target": 2406910}, {"source": 2410081, "target": 2410084}, {"source": 2410081, "target": 2726711}, {"source": 2410081, "target": 2726713}, {"source": 2478979, "target": 2427821}, {"source": 2478979, "target": 4527925}, {"source": 5475908, "target": 4931679}, {"source": 5475908, "target": 5100085}, {"source": 2410084, "target": 2726711}, {"source": 1002, "target": 755670}]}
|
[
2410081,
2456994,
2478979,
5475908,
2527400,
1002,
2485868,
2462394,
2468667
] | 9 |
332 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Matthew Butler, Amanda Garcia, Lisa Larson, Guy Clark, Tiffany Delacruz, Michael Golden, Daniel Montgomery, Whitney Bell, Julie Schaefer, Rachel Gomez, Jamie Silva, Brian Simmons, Adam Bradford, Nathan Peck, Karen Wilkins, Kristin Garcia, Marissa Winters
- Fiendship connections: Matthew Butler to Jamie Silva, Amanda Garcia to Kristin Garcia, Amanda Garcia to Karen Wilkins, Lisa Larson to Nathan Peck, Lisa Larson to Tiffany Delacruz, Lisa Larson to Rachel Gomez, Lisa Larson to Daniel Montgomery, Guy Clark to Adam Bradford, Guy Clark to Marissa Winters, Guy Clark to Rachel Gomez, Michael Golden to Jamie Silva, Michael Golden to Marissa Winters, Daniel Montgomery to Rachel Gomez, Daniel Montgomery to Karen Wilkins, Whitney Bell to Brian Simmons, Whitney Bell to Kristin Garcia, Julie Schaefer to Adam Bradford, Rachel Gomez to Karen Wilkins
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Matthew Butler", "id": 779459}, {"name": "Amanda Garcia", "id": 1699492}, {"name": "Lisa Larson", "id": 1373766}, {"name": "Guy Clark", "id": 1268326}, {"name": "Tiffany Delacruz", "id": 1145479}, {"name": "Michael Golden", "id": 1393543}, {"name": "Daniel Montgomery", "id": 2204653}, {"name": "Whitney Bell", "id": 823855}, {"name": "Julie Schaefer", "id": 1090353}, {"name": "Rachel Gomez", "id": 2157618}, {"name": "Jamie Silva", "id": 831762}, {"name": "Brian Simmons", "id": 824052}, {"name": "Adam Bradford", "id": 819898}, {"name": "Nathan Peck", "id": 889305}, {"name": "Karen Wilkins", "id": 2385306}, {"name": "Kristin Garcia", "id": 1359740}, {"name": "Marissa Winters", "id": 1781151}], "links": [{"source": 779459, "target": 831762}, {"source": 1699492, "target": 1359740}, {"source": 1699492, "target": 2385306}, {"source": 1373766, "target": 889305}, {"source": 1373766, "target": 1145479}, {"source": 1373766, "target": 2157618}, {"source": 1373766, "target": 2204653}, {"source": 1268326, "target": 819898}, {"source": 1268326, "target": 1781151}, {"source": 1268326, "target": 2157618}, {"source": 1393543, "target": 831762}, {"source": 1393543, "target": 1781151}, {"source": 2204653, "target": 2157618}, {"source": 2204653, "target": 2385306}, {"source": 823855, "target": 824052}, {"source": 823855, "target": 1359740}, {"source": 1090353, "target": 819898}, {"source": 2157618, "target": 2385306}]}
|
[
779459
] | 1 |
333 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Michael Vazquez, Amy Frank, Tiffany Schwartz, Diana Spencer, Justin Duran, Emily Carlson, Darrell Jackson, Juan Hernandez, Justin Kelley, Sandra Jones, Anthony Jones, Joseph Roach, Jasmin Johnston, Dustin Davis, Keith Rodriguez, Kayla Williams, Shelly Carlson, Beth Wood, Carla Villanueva, Brad Guerrero, Michael Anderson
- Fiendship connections: Michael Vazquez to Amy Frank, Amy Frank to Juan Hernandez, Amy Frank to Anthony Jones, Amy Frank to Carla Villanueva, Amy Frank to Diana Spencer, Amy Frank to Beth Wood, Amy Frank to Joseph Roach, Amy Frank to Tiffany Schwartz, Tiffany Schwartz to Justin Duran, Tiffany Schwartz to Carla Villanueva, Diana Spencer to Anthony Jones, Diana Spencer to Justin Duran, Justin Duran to Justin Kelley, Justin Duran to Joseph Roach, Justin Duran to Kayla Williams, Emily Carlson to Beth Wood, Darrell Jackson to Keith Rodriguez, Juan Hernandez to Justin Kelley, Justin Kelley to Joseph Roach, Sandra Jones to Shelly Carlson, Anthony Jones to Carla Villanueva, Anthony Jones to Kayla Williams, Joseph Roach to Michael Anderson, Jasmin Johnston to Carla Villanueva, Keith Rodriguez to Shelly Carlson, Shelly Carlson to Brad Guerrero, Beth Wood to Brad Guerrero
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Michael Vazquez", "id": 5050371}, {"name": "Amy Frank", "id": 5007754}, {"name": "Tiffany Schwartz", "id": 5041547}, {"name": "Diana Spencer", "id": 5007118}, {"name": "Justin Duran", "id": 4961427}, {"name": "Emily Carlson", "id": 5007768}, {"name": "Darrell Jackson", "id": 4928923}, {"name": "Juan Hernandez", "id": 4950432}, {"name": "Justin Kelley", "id": 4955052}, {"name": "Sandra Jones", "id": 5743026}, {"name": "Anthony Jones", "id": 4954812}, {"name": "Joseph Roach", "id": 5018300}, {"name": "Jasmin Johnston", "id": 5862731}, {"name": "Dustin Davis", "id": 5017805}, {"name": "Keith Rodriguez", "id": 5408221}, {"name": "Kayla Williams", "id": 4995427}, {"name": "Shelly Carlson", "id": 4930022}, {"name": "Beth Wood", "id": 5007729}, {"name": "Carla Villanueva", "id": 4966515}, {"name": "Brad Guerrero", "id": 5007734}, {"name": "Michael Anderson", "id": 5048315}], "links": [{"source": 5050371, "target": 5007754}, {"source": 5007754, "target": 4950432}, {"source": 5007754, "target": 4954812}, {"source": 5007754, "target": 4966515}, {"source": 5007754, "target": 5007118}, {"source": 5007754, "target": 5007729}, {"source": 5007754, "target": 5018300}, {"source": 5007754, "target": 5041547}, {"source": 5041547, "target": 4961427}, {"source": 5041547, "target": 4966515}, {"source": 5007118, "target": 4954812}, {"source": 5007118, "target": 4961427}, {"source": 4961427, "target": 4955052}, {"source": 4961427, "target": 5018300}, {"source": 4961427, "target": 4995427}, {"source": 5007768, "target": 5007729}, {"source": 4928923, "target": 5408221}, {"source": 4950432, "target": 4955052}, {"source": 4955052, "target": 5018300}, {"source": 5743026, "target": 4930022}, {"source": 4954812, "target": 4966515}, {"source": 4954812, "target": 4995427}, {"source": 5018300, "target": 5048315}, {"source": 5862731, "target": 4966515}, {"source": 5408221, "target": 4930022}, {"source": 4930022, "target": 5007734}, {"source": 5007729, "target": 5007734}]}
|
[
5050371,
5017805
] | 2 |
334 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Caitlyn Brown, Maria Harris PhD, Jessica Wilson, Jennifer Kennedy, Brenda Campbell, Michele Hudson, Michael Nguyen, Brittany Blanchard, Willie Lawson, Matthew Carter, Deanna Smith, Megan Moore, Leah Cannon, Natasha Nichols, Scott Solis, Ashley Jones, Lindsey Martinez, Michael Wade, Linda Ball, Laura Coffey, Heather Taylor, Matthew Williams, Stephanie Moreno, Robert Lewis, Jordan Huang, Kaitlyn Green, Chris Calderon
- Fiendship connections: Caitlyn Brown to Megan Moore, Maria Harris PhD to Matthew Williams, Jessica Wilson to Megan Moore, Michele Hudson to Lindsey Martinez, Michael Nguyen to Megan Moore, Brittany Blanchard to Matthew Williams, Willie Lawson to Ashley Jones, Deanna Smith to Matthew Williams, Leah Cannon to Michael Wade, Natasha Nichols to Matthew Williams, Scott Solis to Matthew Williams, Lindsey Martinez to Stephanie Moreno, Lindsey Martinez to Linda Ball, Laura Coffey to Matthew Williams, Matthew Williams to Robert Lewis, Matthew Williams to Jordan Huang, Matthew Williams to Kaitlyn Green
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Caitlyn Brown", "id": 1823362}, {"name": "Maria Harris PhD", "id": 5782274}, {"name": "Jessica Wilson", "id": 848890}, {"name": "Jennifer Kennedy", "id": 17402}, {"name": "Brenda Campbell", "id": 100354}, {"name": "Michele Hudson", "id": 18836}, {"name": "Michael Nguyen", "id": 1850523}, {"name": "Brittany Blanchard", "id": 4969890}, {"name": "Willie Lawson", "id": 2459689}, {"name": "Matthew Carter", "id": 2463787}, {"name": "Deanna Smith", "id": 5081084}, {"name": "Megan Moore", "id": 2000558}, {"name": "Leah Cannon", "id": 2447665}, {"name": "Natasha Nichols", "id": 5360320}, {"name": "Scott Solis", "id": 5337286}, {"name": "Ashley Jones", "id": 4062026}, {"name": "Lindsey Martinez", "id": 186318}, {"name": "Michael Wade", "id": 3791696}, {"name": "Linda Ball", "id": 765396}, {"name": "Laura Coffey", "id": 5551450}, {"name": "Heather Taylor", "id": 2441562}, {"name": "Matthew Williams", "id": 5058536}, {"name": "Stephanie Moreno", "id": 30571}, {"name": "Robert Lewis", "id": 5967609}, {"name": "Jordan Huang", "id": 5967610}, {"name": "Kaitlyn Green", "id": 5967612}, {"name": "Chris Calderon", "id": 2455679}], "links": [{"source": 1823362, "target": 2000558}, {"source": 5782274, "target": 5058536}, {"source": 848890, "target": 2000558}, {"source": 18836, "target": 186318}, {"source": 1850523, "target": 2000558}, {"source": 4969890, "target": 5058536}, {"source": 2459689, "target": 4062026}, {"source": 5081084, "target": 5058536}, {"source": 2447665, "target": 3791696}, {"source": 5360320, "target": 5058536}, {"source": 5337286, "target": 5058536}, {"source": 186318, "target": 30571}, {"source": 186318, "target": 765396}, {"source": 5551450, "target": 5058536}, {"source": 5058536, "target": 5967609}, {"source": 5058536, "target": 5967610}, {"source": 5058536, "target": 5967612}]}
|
[
1823362,
5360320,
17402,
100354,
30571,
2459689,
2463787,
3791696,
2441562,
2455679
] | 10 |
335 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Mary Hood, Dawn Monroe, Richard Diaz, Joann Hughes, Breanna Meyer, Curtis Parker, Randy Arnold, Stephanie Freeman, Katherine Carrillo, Cassandra Gonzales, Cheryl Sanchez DDS, Veronica Ramirez, Madison Cain, Shannon Torres, Amanda Mcdaniel, Patrick Lopez
- Fiendship connections: Mary Hood to Cheryl Sanchez DDS, Dawn Monroe to Amanda Mcdaniel, Richard Diaz to Veronica Ramirez, Richard Diaz to Cheryl Sanchez DDS, Joann Hughes to Cheryl Sanchez DDS, Breanna Meyer to Katherine Carrillo, Breanna Meyer to Curtis Parker, Breanna Meyer to Shannon Torres, Randy Arnold to Cheryl Sanchez DDS, Stephanie Freeman to Cassandra Gonzales, Cassandra Gonzales to Madison Cain, Cassandra Gonzales to Shannon Torres, Madison Cain to Shannon Torres
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Mary Hood", "id": 1074560}, {"name": "Dawn Monroe", "id": 4955042}, {"name": "Richard Diaz", "id": 859299}, {"name": "Joann Hughes", "id": 2151492}, {"name": "Breanna Meyer", "id": 4929123}, {"name": "Curtis Parker", "id": 5011206}, {"name": "Randy Arnold", "id": 1176263}, {"name": "Stephanie Freeman", "id": 4956745}, {"name": "Katherine Carrillo", "id": 5042505}, {"name": "Cassandra Gonzales", "id": 5512718}, {"name": "Cheryl Sanchez DDS", "id": 1569937}, {"name": "Veronica Ramirez", "id": 778674}, {"name": "Madison Cain", "id": 5024244}, {"name": "Shannon Torres", "id": 5221464}, {"name": "Amanda Mcdaniel", "id": 4946938}, {"name": "Patrick Lopez", "id": 5372733}], "links": [{"source": 1074560, "target": 1569937}, {"source": 4955042, "target": 4946938}, {"source": 859299, "target": 778674}, {"source": 859299, "target": 1569937}, {"source": 2151492, "target": 1569937}, {"source": 4929123, "target": 5042505}, {"source": 4929123, "target": 5011206}, {"source": 4929123, "target": 5221464}, {"source": 1176263, "target": 1569937}, {"source": 4956745, "target": 5512718}, {"source": 5512718, "target": 5024244}, {"source": 5512718, "target": 5221464}, {"source": 5024244, "target": 5221464}]}
|
[
1074560,
4946938,
4929123,
5372733
] | 4 |
336 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Jennifer Myers, Mark Sanders, Mr. Mark Barber, Christine Cervantes, Anthony Patterson, Joseph Buck, Joanna Shaw, Corey Jones, Jason Foley, Tiffany Rice, Peter Brown, David Bowman, Mary Hahn, Diane Hanson, Linda Browning DVM, Caitlyn Fowler
- Fiendship connections: Jennifer Myers to Mark Sanders, Mark Sanders to Tiffany Rice, Mark Sanders to Joanna Shaw, Mr. Mark Barber to Peter Brown, Mr. Mark Barber to Mary Hahn, Mr. Mark Barber to Tiffany Rice, Christine Cervantes to Tiffany Rice, Anthony Patterson to David Bowman, Anthony Patterson to Caitlyn Fowler, Joseph Buck to Corey Jones, Joseph Buck to Linda Browning DVM, Corey Jones to Peter Brown, Jason Foley to Tiffany Rice, Tiffany Rice to Diane Hanson, Tiffany Rice to Peter Brown, Mary Hahn to Linda Browning DVM
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Jennifer Myers", "id": 614590}, {"name": "Mark Sanders", "id": 108937}, {"name": "Mr. Mark Barber", "id": 17098}, {"name": "Christine Cervantes", "id": 12171}, {"name": "Anthony Patterson", "id": 4940588}, {"name": "Joseph Buck", "id": 10537}, {"name": "Joanna Shaw", "id": 383213}, {"name": "Corey Jones", "id": 688}, {"name": "Jason Foley", "id": 34515}, {"name": "Tiffany Rice", "id": 89845}, {"name": "Peter Brown", "id": 23958}, {"name": "David Bowman", "id": 5004213}, {"name": "Mary Hahn", "id": 84792}, {"name": "Diane Hanson", "id": 4795}, {"name": "Linda Browning DVM", "id": 23772}, {"name": "Caitlyn Fowler", "id": 5237150}], "links": [{"source": 614590, "target": 108937}, {"source": 108937, "target": 89845}, {"source": 108937, "target": 383213}, {"source": 17098, "target": 23958}, {"source": 17098, "target": 84792}, {"source": 17098, "target": 89845}, {"source": 12171, "target": 89845}, {"source": 4940588, "target": 5004213}, {"source": 4940588, "target": 5237150}, {"source": 10537, "target": 688}, {"source": 10537, "target": 23772}, {"source": 688, "target": 23958}, {"source": 34515, "target": 89845}, {"source": 89845, "target": 4795}, {"source": 89845, "target": 23958}, {"source": 84792, "target": 23772}]}
|
[
108937,
4940588
] | 2 |
337 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Julie Bass, Charles Wyatt, Daniel Terry, Laurie Walker, Michelle Ruiz, Mr. Tommy Zamora, Anthony Morris, Vincent Harris, Mathew Henderson, Richard Sanford, William Baker, Andrew Morrison, Sandra King, Tracey Smith, Ashley Riley, Eric Duncan
- Fiendship connections: Julie Bass to Sandra King, Julie Bass to William Baker, Charles Wyatt to Mr. Tommy Zamora, Daniel Terry to Ashley Riley, Mr. Tommy Zamora to Vincent Harris, Anthony Morris to Richard Sanford, Mathew Henderson to William Baker, Mathew Henderson to Tracey Smith, William Baker to Andrew Morrison, William Baker to Tracey Smith
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Julie Bass", "id": 1516737}, {"name": "Charles Wyatt", "id": 2425954}, {"name": "Daniel Terry", "id": 2711267}, {"name": "Laurie Walker", "id": 2473700}, {"name": "Michelle Ruiz", "id": 2475109}, {"name": "Mr. Tommy Zamora", "id": 3044903}, {"name": "Anthony Morris", "id": 3364169}, {"name": "Vincent Harris", "id": 2418698}, {"name": "Mathew Henderson", "id": 1570061}, {"name": "Richard Sanford", "id": 2428079}, {"name": "William Baker", "id": 2102992}, {"name": "Andrew Morrison", "id": 1187953}, {"name": "Sandra King", "id": 1843409}, {"name": "Tracey Smith", "id": 2261725}, {"name": "Ashley Riley", "id": 2409054}, {"name": "Eric Duncan", "id": 2473405}], "links": [{"source": 1516737, "target": 1843409}, {"source": 1516737, "target": 2102992}, {"source": 2425954, "target": 3044903}, {"source": 2711267, "target": 2409054}, {"source": 3044903, "target": 2418698}, {"source": 3364169, "target": 2428079}, {"source": 1570061, "target": 2102992}, {"source": 1570061, "target": 2261725}, {"source": 2102992, "target": 1187953}, {"source": 2102992, "target": 2261725}]}
|
[
1516737,
2425954,
2711267,
2473700,
2475109,
3364169,
2473405
] | 7 |
338 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Brittany Pena, Joseph Lambert, Todd Blankenship, Kristina Carr, Erica Anthony, Kathleen Jones, Tracey Howard, Amy Curtis, Katherine Taylor, Kristin Jones, Shaun Henry, Tamara Daniels, Kaitlyn Burnett, Fernando Gallegos, Stephen Price, Kelsey Morgan, Theresa Guzman
- Fiendship connections: Brittany Pena to Tamara Daniels, Joseph Lambert to Tracey Howard, Todd Blankenship to Stephen Price, Tracey Howard to Theresa Guzman, Kristin Jones to Kaitlyn Burnett, Shaun Henry to Kaitlyn Burnett
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Brittany Pena", "id": 2434305}, {"name": "Joseph Lambert", "id": 2479779}, {"name": "Todd Blankenship", "id": 2406148}, {"name": "Kristina Carr", "id": 2463175}, {"name": "Erica Anthony", "id": 2443656}, {"name": "Kathleen Jones", "id": 2478823}, {"name": "Tracey Howard", "id": 4346731}, {"name": "Amy Curtis", "id": 2460173}, {"name": "Katherine Taylor", "id": 2413070}, {"name": "Kristin Jones", "id": 3318800}, {"name": "Shaun Henry", "id": 3318813}, {"name": "Tamara Daniels", "id": 3530517}, {"name": "Kaitlyn Burnett", "id": 2427062}, {"name": "Fernando Gallegos", "id": 2476215}, {"name": "Stephen Price", "id": 2468249}, {"name": "Kelsey Morgan", "id": 2482428}, {"name": "Theresa Guzman", "id": 2473661}], "links": [{"source": 2434305, "target": 3530517}, {"source": 2479779, "target": 4346731}, {"source": 2406148, "target": 2468249}, {"source": 4346731, "target": 2473661}, {"source": 3318800, "target": 2427062}, {"source": 3318813, "target": 2427062}]}
|
[
2434305,
2479779,
2468249,
2463175,
2443656,
2478823,
2460173,
2413070,
3318800,
2476215,
2482428
] | 11 |
339 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Debbie Harris, Carol Harrison, Briana Curtis, George Kramer, Kimberly Mitchell, Katherine Powers, Kevin Dyer, Cassandra Foster, Emily Arellano, Russell Parker, Michael Thomas, Robert Hendricks, Megan Morgan, Michael Baker, Casey Parker, Wesley Clark, Jessica Hoffman, Joshua Kane, Carrie Rodriguez, Victoria Lee, Scott Morgan, Denise Robinson, Jay Buchanan, Melissa Farley, Rachel Miller, Tracey Randall
- Fiendship connections: Debbie Harris to Katherine Powers, Carol Harrison to Scott Morgan, Briana Curtis to Jessica Hoffman, Briana Curtis to Tracey Randall, Katherine Powers to Scott Morgan, Katherine Powers to Victoria Lee, Kevin Dyer to Russell Parker, Emily Arellano to Michael Baker, Michael Thomas to Wesley Clark, Michael Thomas to Denise Robinson, Robert Hendricks to Wesley Clark, Robert Hendricks to Denise Robinson, Megan Morgan to Rachel Miller, Wesley Clark to Denise Robinson, Joshua Kane to Melissa Farley, Jay Buchanan to Melissa Farley
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Debbie Harris", "id": 2839940}, {"name": "Carol Harrison", "id": 2413060}, {"name": "Briana Curtis", "id": 1607174}, {"name": "George Kramer", "id": 2467079}, {"name": "Kimberly Mitchell", "id": 2474632}, {"name": "Katherine Powers", "id": 2413071}, {"name": "Kevin Dyer", "id": 2672023}, {"name": "Cassandra Foster", "id": 11423}, {"name": "Emily Arellano", "id": 1851556}, {"name": "Russell Parker", "id": 2406955}, {"name": "Michael Thomas", "id": 2431661}, {"name": "Robert Hendricks", "id": 2405691}, {"name": "Megan Morgan", "id": 2493244}, {"name": "Michael Baker", "id": 1331671}, {"name": "Casey Parker", "id": 2427364}, {"name": "Wesley Clark", "id": 2431845}, {"name": "Jessica Hoffman", "id": 914025}, {"name": "Joshua Kane", "id": 1002}, {"name": "Carrie Rodriguez", "id": 2436846}, {"name": "Victoria Lee", "id": 2839919}, {"name": "Scott Morgan", "id": 2403700}, {"name": "Denise Robinson", "id": 2595189}, {"name": "Jay Buchanan", "id": 758262}, {"name": "Melissa Farley", "id": 2039}, {"name": "Rachel Miller", "id": 3735289}, {"name": "Tracey Randall", "id": 1053050}], "links": [{"source": 2839940, "target": 2413071}, {"source": 2413060, "target": 2403700}, {"source": 1607174, "target": 914025}, {"source": 1607174, "target": 1053050}, {"source": 2413071, "target": 2403700}, {"source": 2413071, "target": 2839919}, {"source": 2672023, "target": 2406955}, {"source": 1851556, "target": 1331671}, {"source": 2431661, "target": 2431845}, {"source": 2431661, "target": 2595189}, {"source": 2405691, "target": 2431845}, {"source": 2405691, "target": 2595189}, {"source": 2493244, "target": 3735289}, {"source": 2431845, "target": 2595189}, {"source": 1002, "target": 2039}, {"source": 758262, "target": 2039}]}
|
[
2839940,
914025,
2467079,
2474632,
2406955,
11423,
1851556,
2431845,
3735289,
2427364,
1002,
2436846
] | 12 |
340 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Nicholas Tapia, Joe Robinson, Martin Torres, Kevin Gonzalez, Dana Smith, Elaine Dodson, Charles Obrien, Amy Hall, Brandi Ramirez, Christina Huerta, Jordan Sims, Eric Williams, Ryan Wagner, Edward Phelps, Kathryn Martinez, Jacqueline Ayala
- Fiendship connections: Nicholas Tapia to Joe Robinson, Nicholas Tapia to Elaine Dodson, Nicholas Tapia to Ryan Wagner, Nicholas Tapia to Edward Phelps, Martin Torres to Jacqueline Ayala, Kevin Gonzalez to Jacqueline Ayala, Dana Smith to Eric Williams, Charles Obrien to Christina Huerta, Amy Hall to Brandi Ramirez, Amy Hall to Kathryn Martinez, Amy Hall to Jordan Sims, Brandi Ramirez to Eric Williams, Brandi Ramirez to Kathryn Martinez, Brandi Ramirez to Jordan Sims, Jordan Sims to Eric Williams, Jordan Sims to Kathryn Martinez, Eric Williams to Kathryn Martinez
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Nicholas Tapia", "id": 1399297}, {"name": "Joe Robinson", "id": 826017}, {"name": "Martin Torres", "id": 521443}, {"name": "Kevin Gonzalez", "id": 723205}, {"name": "Dana Smith", "id": 3763141}, {"name": "Elaine Dodson", "id": 1655080}, {"name": "Charles Obrien", "id": 2279596}, {"name": "Amy Hall", "id": 2450029}, {"name": "Brandi Ramirez", "id": 2422031}, {"name": "Christina Huerta", "id": 2280530}, {"name": "Jordan Sims", "id": 2848691}, {"name": "Eric Williams", "id": 2446358}, {"name": "Ryan Wagner", "id": 1645848}, {"name": "Edward Phelps", "id": 1909338}, {"name": "Kathryn Martinez", "id": 2450045}, {"name": "Jacqueline Ayala", "id": 104735}], "links": [{"source": 1399297, "target": 826017}, {"source": 1399297, "target": 1655080}, {"source": 1399297, "target": 1645848}, {"source": 1399297, "target": 1909338}, {"source": 521443, "target": 104735}, {"source": 723205, "target": 104735}, {"source": 3763141, "target": 2446358}, {"source": 2279596, "target": 2280530}, {"source": 2450029, "target": 2422031}, {"source": 2450029, "target": 2450045}, {"source": 2450029, "target": 2848691}, {"source": 2422031, "target": 2446358}, {"source": 2422031, "target": 2450045}, {"source": 2422031, "target": 2848691}, {"source": 2848691, "target": 2446358}, {"source": 2848691, "target": 2450045}, {"source": 2446358, "target": 2450045}]}
|
[
1399297,
521443,
3763141,
2280530
] | 4 |
341 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Martha Morales, Barbara Mueller, Jill Keith, Brian Sanchez, Amanda Patrick, James Bowers, Chelsea White, Raymond Bell, Richard Dunlap, Brooke Young, Elizabeth Jones, Julie Ball, Jacqueline Henderson, Kaylee Aguilar, Anthony Jones, Tammy Roberts, Patrick Wade, Dr. Scott Owens, Jennifer Elliott, Edward Kim, Rachel Sutton, Brian Gonzales, Courtney Brooks, Christopher Larson, Dorothy Mathis, Joshua Torres, Helen Garrison
- Fiendship connections: Martha Morales to Julie Ball, Martha Morales to Raymond Bell, Martha Morales to Barbara Mueller, Barbara Mueller to Jennifer Elliott, Barbara Mueller to Julie Ball, Barbara Mueller to Christopher Larson, Barbara Mueller to Raymond Bell, Jill Keith to Dorothy Mathis, Jill Keith to James Bowers, Jill Keith to Chelsea White, Jill Keith to Edward Kim, Jill Keith to Rachel Sutton, Jill Keith to Jacqueline Henderson, Amanda Patrick to Anthony Jones, James Bowers to Dorothy Mathis, James Bowers to Chelsea White, James Bowers to Richard Dunlap, James Bowers to Edward Kim, James Bowers to Rachel Sutton, James Bowers to Brooke Young, Chelsea White to Dorothy Mathis, Chelsea White to Richard Dunlap, Chelsea White to Edward Kim, Chelsea White to Rachel Sutton, Chelsea White to Brian Gonzales, Chelsea White to Elizabeth Jones, Chelsea White to Jacqueline Henderson, Raymond Bell to Julie Ball, Richard Dunlap to Dorothy Mathis, Richard Dunlap to Edward Kim, Richard Dunlap to Rachel Sutton, Richard Dunlap to Jacqueline Henderson, Brooke Young to Dorothy Mathis, Brooke Young to Edward Kim, Brooke Young to Kaylee Aguilar, Elizabeth Jones to Jacqueline Henderson, Jacqueline Henderson to Dorothy Mathis, Jacqueline Henderson to Edward Kim, Jacqueline Henderson to Rachel Sutton, Jacqueline Henderson to Brian Gonzales, Kaylee Aguilar to Brian Gonzales, Anthony Jones to Joshua Torres, Anthony Jones to Courtney Brooks, Anthony Jones to Tammy Roberts, Edward Kim to Dorothy Mathis, Edward Kim to Rachel Sutton, Rachel Sutton to Dorothy Mathis, Christopher Larson to Helen Garrison
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Martha Morales", "id": 1993486}, {"name": "Barbara Mueller", "id": 1993487}, {"name": "Jill Keith", "id": 2435344}, {"name": "Brian Sanchez", "id": 2488463}, {"name": "Amanda Patrick", "id": 2459666}, {"name": "James Bowers", "id": 2435347}, {"name": "Chelsea White", "id": 2435349}, {"name": "Raymond Bell", "id": 1792151}, {"name": "Richard Dunlap", "id": 2435351}, {"name": "Brooke Young", "id": 2465815}, {"name": "Elizabeth Jones", "id": 2471324}, {"name": "Julie Ball", "id": 1220511}, {"name": "Jacqueline Henderson", "id": 3555362}, {"name": "Kaylee Aguilar", "id": 2604838}, {"name": "Anthony Jones", "id": 2460071}, {"name": "Tammy Roberts", "id": 4078766}, {"name": "Patrick Wade", "id": 1600190}, {"name": "Dr. Scott Owens", "id": 2468931}, {"name": "Jennifer Elliott", "id": 1182787}, {"name": "Edward Kim", "id": 2435403}, {"name": "Rachel Sutton", "id": 2435415}, {"name": "Brian Gonzales", "id": 2435435}, {"name": "Courtney Brooks", "id": 2479853}, {"name": "Christopher Larson", "id": 1504367}, {"name": "Dorothy Mathis", "id": 2435316}, {"name": "Joshua Torres", "id": 2460281}, {"name": "Helen Garrison", "id": 1086716}], "links": [{"source": 1993486, "target": 1220511}, {"source": 1993486, "target": 1792151}, {"source": 1993486, "target": 1993487}, {"source": 1993487, "target": 1182787}, {"source": 1993487, "target": 1220511}, {"source": 1993487, "target": 1504367}, {"source": 1993487, "target": 1792151}, {"source": 2435344, "target": 2435316}, {"source": 2435344, "target": 2435347}, {"source": 2435344, "target": 2435349}, {"source": 2435344, "target": 2435403}, {"source": 2435344, "target": 2435415}, {"source": 2435344, "target": 3555362}, {"source": 2459666, "target": 2460071}, {"source": 2435347, "target": 2435316}, {"source": 2435347, "target": 2435349}, {"source": 2435347, "target": 2435351}, {"source": 2435347, "target": 2435403}, {"source": 2435347, "target": 2435415}, {"source": 2435347, "target": 2465815}, {"source": 2435349, "target": 2435316}, {"source": 2435349, "target": 2435351}, {"source": 2435349, "target": 2435403}, {"source": 2435349, "target": 2435415}, {"source": 2435349, "target": 2435435}, {"source": 2435349, "target": 2471324}, {"source": 2435349, "target": 3555362}, {"source": 1792151, "target": 1220511}, {"source": 2435351, "target": 2435316}, {"source": 2435351, "target": 2435403}, {"source": 2435351, "target": 2435415}, {"source": 2435351, "target": 3555362}, {"source": 2465815, "target": 2435316}, {"source": 2465815, "target": 2435403}, {"source": 2465815, "target": 2604838}, {"source": 2471324, "target": 3555362}, {"source": 3555362, "target": 2435316}, {"source": 3555362, "target": 2435403}, {"source": 3555362, "target": 2435415}, {"source": 3555362, "target": 2435435}, {"source": 2604838, "target": 2435435}, {"source": 2460071, "target": 2460281}, {"source": 2460071, "target": 2479853}, {"source": 2460071, "target": 4078766}, {"source": 2435403, "target": 2435316}, {"source": 2435403, "target": 2435415}, {"source": 2435415, "target": 2435316}, {"source": 1504367, "target": 1086716}]}
|
[
1182787,
3555362,
2488463,
2460071,
1600190,
2468931
] | 6 |
342 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Tammy Gordon, Donald Brown, Ashley Allen MD, Kenneth Harris, Brittany Whitney, Amy Parker, Kevin Garrison, Mandy Ford, Aaron Adams, Donna Callahan, William Tran, Elizabeth Wagner, Jerry Chang, Tony Smith, Barbara Young DDS, Robert Schaefer, Brent Cook, Robert Evans
- Fiendship connections: Tammy Gordon to Brent Cook, Tammy Gordon to Tony Smith, Tammy Gordon to Kevin Garrison, Donald Brown to William Tran, Donald Brown to Jerry Chang, Ashley Allen MD to Donna Callahan, Kenneth Harris to Brittany Whitney, Brittany Whitney to Elizabeth Wagner, Amy Parker to Donna Callahan, Aaron Adams to Jerry Chang, William Tran to Jerry Chang, Elizabeth Wagner to Jerry Chang
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Tammy Gordon", "id": 238593}, {"name": "Donald Brown", "id": 4956034}, {"name": "Ashley Allen MD", "id": 5531459}, {"name": "Kenneth Harris", "id": 4970821}, {"name": "Brittany Whitney", "id": 4929127}, {"name": "Amy Parker", "id": 5636425}, {"name": "Kevin Garrison", "id": 343915}, {"name": "Mandy Ford", "id": 4940684}, {"name": "Aaron Adams", "id": 4975693}, {"name": "Donna Callahan", "id": 4928398}, {"name": "William Tran", "id": 4962638}, {"name": "Elizabeth Wagner", "id": 5032848}, {"name": "Jerry Chang", "id": 5208916}, {"name": "Tony Smith", "id": 162964}, {"name": "Barbara Young DDS", "id": 129590}, {"name": "Robert Schaefer", "id": 4956857}, {"name": "Brent Cook", "id": 105466}, {"name": "Robert Evans", "id": 5188254}], "links": [{"source": 238593, "target": 105466}, {"source": 238593, "target": 162964}, {"source": 238593, "target": 343915}, {"source": 4956034, "target": 4962638}, {"source": 4956034, "target": 5208916}, {"source": 5531459, "target": 4928398}, {"source": 4970821, "target": 4929127}, {"source": 4929127, "target": 5032848}, {"source": 5636425, "target": 4928398}, {"source": 4975693, "target": 5208916}, {"source": 4962638, "target": 5208916}, {"source": 5032848, "target": 5208916}]}
|
[
238593,
4956034,
5636425,
4940684,
129590,
4956857,
5188254
] | 7 |
343 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Dustin Griffin, Michael Cooper, Aaron Pennington, Trevor Hines, Daniel Wheeler, Sheri Riley, Mark Odonnell, Chris Morris, Kristen Smith, David Frost, Johnathan Avery MD, Michael Calhoun, Laurie Miller, Beth Spears, Joshua Kim, Heather Walters
- Fiendship connections: Dustin Griffin to David Frost, Michael Cooper to Mark Odonnell, Michael Cooper to Beth Spears, Trevor Hines to Joshua Kim, Sheri Riley to Laurie Miller, Chris Morris to Joshua Kim, Kristen Smith to Michael Calhoun
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Dustin Griffin", "id": 4566339}, {"name": "Michael Cooper", "id": 3783270}, {"name": "Aaron Pennington", "id": 2432518}, {"name": "Trevor Hines", "id": 926568}, {"name": "Daniel Wheeler", "id": 2465801}, {"name": "Sheri Riley", "id": 2453450}, {"name": "Mark Odonnell", "id": 2448618}, {"name": "Chris Morris", "id": 1190891}, {"name": "Kristen Smith", "id": 2449167}, {"name": "David Frost", "id": 2479792}, {"name": "Johnathan Avery MD", "id": 2464561}, {"name": "Michael Calhoun", "id": 3826609}, {"name": "Laurie Miller", "id": 3898195}, {"name": "Beth Spears", "id": 2468532}, {"name": "Joshua Kim", "id": 1374327}, {"name": "Heather Walters", "id": 2473917}], "links": [{"source": 4566339, "target": 2479792}, {"source": 3783270, "target": 2448618}, {"source": 3783270, "target": 2468532}, {"source": 926568, "target": 1374327}, {"source": 2453450, "target": 3898195}, {"source": 1190891, "target": 1374327}, {"source": 2449167, "target": 3826609}]}
|
[
2479792,
2448618,
2432518,
926568,
2465801,
2453450,
3826609,
2464561,
2473917
] | 9 |
344 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Laura Schmidt, Dr. Samuel Medina, Heather Mcgee, Matthew Preston, Sherry Ward, Sarah Bryant, Daniel Schwartz, Elizabeth Roach, Tara Thompson, Stephanie Wilson, James Reyes, William Harris, Antonio Martin, Russell Lee, Ruben Cannon, Christopher Smith, James Hunt, David Day, Joshua Miller, Cheryl Gilmore, Lisa Lopez, Sean Kerr
- Fiendship connections: Laura Schmidt to Daniel Schwartz, Laura Schmidt to Elizabeth Roach, Dr. Samuel Medina to Sherry Ward, Dr. Samuel Medina to Antonio Martin, Dr. Samuel Medina to Tara Thompson, Dr. Samuel Medina to Elizabeth Roach, Sarah Bryant to Russell Lee, Sarah Bryant to Lisa Lopez, Daniel Schwartz to Joshua Miller, Elizabeth Roach to Tara Thompson, James Reyes to Antonio Martin
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Laura Schmidt", "id": 2562178}, {"name": "Dr. Samuel Medina", "id": 3826949}, {"name": "Heather Mcgee", "id": 2461840}, {"name": "Matthew Preston", "id": 2494500}, {"name": "Sherry Ward", "id": 2449576}, {"name": "Sarah Bryant", "id": 2465833}, {"name": "Daniel Schwartz", "id": 2494505}, {"name": "Elizabeth Roach", "id": 2498729}, {"name": "Tara Thompson", "id": 2482732}, {"name": "Stephanie Wilson", "id": 2474415}, {"name": "James Reyes", "id": 2460087}, {"name": "William Harris", "id": 2462392}, {"name": "Antonio Martin", "id": 2463555}, {"name": "Russell Lee", "id": 2465871}, {"name": "Ruben Cannon", "id": 2428241}, {"name": "Christopher Smith", "id": 2457303}, {"name": "James Hunt", "id": 2453981}, {"name": "David Day", "id": 2478306}, {"name": "Joshua Miller", "id": 4802670}, {"name": "Cheryl Gilmore", "id": 2430831}, {"name": "Lisa Lopez", "id": 4230001}, {"name": "Sean Kerr", "id": 2443005}], "links": [{"source": 2562178, "target": 2494505}, {"source": 2562178, "target": 2498729}, {"source": 3826949, "target": 2449576}, {"source": 3826949, "target": 2463555}, {"source": 3826949, "target": 2482732}, {"source": 3826949, "target": 2498729}, {"source": 2465833, "target": 2465871}, {"source": 2465833, "target": 4230001}, {"source": 2494505, "target": 4802670}, {"source": 2498729, "target": 2482732}, {"source": 2460087, "target": 2463555}]}
|
[
2562178,
2461840,
2494500,
4230001,
2474415,
2462392,
2428241,
2457303,
2453981,
2478306,
2430831,
2443005
] | 12 |
345 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Jason Brooks, George Harris, Pamela Morgan, Katie Cervantes, Jesse Dean, Sharon Gilbert, Jennifer Soto, Jennifer Cruz, Austin Davis, Robert Holloway, Heather Dalton, Francisco Lopez, Julie Torres, Miguel Osborne, Glenn Marsh, Adam King, Daniel Garcia, Travis Lowe, Melinda Morris MD, Linda Ayala, Heather Hull, Susan Torres
- Fiendship connections: Jason Brooks to Travis Lowe, Jason Brooks to Melinda Morris MD, Jason Brooks to Robert Holloway, Jason Brooks to George Harris, Jason Brooks to Jennifer Cruz, Jason Brooks to Jesse Dean, George Harris to Francisco Lopez, George Harris to Robert Holloway, Katie Cervantes to Miguel Osborne, Katie Cervantes to Adam King, Austin Davis to Adam King, Robert Holloway to Travis Lowe, Robert Holloway to Francisco Lopez, Francisco Lopez to Travis Lowe, Julie Torres to Daniel Garcia, Miguel Osborne to Heather Hull, Miguel Osborne to Adam King, Melinda Morris MD to Linda Ayala
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Jason Brooks", "id": 2459012}, {"name": "George Harris", "id": 2689933}, {"name": "Pamela Morgan", "id": 2428048}, {"name": "Katie Cervantes", "id": 2442128}, {"name": "Jesse Dean", "id": 4041626}, {"name": "Sharon Gilbert", "id": 2418720}, {"name": "Jennifer Soto", "id": 2429732}, {"name": "Jennifer Cruz", "id": 3065895}, {"name": "Austin Davis", "id": 2460102}, {"name": "Robert Holloway", "id": 2470983}, {"name": "Heather Dalton", "id": 2452429}, {"name": "Francisco Lopez", "id": 2464469}, {"name": "Julie Torres", "id": 2435285}, {"name": "Miguel Osborne", "id": 2431192}, {"name": "Glenn Marsh", "id": 2462685}, {"name": "Adam King", "id": 3476829}, {"name": "Daniel Garcia", "id": 2421086}, {"name": "Travis Lowe", "id": 2442991}, {"name": "Melinda Morris MD", "id": 2455536}, {"name": "Linda Ayala", "id": 3943280}, {"name": "Heather Hull", "id": 2464504}, {"name": "Susan Torres", "id": 2428795}], "links": [{"source": 2459012, "target": 2442991}, {"source": 2459012, "target": 2455536}, {"source": 2459012, "target": 2470983}, {"source": 2459012, "target": 2689933}, {"source": 2459012, "target": 3065895}, {"source": 2459012, "target": 4041626}, {"source": 2689933, "target": 2464469}, {"source": 2689933, "target": 2470983}, {"source": 2442128, "target": 2431192}, {"source": 2442128, "target": 3476829}, {"source": 2460102, "target": 3476829}, {"source": 2470983, "target": 2442991}, {"source": 2470983, "target": 2464469}, {"source": 2464469, "target": 2442991}, {"source": 2435285, "target": 2421086}, {"source": 2431192, "target": 2464504}, {"source": 2431192, "target": 3476829}, {"source": 2455536, "target": 3943280}]}
|
[
2459012,
2428048,
2460102,
2418720,
2429732,
2452429,
2435285,
2462685,
2428795
] | 9 |
346 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Gordon Burton, Kristen Espinoza, Jay Dunn, Brian Hamilton DVM, Valerie Gamble, Mary Fry, Katherine Williams, Kristen Morrison, Sara Johnson, Adrian Hernandez, Megan Waters, Amanda Henry, Eric Smith, Martin Boyd, Tony Ramirez
- Fiendship connections: Gordon Burton to Amanda Henry, Gordon Burton to Kristen Espinoza, Kristen Espinoza to Jay Dunn, Kristen Espinoza to Mary Fry, Brian Hamilton DVM to Martin Boyd, Valerie Gamble to Tony Ramirez, Valerie Gamble to Megan Waters, Valerie Gamble to Martin Boyd, Valerie Gamble to Sara Johnson, Valerie Gamble to Eric Smith, Katherine Williams to Kristen Morrison, Kristen Morrison to Tony Ramirez, Megan Waters to Eric Smith
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Gordon Burton", "id": 32864}, {"name": "Kristen Espinoza", "id": 310242}, {"name": "Jay Dunn", "id": 1091}, {"name": "Brian Hamilton DVM", "id": 6017443}, {"name": "Valerie Gamble", "id": 5586086}, {"name": "Mary Fry", "id": 39978}, {"name": "Katherine Williams", "id": 5289578}, {"name": "Kristen Morrison", "id": 5006318}, {"name": "Sara Johnson", "id": 5216207}, {"name": "Adrian Hernandez", "id": 4945905}, {"name": "Megan Waters", "id": 4959604}, {"name": "Amanda Henry", "id": 26}, {"name": "Eric Smith", "id": 5323004}, {"name": "Martin Boyd", "id": 5116510}, {"name": "Tony Ramirez", "id": 4956575}], "links": [{"source": 32864, "target": 26}, {"source": 32864, "target": 310242}, {"source": 310242, "target": 1091}, {"source": 310242, "target": 39978}, {"source": 6017443, "target": 5116510}, {"source": 5586086, "target": 4956575}, {"source": 5586086, "target": 4959604}, {"source": 5586086, "target": 5116510}, {"source": 5586086, "target": 5216207}, {"source": 5586086, "target": 5323004}, {"source": 5289578, "target": 5006318}, {"source": 5006318, "target": 4956575}, {"source": 4959604, "target": 5323004}]}
|
[
32864,
6017443,
4945905
] | 3 |
347 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Reginald Proctor, Courtney Martin, Jennifer Crawford, Carla Rogers, Julie Ryan, Troy Campbell Jr., Jennifer Barber, Robert Norris, Jason Moore, Deborah Johnson, Mrs. Lindsey Robbins, Dr. Jamie Smith, Joseph Nelson, Jillian Bell, Rachel Rivers, Tina Schroeder, Teresa Hahn
- Fiendship connections: Reginald Proctor to Carla Rogers, Courtney Martin to Troy Campbell Jr., Courtney Martin to Rachel Rivers, Jennifer Crawford to Carla Rogers, Carla Rogers to Mrs. Lindsey Robbins, Carla Rogers to Julie Ryan, Carla Rogers to Jillian Bell, Carla Rogers to Jason Moore, Troy Campbell Jr. to Teresa Hahn, Troy Campbell Jr. to Tina Schroeder, Jennifer Barber to Jillian Bell, Jennifer Barber to Jason Moore, Robert Norris to Joseph Nelson, Jason Moore to Jillian Bell, Deborah Johnson to Joseph Nelson, Dr. Jamie Smith to Rachel Rivers, Joseph Nelson to Teresa Hahn
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Reginald Proctor", "id": 1535235}, {"name": "Courtney Martin", "id": 2411910}, {"name": "Jennifer Crawford", "id": 1364232}, {"name": "Carla Rogers", "id": 2201609}, {"name": "Julie Ryan", "id": 1804873}, {"name": "Troy Campbell Jr.", "id": 2460683}, {"name": "Jennifer Barber", "id": 1997962}, {"name": "Robert Norris", "id": 4684492}, {"name": "Jason Moore", "id": 1922350}, {"name": "Deborah Johnson", "id": 4684496}, {"name": "Mrs. Lindsey Robbins", "id": 1748657}, {"name": "Dr. Jamie Smith", "id": 2572242}, {"name": "Joseph Nelson", "id": 2485780}, {"name": "Jillian Bell", "id": 1880757}, {"name": "Rachel Rivers", "id": 2464312}, {"name": "Tina Schroeder", "id": 4094013}, {"name": "Teresa Hahn", "id": 2678431}], "links": [{"source": 1535235, "target": 2201609}, {"source": 2411910, "target": 2460683}, {"source": 2411910, "target": 2464312}, {"source": 1364232, "target": 2201609}, {"source": 2201609, "target": 1748657}, {"source": 2201609, "target": 1804873}, {"source": 2201609, "target": 1880757}, {"source": 2201609, "target": 1922350}, {"source": 2460683, "target": 2678431}, {"source": 2460683, "target": 4094013}, {"source": 1997962, "target": 1880757}, {"source": 1997962, "target": 1922350}, {"source": 4684492, "target": 2485780}, {"source": 1922350, "target": 1880757}, {"source": 4684496, "target": 2485780}, {"source": 2572242, "target": 2464312}, {"source": 2485780, "target": 2678431}]}
|
[
1535235,
2411910
] | 2 |
348 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Dana Morgan, Anthony Webb, Paul Reynolds, John Herman, Ruth Garcia, Brian Foster, Kenneth Armstrong, Brandi Thompson, Thomas Delacruz, Abigail Harper, April Raymond, Ashley Williams, Amy Mills, Melissa Burns, Isaac Hall, Brooke Bell, Keith King, Bryan Allen, Jamie Santos, Dr. Michael Allen PhD, Matthew Mcclain
- Fiendship connections: Dana Morgan to Thomas Delacruz, Dana Morgan to Kenneth Armstrong, Paul Reynolds to Abigail Harper, Ruth Garcia to Keith King, Brandi Thompson to Abigail Harper, Amy Mills to Jamie Santos, Brooke Bell to Keith King, Keith King to Jamie Santos, Dr. Michael Allen PhD to Matthew Mcclain
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Dana Morgan", "id": 2478343}, {"name": "Anthony Webb", "id": 2478345}, {"name": "Paul Reynolds", "id": 5302160}, {"name": "John Herman", "id": 2455705}, {"name": "Ruth Garcia", "id": 3548706}, {"name": "Brian Foster", "id": 5299877}, {"name": "Kenneth Armstrong", "id": 4517941}, {"name": "Brandi Thompson", "id": 4935743}, {"name": "Thomas Delacruz", "id": 2442190}, {"name": "Abigail Harper", "id": 5891024}, {"name": "April Raymond", "id": 2431312}, {"name": "Ashley Williams", "id": 2459220}, {"name": "Amy Mills", "id": 3412957}, {"name": "Melissa Burns", "id": 4933726}, {"name": "Isaac Hall", "id": 5089891}, {"name": "Brooke Bell", "id": 2762982}, {"name": "Keith King", "id": 2435691}, {"name": "Bryan Allen", "id": 2472555}, {"name": "Jamie Santos", "id": 2435695}, {"name": "Dr. Michael Allen PhD", "id": 2462327}, {"name": "Matthew Mcclain", "id": 2471931}], "links": [{"source": 2478343, "target": 2442190}, {"source": 2478343, "target": 4517941}, {"source": 5302160, "target": 5891024}, {"source": 3548706, "target": 2435691}, {"source": 4935743, "target": 5891024}, {"source": 3412957, "target": 2435695}, {"source": 2762982, "target": 2435691}, {"source": 2435691, "target": 2435695}, {"source": 2462327, "target": 2471931}]}
|
[
4517941,
2478345,
5302160,
2455705,
3548706,
5299877,
2431312,
2459220,
4933726,
5089891,
2472555,
2471931
] | 12 |
349 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Alan Pearson, Scott Baxter, Lisa Johnson, Drew Lopez, Kimberly Adams, Robert Chambers, Eric Smith, Crystal Kim, Richard Nelson, Judy Huang, David Stevens, Christine Calhoun, Kevin Gillespie, Jennifer Wallace, Robert Steele, Jeffrey Robles, Daniel Howell
- Fiendship connections: Alan Pearson to Drew Lopez, Scott Baxter to David Stevens, Lisa Johnson to Drew Lopez, Drew Lopez to David Stevens, Drew Lopez to Robert Steele, Drew Lopez to Christine Calhoun, Drew Lopez to Richard Nelson, Drew Lopez to Judy Huang, Robert Chambers to Kevin Gillespie, Robert Chambers to Daniel Howell, Eric Smith to Kevin Gillespie, Crystal Kim to Jeffrey Robles, Christine Calhoun to Kevin Gillespie, Kevin Gillespie to Jennifer Wallace, Robert Steele to Jeffrey Robles
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Alan Pearson", "id": 4250337}, {"name": "Scott Baxter", "id": 2459202}, {"name": "Lisa Johnson", "id": 4250212}, {"name": "Drew Lopez", "id": 2467333}, {"name": "Kimberly Adams", "id": 2439465}, {"name": "Robert Chambers", "id": 2420489}, {"name": "Eric Smith", "id": 2585675}, {"name": "Crystal Kim", "id": 3027116}, {"name": "Richard Nelson", "id": 4250346}, {"name": "Judy Huang", "id": 4250382}, {"name": "David Stevens", "id": 4045838}, {"name": "Christine Calhoun", "id": 4250229}, {"name": "Kevin Gillespie", "id": 2478237}, {"name": "Jennifer Wallace", "id": 4206521}, {"name": "Robert Steele", "id": 4250108}, {"name": "Jeffrey Robles", "id": 2474109}, {"name": "Daniel Howell", "id": 2902239}], "links": [{"source": 4250337, "target": 2467333}, {"source": 2459202, "target": 4045838}, {"source": 4250212, "target": 2467333}, {"source": 2467333, "target": 4045838}, {"source": 2467333, "target": 4250108}, {"source": 2467333, "target": 4250229}, {"source": 2467333, "target": 4250346}, {"source": 2467333, "target": 4250382}, {"source": 2420489, "target": 2478237}, {"source": 2420489, "target": 2902239}, {"source": 2585675, "target": 2478237}, {"source": 3027116, "target": 2474109}, {"source": 4250229, "target": 2478237}, {"source": 2478237, "target": 4206521}, {"source": 4250108, "target": 2474109}]}
|
[
4250337,
2439465
] | 2 |
350 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Derek Zamora, Amanda Whitney, Jimmy Sanders, Samuel Turner, Scott Hawkins, Laura Price, Larry Johnson, Gregory Davenport, Scott Reed, Lee Cisneros, Alicia Romero, Katherine Bowman, Nicole Howell, Ashley Ramos, Darren White, Aaron Wood, Reginald Robertson, Bryan Richard
- Fiendship connections: Amanda Whitney to Scott Reed, Jimmy Sanders to Larry Johnson, Jimmy Sanders to Katherine Bowman, Jimmy Sanders to Scott Hawkins, Jimmy Sanders to Laura Price, Jimmy Sanders to Lee Cisneros, Scott Hawkins to Lee Cisneros, Gregory Davenport to Scott Reed, Scott Reed to Aaron Wood, Scott Reed to Bryan Richard, Scott Reed to Ashley Ramos
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Derek Zamora", "id": 2499072}, {"name": "Amanda Whitney", "id": 3666562}, {"name": "Jimmy Sanders", "id": 2585858}, {"name": "Samuel Turner", "id": 2478565}, {"name": "Scott Hawkins", "id": 2477542}, {"name": "Laura Price", "id": 2479273}, {"name": "Larry Johnson", "id": 2405609}, {"name": "Gregory Davenport", "id": 2440075}, {"name": "Scott Reed", "id": 2441681}, {"name": "Lee Cisneros", "id": 2482257}, {"name": "Alicia Romero", "id": 2469971}, {"name": "Katherine Bowman", "id": 2450676}, {"name": "Nicole Howell", "id": 2404341}, {"name": "Ashley Ramos", "id": 2625465}, {"name": "Darren White", "id": 2495738}, {"name": "Aaron Wood", "id": 2410043}, {"name": "Reginald Robertson", "id": 2438268}, {"name": "Bryan Richard", "id": 2412959}], "links": [{"source": 3666562, "target": 2441681}, {"source": 2585858, "target": 2405609}, {"source": 2585858, "target": 2450676}, {"source": 2585858, "target": 2477542}, {"source": 2585858, "target": 2479273}, {"source": 2585858, "target": 2482257}, {"source": 2477542, "target": 2482257}, {"source": 2440075, "target": 2441681}, {"source": 2441681, "target": 2410043}, {"source": 2441681, "target": 2412959}, {"source": 2441681, "target": 2625465}]}
|
[
2499072,
3666562,
2585858,
2478565,
2469971,
2404341,
2495738,
2438268
] | 8 |
351 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Christine Durham, Frederick Jones, Richard Kent, William Wilson, Melissa Williams, Timothy Carpenter, Jessica Weaver, Ashley Bruce, Dawn Hoover, Rebecca Hamilton, Meghan Perez, Sarah Wright, Shawn Yoder, Julie Robinson, Benjamin Hays
- Fiendship connections: Christine Durham to Shawn Yoder, Christine Durham to Frederick Jones, Christine Durham to Meghan Perez, Christine Durham to Sarah Wright, Frederick Jones to Sarah Wright, Melissa Williams to Julie Robinson, Melissa Williams to Rebecca Hamilton, Melissa Williams to Benjamin Hays, Timothy Carpenter to Ashley Bruce, Jessica Weaver to Ashley Bruce, Dawn Hoover to Meghan Perez
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Christine Durham", "id": 3086337}, {"name": "Frederick Jones", "id": 2474721}, {"name": "Richard Kent", "id": 2457251}, {"name": "William Wilson", "id": 1592580}, {"name": "Melissa Williams", "id": 5028005}, {"name": "Timothy Carpenter", "id": 4411046}, {"name": "Jessica Weaver", "id": 2444358}, {"name": "Ashley Bruce", "id": 2474376}, {"name": "Dawn Hoover", "id": 2704421}, {"name": "Rebecca Hamilton", "id": 5027985}, {"name": "Meghan Perez", "id": 2481086}, {"name": "Sarah Wright", "id": 2499224}, {"name": "Shawn Yoder", "id": 2419705}, {"name": "Julie Robinson", "id": 4952635}, {"name": "Benjamin Hays", "id": 5156958}], "links": [{"source": 3086337, "target": 2419705}, {"source": 3086337, "target": 2474721}, {"source": 3086337, "target": 2481086}, {"source": 3086337, "target": 2499224}, {"source": 2474721, "target": 2499224}, {"source": 5028005, "target": 4952635}, {"source": 5028005, "target": 5027985}, {"source": 5028005, "target": 5156958}, {"source": 4411046, "target": 2474376}, {"source": 2444358, "target": 2474376}, {"source": 2704421, "target": 2481086}]}
|
[
3086337,
2457251,
1592580,
5027985,
2474376
] | 5 |
352 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Vanessa Eaton, Karen Harris, Olivia Porter, Derrick Lane, Carla King, Mary Bauer, Latoya Carter, Jessica Obrien, Dr. Linda Williams, Brandon Nunez, Miranda Williams, Michael Velez, Charles Conner, Melvin Klein, Emily Johnson, John Gibson, Thomas Brown
- Fiendship connections: Vanessa Eaton to Karen Harris, Vanessa Eaton to Emily Johnson, Karen Harris to Dr. Linda Williams, Olivia Porter to Melvin Klein, Olivia Porter to Emily Johnson, Derrick Lane to Latoya Carter, Derrick Lane to Michael Velez, Carla King to Jessica Obrien, Mary Bauer to Brandon Nunez, Latoya Carter to Charles Conner, Jessica Obrien to Michael Velez, Dr. Linda Williams to Miranda Williams, Charles Conner to Melvin Klein, Emily Johnson to Thomas Brown, Emily Johnson to John Gibson
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Vanessa Eaton", "id": 1146496}, {"name": "Karen Harris", "id": 855842}, {"name": "Olivia Porter", "id": 1468354}, {"name": "Derrick Lane", "id": 929379}, {"name": "Carla King", "id": 805763}, {"name": "Mary Bauer", "id": 1022086}, {"name": "Latoya Carter", "id": 1018567}, {"name": "Jessica Obrien", "id": 978249}, {"name": "Dr. Linda Williams", "id": 1035627}, {"name": "Brandon Nunez", "id": 1512236}, {"name": "Miranda Williams", "id": 1104077}, {"name": "Michael Velez", "id": 1212079}, {"name": "Charles Conner", "id": 1292688}, {"name": "Melvin Klein", "id": 1163542}, {"name": "Emily Johnson", "id": 1478040}, {"name": "John Gibson", "id": 2247609}, {"name": "Thomas Brown", "id": 2079134}], "links": [{"source": 1146496, "target": 855842}, {"source": 1146496, "target": 1478040}, {"source": 855842, "target": 1035627}, {"source": 1468354, "target": 1163542}, {"source": 1468354, "target": 1478040}, {"source": 929379, "target": 1018567}, {"source": 929379, "target": 1212079}, {"source": 805763, "target": 978249}, {"source": 1022086, "target": 1512236}, {"source": 1018567, "target": 1292688}, {"source": 978249, "target": 1212079}, {"source": 1035627, "target": 1104077}, {"source": 1292688, "target": 1163542}, {"source": 1478040, "target": 2079134}, {"source": 1478040, "target": 2247609}]}
|
[
1146496,
1512236
] | 2 |
353 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Helen Garcia, Mary Christian, Randy Mcintyre, Dennis Smith, Samuel Stewart, Nathan Bishop, Danny Miller, Laura Bartlett, John Walters, Cody Massey, Spencer Dawson, Philip Parker, Kimberly Wade, Mr. Aaron Moore, Kenneth Griffin, Danielle Newman, Elizabeth Thompson
- Fiendship connections: Helen Garcia to Samuel Stewart, Helen Garcia to Kimberly Wade, Mary Christian to John Walters, Mary Christian to Danielle Newman, Randy Mcintyre to Spencer Dawson, Dennis Smith to Cody Massey, Samuel Stewart to Elizabeth Thompson, Samuel Stewart to Laura Bartlett, Samuel Stewart to Danielle Newman, Samuel Stewart to Danny Miller, Samuel Stewart to Nathan Bishop, Samuel Stewart to Kenneth Griffin, Nathan Bishop to Philip Parker, John Walters to Spencer Dawson
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Helen Garcia", "id": 4982113}, {"name": "Mary Christian", "id": 5077953}, {"name": "Randy Mcintyre", "id": 4934273}, {"name": "Dennis Smith", "id": 4955748}, {"name": "Samuel Stewart", "id": 4956805}, {"name": "Nathan Bishop", "id": 5606312}, {"name": "Danny Miller", "id": 5124970}, {"name": "Laura Bartlett", "id": 4952396}, {"name": "John Walters", "id": 4997068}, {"name": "Cody Massey", "id": 4973903}, {"name": "Spencer Dawson", "id": 4937488}, {"name": "Philip Parker", "id": 5033201}, {"name": "Kimberly Wade", "id": 5743124}, {"name": "Mr. Aaron Moore", "id": 5093590}, {"name": "Kenneth Griffin", "id": 6046843}, {"name": "Danielle Newman", "id": 5262429}, {"name": "Elizabeth Thompson", "id": 4927071}], "links": [{"source": 4982113, "target": 4956805}, {"source": 4982113, "target": 5743124}, {"source": 5077953, "target": 4997068}, {"source": 5077953, "target": 5262429}, {"source": 4934273, "target": 4937488}, {"source": 4955748, "target": 4973903}, {"source": 4956805, "target": 4927071}, {"source": 4956805, "target": 4952396}, {"source": 4956805, "target": 5262429}, {"source": 4956805, "target": 5124970}, {"source": 4956805, "target": 5606312}, {"source": 4956805, "target": 6046843}, {"source": 5606312, "target": 5033201}, {"source": 4997068, "target": 4937488}]}
|
[
4982113,
4955748,
5093590
] | 3 |
354 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Jesse Black, John Cummings, Tiffany Young, Scott White, Ashley Keller, Carolyn Thomas, Rachael Kim, Diane Webb, Nicole Martin, Michael Hanna, Christopher Holmes, Kevin Paul, Rebecca Taylor, Mary Vasquez, Jennifer Bailey, Manuel Clark
- Fiendship connections: Jesse Black to Diane Webb, John Cummings to Diane Webb, Ashley Keller to Diane Webb, Carolyn Thomas to Kevin Paul, Diane Webb to Jennifer Bailey, Diane Webb to Kevin Paul, Michael Hanna to Kevin Paul, Christopher Holmes to Kevin Paul, Christopher Holmes to Mary Vasquez, Kevin Paul to Manuel Clark
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Jesse Black", "id": 2486209}, {"name": "John Cummings", "id": 2433891}, {"name": "Tiffany Young", "id": 2421733}, {"name": "Scott White", "id": 2464350}, {"name": "Ashley Keller", "id": 2473866}, {"name": "Carolyn Thomas", "id": 2430893}, {"name": "Rachael Kim", "id": 2480207}, {"name": "Diane Webb", "id": 3382932}, {"name": "Nicole Martin", "id": 2488095}, {"name": "Michael Hanna", "id": 2447358}, {"name": "Christopher Holmes", "id": 2488502}, {"name": "Kevin Paul", "id": 2488472}, {"name": "Rebecca Taylor", "id": 2447545}, {"name": "Mary Vasquez", "id": 3651605}, {"name": "Jennifer Bailey", "id": 2428574}, {"name": "Manuel Clark", "id": 2454111}], "links": [{"source": 2486209, "target": 3382932}, {"source": 2433891, "target": 3382932}, {"source": 2473866, "target": 3382932}, {"source": 2430893, "target": 2488472}, {"source": 3382932, "target": 2428574}, {"source": 3382932, "target": 2488472}, {"source": 2447358, "target": 2488472}, {"source": 2488502, "target": 2488472}, {"source": 2488502, "target": 3651605}, {"source": 2488472, "target": 2454111}]}
|
[
2486209,
2421733,
2464350,
2480207,
2488095,
2447545
] | 6 |
355 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: John Zimmerman, William Dunn, Bruce Perez III, Heather Ortiz, Robert Pierce, Dillon Rios, Jason Baker, Maria Sanders, Alyssa Hahn, Jennifer Berry, Nathan James, Robert Mahoney, Brittany Hill, Shawn Beard, Shane Cooper, John Ford
- Fiendship connections: John Zimmerman to John Ford, William Dunn to Robert Pierce, Heather Ortiz to Shane Cooper, Robert Pierce to Nathan James, Alyssa Hahn to Nathan James
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "John Zimmerman", "id": 3563523}, {"name": "William Dunn", "id": 2461380}, {"name": "Bruce Perez III", "id": 2478979}, {"name": "Heather Ortiz", "id": 2418598}, {"name": "Robert Pierce", "id": 4112518}, {"name": "Dillon Rios", "id": 2470732}, {"name": "Jason Baker", "id": 2463117}, {"name": "Maria Sanders", "id": 2498893}, {"name": "Alyssa Hahn", "id": 2455121}, {"name": "Jennifer Berry", "id": 2463729}, {"name": "Nathan James", "id": 2486803}, {"name": "Robert Mahoney", "id": 2430869}, {"name": "Brittany Hill", "id": 2483125}, {"name": "Shawn Beard", "id": 2471577}, {"name": "Shane Cooper", "id": 3038939}, {"name": "John Ford", "id": 2436445}], "links": [{"source": 3563523, "target": 2436445}, {"source": 2461380, "target": 4112518}, {"source": 2418598, "target": 3038939}, {"source": 4112518, "target": 2486803}, {"source": 2455121, "target": 2486803}]}
|
[
3563523,
2455121,
2478979,
3038939,
2470732,
2463117,
2498893,
2463729,
2430869,
2483125,
2471577
] | 11 |
356 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Sherry Thomas, Yolanda Ruiz, Stephanie Smith, Jessica Todd, Kenneth Clark, David Dominguez, Brittney Mcmahon, Stephen Ross, Justin Young, Michael Gallagher, James Smith, Nicole Garner, Roberto Mata, Joshua Hammond, Luis Vincent, Brenda Jennings, Lisa Walker, Mr. Chad Gonzalez, Ashley Taylor, Anthony Smith, Hannah Phillips
- Fiendship connections: Sherry Thomas to Stephen Ross, Sherry Thomas to Joshua Hammond, Sherry Thomas to Kenneth Clark, Yolanda Ruiz to Jessica Todd, Stephanie Smith to David Dominguez, Jessica Todd to Ashley Taylor, Jessica Todd to Anthony Smith, Jessica Todd to Hannah Phillips, Kenneth Clark to Brenda Jennings, David Dominguez to Roberto Mata, Brittney Mcmahon to Lisa Walker, Brittney Mcmahon to Mr. Chad Gonzalez, Justin Young to Michael Gallagher, Justin Young to James Smith, Michael Gallagher to Hannah Phillips, Nicole Garner to Mr. Chad Gonzalez
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Sherry Thomas", "id": 2418817}, {"name": "Yolanda Ruiz", "id": 4716546}, {"name": "Stephanie Smith", "id": 3369870}, {"name": "Jessica Todd", "id": 2488462}, {"name": "Kenneth Clark", "id": 2982298}, {"name": "David Dominguez", "id": 2428207}, {"name": "Brittney Mcmahon", "id": 2122422}, {"name": "Stephen Ross", "id": 2405698}, {"name": "Justin Young", "id": 2500292}, {"name": "Michael Gallagher", "id": 2500294}, {"name": "James Smith", "id": 2500295}, {"name": "Nicole Garner", "id": 892663}, {"name": "Roberto Mata", "id": 2595791}, {"name": "Joshua Hammond", "id": 2481875}, {"name": "Luis Vincent", "id": 2428246}, {"name": "Brenda Jennings", "id": 2480218}, {"name": "Lisa Walker", "id": 1212022}, {"name": "Mr. Chad Gonzalez", "id": 1253495}, {"name": "Ashley Taylor", "id": 4716538}, {"name": "Anthony Smith", "id": 4716540}, {"name": "Hannah Phillips", "id": 4716542}], "links": [{"source": 2418817, "target": 2405698}, {"source": 2418817, "target": 2481875}, {"source": 2418817, "target": 2982298}, {"source": 4716546, "target": 2488462}, {"source": 3369870, "target": 2428207}, {"source": 2488462, "target": 4716538}, {"source": 2488462, "target": 4716540}, {"source": 2488462, "target": 4716542}, {"source": 2982298, "target": 2480218}, {"source": 2428207, "target": 2595791}, {"source": 2122422, "target": 1212022}, {"source": 2122422, "target": 1253495}, {"source": 2500292, "target": 2500294}, {"source": 2500292, "target": 2500295}, {"source": 2500294, "target": 4716542}, {"source": 892663, "target": 1253495}]}
|
[
2418817,
4716546,
2595791,
1212022,
2428246
] | 5 |
357 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Gary Smith, Robert Valdez Jr., Jenny Norris, Ashley Ford, Kara Andrade, Holly Reed, Stephanie Crawford, Michael Carrillo, Adam Colon, Patricia Wallace, Stephanie Cortez, Christopher Roy, Paul Turner, Julie Ingram, Tanya Cruz, Vicki Ayers, Rebecca Campbell, Jessica Hawkins, Miguel Cole, Wesley Hunt
- Fiendship connections: Gary Smith to Robert Valdez Jr., Jenny Norris to Paul Turner, Ashley Ford to Stephanie Cortez, Ashley Ford to Rebecca Campbell, Kara Andrade to Patricia Wallace, Kara Andrade to Christopher Roy, Holly Reed to Patricia Wallace, Holly Reed to Miguel Cole, Stephanie Crawford to Christopher Roy, Michael Carrillo to Christopher Roy, Adam Colon to Rebecca Campbell, Adam Colon to Tanya Cruz, Stephanie Cortez to Jessica Hawkins, Christopher Roy to Tanya Cruz, Christopher Roy to Vicki Ayers, Paul Turner to Vicki Ayers, Jessica Hawkins to Wesley Hunt
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Gary Smith", "id": 4937475}, {"name": "Robert Valdez Jr.", "id": 4964491}, {"name": "Jenny Norris", "id": 6090123}, {"name": "Ashley Ford", "id": 4985627}, {"name": "Kara Andrade", "id": 5161502}, {"name": "Holly Reed", "id": 5067810}, {"name": "Stephanie Crawford", "id": 4976037}, {"name": "Michael Carrillo", "id": 5558950}, {"name": "Adam Colon", "id": 4931879}, {"name": "Patricia Wallace", "id": 4996909}, {"name": "Stephanie Cortez", "id": 5448493}, {"name": "Christopher Roy", "id": 4996912}, {"name": "Paul Turner", "id": 4973123}, {"name": "Julie Ingram", "id": 5330137}, {"name": "Tanya Cruz", "id": 4943322}, {"name": "Vicki Ayers", "id": 4996957}, {"name": "Rebecca Campbell", "id": 5083238}, {"name": "Jessica Hawkins", "id": 5258348}, {"name": "Miguel Cole", "id": 5067766}, {"name": "Wesley Hunt", "id": 5802622}], "links": [{"source": 4937475, "target": 4964491}, {"source": 6090123, "target": 4973123}, {"source": 4985627, "target": 5448493}, {"source": 4985627, "target": 5083238}, {"source": 5161502, "target": 4996909}, {"source": 5161502, "target": 4996912}, {"source": 5067810, "target": 4996909}, {"source": 5067810, "target": 5067766}, {"source": 4976037, "target": 4996912}, {"source": 5558950, "target": 4996912}, {"source": 4931879, "target": 5083238}, {"source": 4931879, "target": 4943322}, {"source": 5448493, "target": 5258348}, {"source": 4996912, "target": 4943322}, {"source": 4996912, "target": 4996957}, {"source": 4973123, "target": 4996957}, {"source": 5258348, "target": 5802622}]}
|
[
4937475,
5067810,
5330137
] | 3 |
358 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Ryan Ford, Tim Delgado, William Jacobs, Ronald Adams, Jason Campbell, Nathan Cruz, Dennis Smith, Pam Gordon, Mrs. Carrie Medina MD, Megan Mann, Drew Adams, Alexis Hopkins PhD, Brianna Santos, Brent Anderson, Benjamin Blair, Evan Jones, Miss Alyssa Burns MD, Whitney Shaffer, Carolyn Hayes, Gary Wyatt, Toni Norton, Peter Bennett, Gregory Nguyen, Jared Valentine, Destiny Ford, Kelsey Marshall, Alejandro Rodriguez, Daniel Davidson, Roy Rose
- Fiendship connections: Ryan Ford to Jared Valentine, Tim Delgado to Gary Wyatt, Tim Delgado to William Jacobs, Tim Delgado to Megan Mann, Tim Delgado to Gregory Nguyen, William Jacobs to Gary Wyatt, William Jacobs to Megan Mann, William Jacobs to Gregory Nguyen, William Jacobs to Nathan Cruz, William Jacobs to Dennis Smith, Ronald Adams to Daniel Davidson, Jason Campbell to Mrs. Carrie Medina MD, Nathan Cruz to Gary Wyatt, Nathan Cruz to Megan Mann, Nathan Cruz to Gregory Nguyen, Dennis Smith to Megan Mann, Dennis Smith to Gregory Nguyen, Mrs. Carrie Medina MD to Benjamin Blair, Mrs. Carrie Medina MD to Whitney Shaffer, Megan Mann to Gary Wyatt, Megan Mann to Gregory Nguyen, Drew Adams to Alejandro Rodriguez, Drew Adams to Alexis Hopkins PhD, Brianna Santos to Alejandro Rodriguez, Brent Anderson to Carolyn Hayes, Brent Anderson to Peter Bennett, Evan Jones to Miss Alyssa Burns MD, Carolyn Hayes to Jared Valentine, Toni Norton to Alejandro Rodriguez, Destiny Ford to Roy Rose, Kelsey Marshall to Alejandro Rodriguez
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Ryan Ford", "id": 5821954}, {"name": "Tim Delgado", "id": 5627652}, {"name": "William Jacobs", "id": 5583110}, {"name": "Ronald Adams", "id": 1584775}, {"name": "Jason Campbell", "id": 2006919}, {"name": "Nathan Cruz", "id": 5627661}, {"name": "Dennis Smith", "id": 5627667}, {"name": "Pam Gordon", "id": 4988825}, {"name": "Mrs. Carrie Medina MD", "id": 1069090}, {"name": "Megan Mann", "id": 5583140}, {"name": "Drew Adams", "id": 105771}, {"name": "Alexis Hopkins PhD", "id": 105772}, {"name": "Brianna Santos", "id": 716088}, {"name": "Brent Anderson", "id": 4946362}, {"name": "Benjamin Blair", "id": 793659}, {"name": "Evan Jones", "id": 5267780}, {"name": "Miss Alyssa Burns MD", "id": 5082436}, {"name": "Whitney Shaffer", "id": 1577168}, {"name": "Carolyn Hayes", "id": 5051216}, {"name": "Gary Wyatt", "id": 5217234}, {"name": "Toni Norton", "id": 455635}, {"name": "Peter Bennett", "id": 5123940}, {"name": "Gregory Nguyen", "id": 5583207}, {"name": "Jared Valentine", "id": 4941547}, {"name": "Destiny Ford", "id": 4933743}, {"name": "Kelsey Marshall", "id": 16496}, {"name": "Alejandro Rodriguez", "id": 16497}, {"name": "Daniel Davidson", "id": 866548}, {"name": "Roy Rose", "id": 5079036}], "links": [{"source": 5821954, "target": 4941547}, {"source": 5627652, "target": 5217234}, {"source": 5627652, "target": 5583110}, {"source": 5627652, "target": 5583140}, {"source": 5627652, "target": 5583207}, {"source": 5583110, "target": 5217234}, {"source": 5583110, "target": 5583140}, {"source": 5583110, "target": 5583207}, {"source": 5583110, "target": 5627661}, {"source": 5583110, "target": 5627667}, {"source": 1584775, "target": 866548}, {"source": 2006919, "target": 1069090}, {"source": 5627661, "target": 5217234}, {"source": 5627661, "target": 5583140}, {"source": 5627661, "target": 5583207}, {"source": 5627667, "target": 5583140}, {"source": 5627667, "target": 5583207}, {"source": 1069090, "target": 793659}, {"source": 1069090, "target": 1577168}, {"source": 5583140, "target": 5217234}, {"source": 5583140, "target": 5583207}, {"source": 105771, "target": 16497}, {"source": 105771, "target": 105772}, {"source": 716088, "target": 16497}, {"source": 4946362, "target": 5051216}, {"source": 4946362, "target": 5123940}, {"source": 5267780, "target": 5082436}, {"source": 5051216, "target": 4941547}, {"source": 455635, "target": 16497}, {"source": 4933743, "target": 5079036}, {"source": 16496, "target": 16497}]}
|
[
5821954,
5583140,
866548,
1577168,
4988825,
105771,
5267780,
5079036
] | 8 |
359 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Kevin Garcia, Paul Salazar, Andrew Hines, John White, Brian Williams, Ralph Hall, Lawrence Mclaughlin, Natalie Anderson, Jeffrey Hall, Casey Lambert, Gregory Gonzalez, Madison Tapia, Kevin Kennedy, Thomas Kennedy, Monica Johnson, Jack Vega, Nancy Yoder, Brittany Wilson, Sean Wheeler, Trevor Chapman, Michael Boyd, Erin Pittman, Lucas Lee, Theodore Wolf, Daniel Smith, Dominic Bradshaw, Mr. Phillip Harrison Jr., Carrie Wong
- Fiendship connections: Paul Salazar to Natalie Anderson, Paul Salazar to Jeffrey Hall, Paul Salazar to Michael Boyd, Paul Salazar to Casey Lambert, Paul Salazar to Madison Tapia, Andrew Hines to Gregory Gonzalez, Andrew Hines to Nancy Yoder, Andrew Hines to Dominic Bradshaw, Brian Williams to Brittany Wilson, Ralph Hall to Carrie Wong, Natalie Anderson to Michael Boyd, Natalie Anderson to Jeffrey Hall, Natalie Anderson to Casey Lambert, Natalie Anderson to Madison Tapia, Natalie Anderson to Monica Johnson, Natalie Anderson to Thomas Kennedy, Jeffrey Hall to Michael Boyd, Jeffrey Hall to Casey Lambert, Jeffrey Hall to Madison Tapia, Jeffrey Hall to Thomas Kennedy, Casey Lambert to Michael Boyd, Casey Lambert to Madison Tapia, Casey Lambert to Monica Johnson, Casey Lambert to Thomas Kennedy, Madison Tapia to Michael Boyd, Madison Tapia to Monica Johnson, Madison Tapia to Thomas Kennedy, Kevin Kennedy to Carrie Wong, Brittany Wilson to Sean Wheeler, Brittany Wilson to Trevor Chapman, Theodore Wolf to Daniel Smith
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Kevin Garcia", "id": 5950080}, {"name": "Paul Salazar", "id": 5003137}, {"name": "Andrew Hines", "id": 526864}, {"name": "John White", "id": 5032849}, {"name": "Brian Williams", "id": 5136658}, {"name": "Ralph Hall", "id": 198292}, {"name": "Lawrence Mclaughlin", "id": 217759}, {"name": "Natalie Anderson", "id": 5071522}, {"name": "Jeffrey Hall", "id": 5071525}, {"name": "Casey Lambert", "id": 5071528}, {"name": "Gregory Gonzalez", "id": 1194}, {"name": "Madison Tapia", "id": 5071531}, {"name": "Kevin Kennedy", "id": 171435}, {"name": "Thomas Kennedy", "id": 5071533}, {"name": "Monica Johnson", "id": 5071532}, {"name": "Jack Vega", "id": 10936}, {"name": "Nancy Yoder", "id": 23737}, {"name": "Brittany Wilson", "id": 5873860}, {"name": "Sean Wheeler", "id": 5873864}, {"name": "Trevor Chapman", "id": 5873870}, {"name": "Michael Boyd", "id": 5058520}, {"name": "Erin Pittman", "id": 5201244}, {"name": "Lucas Lee", "id": 5254367}, {"name": "Theodore Wolf", "id": 2445283}, {"name": "Daniel Smith", "id": 3741415}, {"name": "Dominic Bradshaw", "id": 89449}, {"name": "Mr. Phillip Harrison Jr.", "id": 80880}, {"name": "Carrie Wong", "id": 425851}], "links": [{"source": 5003137, "target": 5071522}, {"source": 5003137, "target": 5071525}, {"source": 5003137, "target": 5058520}, {"source": 5003137, "target": 5071528}, {"source": 5003137, "target": 5071531}, {"source": 526864, "target": 1194}, {"source": 526864, "target": 23737}, {"source": 526864, "target": 89449}, {"source": 5136658, "target": 5873860}, {"source": 198292, "target": 425851}, {"source": 5071522, "target": 5058520}, {"source": 5071522, "target": 5071525}, {"source": 5071522, "target": 5071528}, {"source": 5071522, "target": 5071531}, {"source": 5071522, "target": 5071532}, {"source": 5071522, "target": 5071533}, {"source": 5071525, "target": 5058520}, {"source": 5071525, "target": 5071528}, {"source": 5071525, "target": 5071531}, {"source": 5071525, "target": 5071533}, {"source": 5071528, "target": 5058520}, {"source": 5071528, "target": 5071531}, {"source": 5071528, "target": 5071532}, {"source": 5071528, "target": 5071533}, {"source": 5071531, "target": 5058520}, {"source": 5071531, "target": 5071532}, {"source": 5071531, "target": 5071533}, {"source": 171435, "target": 425851}, {"source": 5873860, "target": 5873864}, {"source": 5873860, "target": 5873870}, {"source": 2445283, "target": 3741415}]}
|
[
5950080,
5003137,
526864,
5032849,
5873864,
425851,
217759,
10936,
5201244,
5254367,
2445283,
80880
] | 12 |
360 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Teresa Carr, Jessica Perry, David Peters, Stephen Wright, Micheal Williams, Dr. John Warner, Jordan Rocha, Dr. Alexis Park, Shawn Wilson, Richard Brown, Antonio Martin, Jeffrey Trujillo, Katherine Smith, Johnny Luna, Shawn Baker, Stacy Serrano, Aaron Brown, Savannah Smith, Jennifer Sanchez, Arthur Krueger, Bryan Howell, Katherine King, Scott Mullins, Billy Robinson, Lisa Oneal, Lauren Garcia, Jared Ellis, Ashley Lowe
- Fiendship connections: Teresa Carr to Jessica Perry, Jessica Perry to Jennifer Sanchez, Jessica Perry to Stephen Wright, Jessica Perry to Aaron Brown, Jessica Perry to David Peters, Stephen Wright to Antonio Martin, Stephen Wright to Aaron Brown, Stephen Wright to Lisa Oneal, Micheal Williams to Ashley Lowe, Micheal Williams to Stacy Serrano, Micheal Williams to Johnny Luna, Jordan Rocha to Jared Ellis, Jordan Rocha to Ashley Lowe, Jordan Rocha to Antonio Martin, Dr. Alexis Park to Jared Ellis, Shawn Wilson to Jeffrey Trujillo, Richard Brown to Katherine Smith, Richard Brown to Lisa Oneal, Antonio Martin to Ashley Lowe, Antonio Martin to Aaron Brown, Antonio Martin to Shawn Baker, Antonio Martin to Scott Mullins, Johnny Luna to Katherine King, Shawn Baker to Lauren Garcia, Aaron Brown to Jennifer Sanchez, Savannah Smith to Katherine King, Bryan Howell to Katherine King
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Teresa Carr", "id": 4505990}, {"name": "Jessica Perry", "id": 2477585}, {"name": "David Peters", "id": 4506010}, {"name": "Stephen Wright", "id": 2478632}, {"name": "Micheal Williams", "id": 2435369}, {"name": "Dr. John Warner", "id": 2498099}, {"name": "Jordan Rocha", "id": 2481333}, {"name": "Dr. Alexis Park", "id": 2493750}, {"name": "Shawn Wilson", "id": 2481854}, {"name": "Richard Brown", "id": 2418368}, {"name": "Antonio Martin", "id": 2463555}, {"name": "Jeffrey Trujillo", "id": 2461763}, {"name": "Katherine Smith", "id": 3024459}, {"name": "Johnny Luna", "id": 3557843}, {"name": "Shawn Baker", "id": 2670935}, {"name": "Stacy Serrano", "id": 2476380}, {"name": "Aaron Brown", "id": 2521444}, {"name": "Savannah Smith", "id": 3013093}, {"name": "Jennifer Sanchez", "id": 2477286}, {"name": "Arthur Krueger", "id": 2455785}, {"name": "Bryan Howell", "id": 2450670}, {"name": "Katherine King", "id": 2450671}, {"name": "Scott Mullins", "id": 3085809}, {"name": "Billy Robinson", "id": 2477683}, {"name": "Lisa Oneal", "id": 3024627}, {"name": "Lauren Garcia", "id": 2453114}, {"name": "Jared Ellis", "id": 2455420}, {"name": "Ashley Lowe", "id": 2459134}], "links": [{"source": 4505990, "target": 2477585}, {"source": 2477585, "target": 2477286}, {"source": 2477585, "target": 2478632}, {"source": 2477585, "target": 2521444}, {"source": 2477585, "target": 4506010}, {"source": 2478632, "target": 2463555}, {"source": 2478632, "target": 2521444}, {"source": 2478632, "target": 3024627}, {"source": 2435369, "target": 2459134}, {"source": 2435369, "target": 2476380}, {"source": 2435369, "target": 3557843}, {"source": 2481333, "target": 2455420}, {"source": 2481333, "target": 2459134}, {"source": 2481333, "target": 2463555}, {"source": 2493750, "target": 2455420}, {"source": 2481854, "target": 2461763}, {"source": 2418368, "target": 3024459}, {"source": 2418368, "target": 3024627}, {"source": 2463555, "target": 2459134}, {"source": 2463555, "target": 2521444}, {"source": 2463555, "target": 2670935}, {"source": 2463555, "target": 3085809}, {"source": 3557843, "target": 2450671}, {"source": 2670935, "target": 2453114}, {"source": 2521444, "target": 2477286}, {"source": 3013093, "target": 2450671}, {"source": 2450670, "target": 2450671}]}
|
[
4505990,
2498099,
2461763,
2455785,
2477683
] | 5 |
361 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Tammy Oliver, Marie Howard, Michelle Mcclain, Miranda Thompson, Teresa Lewis, Ryan Rivera, Kelly Scott, Robert Weaver, Tina Browning, Tina Morrow MD, Amber Davis, Christina Patel, Denise Hobbs, Donald Collins, Linda Lawrence, Stacie Alvarado, Dustin Lang
- Fiendship connections: Tammy Oliver to Stacie Alvarado, Marie Howard to Tina Browning, Miranda Thompson to Amber Davis, Miranda Thompson to Dustin Lang, Teresa Lewis to Linda Lawrence, Ryan Rivera to Denise Hobbs, Ryan Rivera to Tina Morrow MD, Kelly Scott to Stacie Alvarado, Kelly Scott to Tina Browning, Robert Weaver to Denise Hobbs
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Tammy Oliver", "id": 4998684}, {"name": "Marie Howard", "id": 4937542}, {"name": "Michelle Mcclain", "id": 303399}, {"name": "Miranda Thompson", "id": 1378702}, {"name": "Teresa Lewis", "id": 629550}, {"name": "Ryan Rivera", "id": 350864}, {"name": "Kelly Scott", "id": 4976206}, {"name": "Robert Weaver", "id": 71345}, {"name": "Tina Browning", "id": 5622547}, {"name": "Tina Morrow MD", "id": 124339}, {"name": "Amber Davis", "id": 830257}, {"name": "Christina Patel", "id": 4934740}, {"name": "Denise Hobbs", "id": 71351}, {"name": "Donald Collins", "id": 4953336}, {"name": "Linda Lawrence", "id": 153466}, {"name": "Stacie Alvarado", "id": 4950136}, {"name": "Dustin Lang", "id": 1634525}], "links": [{"source": 4998684, "target": 4950136}, {"source": 4937542, "target": 5622547}, {"source": 1378702, "target": 830257}, {"source": 1378702, "target": 1634525}, {"source": 629550, "target": 153466}, {"source": 350864, "target": 71351}, {"source": 350864, "target": 124339}, {"source": 4976206, "target": 4950136}, {"source": 4976206, "target": 5622547}, {"source": 71345, "target": 71351}]}
|
[
4937542,
303399,
830257,
153466,
350864,
4934740,
4953336
] | 7 |
362 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Michelle Edwards, Edwin Hull, Kimberly Rogers, Kimberly Smith, Brian King, James Golden, James Dennis, Stephanie Johnson, Richard King, Shelly Bradley, Sandra Davenport, Kimberly Wilcox, Tiffany Skinner, Christopher Jones, Rebecca Luna, Jeremy Cannon, Thomas Ibarra, Cristina Flores, Matthew Rodriguez, Crystal Ryan, Daniel Miller, Andrew Francis
- Fiendship connections: Michelle Edwards to Sandra Davenport, Michelle Edwards to Kimberly Wilcox, Edwin Hull to Brian King, Edwin Hull to Kimberly Rogers, Kimberly Smith to Rebecca Luna, James Dennis to Crystal Ryan, James Dennis to Thomas Ibarra, James Dennis to Tiffany Skinner, Tiffany Skinner to Christopher Jones, Rebecca Luna to Andrew Francis
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Michelle Edwards", "id": 2968336}, {"name": "Edwin Hull", "id": 2477217}, {"name": "Kimberly Rogers", "id": 4493219}, {"name": "Kimberly Smith", "id": 5041571}, {"name": "Brian King", "id": 2453285}, {"name": "James Golden", "id": 2497705}, {"name": "James Dennis", "id": 2474416}, {"name": "Stephanie Johnson", "id": 2429104}, {"name": "Richard King", "id": 2479798}, {"name": "Shelly Bradley", "id": 2462779}, {"name": "Sandra Davenport", "id": 2417474}, {"name": "Kimberly Wilcox", "id": 2490181}, {"name": "Tiffany Skinner", "id": 4370511}, {"name": "Christopher Jones", "id": 2473937}, {"name": "Rebecca Luna", "id": 4975570}, {"name": "Jeremy Cannon", "id": 2427348}, {"name": "Thomas Ibarra", "id": 2474456}, {"name": "Cristina Flores", "id": 2498652}, {"name": "Matthew Rodriguez", "id": 2498919}, {"name": "Crystal Ryan", "id": 2473705}, {"name": "Daniel Miller", "id": 2430191}, {"name": "Andrew Francis", "id": 4975229}], "links": [{"source": 2968336, "target": 2417474}, {"source": 2968336, "target": 2490181}, {"source": 2477217, "target": 2453285}, {"source": 2477217, "target": 4493219}, {"source": 5041571, "target": 4975570}, {"source": 2474416, "target": 2473705}, {"source": 2474416, "target": 2474456}, {"source": 2474416, "target": 4370511}, {"source": 4370511, "target": 2473937}, {"source": 4975570, "target": 4975229}]}
|
[
2968336,
2477217,
4975570,
2497705,
2473705,
2429104,
2479798,
2462779,
2427348,
2498652,
2498919,
2430191
] | 12 |
363 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: David Carter, Douglas Vasquez, Sharon Johnson DVM, Angela Woods, Madison Macias, Robert Flynn, Jeffrey Benson, Gary Kelly, Alicia Mcknight, Megan Randall, Tammy Figueroa, Donald Swanson, Timothy Conley, Lindsay Chan, John Bond, Erika Larson
- Fiendship connections: David Carter to Lindsay Chan, David Carter to Douglas Vasquez, David Carter to Erika Larson, David Carter to Megan Randall, David Carter to Sharon Johnson DVM, Douglas Vasquez to Lindsay Chan, Douglas Vasquez to Erika Larson, Douglas Vasquez to Megan Randall, Douglas Vasquez to Sharon Johnson DVM, Sharon Johnson DVM to Lindsay Chan, Sharon Johnson DVM to Erika Larson, Sharon Johnson DVM to Megan Randall, Angela Woods to Robert Flynn, Angela Woods to John Bond, Angela Woods to Madison Macias, Madison Macias to John Bond, Robert Flynn to Donald Swanson, Jeffrey Benson to Timothy Conley, Alicia Mcknight to Tammy Figueroa, Alicia Mcknight to John Bond, Megan Randall to Tammy Figueroa, Megan Randall to Lindsay Chan, Megan Randall to Erika Larson, Donald Swanson to Timothy Conley, Lindsay Chan to Erika Larson
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "David Carter", "id": 1350023}, {"name": "Douglas Vasquez", "id": 1078796}, {"name": "Sharon Johnson DVM", "id": 1819340}, {"name": "Angela Woods", "id": 2244012}, {"name": "Madison Macias", "id": 2364943}, {"name": "Robert Flynn", "id": 1558397}, {"name": "Jeffrey Benson", "id": 1683665}, {"name": "Gary Kelly", "id": 2016530}, {"name": "Alicia Mcknight", "id": 1546646}, {"name": "Megan Randall", "id": 1257751}, {"name": "Tammy Figueroa", "id": 891353}, {"name": "Donald Swanson", "id": 1421722}, {"name": "Timothy Conley", "id": 1232155}, {"name": "Lindsay Chan", "id": 1076444}, {"name": "John Bond", "id": 2020733}, {"name": "Erika Larson", "id": 1232062}], "links": [{"source": 1350023, "target": 1076444}, {"source": 1350023, "target": 1078796}, {"source": 1350023, "target": 1232062}, {"source": 1350023, "target": 1257751}, {"source": 1350023, "target": 1819340}, {"source": 1078796, "target": 1076444}, {"source": 1078796, "target": 1232062}, {"source": 1078796, "target": 1257751}, {"source": 1078796, "target": 1819340}, {"source": 1819340, "target": 1076444}, {"source": 1819340, "target": 1232062}, {"source": 1819340, "target": 1257751}, {"source": 2244012, "target": 1558397}, {"source": 2244012, "target": 2020733}, {"source": 2244012, "target": 2364943}, {"source": 2364943, "target": 2020733}, {"source": 1558397, "target": 1421722}, {"source": 1683665, "target": 1232155}, {"source": 1546646, "target": 891353}, {"source": 1546646, "target": 2020733}, {"source": 1257751, "target": 891353}, {"source": 1257751, "target": 1076444}, {"source": 1257751, "target": 1232062}, {"source": 1421722, "target": 1232155}, {"source": 1076444, "target": 1232062}]}
|
[
1350023,
2016530
] | 2 |
364 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Abigail Stone, Michael Ray, Paul Greer, Dennis Wright, Tina Alexander, Lynn Orr, Matthew Lewis, Brian Spencer, Jason Medina, Megan Romero, Shelly Turner, Kristin Sherman, George Miller, Austin Bates, Julia Taylor, Anthony Hopkins MD, Jennifer Conrad, Christina Casey, Eileen Nguyen, Pamela Rhodes, Angela Church, Dr. Anthony Singh
- Fiendship connections: Abigail Stone to Christina Casey, Abigail Stone to Anthony Hopkins MD, Michael Ray to Matthew Lewis, Paul Greer to Jason Medina, Paul Greer to Lynn Orr, Dennis Wright to Matthew Lewis, Tina Alexander to Shelly Turner, Tina Alexander to Brian Spencer, Lynn Orr to Kristin Sherman, Matthew Lewis to Eileen Nguyen, Matthew Lewis to Shelly Turner, Matthew Lewis to Kristin Sherman, Matthew Lewis to George Miller, Matthew Lewis to Anthony Hopkins MD, Jason Medina to Kristin Sherman, Jason Medina to Jennifer Conrad, Megan Romero to Angela Church, George Miller to Angela Church, Eileen Nguyen to Angela Church
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Abigail Stone", "id": 2463878}, {"name": "Michael Ray", "id": 2457607}, {"name": "Paul Greer", "id": 2441736}, {"name": "Dennis Wright", "id": 2638477}, {"name": "Tina Alexander", "id": 2663058}, {"name": "Lynn Orr", "id": 2737170}, {"name": "Matthew Lewis", "id": 2492441}, {"name": "Brian Spencer", "id": 2424858}, {"name": "Jason Medina", "id": 2413478}, {"name": "Megan Romero", "id": 2495274}, {"name": "Shelly Turner", "id": 2421432}, {"name": "Kristin Sherman", "id": 2438335}, {"name": "George Miller", "id": 2465215}, {"name": "Austin Bates", "id": 2422342}, {"name": "Julia Taylor", "id": 2473807}, {"name": "Anthony Hopkins MD", "id": 4186839}, {"name": "Jennifer Conrad", "id": 2687455}, {"name": "Christina Casey", "id": 4069991}, {"name": "Eileen Nguyen", "id": 2420076}, {"name": "Pamela Rhodes", "id": 2404980}, {"name": "Angela Church", "id": 2440437}, {"name": "Dr. Anthony Singh", "id": 2404856}], "links": [{"source": 2463878, "target": 4069991}, {"source": 2463878, "target": 4186839}, {"source": 2457607, "target": 2492441}, {"source": 2441736, "target": 2413478}, {"source": 2441736, "target": 2737170}, {"source": 2638477, "target": 2492441}, {"source": 2663058, "target": 2421432}, {"source": 2663058, "target": 2424858}, {"source": 2737170, "target": 2438335}, {"source": 2492441, "target": 2420076}, {"source": 2492441, "target": 2421432}, {"source": 2492441, "target": 2438335}, {"source": 2492441, "target": 2465215}, {"source": 2492441, "target": 4186839}, {"source": 2413478, "target": 2438335}, {"source": 2413478, "target": 2687455}, {"source": 2495274, "target": 2440437}, {"source": 2465215, "target": 2440437}, {"source": 2420076, "target": 2440437}]}
|
[
2463878,
2422342,
2473807,
2404980,
2404856
] | 5 |
365 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Amanda Davis, Rebecca Ramos, Joshua Scott, Lisa Mccullough, Rachel Kaufman, Heather Wallace, Rebecca Williams, Dana Reeves, Hector Meyers, David Wright, Stephanie Hammond MD, Amy Peck, Vernon Lucero, Zachary Miller, Evan Campbell, Donald Fisher, Autumn Ward, Chase Phillips, John Poole, Jessica Vargas, Danielle Jones, Cheryl Collier, Jeffrey Horn, Chloe Hale, Dustin Smith
- Fiendship connections: Amanda Davis to Autumn Ward, Amanda Davis to Heather Wallace, Rebecca Ramos to Chloe Hale, Rebecca Ramos to Rebecca Williams, Joshua Scott to Zachary Miller, Lisa Mccullough to Rachel Kaufman, Lisa Mccullough to David Wright, Rachel Kaufman to Autumn Ward, Heather Wallace to Hector Meyers, Dana Reeves to Chloe Hale, David Wright to Cheryl Collier, Stephanie Hammond MD to Cheryl Collier, Stephanie Hammond MD to Jeffrey Horn, Amy Peck to Chloe Hale, Vernon Lucero to Chloe Hale, Vernon Lucero to Zachary Miller, Chase Phillips to Danielle Jones, John Poole to Dustin Smith, John Poole to Jessica Vargas, John Poole to Danielle Jones, John Poole to Chloe Hale, Jessica Vargas to Dustin Smith, Jessica Vargas to Jeffrey Horn, Jessica Vargas to Danielle Jones, Jessica Vargas to Chloe Hale, Danielle Jones to Dustin Smith, Danielle Jones to Chloe Hale, Jeffrey Horn to Dustin Smith, Chloe Hale to Dustin Smith
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Amanda Davis", "id": 1228930}, {"name": "Rebecca Ramos", "id": 1367044}, {"name": "Joshua Scott", "id": 1012357}, {"name": "Lisa Mccullough", "id": 845701}, {"name": "Rachel Kaufman", "id": 1040520}, {"name": "Heather Wallace", "id": 1375499}, {"name": "Rebecca Williams", "id": 1367052}, {"name": "Dana Reeves", "id": 931854}, {"name": "Hector Meyers", "id": 1403918}, {"name": "David Wright", "id": 1437975}, {"name": "Stephanie Hammond MD", "id": 1156524}, {"name": "Amy Peck", "id": 799423}, {"name": "Vernon Lucero", "id": 917187}, {"name": "Zachary Miller", "id": 1006275}, {"name": "Evan Campbell", "id": 1263954}, {"name": "Donald Fisher", "id": 1478866}, {"name": "Autumn Ward", "id": 1282776}, {"name": "Chase Phillips", "id": 831321}, {"name": "John Poole", "id": 812505}, {"name": "Jessica Vargas", "id": 812508}, {"name": "Danielle Jones", "id": 812518}, {"name": "Cheryl Collier", "id": 794343}, {"name": "Jeffrey Horn", "id": 799338}, {"name": "Chloe Hale", "id": 849137}, {"name": "Dustin Smith", "id": 786302}], "links": [{"source": 1228930, "target": 1282776}, {"source": 1228930, "target": 1375499}, {"source": 1367044, "target": 849137}, {"source": 1367044, "target": 1367052}, {"source": 1012357, "target": 1006275}, {"source": 845701, "target": 1040520}, {"source": 845701, "target": 1437975}, {"source": 1040520, "target": 1282776}, {"source": 1375499, "target": 1403918}, {"source": 931854, "target": 849137}, {"source": 1437975, "target": 794343}, {"source": 1156524, "target": 794343}, {"source": 1156524, "target": 799338}, {"source": 799423, "target": 849137}, {"source": 917187, "target": 849137}, {"source": 917187, "target": 1006275}, {"source": 831321, "target": 812518}, {"source": 812505, "target": 786302}, {"source": 812505, "target": 812508}, {"source": 812505, "target": 812518}, {"source": 812505, "target": 849137}, {"source": 812508, "target": 786302}, {"source": 812508, "target": 799338}, {"source": 812508, "target": 812518}, {"source": 812508, "target": 849137}, {"source": 812518, "target": 786302}, {"source": 812518, "target": 849137}, {"source": 799338, "target": 786302}, {"source": 849137, "target": 786302}]}
|
[
1228930,
1263954,
1478866
] | 3 |
366 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Mary Patton, James Allen, Donna White, Charles Smith, Anne Figueroa, Richard Mcconnell, Andrew Ward, Nathan Gomez, Richard Taylor, Bradley Contreras, Nicholas West, Emily Simon, Justin Stephenson, Cathy May, Douglas King, Leah Shepard, Maurice Martinez, Michelle Morales, Jermaine Dawson, Daisy Carter
- Fiendship connections: Mary Patton to Richard Mcconnell, James Allen to Richard Taylor, Donna White to Richard Taylor, Charles Smith to Maurice Martinez, Charles Smith to Anne Figueroa, Andrew Ward to Maurice Martinez, Nathan Gomez to Jermaine Dawson, Richard Taylor to Michelle Morales, Bradley Contreras to Jermaine Dawson
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Mary Patton", "id": 2479874}, {"name": "James Allen", "id": 4521094}, {"name": "Donna White", "id": 4521232}, {"name": "Charles Smith", "id": 2415892}, {"name": "Anne Figueroa", "id": 2933147}, {"name": "Richard Mcconnell", "id": 2524579}, {"name": "Andrew Ward", "id": 2406567}, {"name": "Nathan Gomez", "id": 2513583}, {"name": "Richard Taylor", "id": 2478388}, {"name": "Bradley Contreras", "id": 4526776}, {"name": "Nicholas West", "id": 2477754}, {"name": "Emily Simon", "id": 2421693}, {"name": "Justin Stephenson", "id": 2493135}, {"name": "Cathy May", "id": 2468047}, {"name": "Douglas King", "id": 2430165}, {"name": "Leah Shepard", "id": 2473822}, {"name": "Maurice Martinez", "id": 2459882}, {"name": "Michelle Morales", "id": 4521067}, {"name": "Jermaine Dawson", "id": 2478962}, {"name": "Daisy Carter", "id": 2433016}], "links": [{"source": 2479874, "target": 2524579}, {"source": 4521094, "target": 2478388}, {"source": 4521232, "target": 2478388}, {"source": 2415892, "target": 2459882}, {"source": 2415892, "target": 2933147}, {"source": 2406567, "target": 2459882}, {"source": 2513583, "target": 2478962}, {"source": 2478388, "target": 4521067}, {"source": 4526776, "target": 2478962}]}
|
[
2479874,
4521232,
2459882,
4526776,
2477754,
2421693,
2493135,
2468047,
2430165,
2473822,
2433016
] | 11 |
367 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Denise Burke, Jennifer Smith MD, Alicia Woods, Amber Hall, Alexis Leon, Aaron Bryant, Laura Anderson, Angela Smith, Kimberly Simon, Cynthia Holland, Ryan Taylor, Marc Jenkins, Nicole Moore, Victoria Smith, Terri Frazier, Terri Buckley, Robin Avila, Christine Walker, Jacob Johnston, Jon Chapman, Dr. Justin Yoder
- Fiendship connections: Denise Burke to Jon Chapman, Denise Burke to Angela Smith, Jennifer Smith MD to Alexis Leon, Jennifer Smith MD to Nicole Moore, Alicia Woods to Amber Hall, Alicia Woods to Aaron Bryant, Alicia Woods to Cynthia Holland, Alicia Woods to Laura Anderson, Alexis Leon to Angela Smith, Kimberly Simon to Jon Chapman, Ryan Taylor to Christine Walker, Ryan Taylor to Jon Chapman, Marc Jenkins to Jon Chapman, Nicole Moore to Terri Frazier, Victoria Smith to Jon Chapman, Terri Buckley to Jon Chapman, Robin Avila to Jon Chapman, Jacob Johnston to Jon Chapman
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Denise Burke", "id": 3987073}, {"name": "Jennifer Smith MD", "id": 2465411}, {"name": "Alicia Woods", "id": 2472713}, {"name": "Amber Hall", "id": 2473615}, {"name": "Alexis Leon", "id": 2522275}, {"name": "Aaron Bryant", "id": 2479784}, {"name": "Laura Anderson", "id": 4388014}, {"name": "Angela Smith", "id": 2473776}, {"name": "Kimberly Simon", "id": 2906290}, {"name": "Cynthia Holland", "id": 2530242}, {"name": "Ryan Taylor", "id": 3757634}, {"name": "Marc Jenkins", "id": 4351176}, {"name": "Nicole Moore", "id": 3807948}, {"name": "Victoria Smith", "id": 4351184}, {"name": "Terri Frazier", "id": 2455120}, {"name": "Terri Buckley", "id": 4351189}, {"name": "Robin Avila", "id": 4351193}, {"name": "Christine Walker", "id": 2456801}, {"name": "Jacob Johnston", "id": 4351202}, {"name": "Jon Chapman", "id": 2473716}, {"name": "Dr. Justin Yoder", "id": 2473722}], "links": [{"source": 3987073, "target": 2473716}, {"source": 3987073, "target": 2473776}, {"source": 2465411, "target": 2522275}, {"source": 2465411, "target": 3807948}, {"source": 2472713, "target": 2473615}, {"source": 2472713, "target": 2479784}, {"source": 2472713, "target": 2530242}, {"source": 2472713, "target": 4388014}, {"source": 2522275, "target": 2473776}, {"source": 2906290, "target": 2473716}, {"source": 3757634, "target": 2456801}, {"source": 3757634, "target": 2473716}, {"source": 4351176, "target": 2473716}, {"source": 3807948, "target": 2455120}, {"source": 4351184, "target": 2473716}, {"source": 4351189, "target": 2473716}, {"source": 4351193, "target": 2473716}, {"source": 4351202, "target": 2473716}]}
|
[
3987073,
2530242,
2473722
] | 3 |
368 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Amanda Brown, Brittany Leach, Dillon Davis, Alexandra Wilkins, Anthony Gonzales, Janice Mills, David Payne, Jennifer Gordon, Kim Gillespie, Heather Ayers, Kevin Parker, Peter Hernandez, Amanda Williams, Travis Montoya, Scott Washington, Stephen Ross, Jennifer Kim, Jesse Ward, Lucas Martin, Christine Walker, John Wilcox, Audrey Diaz, Austin Douglas, Cheryl Moreno, Jennifer Jones, Hannah Greene, Rebekah Reed, Craig Rose
- Fiendship connections: Dillon Davis to Scott Washington, Dillon Davis to John Wilcox, Dillon Davis to Christine Walker, Dillon Davis to Jennifer Gordon, Dillon Davis to Kim Gillespie, Dillon Davis to Heather Ayers, Dillon Davis to Kevin Parker, Alexandra Wilkins to Jennifer Kim, Anthony Gonzales to Cheryl Moreno, Janice Mills to Travis Montoya, David Payne to Austin Douglas, Peter Hernandez to Rebekah Reed, Peter Hernandez to Austin Douglas, Amanda Williams to Audrey Diaz, Travis Montoya to Jennifer Jones, Jennifer Kim to Cheryl Moreno, Jesse Ward to Rebekah Reed, Lucas Martin to Cheryl Moreno, Cheryl Moreno to Craig Rose
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Amanda Brown", "id": 4942465}, {"name": "Brittany Leach", "id": 5124104}, {"name": "Dillon Davis", "id": 2495247}, {"name": "Alexandra Wilkins", "id": 2470164}, {"name": "Anthony Gonzales", "id": 2470423}, {"name": "Janice Mills", "id": 5212829}, {"name": "David Payne", "id": 5010845}, {"name": "Jennifer Gordon", "id": 4825119}, {"name": "Kim Gillespie", "id": 4825122}, {"name": "Heather Ayers", "id": 4825123}, {"name": "Kevin Parker", "id": 4825125}, {"name": "Peter Hernandez", "id": 5099686}, {"name": "Amanda Williams", "id": 2429492}, {"name": "Travis Montoya", "id": 4955445}, {"name": "Scott Washington", "id": 2405953}, {"name": "Stephen Ross", "id": 2405698}, {"name": "Jennifer Kim", "id": 2424390}, {"name": "Jesse Ward", "id": 4962759}, {"name": "Lucas Martin", "id": 3093195}, {"name": "Christine Walker", "id": 3464779}, {"name": "John Wilcox", "id": 3213392}, {"name": "Audrey Diaz", "id": 3401169}, {"name": "Austin Douglas", "id": 4955602}, {"name": "Cheryl Moreno", "id": 2419796}, {"name": "Jennifer Jones", "id": 5283931}, {"name": "Hannah Greene", "id": 2428769}, {"name": "Rebekah Reed", "id": 4932456}, {"name": "Craig Rose", "id": 2407547}], "links": [{"source": 2495247, "target": 2405953}, {"source": 2495247, "target": 3213392}, {"source": 2495247, "target": 3464779}, {"source": 2495247, "target": 4825119}, {"source": 2495247, "target": 4825122}, {"source": 2495247, "target": 4825123}, {"source": 2495247, "target": 4825125}, {"source": 2470164, "target": 2424390}, {"source": 2470423, "target": 2419796}, {"source": 5212829, "target": 4955445}, {"source": 5010845, "target": 4955602}, {"source": 5099686, "target": 4932456}, {"source": 5099686, "target": 4955602}, {"source": 2429492, "target": 3401169}, {"source": 4955445, "target": 5283931}, {"source": 2424390, "target": 2419796}, {"source": 4962759, "target": 4932456}, {"source": 3093195, "target": 2419796}, {"source": 2419796, "target": 2407547}]}
|
[
4942465,
5124104,
2405953,
2424390,
5283931,
5099686,
3401169,
2405698,
2428769
] | 9 |
369 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: George Lynch, Alexander Espinoza, Kurt Williamson, Ashley Osborne, James Young, Christine Sellers, Ashley Snyder, Becky Freeman, Carl Moreno, Carol Morgan, Robin Austin, Randall Craig, Andres Gonzalez, Robert Williams, Maria Gutierrez, Jessica Cook, Alyssa Wood, Thomas Anderson, Nicholas Nelson, Katherine Bean, Scott Cooper, Kerri Anderson, Greg Morrow, Katherine Rogers, Charles Wise, Kelsey Smith, Margaret Harrington, Deanna Herman, Tonya Williams, Cassandra Keller
- Fiendship connections: Alexander Espinoza to Charles Wise, Alexander Espinoza to Jessica Cook, Kurt Williamson to Scott Cooper, Ashley Osborne to Kelsey Smith, Ashley Osborne to Randall Craig, Ashley Osborne to Christine Sellers, Ashley Osborne to Cassandra Keller, Christine Sellers to Kelsey Smith, Ashley Snyder to Tonya Williams, Ashley Snyder to Katherine Bean, Becky Freeman to Robert Williams, Carl Moreno to Robin Austin, Carol Morgan to Deanna Herman, Robin Austin to Thomas Anderson, Andres Gonzalez to Kelsey Smith, Alyssa Wood to Katherine Bean, Nicholas Nelson to Scott Cooper, Katherine Bean to Tonya Williams
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "George Lynch", "id": 2493319}, {"name": "Alexander Espinoza", "id": 3262217}, {"name": "Kurt Williamson", "id": 5098381}, {"name": "Ashley Osborne", "id": 5147025}, {"name": "James Young", "id": 4944403}, {"name": "Christine Sellers", "id": 5147029}, {"name": "Ashley Snyder", "id": 1501079}, {"name": "Becky Freeman", "id": 4967960}, {"name": "Carl Moreno", "id": 2798234}, {"name": "Carol Morgan", "id": 4935453}, {"name": "Robin Austin", "id": 2477219}, {"name": "Randall Craig", "id": 5051046}, {"name": "Andres Gonzalez", "id": 5147050}, {"name": "Robert Williams", "id": 5000362}, {"name": "Maria Gutierrez", "id": 2454318}, {"name": "Jessica Cook", "id": 2442806}, {"name": "Alyssa Wood", "id": 916279}, {"name": "Thomas Anderson", "id": 4493373}, {"name": "Nicholas Nelson", "id": 4966336}, {"name": "Katherine Bean", "id": 1760585}, {"name": "Scott Cooper", "id": 4992330}, {"name": "Kerri Anderson", "id": 4952009}, {"name": "Greg Morrow", "id": 4971084}, {"name": "Katherine Rogers", "id": 4961369}, {"name": "Charles Wise", "id": 2425054}, {"name": "Kelsey Smith", "id": 4988898}, {"name": "Margaret Harrington", "id": 4935010}, {"name": "Deanna Herman", "id": 6111986}, {"name": "Tonya Williams", "id": 1406460}, {"name": "Cassandra Keller", "id": 5242621}], "links": [{"source": 3262217, "target": 2425054}, {"source": 3262217, "target": 2442806}, {"source": 5098381, "target": 4992330}, {"source": 5147025, "target": 4988898}, {"source": 5147025, "target": 5051046}, {"source": 5147025, "target": 5147029}, {"source": 5147025, "target": 5242621}, {"source": 5147029, "target": 4988898}, {"source": 1501079, "target": 1406460}, {"source": 1501079, "target": 1760585}, {"source": 4967960, "target": 5000362}, {"source": 2798234, "target": 2477219}, {"source": 4935453, "target": 6111986}, {"source": 2477219, "target": 4493373}, {"source": 5147050, "target": 4988898}, {"source": 916279, "target": 1760585}, {"source": 4966336, "target": 4992330}, {"source": 1760585, "target": 1406460}]}
|
[
2493319,
2442806,
4966336,
4988898,
4944403,
1760585,
4967960,
2798234,
6111986,
2454318,
4952009,
4971084,
4961369,
4935010
] | 14 |
370 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Amanda Vaughan, Donna Wilson, Peggy Zimmerman, Alicia Morgan, Todd Krueger, Deborah Bishop, Denise Hernandez, Dustin Armstrong, Jessica Andrews, Jeffrey Adams, Catherine Gardner, Logan Lin, Vickie York, Donald Mendoza, Duane Miller, Lisa Matthews, David Gilbert, Steven Cameron, David Harding, Charles Saunders, James Howard, Jose Vaughn, Ernest Stone, Kevin Warren, Marcus Thomas, Ronald Nicholson, Ms. Margaret Martin
- Fiendship connections: Peggy Zimmerman to Denise Hernandez, Alicia Morgan to Jose Vaughn, Alicia Morgan to Todd Krueger, Todd Krueger to Deborah Bishop, Jessica Andrews to Marcus Thomas, Jessica Andrews to Logan Lin, Catherine Gardner to Jose Vaughn, Vickie York to Jose Vaughn, Lisa Matthews to Charles Saunders, David Gilbert to Ronald Nicholson, David Gilbert to Kevin Warren, Charles Saunders to James Howard
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Amanda Vaughan", "id": 66181}, {"name": "Donna Wilson", "id": 2478854}, {"name": "Peggy Zimmerman", "id": 74383}, {"name": "Alicia Morgan", "id": 4010512}, {"name": "Todd Krueger", "id": 2475026}, {"name": "Deborah Bishop", "id": 4439187}, {"name": "Denise Hernandez", "id": 97310}, {"name": "Dustin Armstrong", "id": 1426208}, {"name": "Jessica Andrews", "id": 930854}, {"name": "Jeffrey Adams", "id": 2461224}, {"name": "Catherine Gardner", "id": 4010538}, {"name": "Logan Lin", "id": 1058859}, {"name": "Vickie York", "id": 4010924}, {"name": "Donald Mendoza", "id": 2501938}, {"name": "Duane Miller", "id": 2455479}, {"name": "Lisa Matthews", "id": 483384}, {"name": "David Gilbert", "id": 3019970}, {"name": "Steven Cameron", "id": 2437571}, {"name": "David Harding", "id": 2496742}, {"name": "Charles Saunders", "id": 3047}, {"name": "James Howard", "id": 2665}, {"name": "Jose Vaughn", "id": 2457322}, {"name": "Ernest Stone", "id": 1590250}, {"name": "Kevin Warren", "id": 2463344}, {"name": "Marcus Thomas", "id": 930675}, {"name": "Ronald Nicholson", "id": 2418298}, {"name": "Ms. Margaret Martin", "id": 2424700}], "links": [{"source": 74383, "target": 97310}, {"source": 4010512, "target": 2457322}, {"source": 4010512, "target": 2475026}, {"source": 2475026, "target": 4439187}, {"source": 930854, "target": 930675}, {"source": 930854, "target": 1058859}, {"source": 4010538, "target": 2457322}, {"source": 4010924, "target": 2457322}, {"source": 483384, "target": 3047}, {"source": 3019970, "target": 2418298}, {"source": 3019970, "target": 2463344}, {"source": 3047, "target": 2665}]}
|
[
66181,
2478854,
97310,
2457322,
1426208,
1058859,
2461224,
2501938,
2455479,
483384,
2463344,
2437571,
2496742,
1590250,
2424700
] | 15 |
371 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Kristin Patel, Gregory Richard, Erin Bell, Adriana Duarte, Amanda Anderson, Albert Gonzales, Maxwell Martinez, Matthew Woods, Cindy Knapp, Laura Bauer, Christopher Duncan, Andrew Brown, Tammy Fleming, Richard Benitez, Catherine Hernandez
- Fiendship connections: Gregory Richard to Maxwell Martinez, Gregory Richard to Cindy Knapp, Erin Bell to Amanda Anderson, Erin Bell to Matthew Woods, Adriana Duarte to Cindy Knapp, Amanda Anderson to Albert Gonzales, Maxwell Martinez to Laura Bauer, Maxwell Martinez to Catherine Hernandez, Maxwell Martinez to Tammy Fleming, Maxwell Martinez to Richard Benitez, Maxwell Martinez to Andrew Brown, Cindy Knapp to Catherine Hernandez, Tammy Fleming to Catherine Hernandez
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Kristin Patel", "id": 5017090}, {"name": "Gregory Richard", "id": 4951972}, {"name": "Erin Bell", "id": 5064837}, {"name": "Adriana Duarte", "id": 5458532}, {"name": "Amanda Anderson", "id": 4932295}, {"name": "Albert Gonzales", "id": 5271600}, {"name": "Maxwell Martinez", "id": 5127697}, {"name": "Matthew Woods", "id": 4943154}, {"name": "Cindy Knapp", "id": 5045106}, {"name": "Laura Bauer", "id": 4949206}, {"name": "Christopher Duncan", "id": 4968184}, {"name": "Andrew Brown", "id": 5127737}, {"name": "Tammy Fleming", "id": 5127706}, {"name": "Richard Benitez", "id": 5127707}, {"name": "Catherine Hernandez", "id": 4966943}], "links": [{"source": 4951972, "target": 5127697}, {"source": 4951972, "target": 5045106}, {"source": 5064837, "target": 4932295}, {"source": 5064837, "target": 4943154}, {"source": 5458532, "target": 5045106}, {"source": 4932295, "target": 5271600}, {"source": 5127697, "target": 4949206}, {"source": 5127697, "target": 4966943}, {"source": 5127697, "target": 5127706}, {"source": 5127697, "target": 5127707}, {"source": 5127697, "target": 5127737}, {"source": 5045106, "target": 4966943}, {"source": 5127706, "target": 4966943}]}
|
[
5017090,
4951972,
5271600,
4968184
] | 4 |
372 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: David Nelson, Jonathan Smith, Nicole Gordon, Jeremy Wilson, Ashlee Ruiz, Beth Jackson, Ann Franklin, David Pennington, Zachary Webb, Kimberly Davila, Allen Walker, Wesley Oliver, Devin Miranda, Phillip Thompson, Timothy Moreno
- Fiendship connections: David Nelson to Nicole Gordon, David Nelson to Phillip Thompson, Jonathan Smith to Beth Jackson, Nicole Gordon to Timothy Moreno, Nicole Gordon to Kimberly Davila, Nicole Gordon to Devin Miranda, Jeremy Wilson to Timothy Moreno, Jeremy Wilson to David Pennington, Ashlee Ruiz to Allen Walker, Beth Jackson to Phillip Thompson
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "David Nelson", "id": 5902467}, {"name": "Jonathan Smith", "id": 5190532}, {"name": "Nicole Gordon", "id": 5158568}, {"name": "Jeremy Wilson", "id": 5049707}, {"name": "Ashlee Ruiz", "id": 5395724}, {"name": "Beth Jackson", "id": 5048528}, {"name": "Ann Franklin", "id": 5200945}, {"name": "David Pennington", "id": 5956690}, {"name": "Zachary Webb", "id": 5098067}, {"name": "Kimberly Davila", "id": 5926262}, {"name": "Allen Walker", "id": 5421434}, {"name": "Wesley Oliver", "id": 4934204}, {"name": "Devin Miranda", "id": 6003485}, {"name": "Phillip Thompson", "id": 5593598}, {"name": "Timothy Moreno", "id": 5370141}], "links": [{"source": 5902467, "target": 5158568}, {"source": 5902467, "target": 5593598}, {"source": 5190532, "target": 5048528}, {"source": 5158568, "target": 5370141}, {"source": 5158568, "target": 5926262}, {"source": 5158568, "target": 6003485}, {"source": 5049707, "target": 5370141}, {"source": 5049707, "target": 5956690}, {"source": 5395724, "target": 5421434}, {"source": 5048528, "target": 5593598}]}
|
[
5902467,
5421434,
5200945,
5098067,
4934204
] | 5 |
373 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Betty Wood, Mary Williams, Jennifer Soto, Jill King, Margaret Mitchell, Jacqueline Watson, Jo Smith, Samuel Hanson, Eric Lambert, Stephanie Reese, Deborah Coleman, Daniel Mack, Kenneth Meyers, James Harrell, Emily Mcbride, Todd Santiago, Andrew Myers
- Fiendship connections: Betty Wood to Eric Lambert, Mary Williams to Todd Santiago, Jennifer Soto to Stephanie Reese, Jill King to Margaret Mitchell, Jill King to Daniel Mack, Margaret Mitchell to Eric Lambert, Margaret Mitchell to Stephanie Reese, Margaret Mitchell to Daniel Mack, Margaret Mitchell to Andrew Myers, Eric Lambert to James Harrell, Deborah Coleman to Todd Santiago, Kenneth Meyers to Todd Santiago
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Betty Wood", "id": 2462048}, {"name": "Mary Williams", "id": 1606915}, {"name": "Jennifer Soto", "id": 2429732}, {"name": "Jill King", "id": 2428580}, {"name": "Margaret Mitchell", "id": 2428743}, {"name": "Jacqueline Watson", "id": 2436808}, {"name": "Jo Smith", "id": 2454090}, {"name": "Samuel Hanson", "id": 2405482}, {"name": "Eric Lambert", "id": 2734655}, {"name": "Stephanie Reese", "id": 3018382}, {"name": "Deborah Coleman", "id": 1141852}, {"name": "Daniel Mack", "id": 3383150}, {"name": "Kenneth Meyers", "id": 973748}, {"name": "James Harrell", "id": 2413146}, {"name": "Emily Mcbride", "id": 2445883}, {"name": "Todd Santiago", "id": 1868060}, {"name": "Andrew Myers", "id": 3389823}], "links": [{"source": 2462048, "target": 2734655}, {"source": 1606915, "target": 1868060}, {"source": 2429732, "target": 3018382}, {"source": 2428580, "target": 2428743}, {"source": 2428580, "target": 3383150}, {"source": 2428743, "target": 2734655}, {"source": 2428743, "target": 3018382}, {"source": 2428743, "target": 3383150}, {"source": 2428743, "target": 3389823}, {"source": 2734655, "target": 2413146}, {"source": 1141852, "target": 1868060}, {"source": 973748, "target": 1868060}]}
|
[
2462048,
973748,
2436808,
2454090,
2405482,
2445883
] | 6 |
374 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Chase Sheppard, Matthew Evans, Nicholas Edwards, Brittany Chapman, Jim Novak, Kimberly Simpson, Christian Monroe, Michelle Johnston, Kathy Mullins, Brian Mendoza, Robert Norman, Morgan Walters, Natasha Weber, Mr. David Moss, Anthony Griffin, Jose Peterson, Marilyn Holden, Taylor Martin, Harold Sanchez, Mitchell Flores, William Vazquez, Madeline Wiggins
- Fiendship connections: Chase Sheppard to Kimberly Simpson, Matthew Evans to Mr. David Moss, Matthew Evans to Taylor Martin, Nicholas Edwards to Christian Monroe, Brittany Chapman to Robert Norman, Brittany Chapman to Mr. David Moss, Jim Novak to Mitchell Flores, Jim Novak to William Vazquez, Kimberly Simpson to Madeline Wiggins, Christian Monroe to Madeline Wiggins, Christian Monroe to Morgan Walters, Christian Monroe to Marilyn Holden, Christian Monroe to Anthony Griffin, Michelle Johnston to William Vazquez, Michelle Johnston to Jose Peterson, Kathy Mullins to Marilyn Holden, Kathy Mullins to Harold Sanchez, Brian Mendoza to William Vazquez, Morgan Walters to Mr. David Moss, Morgan Walters to Taylor Martin, Mr. David Moss to Taylor Martin, Harold Sanchez to Mitchell Flores
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Chase Sheppard", "id": 3565446}, {"name": "Matthew Evans", "id": 2567056}, {"name": "Nicholas Edwards", "id": 3787408}, {"name": "Brittany Chapman", "id": 3036564}, {"name": "Jim Novak", "id": 2807961}, {"name": "Kimberly Simpson", "id": 2476955}, {"name": "Christian Monroe", "id": 2447520}, {"name": "Michelle Johnston", "id": 2810409}, {"name": "Kathy Mullins", "id": 2459819}, {"name": "Brian Mendoza", "id": 3843501}, {"name": "Robert Norman", "id": 2421178}, {"name": "Morgan Walters", "id": 2523842}, {"name": "Natasha Weber", "id": 2424387}, {"name": "Mr. David Moss", "id": 2474059}, {"name": "Anthony Griffin", "id": 3787340}, {"name": "Jose Peterson", "id": 2455760}, {"name": "Marilyn Holden", "id": 2541020}, {"name": "Taylor Martin", "id": 2474089}, {"name": "Harold Sanchez", "id": 2807914}, {"name": "Mitchell Flores", "id": 2411384}, {"name": "William Vazquez", "id": 2449534}, {"name": "Madeline Wiggins", "id": 2461311}], "links": [{"source": 3565446, "target": 2476955}, {"source": 2567056, "target": 2474059}, {"source": 2567056, "target": 2474089}, {"source": 3787408, "target": 2447520}, {"source": 3036564, "target": 2421178}, {"source": 3036564, "target": 2474059}, {"source": 2807961, "target": 2411384}, {"source": 2807961, "target": 2449534}, {"source": 2476955, "target": 2461311}, {"source": 2447520, "target": 2461311}, {"source": 2447520, "target": 2523842}, {"source": 2447520, "target": 2541020}, {"source": 2447520, "target": 3787340}, {"source": 2810409, "target": 2449534}, {"source": 2810409, "target": 2455760}, {"source": 2459819, "target": 2541020}, {"source": 2459819, "target": 2807914}, {"source": 3843501, "target": 2449534}, {"source": 2523842, "target": 2474059}, {"source": 2523842, "target": 2474089}, {"source": 2474059, "target": 2474089}, {"source": 2807914, "target": 2411384}]}
|
[
3565446,
2424387
] | 2 |
375 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Autumn Phillips, Jacob King, Amber Wright, Christina Chandler, Dr. Jamie Simmons, Sarah Walters, Samuel Chang, John Castillo, Kendra Bates, Riley Fischer, Andrea Wilkins, Jennifer Williams, Debra Friedman, Chelsea Leon, Elizabeth Brown, Natalie Murphy, Robert Guzman
- Fiendship connections: Autumn Phillips to Debra Friedman, Jacob King to Chelsea Leon, Jacob King to John Castillo, Amber Wright to Robert Guzman, Amber Wright to Riley Fischer, Amber Wright to Samuel Chang, Amber Wright to Dr. Jamie Simmons, Christina Chandler to Riley Fischer, Kendra Bates to Debra Friedman, Andrea Wilkins to Debra Friedman, Elizabeth Brown to Natalie Murphy
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Autumn Phillips", "id": 1547131}, {"name": "Jacob King", "id": 1479111}, {"name": "Amber Wright", "id": 5837481}, {"name": "Christina Chandler", "id": 5027689}, {"name": "Dr. Jamie Simmons", "id": 5837483}, {"name": "Sarah Walters", "id": 5034156}, {"name": "Samuel Chang", "id": 5105495}, {"name": "John Castillo", "id": 1305967}, {"name": "Kendra Bates", "id": 1069714}, {"name": "Riley Fischer", "id": 5076595}, {"name": "Andrea Wilkins", "id": 926610}, {"name": "Jennifer Williams", "id": 5004434}, {"name": "Debra Friedman", "id": 2106557}, {"name": "Chelsea Leon", "id": 1245432}, {"name": "Elizabeth Brown", "id": 2481947}, {"name": "Natalie Murphy", "id": 4623069}, {"name": "Robert Guzman", "id": 5043134}], "links": [{"source": 1547131, "target": 2106557}, {"source": 1479111, "target": 1245432}, {"source": 1479111, "target": 1305967}, {"source": 5837481, "target": 5043134}, {"source": 5837481, "target": 5076595}, {"source": 5837481, "target": 5105495}, {"source": 5837481, "target": 5837483}, {"source": 5027689, "target": 5076595}, {"source": 1069714, "target": 2106557}, {"source": 926610, "target": 2106557}, {"source": 2481947, "target": 4623069}]}
|
[
1069714,
1245432,
5837481,
5034156,
5004434,
2481947
] | 6 |
376 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Nancy Adkins, Timothy Conner, Cassidy Moore, Joshua Mendoza, Cindy Lee, Eugene Jackson, Christopher James, Michael York, Robert Murray, Breanna Wong, John Shaw, Michael Peters, Jeffrey Martin, Jessica Chavez, Brandon Ward, Travis Wilson
- Fiendship connections: Nancy Adkins to Michael Peters, Nancy Adkins to Eugene Jackson, Nancy Adkins to Michael York, Timothy Conner to Robert Murray, Cassidy Moore to Jeffrey Martin, Joshua Mendoza to Robert Murray, Joshua Mendoza to John Shaw, Eugene Jackson to Jeffrey Martin, Christopher James to Robert Murray, Robert Murray to Travis Wilson, Breanna Wong to Brandon Ward, Breanna Wong to Travis Wilson, Breanna Wong to Jessica Chavez, John Shaw to Michael Peters
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Nancy Adkins", "id": 913408}, {"name": "Timothy Conner", "id": 779456}, {"name": "Cassidy Moore", "id": 787875}, {"name": "Joshua Mendoza", "id": 1803940}, {"name": "Cindy Lee", "id": 852805}, {"name": "Eugene Jackson", "id": 1263172}, {"name": "Christopher James", "id": 1916743}, {"name": "Michael York", "id": 1389035}, {"name": "Robert Murray", "id": 1001550}, {"name": "Breanna Wong", "id": 917776}, {"name": "John Shaw", "id": 1057726}, {"name": "Michael Peters", "id": 1298038}, {"name": "Jeffrey Martin", "id": 917273}, {"name": "Jessica Chavez", "id": 2214329}, {"name": "Brandon Ward", "id": 1164158}, {"name": "Travis Wilson", "id": 1205087}], "links": [{"source": 913408, "target": 1298038}, {"source": 913408, "target": 1263172}, {"source": 913408, "target": 1389035}, {"source": 779456, "target": 1001550}, {"source": 787875, "target": 917273}, {"source": 1803940, "target": 1001550}, {"source": 1803940, "target": 1057726}, {"source": 1263172, "target": 917273}, {"source": 1916743, "target": 1001550}, {"source": 1001550, "target": 1205087}, {"source": 917776, "target": 1164158}, {"source": 917776, "target": 1205087}, {"source": 917776, "target": 2214329}, {"source": 1057726, "target": 1298038}]}
|
[
913408,
852805
] | 2 |
377 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Angela Sosa, Crystal Mills, Ryan Gonzalez, James Smith, Danny Martinez, Andrew Adams, Raymond Miller, Russell Cabrera, Karen Allen, Keith Patterson, Steven Hardy, Molly Brock, Ashley Buchanan, Michelle Nunez, Willie Mcconnell, Valerie Landry, Joseph Kaufman, Melissa Rios, Rachel Brown, Nancy Taylor, Matthew Mclean
- Fiendship connections: Angela Sosa to Nancy Taylor, Crystal Mills to Valerie Landry, Ryan Gonzalez to Keith Patterson, James Smith to Andrew Adams, Danny Martinez to Michelle Nunez, Danny Martinez to Andrew Adams, Danny Martinez to Raymond Miller, Danny Martinez to Karen Allen, Steven Hardy to Valerie Landry, Molly Brock to Willie Mcconnell, Molly Brock to Joseph Kaufman, Molly Brock to Ashley Buchanan, Valerie Landry to Matthew Mclean, Melissa Rios to Nancy Taylor
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Angela Sosa", "id": 4977920}, {"name": "Crystal Mills", "id": 3262985}, {"name": "Ryan Gonzalez", "id": 4946061}, {"name": "James Smith", "id": 5735062}, {"name": "Danny Martinez", "id": 5316258}, {"name": "Andrew Adams", "id": 5316259}, {"name": "Raymond Miller", "id": 5316260}, {"name": "Russell Cabrera", "id": 4971298}, {"name": "Karen Allen", "id": 5316262}, {"name": "Keith Patterson", "id": 4990893}, {"name": "Steven Hardy", "id": 2638016}, {"name": "Molly Brock", "id": 2022340}, {"name": "Ashley Buchanan", "id": 1647949}, {"name": "Michelle Nunez", "id": 4966862}, {"name": "Willie Mcconnell", "id": 808911}, {"name": "Valerie Landry", "id": 2466768}, {"name": "Joseph Kaufman", "id": 1088088}, {"name": "Melissa Rios", "id": 5451992}, {"name": "Rachel Brown", "id": 4976993}, {"name": "Nancy Taylor", "id": 5550444}, {"name": "Matthew Mclean", "id": 4241008}], "links": [{"source": 4977920, "target": 5550444}, {"source": 3262985, "target": 2466768}, {"source": 4946061, "target": 4990893}, {"source": 5735062, "target": 5316259}, {"source": 5316258, "target": 4966862}, {"source": 5316258, "target": 5316259}, {"source": 5316258, "target": 5316260}, {"source": 5316258, "target": 5316262}, {"source": 2638016, "target": 2466768}, {"source": 2022340, "target": 808911}, {"source": 2022340, "target": 1088088}, {"source": 2022340, "target": 1647949}, {"source": 2466768, "target": 4241008}, {"source": 5451992, "target": 5550444}]}
|
[
4977920,
2466768,
4946061,
5316258,
4971298,
1088088,
4976993
] | 7 |
378 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Toni Hill, Heather Fisher, Gail Mclean, Philip Foster, Kaitlyn Robbins, Crystal Ross, Kristi Nguyen, Brandon Kemp, Jose Hensley, Morgan Barnes, Eduardo Bryant, Alexandra Webb, Shannon Kemp, James Edwards, Mark Flores, Kristy Matthews
- Fiendship connections: Toni Hill to Brandon Kemp, Toni Hill to James Edwards, Heather Fisher to Morgan Barnes, Heather Fisher to Gail Mclean, Heather Fisher to Jose Hensley, Gail Mclean to Morgan Barnes, Gail Mclean to Jose Hensley, Philip Foster to Kristi Nguyen, Crystal Ross to Kristy Matthews, Kristi Nguyen to Shannon Kemp, Jose Hensley to Morgan Barnes, Eduardo Bryant to Alexandra Webb
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Toni Hill", "id": 5471456}, {"name": "Heather Fisher", "id": 2435296}, {"name": "Gail Mclean", "id": 2435486}, {"name": "Philip Foster", "id": 872804}, {"name": "Kaitlyn Robbins", "id": 5040708}, {"name": "Crystal Ross", "id": 5349415}, {"name": "Kristi Nguyen", "id": 1993095}, {"name": "Brandon Kemp", "id": 4976553}, {"name": "Jose Hensley", "id": 3502058}, {"name": "Morgan Barnes", "id": 2432713}, {"name": "Eduardo Bryant", "id": 5021959}, {"name": "Alexandra Webb", "id": 4973246}, {"name": "Shannon Kemp", "id": 976431}, {"name": "James Edwards", "id": 5015097}, {"name": "Mark Flores", "id": 5205949}, {"name": "Kristy Matthews", "id": 5123230}], "links": [{"source": 5471456, "target": 4976553}, {"source": 5471456, "target": 5015097}, {"source": 2435296, "target": 2432713}, {"source": 2435296, "target": 2435486}, {"source": 2435296, "target": 3502058}, {"source": 2435486, "target": 2432713}, {"source": 2435486, "target": 3502058}, {"source": 872804, "target": 1993095}, {"source": 5349415, "target": 5123230}, {"source": 1993095, "target": 976431}, {"source": 3502058, "target": 2432713}, {"source": 5021959, "target": 4973246}]}
|
[
5471456,
2435296,
872804,
5040708,
5123230,
4973246,
5205949
] | 7 |
379 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Alicia Green, Jason Dyer, Christina Dillon, Alyssa Vega, Justin Davis, Ronald Bates, Thomas Blanchard, Rachel Smith, Rebecca Stokes, Keith Knight II, Joseph Marshall, Christopher Davila, Mrs. Joanna Moreno, Julie Navarro, Jennifer Armstrong, Kevin Brown, Rebecca Weeks, Erika Martin, Valerie Gonzalez, Theodore Roberts, Eric Cooper
- Fiendship connections: Alicia Green to Rebecca Stokes, Jason Dyer to Rachel Smith, Justin Davis to Rebecca Stokes, Thomas Blanchard to Joseph Marshall, Keith Knight II to Julie Navarro, Keith Knight II to Jennifer Armstrong, Keith Knight II to Eric Cooper, Keith Knight II to Kevin Brown, Joseph Marshall to Rebecca Weeks, Julie Navarro to Kevin Brown, Kevin Brown to Theodore Roberts
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Alicia Green", "id": 5006871}, {"name": "Jason Dyer", "id": 2526239}, {"name": "Christina Dillon", "id": 5142179}, {"name": "Alyssa Vega", "id": 2453166}, {"name": "Justin Davis", "id": 5117618}, {"name": "Ronald Bates", "id": 103091}, {"name": "Thomas Blanchard", "id": 24248}, {"name": "Rachel Smith", "id": 2405176}, {"name": "Rebecca Stokes", "id": 5117643}, {"name": "Keith Knight II", "id": 1897426}, {"name": "Joseph Marshall", "id": 68820}, {"name": "Christopher Davila", "id": 5112792}, {"name": "Mrs. Joanna Moreno", "id": 2454110}, {"name": "Julie Navarro", "id": 953710}, {"name": "Jennifer Armstrong", "id": 1013231}, {"name": "Kevin Brown", "id": 1869428}, {"name": "Rebecca Weeks", "id": 22389}, {"name": "Erika Martin", "id": 2418167}, {"name": "Valerie Gonzalez", "id": 2447993}, {"name": "Theodore Roberts", "id": 1103098}, {"name": "Eric Cooper", "id": 1588606}], "links": [{"source": 5006871, "target": 5117643}, {"source": 2526239, "target": 2405176}, {"source": 5117618, "target": 5117643}, {"source": 24248, "target": 68820}, {"source": 1897426, "target": 953710}, {"source": 1897426, "target": 1013231}, {"source": 1897426, "target": 1588606}, {"source": 1897426, "target": 1869428}, {"source": 68820, "target": 22389}, {"source": 953710, "target": 1869428}, {"source": 1869428, "target": 1103098}]}
|
[
5117618,
2405176,
5142179,
2453166,
103091,
24248,
953710,
5112792,
2454110,
2418167,
2447993
] | 11 |
380 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Jenna Maldonado, Jennifer Fuller, Katie Taylor, Stephen Harmon, Brittany Newton, Joseph Day, Jacob Watson, Mary Williams, Kristy Gill, Michelle King, Kelly Rodriguez, Sonia Williams, Amanda Caldwell, Dawn Sanchez, Joseph Caldwell, Linda Cooper, John Murray, Brian Brown, Jessica Cook, John Graves, Christy Burnett, Michael Gray, Kevin Tran, Jeremy Cook
- Fiendship connections: Stephen Harmon to Amanda Caldwell, Stephen Harmon to Brian Brown, Stephen Harmon to Dawn Sanchez, Brittany Newton to Kristy Gill, Joseph Day to Jessica Cook, Joseph Day to Linda Cooper, Mary Williams to Kevin Tran, Mary Williams to Kelly Rodriguez, Kelly Rodriguez to Michael Gray, Kelly Rodriguez to Christy Burnett, Kelly Rodriguez to John Graves, Dawn Sanchez to Brian Brown
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Jenna Maldonado", "id": 2460046}, {"name": "Jennifer Fuller", "id": 5013139}, {"name": "Katie Taylor", "id": 2498582}, {"name": "Stephen Harmon", "id": 929943}, {"name": "Brittany Newton", "id": 5002399}, {"name": "Joseph Day", "id": 2895519}, {"name": "Jacob Watson", "id": 866213}, {"name": "Mary Williams", "id": 2460455}, {"name": "Kristy Gill", "id": 6011304}, {"name": "Michelle King", "id": 2408876}, {"name": "Kelly Rodriguez", "id": 3625006}, {"name": "Sonia Williams", "id": 2426938}, {"name": "Amanda Caldwell", "id": 1049279}, {"name": "Dawn Sanchez", "id": 1452360}, {"name": "Joseph Caldwell", "id": 2681929}, {"name": "Linda Cooper", "id": 2430027}, {"name": "John Murray", "id": 5099598}, {"name": "Brian Brown", "id": 1310798}, {"name": "Jessica Cook", "id": 2414683}, {"name": "John Graves", "id": 2468829}, {"name": "Christy Burnett", "id": 2459231}, {"name": "Michael Gray", "id": 2443233}, {"name": "Kevin Tran", "id": 2993250}, {"name": "Jeremy Cook", "id": 2495478}], "links": [{"source": 929943, "target": 1049279}, {"source": 929943, "target": 1310798}, {"source": 929943, "target": 1452360}, {"source": 5002399, "target": 6011304}, {"source": 2895519, "target": 2414683}, {"source": 2895519, "target": 2430027}, {"source": 2460455, "target": 2993250}, {"source": 2460455, "target": 3625006}, {"source": 3625006, "target": 2443233}, {"source": 3625006, "target": 2459231}, {"source": 3625006, "target": 2468829}, {"source": 1452360, "target": 1310798}]}
|
[
2460046,
5013139,
2498582,
1452360,
6011304,
2430027,
866213,
2443233,
2408876,
2426938,
2681929,
5099598,
2495478
] | 13 |
381 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Christopher Hall, Collin Richardson, Anthony Kramer, Larry Martinez, Stephanie Gordon, Paula Benton, Samantha Williams, Marc David, Kelly Schmitt, Richard Stokes, Brandon Nelson, Jason Herrera, Karen Chen, Vickie Horne, Justin Smith, Lindsey Gates, Vincent Dunn, Crystal Liu, Carrie Woods, Tiffany Thompson, Donald Martin, Dominique Howe DDS, Ryan Hall, Michelle Soto, Austin Diaz, Melissa Ramirez, Sarah Allen, Nicholas Arnold, Christopher Lopez
- Fiendship connections: Christopher Hall to Austin Diaz, Stephanie Gordon to Ryan Hall, Stephanie Gordon to Crystal Liu, Stephanie Gordon to Jason Herrera, Paula Benton to Crystal Liu, Paula Benton to Vickie Horne, Paula Benton to Jason Herrera, Paula Benton to Vincent Dunn, Paula Benton to Melissa Ramirez, Paula Benton to Michelle Soto, Marc David to Nicholas Arnold, Brandon Nelson to Melissa Ramirez, Jason Herrera to Vickie Horne, Jason Herrera to Vincent Dunn, Jason Herrera to Michelle Soto, Karen Chen to Tiffany Thompson, Vickie Horne to Vincent Dunn, Vickie Horne to Melissa Ramirez, Vickie Horne to Michelle Soto, Justin Smith to Carrie Woods, Justin Smith to Melissa Ramirez, Vincent Dunn to Crystal Liu, Vincent Dunn to Melissa Ramirez, Vincent Dunn to Michelle Soto, Crystal Liu to Ryan Hall, Crystal Liu to Melissa Ramirez, Donald Martin to Austin Diaz, Dominique Howe DDS to Austin Diaz, Michelle Soto to Melissa Ramirez, Melissa Ramirez to Christopher Lopez, Melissa Ramirez to Sarah Allen
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Christopher Hall", "id": 4631556}, {"name": "Collin Richardson", "id": 2417925}, {"name": "Anthony Kramer", "id": 2429578}, {"name": "Larry Martinez", "id": 2462737}, {"name": "Stephanie Gordon", "id": 1680660}, {"name": "Paula Benton", "id": 1680661}, {"name": "Samantha Williams", "id": 2420501}, {"name": "Marc David", "id": 2460183}, {"name": "Kelly Schmitt", "id": 2459674}, {"name": "Richard Stokes", "id": 2415786}, {"name": "Brandon Nelson", "id": 852013}, {"name": "Jason Herrera", "id": 1133486}, {"name": "Karen Chen", "id": 4494901}, {"name": "Vickie Horne", "id": 1122618}, {"name": "Justin Smith", "id": 1081669}, {"name": "Lindsey Gates", "id": 2477641}, {"name": "Vincent Dunn", "id": 1307338}, {"name": "Crystal Liu", "id": 889036}, {"name": "Carrie Woods", "id": 845648}, {"name": "Tiffany Thompson", "id": 2477267}, {"name": "Donald Martin", "id": 3689683}, {"name": "Dominique Howe DDS", "id": 2535645}, {"name": "Ryan Hall", "id": 873828}, {"name": "Michelle Soto", "id": 1709927}, {"name": "Austin Diaz", "id": 2482157}, {"name": "Melissa Ramirez", "id": 1545710}, {"name": "Sarah Allen", "id": 1993072}, {"name": "Nicholas Arnold", "id": 4084979}, {"name": "Christopher Lopez", "id": 892537}], "links": [{"source": 4631556, "target": 2482157}, {"source": 1680660, "target": 873828}, {"source": 1680660, "target": 889036}, {"source": 1680660, "target": 1133486}, {"source": 1680661, "target": 889036}, {"source": 1680661, "target": 1122618}, {"source": 1680661, "target": 1133486}, {"source": 1680661, "target": 1307338}, {"source": 1680661, "target": 1545710}, {"source": 1680661, "target": 1709927}, {"source": 2460183, "target": 4084979}, {"source": 852013, "target": 1545710}, {"source": 1133486, "target": 1122618}, {"source": 1133486, "target": 1307338}, {"source": 1133486, "target": 1709927}, {"source": 4494901, "target": 2477267}, {"source": 1122618, "target": 1307338}, {"source": 1122618, "target": 1545710}, {"source": 1122618, "target": 1709927}, {"source": 1081669, "target": 845648}, {"source": 1081669, "target": 1545710}, {"source": 1307338, "target": 889036}, {"source": 1307338, "target": 1545710}, {"source": 1307338, "target": 1709927}, {"source": 889036, "target": 873828}, {"source": 889036, "target": 1545710}, {"source": 3689683, "target": 2482157}, {"source": 2535645, "target": 2482157}, {"source": 1709927, "target": 1545710}, {"source": 1545710, "target": 892537}, {"source": 1545710, "target": 1993072}]}
|
[
2535645,
2417925,
2429578,
2462737,
873828,
2420501,
4084979,
2459674,
2415786,
2477267,
2477641
] | 11 |
382 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Morgan Thompson, William Vega, Robert Davis, Patrick Holloway, Michael Martinez, James Cross, Austin Coleman, Alicia Johnson, Laurie Sims, Travis Martinez, Todd Blake, Lisa Armstrong, Cynthia Martinez, Crystal Deleon PhD, Miranda Mcclure, Sarah Smith, Chad Richards, Hayley Kent, Erica Smith, Lauren Hernandez, Matthew Perez, Joshua Solis, Alexis Espinoza, Amy Ward, Jordan Oliver, Donald Johnson, Jennifer Kemp
- Fiendship connections: Morgan Thompson to Donald Johnson, William Vega to Alexis Espinoza, William Vega to Laurie Sims, Robert Davis to Sarah Smith, Patrick Holloway to Donald Johnson, James Cross to Sarah Smith, James Cross to Austin Coleman, James Cross to Cynthia Martinez, Austin Coleman to Sarah Smith, Austin Coleman to Cynthia Martinez, Travis Martinez to Donald Johnson, Cynthia Martinez to Sarah Smith, Crystal Deleon PhD to Jordan Oliver, Chad Richards to Jordan Oliver
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Morgan Thompson", "id": 959113}, {"name": "William Vega", "id": 922129}, {"name": "Robert Davis", "id": 2425878}, {"name": "Patrick Holloway", "id": 941080}, {"name": "Michael Martinez", "id": 2465049}, {"name": "James Cross", "id": 2490778}, {"name": "Austin Coleman", "id": 2456222}, {"name": "Alicia Johnson", "id": 2446625}, {"name": "Laurie Sims", "id": 1004455}, {"name": "Travis Martinez", "id": 1396136}, {"name": "Todd Blake", "id": 2456235}, {"name": "Lisa Armstrong", "id": 2455085}, {"name": "Cynthia Martinez", "id": 3168955}, {"name": "Crystal Deleon PhD", "id": 4151612}, {"name": "Miranda Mcclure", "id": 2493627}, {"name": "Sarah Smith", "id": 2421823}, {"name": "Chad Richards", "id": 4123206}, {"name": "Hayley Kent", "id": 2475092}, {"name": "Erica Smith", "id": 2456276}, {"name": "Lauren Hernandez", "id": 2491094}, {"name": "Matthew Perez", "id": 2462556}, {"name": "Joshua Solis", "id": 858594}, {"name": "Alexis Espinoza", "id": 938858}, {"name": "Amy Ward", "id": 1366007}, {"name": "Jordan Oliver", "id": 2463097}, {"name": "Donald Johnson", "id": 1815165}, {"name": "Jennifer Kemp", "id": 935806}], "links": [{"source": 959113, "target": 1815165}, {"source": 922129, "target": 938858}, {"source": 922129, "target": 1004455}, {"source": 2425878, "target": 2421823}, {"source": 941080, "target": 1815165}, {"source": 2490778, "target": 2421823}, {"source": 2490778, "target": 2456222}, {"source": 2490778, "target": 3168955}, {"source": 2456222, "target": 2421823}, {"source": 2456222, "target": 3168955}, {"source": 1396136, "target": 1815165}, {"source": 3168955, "target": 2421823}, {"source": 4151612, "target": 2463097}, {"source": 4123206, "target": 2463097}]}
|
[
941080,
922129,
2425878,
2465049,
2446625,
2456235,
2455085,
2463097,
2493627,
2475092,
2456276,
2491094,
2462556,
858594,
1366007,
935806
] | 16 |
383 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Emily Gilbert, Daniel Thompson, Barbara Adams, John Guzman, Melissa Cook, Michelle Garrison, Brenda Harmon, Devin Gates, Heidi Baker, Bonnie Wheeler, Samantha Pacheco, Travis Fox, Ronnie Nunez, Elizabeth West, Anne Ponce, Tyler Edwards, Ryan Cox, Aaron Smith, Jennifer Hughes, Kristen Arias, Mitchell Anderson, Stacy Sims
- Fiendship connections: Daniel Thompson to Tyler Edwards, Daniel Thompson to Michelle Garrison, Barbara Adams to Mitchell Anderson, Barbara Adams to Devin Gates, John Guzman to Melissa Cook, John Guzman to Samantha Pacheco, Michelle Garrison to Tyler Edwards, Brenda Harmon to Samantha Pacheco, Devin Gates to Samantha Pacheco, Devin Gates to Travis Fox, Devin Gates to Aaron Smith, Devin Gates to Heidi Baker, Devin Gates to Bonnie Wheeler, Samantha Pacheco to Elizabeth West, Samantha Pacheco to Aaron Smith, Samantha Pacheco to Jennifer Hughes, Anne Ponce to Ryan Cox, Tyler Edwards to Stacy Sims, Tyler Edwards to Kristen Arias
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Emily Gilbert", "id": 1190017}, {"name": "Daniel Thompson", "id": 1711746}, {"name": "Barbara Adams", "id": 2821121}, {"name": "John Guzman", "id": 2537992}, {"name": "Melissa Cook", "id": 2406414}, {"name": "Michelle Garrison", "id": 1531293}, {"name": "Brenda Harmon", "id": 2741919}, {"name": "Devin Gates", "id": 2497695}, {"name": "Heidi Baker", "id": 4845985}, {"name": "Bonnie Wheeler", "id": 4845991}, {"name": "Samantha Pacheco", "id": 2420650}, {"name": "Travis Fox", "id": 2772523}, {"name": "Ronnie Nunez", "id": 2409005}, {"name": "Elizabeth West", "id": 2506799}, {"name": "Anne Ponce", "id": 3577776}, {"name": "Tyler Edwards", "id": 949682}, {"name": "Ryan Cox", "id": 2436698}, {"name": "Aaron Smith", "id": 3108573}, {"name": "Jennifer Hughes", "id": 3108578}, {"name": "Kristen Arias", "id": 1447273}, {"name": "Mitchell Anderson", "id": 2434422}, {"name": "Stacy Sims", "id": 1390974}], "links": [{"source": 1711746, "target": 949682}, {"source": 1711746, "target": 1531293}, {"source": 2821121, "target": 2434422}, {"source": 2821121, "target": 2497695}, {"source": 2537992, "target": 2406414}, {"source": 2537992, "target": 2420650}, {"source": 1531293, "target": 949682}, {"source": 2741919, "target": 2420650}, {"source": 2497695, "target": 2420650}, {"source": 2497695, "target": 2772523}, {"source": 2497695, "target": 3108573}, {"source": 2497695, "target": 4845985}, {"source": 2497695, "target": 4845991}, {"source": 2420650, "target": 2506799}, {"source": 2420650, "target": 3108573}, {"source": 2420650, "target": 3108578}, {"source": 3577776, "target": 2436698}, {"source": 949682, "target": 1390974}, {"source": 949682, "target": 1447273}]}
|
[
1190017,
1711746,
2821121,
2409005,
3577776
] | 5 |
384 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Brenda Brown, Dylan Simmons, Madeline Rodriguez, Cindy Lozano, Kim Bryant, Sean Lamb, Pamela Thompson, Vincent Pruitt, Kimberly Farmer, Tiffany Macdonald, Christine Scott, Joan Reid, Rebecca Kelley, Ronald Rodgers, Lance Vaughn, Cody Reed
- Fiendship connections: Brenda Brown to Kimberly Farmer, Dylan Simmons to Kim Bryant, Madeline Rodriguez to Lance Vaughn, Madeline Rodriguez to Cindy Lozano, Madeline Rodriguez to Joan Reid, Madeline Rodriguez to Christine Scott, Sean Lamb to Rebecca Kelley, Vincent Pruitt to Tiffany Macdonald, Rebecca Kelley to Ronald Rodgers
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Brenda Brown", "id": 177700}, {"name": "Dylan Simmons", "id": 3431}, {"name": "Madeline Rodriguez", "id": 5552744}, {"name": "Cindy Lozano", "id": 4958889}, {"name": "Kim Bryant", "id": 11049}, {"name": "Sean Lamb", "id": 2209483}, {"name": "Pamela Thompson", "id": 10248}, {"name": "Vincent Pruitt", "id": 611693}, {"name": "Kimberly Farmer", "id": 177806}, {"name": "Tiffany Macdonald", "id": 10577}, {"name": "Christine Scott", "id": 5191762}, {"name": "Joan Reid", "id": 5191761}, {"name": "Rebecca Kelley", "id": 941337}, {"name": "Ronald Rodgers", "id": 2059773}, {"name": "Lance Vaughn", "id": 4935006}, {"name": "Cody Reed", "id": 4946879}], "links": [{"source": 177700, "target": 177806}, {"source": 3431, "target": 11049}, {"source": 5552744, "target": 4935006}, {"source": 5552744, "target": 4958889}, {"source": 5552744, "target": 5191761}, {"source": 5552744, "target": 5191762}, {"source": 2209483, "target": 941337}, {"source": 611693, "target": 10577}, {"source": 941337, "target": 2059773}]}
|
[
177700,
11049,
5552744,
941337,
10248,
10577,
4946879
] | 7 |
385 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Carolyn Lambert, Elizabeth Lloyd, Kenneth Molina, Jacqueline Freeman, Sabrina Adams, Jason Miller, Christine Thompson, Ryan Hill, Jill Franco, Natalie Hull, Gregg Ross, James Kaufman, Beverly Hale, Dr. Joshua Jackson DVM, Kurt Curtis, Eric Roy, Andrew Flores, Erica Hubbard, Emily Woods, Ashlee Browning, Veronica Henson, Gabrielle Porter
- Fiendship connections: Elizabeth Lloyd to Beverly Hale, Kenneth Molina to Jason Miller, Kenneth Molina to Andrew Flores, Ryan Hill to Gregg Ross, Ryan Hill to Eric Roy, Natalie Hull to Ashlee Browning, Gregg Ross to Eric Roy, Beverly Hale to Andrew Flores, Andrew Flores to Erica Hubbard, Andrew Flores to Veronica Henson, Erica Hubbard to Veronica Henson
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Carolyn Lambert", "id": 932232}, {"name": "Elizabeth Lloyd", "id": 2405386}, {"name": "Kenneth Molina", "id": 4062224}, {"name": "Jacqueline Freeman", "id": 1076896}, {"name": "Sabrina Adams", "id": 2481957}, {"name": "Jason Miller", "id": 2459690}, {"name": "Christine Thompson", "id": 1454762}, {"name": "Ryan Hill", "id": 1102637}, {"name": "Jill Franco", "id": 862646}, {"name": "Natalie Hull", "id": 4406201}, {"name": "Gregg Ross", "id": 901445}, {"name": "James Kaufman", "id": 2494289}, {"name": "Beverly Hale", "id": 2534360}, {"name": "Dr. Joshua Jackson DVM", "id": 2429787}, {"name": "Kurt Curtis", "id": 2477150}, {"name": "Eric Roy", "id": 1106912}, {"name": "Andrew Flores", "id": 2460000}, {"name": "Erica Hubbard", "id": 2460137}, {"name": "Emily Woods", "id": 2445801}, {"name": "Ashlee Browning", "id": 2472942}, {"name": "Veronica Henson", "id": 4075759}, {"name": "Gabrielle Porter", "id": 2461691}], "links": [{"source": 2405386, "target": 2534360}, {"source": 4062224, "target": 2459690}, {"source": 4062224, "target": 2460000}, {"source": 1102637, "target": 901445}, {"source": 1102637, "target": 1106912}, {"source": 4406201, "target": 2472942}, {"source": 901445, "target": 1106912}, {"source": 2534360, "target": 2460000}, {"source": 2460000, "target": 2460137}, {"source": 2460000, "target": 4075759}, {"source": 2460137, "target": 4075759}]}
|
[
932232,
2460000,
1076896,
2481957,
1454762,
1106912,
862646,
4406201,
2494289,
2429787,
2477150,
2445801,
2461691
] | 13 |
386 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Robert Hughes, Deborah Rosales, Sherry Martinez, Micheal Mclaughlin, Gilbert Williams, Michael Guzman, Jenna Powell, Austin Collins, Marilyn Dominguez, Jessica Ward, Michael Turner, John Wall, Andrew Castaneda IV, Patricia Kim, Derek Smith, Sonya Thomas, James Stuart, Daniel Harris, Joann Pittman, Ashley Nichols, Patrick Watson, Matthew Williams, James Lee, Holly Cruz, Jonathan Olson, Robert Lewis, Kaitlyn Green
- Fiendship connections: Robert Hughes to Sonya Thomas, Robert Hughes to Jessica Ward, Robert Hughes to Sherry Martinez, Micheal Mclaughlin to Joann Pittman, Micheal Mclaughlin to Austin Collins, Michael Guzman to Patricia Kim, Austin Collins to James Lee, Austin Collins to John Wall, Austin Collins to Joann Pittman, Marilyn Dominguez to John Wall, Michael Turner to Joann Pittman, Patricia Kim to Ashley Nichols, Matthew Williams to Robert Lewis, Matthew Williams to Kaitlyn Green
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Robert Hughes", "id": 2500870}, {"name": "Deborah Rosales", "id": 2477961}, {"name": "Sherry Martinez", "id": 4899214}, {"name": "Micheal Mclaughlin", "id": 2431502}, {"name": "Gilbert Williams", "id": 2403726}, {"name": "Michael Guzman", "id": 2415123}, {"name": "Jenna Powell", "id": 2432025}, {"name": "Austin Collins", "id": 3226784}, {"name": "Marilyn Dominguez", "id": 2423970}, {"name": "Jessica Ward", "id": 2517293}, {"name": "Michael Turner", "id": 2471726}, {"name": "John Wall", "id": 2426799}, {"name": "Andrew Castaneda IV", "id": 2431678}, {"name": "Patricia Kim", "id": 2413635}, {"name": "Derek Smith", "id": 2406084}, {"name": "Sonya Thomas", "id": 2478669}, {"name": "James Stuart", "id": 2437716}, {"name": "Daniel Harris", "id": 5000661}, {"name": "Joann Pittman", "id": 2471385}, {"name": "Ashley Nichols", "id": 2867295}, {"name": "Patrick Watson", "id": 2478305}, {"name": "Matthew Williams", "id": 5058536}, {"name": "James Lee", "id": 2424168}, {"name": "Holly Cruz", "id": 2441455}, {"name": "Jonathan Olson", "id": 2464370}, {"name": "Robert Lewis", "id": 5967609}, {"name": "Kaitlyn Green", "id": 5967612}], "links": [{"source": 2500870, "target": 2478669}, {"source": 2500870, "target": 2517293}, {"source": 2500870, "target": 4899214}, {"source": 2431502, "target": 2471385}, {"source": 2431502, "target": 3226784}, {"source": 2415123, "target": 2413635}, {"source": 3226784, "target": 2424168}, {"source": 3226784, "target": 2426799}, {"source": 3226784, "target": 2471385}, {"source": 2423970, "target": 2426799}, {"source": 2471726, "target": 2471385}, {"source": 2413635, "target": 2867295}, {"source": 5058536, "target": 5967609}, {"source": 5058536, "target": 5967612}]}
|
[
4899214,
2477961,
3226784,
2403726,
2413635,
2432025,
2431678,
2406084,
2437716,
5000661,
2478305,
5058536,
2441455,
2464370
] | 14 |
387 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Yolanda Brewer, Tina Thornton, Kaitlyn Powers, Tammy Thompson, James Palmer, Randy Hughes, Benjamin Smith, Amanda Davis, John Perry, Desiree Johns, Melanie Wallace, David Hall, Victoria Gardner, Theresa Fry, John Wyatt, Mark Lloyd, Anthony Jackson, Howard Ho, Linda Moore, Alicia Hawkins, Stephen Willis, Michael Bradley, Theresa Stokes, Andrew Bartlett, Alexis Conner, Peter Porter
- Fiendship connections: Yolanda Brewer to Victoria Gardner, Tina Thornton to Linda Moore, Kaitlyn Powers to Desiree Johns, James Palmer to Theresa Fry, Benjamin Smith to Alicia Hawkins, Amanda Davis to Melanie Wallace, Desiree Johns to Theresa Fry, Melanie Wallace to Anthony Jackson, Melanie Wallace to Michael Bradley, Melanie Wallace to Howard Ho, David Hall to Alicia Hawkins, Victoria Gardner to Andrew Bartlett, John Wyatt to Theresa Stokes
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Yolanda Brewer", "id": 2478336}, {"name": "Tina Thornton", "id": 2438029}, {"name": "Kaitlyn Powers", "id": 5068813}, {"name": "Tammy Thompson", "id": 5528976}, {"name": "James Palmer", "id": 6021269}, {"name": "Randy Hughes", "id": 5046038}, {"name": "Benjamin Smith", "id": 5978010}, {"name": "Amanda Davis", "id": 5126684}, {"name": "John Perry", "id": 5373344}, {"name": "Desiree Johns", "id": 4972193}, {"name": "Melanie Wallace", "id": 5546405}, {"name": "David Hall", "id": 5188134}, {"name": "Victoria Gardner", "id": 2418216}, {"name": "Theresa Fry", "id": 5433513}, {"name": "John Wyatt", "id": 3802413}, {"name": "Mark Lloyd", "id": 5042477}, {"name": "Anthony Jackson", "id": 4955055}, {"name": "Howard Ho", "id": 5345586}, {"name": "Linda Moore", "id": 3601097}, {"name": "Alicia Hawkins", "id": 5066441}, {"name": "Stephen Willis", "id": 4932176}, {"name": "Michael Bradley", "id": 5071461}, {"name": "Theresa Stokes", "id": 2447981}, {"name": "Andrew Bartlett", "id": 3013614}, {"name": "Alexis Conner", "id": 5360629}, {"name": "Peter Porter", "id": 2420469}], "links": [{"source": 2478336, "target": 2418216}, {"source": 2438029, "target": 3601097}, {"source": 5068813, "target": 4972193}, {"source": 6021269, "target": 5433513}, {"source": 5978010, "target": 5066441}, {"source": 5126684, "target": 5546405}, {"source": 4972193, "target": 5433513}, {"source": 5546405, "target": 4955055}, {"source": 5546405, "target": 5071461}, {"source": 5546405, "target": 5345586}, {"source": 5188134, "target": 5066441}, {"source": 2418216, "target": 3013614}, {"source": 3802413, "target": 2447981}]}
|
[
2478336,
3601097,
4972193,
5528976,
5046038,
5066441,
5071461,
5373344,
2447981,
5042477,
4932176,
5360629,
2420469
] | 13 |
388 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Jamie Rivera, Dylan Foster, Audrey Townsend, Sarah Sawyer, Alexis Shaffer, Ashley Porter, Thomas Sullivan, Nicole Duran, Daniel Mooney, Amber Smith, Erica Ford, Marie Thomas, Emily Cooper, Emily Patterson, Dana Acosta, Megan Chang, Shawn Turner
- Fiendship connections: Jamie Rivera to Sarah Sawyer, Jamie Rivera to Daniel Mooney, Dylan Foster to Alexis Shaffer, Audrey Townsend to Sarah Sawyer, Sarah Sawyer to Emily Patterson, Sarah Sawyer to Emily Cooper, Sarah Sawyer to Thomas Sullivan, Alexis Shaffer to Amber Smith, Ashley Porter to Amber Smith, Daniel Mooney to Dana Acosta, Erica Ford to Marie Thomas, Erica Ford to Dana Acosta, Emily Cooper to Shawn Turner
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Jamie Rivera", "id": 1475904}, {"name": "Dylan Foster", "id": 3574147}, {"name": "Audrey Townsend", "id": 910247}, {"name": "Sarah Sawyer", "id": 1192040}, {"name": "Alexis Shaffer", "id": 2436137}, {"name": "Ashley Porter", "id": 2483594}, {"name": "Thomas Sullivan", "id": 1379274}, {"name": "Nicole Duran", "id": 2482376}, {"name": "Daniel Mooney", "id": 1422633}, {"name": "Amber Smith", "id": 2494222}, {"name": "Erica Ford", "id": 1603214}, {"name": "Marie Thomas", "id": 1094540}, {"name": "Emily Cooper", "id": 864273}, {"name": "Emily Patterson", "id": 796701}, {"name": "Dana Acosta", "id": 1178450}, {"name": "Megan Chang", "id": 2471701}, {"name": "Shawn Turner", "id": 2223965}], "links": [{"source": 1475904, "target": 1192040}, {"source": 1475904, "target": 1422633}, {"source": 3574147, "target": 2436137}, {"source": 910247, "target": 1192040}, {"source": 1192040, "target": 796701}, {"source": 1192040, "target": 864273}, {"source": 1192040, "target": 1379274}, {"source": 2436137, "target": 2494222}, {"source": 2483594, "target": 2494222}, {"source": 1422633, "target": 1178450}, {"source": 1603214, "target": 1094540}, {"source": 1603214, "target": 1178450}, {"source": 864273, "target": 2223965}]}
|
[
1475904,
2436137,
2482376,
2471701
] | 4 |
389 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Abigail Turner, Linda Hardy, Philip Ramos, Elizabeth Adkins, Michael Cobb, Jennifer Rich, Ashley Levine, Christopher Arnold, Angela Carter, Samantha Erickson, Madison Miller, Eric Copeland, Michael Moore, Carrie Campbell, Timothy Wang, Kyle Hudson, Zachary Jones, Melanie Mcdaniel, Mr. David Fisher Jr.
- Fiendship connections: Abigail Turner to Carrie Campbell, Linda Hardy to Jennifer Rich, Philip Ramos to Carrie Campbell, Elizabeth Adkins to Melanie Mcdaniel, Michael Cobb to Melanie Mcdaniel, Jennifer Rich to Mr. David Fisher Jr., Ashley Levine to Melanie Mcdaniel, Christopher Arnold to Melanie Mcdaniel, Samantha Erickson to Melanie Mcdaniel, Madison Miller to Kyle Hudson, Eric Copeland to Mr. David Fisher Jr., Eric Copeland to Melanie Mcdaniel, Michael Moore to Melanie Mcdaniel, Carrie Campbell to Melanie Mcdaniel, Carrie Campbell to Timothy Wang
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Abigail Turner", "id": 4463877}, {"name": "Linda Hardy", "id": 2806281}, {"name": "Philip Ramos", "id": 3705883}, {"name": "Elizabeth Adkins", "id": 3747487}, {"name": "Michael Cobb", "id": 3747489}, {"name": "Jennifer Rich", "id": 2411554}, {"name": "Ashley Levine", "id": 3747491}, {"name": "Christopher Arnold", "id": 3747497}, {"name": "Angela Carter", "id": 2409002}, {"name": "Samantha Erickson", "id": 3747502}, {"name": "Madison Miller", "id": 4652341}, {"name": "Eric Copeland", "id": 3453238}, {"name": "Michael Moore", "id": 2404029}, {"name": "Carrie Campbell", "id": 2479307}, {"name": "Timothy Wang", "id": 3182548}, {"name": "Kyle Hudson", "id": 2483541}, {"name": "Zachary Jones", "id": 2418024}, {"name": "Melanie Mcdaniel", "id": 2446057}, {"name": "Mr. David Fisher Jr.", "id": 2432621}], "links": [{"source": 4463877, "target": 2479307}, {"source": 2806281, "target": 2411554}, {"source": 3705883, "target": 2479307}, {"source": 3747487, "target": 2446057}, {"source": 3747489, "target": 2446057}, {"source": 2411554, "target": 2432621}, {"source": 3747491, "target": 2446057}, {"source": 3747497, "target": 2446057}, {"source": 3747502, "target": 2446057}, {"source": 4652341, "target": 2483541}, {"source": 3453238, "target": 2432621}, {"source": 3453238, "target": 2446057}, {"source": 2404029, "target": 2446057}, {"source": 2479307, "target": 2446057}, {"source": 2479307, "target": 3182548}]}
|
[
3747489,
2409002,
2483541,
2418024
] | 4 |
390 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Kenneth Parker, Daniel Mccormick, Tammy Keller, Alexandra Harris, William Middleton II, Sean Hicks, Sheri Norris, Gregory Gutierrez, Jo Young, James Price, Kari Smith, Billy Lawrence, Heather Cline, Arthur Johnson, Ryan West, Karen Colon, Sandra Wagner, Mary Robinson, Michael Alvarez, Kathleen Hall
- Fiendship connections: Kenneth Parker to Karen Colon, Kenneth Parker to Jo Young, Kenneth Parker to Ryan West, Daniel Mccormick to Billy Lawrence, Daniel Mccormick to Sheri Norris, Daniel Mccormick to Sean Hicks, Tammy Keller to Alexandra Harris, Alexandra Harris to Sandra Wagner, Alexandra Harris to Arthur Johnson, William Middleton II to Ryan West, Sean Hicks to Kathleen Hall, Sheri Norris to Kathleen Hall, Gregory Gutierrez to Ryan West, Jo Young to Ryan West, Kari Smith to Mary Robinson, Billy Lawrence to Karen Colon, Billy Lawrence to Kathleen Hall, Ryan West to Michael Alvarez
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Kenneth Parker", "id": 191745}, {"name": "Daniel Mccormick", "id": 11011}, {"name": "Tammy Keller", "id": 4951557}, {"name": "Alexandra Harris", "id": 5251082}, {"name": "William Middleton II", "id": 3850}, {"name": "Sean Hicks", "id": 407576}, {"name": "Sheri Norris", "id": 127666}, {"name": "Gregory Gutierrez", "id": 143797}, {"name": "Jo Young", "id": 225989}, {"name": "James Price", "id": 42311}, {"name": "Kari Smith", "id": 4993485}, {"name": "Billy Lawrence", "id": 4819}, {"name": "Heather Cline", "id": 5410137}, {"name": "Arthur Johnson", "id": 5391352}, {"name": "Ryan West", "id": 225652}, {"name": "Karen Colon", "id": 3572}, {"name": "Sandra Wagner", "id": 5391351}, {"name": "Mary Robinson", "id": 5392632}, {"name": "Michael Alvarez", "id": 32377}, {"name": "Kathleen Hall", "id": 11007}], "links": [{"source": 191745, "target": 3572}, {"source": 191745, "target": 225989}, {"source": 191745, "target": 225652}, {"source": 11011, "target": 4819}, {"source": 11011, "target": 127666}, {"source": 11011, "target": 407576}, {"source": 4951557, "target": 5251082}, {"source": 5251082, "target": 5391351}, {"source": 5251082, "target": 5391352}, {"source": 3850, "target": 225652}, {"source": 407576, "target": 11007}, {"source": 127666, "target": 11007}, {"source": 143797, "target": 225652}, {"source": 225989, "target": 225652}, {"source": 4993485, "target": 5392632}, {"source": 4819, "target": 3572}, {"source": 4819, "target": 11007}, {"source": 225652, "target": 32377}]}
|
[
191745,
5391352,
42311,
5392632,
5410137
] | 5 |
391 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Robert James, Mrs. Cindy Gutierrez MD, Tamara Morgan, Alexandra Roberson, Terry Yang, Daniel Hall, Mark Tate, Lisa Frye, Mr. Nicholas Peterson, Rachel Miller, Benjamin Harper, Brooke Drake, Daniel Johnson, Valerie Tucker, Jessica Lawson, David Matthews, Christopher Hernandez, Billy Preston, Carla Anderson, Jason Proctor, Jennifer Olson, Nathan Schroeder, John Martinez, Anthony Vincent, Ashley Buchanan, Sarah Jones, Christopher Willis, Aaron Sanchez
- Fiendship connections: Mrs. Cindy Gutierrez MD to Daniel Hall, Mrs. Cindy Gutierrez MD to Nathan Schroeder, Mrs. Cindy Gutierrez MD to David Matthews, Mrs. Cindy Gutierrez MD to John Martinez, Tamara Morgan to Alexandra Roberson, Terry Yang to Jennifer Olson, Mr. Nicholas Peterson to John Martinez, Benjamin Harper to Valerie Tucker, Daniel Johnson to Aaron Sanchez, Daniel Johnson to Anthony Vincent, Jessica Lawson to Jennifer Olson, David Matthews to Nathan Schroeder, Christopher Hernandez to Aaron Sanchez, Billy Preston to Jennifer Olson, Jennifer Olson to Ashley Buchanan, Sarah Jones to Aaron Sanchez
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Robert James", "id": 2475522}, {"name": "Mrs. Cindy Gutierrez MD", "id": 1714825}, {"name": "Tamara Morgan", "id": 2447760}, {"name": "Alexandra Roberson", "id": 3795353}, {"name": "Terry Yang", "id": 1221150}, {"name": "Daniel Hall", "id": 968482}, {"name": "Mark Tate", "id": 2450601}, {"name": "Lisa Frye", "id": 974377}, {"name": "Mr. Nicholas Peterson", "id": 1324842}, {"name": "Rachel Miller", "id": 2483244}, {"name": "Benjamin Harper", "id": 3526959}, {"name": "Brooke Drake", "id": 839987}, {"name": "Daniel Johnson", "id": 2439224}, {"name": "Valerie Tucker", "id": 2433724}, {"name": "Jessica Lawson", "id": 877761}, {"name": "David Matthews", "id": 1244484}, {"name": "Christopher Hernandez", "id": 4258246}, {"name": "Billy Preston", "id": 1278665}, {"name": "Carla Anderson", "id": 919756}, {"name": "Jason Proctor", "id": 880976}, {"name": "Jennifer Olson", "id": 893139}, {"name": "Nathan Schroeder", "id": 1082196}, {"name": "John Martinez", "id": 1314005}, {"name": "Anthony Vincent", "id": 3624025}, {"name": "Ashley Buchanan", "id": 1011682}, {"name": "Sarah Jones", "id": 4258274}, {"name": "Christopher Willis", "id": 2422138}, {"name": "Aaron Sanchez", "id": 2467711}], "links": [{"source": 1714825, "target": 968482}, {"source": 1714825, "target": 1082196}, {"source": 1714825, "target": 1244484}, {"source": 1714825, "target": 1314005}, {"source": 2447760, "target": 3795353}, {"source": 1221150, "target": 893139}, {"source": 1324842, "target": 1314005}, {"source": 3526959, "target": 2433724}, {"source": 2439224, "target": 2467711}, {"source": 2439224, "target": 3624025}, {"source": 877761, "target": 893139}, {"source": 1244484, "target": 1082196}, {"source": 4258246, "target": 2467711}, {"source": 1278665, "target": 893139}, {"source": 893139, "target": 1011682}, {"source": 4258274, "target": 2467711}]}
|
[
2475522,
968482,
2447760,
877761,
2450601,
974377,
2483244,
2433724,
839987,
4258274,
919756,
880976,
2422138
] | 13 |
392 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Christina Cruz, Mary Bauer, Leslie Walker, Derek Davidson, Edwin Shepard, Kimberly Robertson, Madison White, Christopher Bennett, Cindy Mitchell, Zachary Miller, Elizabeth Cole, Anthony Williams, Brandon Nunez, Tyrone Ross, Beth Richards, Darlene Miller, Jessica Mack, David Flores, Amanda Michael, Rebecca Ball DVM, Annette Kelly
- Fiendship connections: Christina Cruz to Kimberly Robertson, Mary Bauer to Darlene Miller, Mary Bauer to Brandon Nunez, Mary Bauer to David Flores, Mary Bauer to Rebecca Ball DVM, Leslie Walker to Derek Davidson, Leslie Walker to Amanda Michael, Leslie Walker to Jessica Mack, Derek Davidson to Amanda Michael, Derek Davidson to Jessica Mack, Edwin Shepard to Tyrone Ross, Edwin Shepard to Madison White, Edwin Shepard to Cindy Mitchell, Edwin Shepard to Zachary Miller, Edwin Shepard to Elizabeth Cole, Edwin Shepard to Anthony Williams, Brandon Nunez to Darlene Miller, Brandon Nunez to David Flores, Brandon Nunez to Rebecca Ball DVM, Tyrone Ross to Beth Richards, Darlene Miller to David Flores, Darlene Miller to Annette Kelly, David Flores to Rebecca Ball DVM, Rebecca Ball DVM to Annette Kelly
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Christina Cruz", "id": 861056}, {"name": "Mary Bauer", "id": 1022086}, {"name": "Leslie Walker", "id": 2477964}, {"name": "Derek Davidson", "id": 2477967}, {"name": "Edwin Shepard", "id": 2492948}, {"name": "Kimberly Robertson", "id": 1639322}, {"name": "Madison White", "id": 4773662}, {"name": "Christopher Bennett", "id": 966686}, {"name": "Cindy Mitchell", "id": 4773664}, {"name": "Zachary Miller", "id": 4773665}, {"name": "Elizabeth Cole", "id": 4773666}, {"name": "Anthony Williams", "id": 4773667}, {"name": "Brandon Nunez", "id": 1512236}, {"name": "Tyrone Ross", "id": 2405937}, {"name": "Beth Richards", "id": 2492980}, {"name": "Darlene Miller", "id": 1446614}, {"name": "Jessica Mack", "id": 4483042}, {"name": "David Flores", "id": 2023652}, {"name": "Amanda Michael", "id": 2478057}, {"name": "Rebecca Ball DVM", "id": 2166262}, {"name": "Annette Kelly", "id": 2247546}], "links": [{"source": 861056, "target": 1639322}, {"source": 1022086, "target": 1446614}, {"source": 1022086, "target": 1512236}, {"source": 1022086, "target": 2023652}, {"source": 1022086, "target": 2166262}, {"source": 2477964, "target": 2477967}, {"source": 2477964, "target": 2478057}, {"source": 2477964, "target": 4483042}, {"source": 2477967, "target": 2478057}, {"source": 2477967, "target": 4483042}, {"source": 2492948, "target": 2405937}, {"source": 2492948, "target": 4773662}, {"source": 2492948, "target": 4773664}, {"source": 2492948, "target": 4773665}, {"source": 2492948, "target": 4773666}, {"source": 2492948, "target": 4773667}, {"source": 1512236, "target": 1446614}, {"source": 1512236, "target": 2023652}, {"source": 1512236, "target": 2166262}, {"source": 2405937, "target": 2492980}, {"source": 1446614, "target": 2023652}, {"source": 1446614, "target": 2247546}, {"source": 2023652, "target": 2166262}, {"source": 2166262, "target": 2247546}]}
|
[
861056,
2023652,
2478057,
4773664,
966686
] | 5 |
393 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Jennifer Long, Katrina Richard, Adrian Mendoza, Lauren Kelly, John Caldwell, Denise Williams, Gail Phillips, Sarah Wall, Michael Miller, Louis Rogers, Mark Archer, Dale Mason, Paul Bryant, Tanya Madden, Robert Hughes, Thomas Miles, Christopher White, Ashley Hernandez, Katherine Wilson MD, Jonathan Garcia, Alexander Hudson, Edward Wade
- Fiendship connections: Jennifer Long to Dale Mason, Jennifer Long to Alexander Hudson, Katrina Richard to Sarah Wall, Katrina Richard to Adrian Mendoza, Adrian Mendoza to Mark Archer, Adrian Mendoza to Dale Mason, Adrian Mendoza to Thomas Miles, Adrian Mendoza to Denise Williams, Adrian Mendoza to Sarah Wall, Adrian Mendoza to Louis Rogers, Adrian Mendoza to Robert Hughes, Lauren Kelly to Dale Mason, Lauren Kelly to John Caldwell, John Caldwell to Dale Mason, John Caldwell to Katherine Wilson MD, John Caldwell to Michael Miller, John Caldwell to Ashley Hernandez, John Caldwell to Tanya Madden, Denise Williams to Mark Archer, Denise Williams to Dale Mason, Denise Williams to Thomas Miles, Denise Williams to Sarah Wall, Denise Williams to Louis Rogers, Denise Williams to Robert Hughes, Gail Phillips to Mark Archer, Gail Phillips to Dale Mason, Sarah Wall to Mark Archer, Sarah Wall to Dale Mason, Sarah Wall to Thomas Miles, Michael Miller to Paul Bryant, Louis Rogers to Mark Archer, Louis Rogers to Dale Mason, Louis Rogers to Thomas Miles, Mark Archer to Dale Mason, Mark Archer to Thomas Miles, Mark Archer to Robert Hughes, Dale Mason to Thomas Miles, Dale Mason to Katherine Wilson MD, Dale Mason to Ashley Hernandez, Dale Mason to Alexander Hudson, Dale Mason to Robert Hughes, Dale Mason to Edward Wade, Tanya Madden to Ashley Hernandez, Robert Hughes to Thomas Miles, Jonathan Garcia to Alexander Hudson
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Jennifer Long", "id": 2459013}, {"name": "Katrina Richard", "id": 3701015}, {"name": "Adrian Mendoza", "id": 2477336}, {"name": "Lauren Kelly", "id": 2436248}, {"name": "John Caldwell", "id": 2897178}, {"name": "Denise Williams", "id": 2442910}, {"name": "Gail Phillips", "id": 2741406}, {"name": "Sarah Wall", "id": 2477215}, {"name": "Michael Miller", "id": 2448037}, {"name": "Louis Rogers", "id": 2561192}, {"name": "Mark Archer", "id": 2442797}, {"name": "Dale Mason", "id": 2442799}, {"name": "Paul Bryant", "id": 2447926}, {"name": "Tanya Madden", "id": 2474555}, {"name": "Robert Hughes", "id": 3288791}, {"name": "Thomas Miles", "id": 2442841}, {"name": "Christopher White", "id": 2457456}, {"name": "Ashley Hernandez", "id": 2471793}, {"name": "Katherine Wilson MD", "id": 2443250}, {"name": "Jonathan Garcia", "id": 2408954}, {"name": "Alexander Hudson", "id": 2725373}, {"name": "Edward Wade", "id": 3702399}], "links": [{"source": 2459013, "target": 2442799}, {"source": 2459013, "target": 2725373}, {"source": 3701015, "target": 2477215}, {"source": 3701015, "target": 2477336}, {"source": 2477336, "target": 2442797}, {"source": 2477336, "target": 2442799}, {"source": 2477336, "target": 2442841}, {"source": 2477336, "target": 2442910}, {"source": 2477336, "target": 2477215}, {"source": 2477336, "target": 2561192}, {"source": 2477336, "target": 3288791}, {"source": 2436248, "target": 2442799}, {"source": 2436248, "target": 2897178}, {"source": 2897178, "target": 2442799}, {"source": 2897178, "target": 2443250}, {"source": 2897178, "target": 2448037}, {"source": 2897178, "target": 2471793}, {"source": 2897178, "target": 2474555}, {"source": 2442910, "target": 2442797}, {"source": 2442910, "target": 2442799}, {"source": 2442910, "target": 2442841}, {"source": 2442910, "target": 2477215}, {"source": 2442910, "target": 2561192}, {"source": 2442910, "target": 3288791}, {"source": 2741406, "target": 2442797}, {"source": 2741406, "target": 2442799}, {"source": 2477215, "target": 2442797}, {"source": 2477215, "target": 2442799}, {"source": 2477215, "target": 2442841}, {"source": 2448037, "target": 2447926}, {"source": 2561192, "target": 2442797}, {"source": 2561192, "target": 2442799}, {"source": 2561192, "target": 2442841}, {"source": 2442797, "target": 2442799}, {"source": 2442797, "target": 2442841}, {"source": 2442797, "target": 3288791}, {"source": 2442799, "target": 2442841}, {"source": 2442799, "target": 2443250}, {"source": 2442799, "target": 2471793}, {"source": 2442799, "target": 2725373}, {"source": 2442799, "target": 3288791}, {"source": 2442799, "target": 3702399}, {"source": 2474555, "target": 2471793}, {"source": 3288791, "target": 2442841}, {"source": 2408954, "target": 2725373}]}
|
[
2459013,
2457456
] | 2 |
394 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Donna Mitchell, Scott Williams, Rachel Hill, Stephen Parker, Richard Clarke, Courtney Smith, Roy Malone, Nancy Solomon, Brittany Cole, Tonya Mason, Laura Kelly, Amanda Castaneda, Teresa Hawkins, Jeremy Herrera, Phillip Mueller
- Fiendship connections: Donna Mitchell to Brittany Cole, Rachel Hill to Teresa Hawkins, Stephen Parker to Brittany Cole, Richard Clarke to Teresa Hawkins, Courtney Smith to Brittany Cole, Roy Malone to Brittany Cole, Nancy Solomon to Brittany Cole, Brittany Cole to Phillip Mueller, Brittany Cole to Tonya Mason, Laura Kelly to Teresa Hawkins
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Donna Mitchell", "id": 2484712}, {"name": "Scott Williams", "id": 2456808}, {"name": "Rachel Hill", "id": 4943596}, {"name": "Stephen Parker", "id": 3533709}, {"name": "Richard Clarke", "id": 5010606}, {"name": "Courtney Smith", "id": 2455821}, {"name": "Roy Malone", "id": 4480690}, {"name": "Nancy Solomon", "id": 2443198}, {"name": "Brittany Cole", "id": 2478166}, {"name": "Tonya Mason", "id": 2492342}, {"name": "Laura Kelly", "id": 5273338}, {"name": "Amanda Castaneda", "id": 4976955}, {"name": "Teresa Hawkins", "id": 5361181}, {"name": "Jeremy Herrera", "id": 2478206}, {"name": "Phillip Mueller", "id": 2420157}], "links": [{"source": 2484712, "target": 2478166}, {"source": 4943596, "target": 5361181}, {"source": 3533709, "target": 2478166}, {"source": 5010606, "target": 5361181}, {"source": 2455821, "target": 2478166}, {"source": 4480690, "target": 2478166}, {"source": 2443198, "target": 2478166}, {"source": 2478166, "target": 2420157}, {"source": 2478166, "target": 2492342}, {"source": 5273338, "target": 5361181}]}
|
[
2484712,
2456808,
5273338,
4976955,
2478206
] | 5 |
395 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Sarah Heath, Steven White, Aaron Maynard, Ronald Carter, David Finley, Kaitlin Holt, Lucas Rivera, James Estrada, Tiffany Murphy, Jonathan Gray, Micheal Jones, Dawn Hernandez, Kelly Roberts, Brenda White, Katrina Rice, Dennis Howell
- Fiendship connections: Steven White to Micheal Jones, Steven White to Ronald Carter, Steven White to Tiffany Murphy, Steven White to Dawn Hernandez, Steven White to Kelly Roberts, Aaron Maynard to Kaitlin Holt, Kaitlin Holt to James Estrada, Kaitlin Holt to Dennis Howell, Kaitlin Holt to Brenda White, Lucas Rivera to Katrina Rice, James Estrada to Brenda White, Jonathan Gray to Katrina Rice
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Sarah Heath", "id": 2425282}, {"name": "Steven White", "id": 2452355}, {"name": "Aaron Maynard", "id": 2012674}, {"name": "Ronald Carter", "id": 2867941}, {"name": "David Finley", "id": 2411133}, {"name": "Kaitlin Holt", "id": 1193192}, {"name": "Lucas Rivera", "id": 2417289}, {"name": "James Estrada", "id": 854953}, {"name": "Tiffany Murphy", "id": 2923726}, {"name": "Jonathan Gray", "id": 2467837}, {"name": "Micheal Jones", "id": 2406964}, {"name": "Dawn Hernandez", "id": 3878710}, {"name": "Kelly Roberts", "id": 3878711}, {"name": "Brenda White", "id": 1131740}, {"name": "Katrina Rice", "id": 2417277}, {"name": "Dennis Howell", "id": 877791}], "links": [{"source": 2452355, "target": 2406964}, {"source": 2452355, "target": 2867941}, {"source": 2452355, "target": 2923726}, {"source": 2452355, "target": 3878710}, {"source": 2452355, "target": 3878711}, {"source": 2012674, "target": 1193192}, {"source": 1193192, "target": 854953}, {"source": 1193192, "target": 877791}, {"source": 1193192, "target": 1131740}, {"source": 2417289, "target": 2417277}, {"source": 854953, "target": 1131740}, {"source": 2467837, "target": 2417277}]}
|
[
2425282,
2452355,
2012674,
2411133,
2417289
] | 5 |
396 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Jon Carter, Michael White, Nicholas Adams, Kelsey Garrison, Michael Moss, Gloria Sullivan, John Hester, Lauren Lewis, Maria Murphy, Benjamin Reeves, Mr. Manuel Brown, William Lewis, Laura Adkins, Anthony Santana, Autumn Lang, Deanna Fletcher, Hannah Obrien
- Fiendship connections: Jon Carter to Nicholas Adams, Jon Carter to Michael Moss, Jon Carter to John Hester, Michael White to Mr. Manuel Brown, Kelsey Garrison to Benjamin Reeves, Michael Moss to John Hester, John Hester to Anthony Santana, John Hester to Autumn Lang, John Hester to Deanna Fletcher, John Hester to Hannah Obrien, Maria Murphy to Laura Adkins, Maria Murphy to Mr. Manuel Brown, Mr. Manuel Brown to Laura Adkins, Mr. Manuel Brown to William Lewis
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Jon Carter", "id": 2404544}, {"name": "Michael White", "id": 1049056}, {"name": "Nicholas Adams", "id": 2478880}, {"name": "Kelsey Garrison", "id": 6116358}, {"name": "Michael Moss", "id": 2479046}, {"name": "Gloria Sullivan", "id": 5039115}, {"name": "John Hester", "id": 2479052}, {"name": "Lauren Lewis", "id": 5043120}, {"name": "Maria Murphy", "id": 1065232}, {"name": "Benjamin Reeves", "id": 4936594}, {"name": "Mr. Manuel Brown", "id": 1050004}, {"name": "William Lewis", "id": 1073366}, {"name": "Laura Adkins", "id": 870778}, {"name": "Anthony Santana", "id": 4529692}, {"name": "Autumn Lang", "id": 4529693}, {"name": "Deanna Fletcher", "id": 4529694}, {"name": "Hannah Obrien", "id": 4529695}], "links": [{"source": 2404544, "target": 2478880}, {"source": 2404544, "target": 2479046}, {"source": 2404544, "target": 2479052}, {"source": 1049056, "target": 1050004}, {"source": 6116358, "target": 4936594}, {"source": 2479046, "target": 2479052}, {"source": 2479052, "target": 4529692}, {"source": 2479052, "target": 4529693}, {"source": 2479052, "target": 4529694}, {"source": 2479052, "target": 4529695}, {"source": 1065232, "target": 870778}, {"source": 1065232, "target": 1050004}, {"source": 1050004, "target": 870778}, {"source": 1050004, "target": 1073366}]}
|
[
2404544,
1049056,
4936594,
5039115,
5043120
] | 5 |
397 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: James Rodriguez, Helen Smith, Carlos Johnson, Kristen Roberts, Maria Rose, Kayla Mcbride MD, Alexis Smith, Jason Garcia, Heather Cunningham, Timothy Lewis, Harry Castaneda, Donna Woods, Beth Wright, Michael Harper, Norman Jennings, Sarah Estrada, Christopher Jones, Megan Smith, Nicole Blevins, Diane Rose, Maria King, Christine George, Melissa Black, Morgan Stewart
- Fiendship connections: James Rodriguez to Alexis Smith, Helen Smith to Alexis Smith, Carlos Johnson to Alexis Smith, Kristen Roberts to Sarah Estrada, Maria Rose to Christine George, Kayla Mcbride MD to Heather Cunningham, Alexis Smith to Megan Smith, Alexis Smith to Norman Jennings, Alexis Smith to Melissa Black, Alexis Smith to Morgan Stewart, Heather Cunningham to Donna Woods, Heather Cunningham to Sarah Estrada, Timothy Lewis to Megan Smith, Harry Castaneda to Beth Wright, Donna Woods to Diane Rose, Beth Wright to Sarah Estrada, Sarah Estrada to Christine George, Sarah Estrada to Nicole Blevins
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "James Rodriguez", "id": 4747394}, {"name": "Helen Smith", "id": 4747395}, {"name": "Carlos Johnson", "id": 4747400}, {"name": "Kristen Roberts", "id": 3595535}, {"name": "Maria Rose", "id": 2432662}, {"name": "Kayla Mcbride MD", "id": 2926615}, {"name": "Alexis Smith", "id": 2491416}, {"name": "Jason Garcia", "id": 2479001}, {"name": "Heather Cunningham", "id": 2416029}, {"name": "Timothy Lewis", "id": 2491426}, {"name": "Harry Castaneda", "id": 2459688}, {"name": "Donna Woods", "id": 2467375}, {"name": "Beth Wright", "id": 2597046}, {"name": "Michael Harper", "id": 2478647}, {"name": "Norman Jennings", "id": 3094589}, {"name": "Sarah Estrada", "id": 2503616}, {"name": "Christopher Jones", "id": 2473937}, {"name": "Megan Smith", "id": 2404693}, {"name": "Nicole Blevins", "id": 4925144}, {"name": "Diane Rose", "id": 2514906}, {"name": "Maria King", "id": 2447986}, {"name": "Christine George", "id": 2500982}, {"name": "Melissa Black", "id": 4747386}, {"name": "Morgan Stewart", "id": 4747389}], "links": [{"source": 4747394, "target": 2491416}, {"source": 4747395, "target": 2491416}, {"source": 4747400, "target": 2491416}, {"source": 3595535, "target": 2503616}, {"source": 2432662, "target": 2500982}, {"source": 2926615, "target": 2416029}, {"source": 2491416, "target": 2404693}, {"source": 2491416, "target": 3094589}, {"source": 2491416, "target": 4747386}, {"source": 2491416, "target": 4747389}, {"source": 2416029, "target": 2467375}, {"source": 2416029, "target": 2503616}, {"source": 2491426, "target": 2404693}, {"source": 2459688, "target": 2597046}, {"source": 2467375, "target": 2514906}, {"source": 2597046, "target": 2503616}, {"source": 2503616, "target": 2500982}, {"source": 2503616, "target": 4925144}]}
|
[
4747394,
2503616,
2479001,
2478647,
2473937,
2447986
] | 6 |
398 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Jamie Rogers, Erica Fowler, Ms. Sandra Rodriguez, Brandon Ho, David Davila, Jordan Williams, Austin Wright, Kevin Baird, Brianna Jenkins, Luis Gomez, Kelly Miller, Christopher Rose, Melanie Hays, Donna Donovan, Kevin Mccall
- Fiendship connections: Jamie Rogers to Luis Gomez, Jamie Rogers to Kevin Mccall, Erica Fowler to Kevin Baird, Ms. Sandra Rodriguez to Jordan Williams, Brandon Ho to Jordan Williams, David Davila to Jordan Williams, Jordan Williams to Kelly Miller, Jordan Williams to Melanie Hays, Jordan Williams to Kevin Baird, Christopher Rose to Donna Donovan, Melanie Hays to Donna Donovan
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Jamie Rogers", "id": 1145057}, {"name": "Erica Fowler", "id": 4962497}, {"name": "Ms. Sandra Rodriguez", "id": 5105127}, {"name": "Brandon Ho", "id": 5821002}, {"name": "David Davila", "id": 4951118}, {"name": "Jordan Williams", "id": 4983502}, {"name": "Austin Wright", "id": 4940656}, {"name": "Kevin Baird", "id": 5289647}, {"name": "Brianna Jenkins", "id": 5104880}, {"name": "Luis Gomez", "id": 1176561}, {"name": "Kelly Miller", "id": 5090001}, {"name": "Christopher Rose", "id": 4945712}, {"name": "Melanie Hays", "id": 5139703}, {"name": "Donna Donovan", "id": 5790808}, {"name": "Kevin Mccall", "id": 2135102}], "links": [{"source": 1145057, "target": 1176561}, {"source": 1145057, "target": 2135102}, {"source": 4962497, "target": 5289647}, {"source": 5105127, "target": 4983502}, {"source": 5821002, "target": 4983502}, {"source": 4951118, "target": 4983502}, {"source": 4983502, "target": 5090001}, {"source": 4983502, "target": 5139703}, {"source": 4983502, "target": 5289647}, {"source": 4945712, "target": 5790808}, {"source": 5139703, "target": 5790808}]}
|
[
1145057,
4962497,
4940656,
5104880
] | 4 |
399 |
You are required to identify all connected components in the given social network and output one representative node from each component.
Within a connected component, any node can be reached from any other node through the edges in the graph. Different connected components are isolated from each other.
**Problem to Solve**
- Names in the network: Heather Hahn, Melanie Lewis, Jacob Perkins, Daniel Harrison, Carolyn Castro, Alfred Hicks, Melissa Davila, Laurie Taylor, Kimberly Hall, Susan Solis, Felicia Dudley, Kathleen Lambert, Michael Odonnell, Dean Ward, Nicholas Mitchell
- Fiendship connections: Heather Hahn to Laurie Taylor, Melanie Lewis to Kimberly Hall, Melanie Lewis to Nicholas Mitchell, Melanie Lewis to Dean Ward, Daniel Harrison to Susan Solis, Daniel Harrison to Alfred Hicks, Melissa Davila to Kimberly Hall, Melissa Davila to Michael Odonnell, Melissa Davila to Nicholas Mitchell, Melissa Davila to Dean Ward, Kimberly Hall to Michael Odonnell, Kimberly Hall to Nicholas Mitchell, Kimberly Hall to Dean Ward, Michael Odonnell to Nicholas Mitchell, Michael Odonnell to Dean Ward, Dean Ward to Nicholas Mitchell
Identify all connected components in this network. Note that for each connected component, you should only output one of its nodes.
Present your answer in the following format: [UserA, UserB, UserC, UserD, ...]
|
{"directed": false, "multigraph": false, "graph": {}, "nodes": [{"name": "Heather Hahn", "id": 4947328}, {"name": "Melanie Lewis", "id": 2433376}, {"name": "Jacob Perkins", "id": 5085505}, {"name": "Daniel Harrison", "id": 5546883}, {"name": "Carolyn Castro", "id": 4945151}, {"name": "Alfred Hicks", "id": 5383916}, {"name": "Melissa Davila", "id": 2473422}, {"name": "Laurie Taylor", "id": 5716977}, {"name": "Kimberly Hall", "id": 2449362}, {"name": "Susan Solis", "id": 5032051}, {"name": "Felicia Dudley", "id": 5821267}, {"name": "Kathleen Lambert", "id": 2493490}, {"name": "Michael Odonnell", "id": 2500855}, {"name": "Dean Ward", "id": 3515005}, {"name": "Nicholas Mitchell", "id": 2502175}], "links": [{"source": 4947328, "target": 5716977}, {"source": 2433376, "target": 2449362}, {"source": 2433376, "target": 2502175}, {"source": 2433376, "target": 3515005}, {"source": 5546883, "target": 5032051}, {"source": 5546883, "target": 5383916}, {"source": 2473422, "target": 2449362}, {"source": 2473422, "target": 2500855}, {"source": 2473422, "target": 2502175}, {"source": 2473422, "target": 3515005}, {"source": 2449362, "target": 2500855}, {"source": 2449362, "target": 2502175}, {"source": 2449362, "target": 3515005}, {"source": 2500855, "target": 2502175}, {"source": 2500855, "target": 3515005}, {"source": 3515005, "target": 2502175}]}
|
[
4947328,
2433376,
5085505,
5032051,
4945151,
5821267,
2493490
] | 7 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.