id
int64 0
5k
| problem_text
stringlengths 886
3.79k
| graph
stringlengths 803
4.62k
| path
listlengths 1
18
| exact_answer
int64 1
18
|
---|---|---|---|---|
700 |
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: Brian Jenkins, Karen Wagner, Mark Williams, Amy Long, Erin Ingram, Beth Murphy, Nicole Clements, Anna Wilkinson, Roger Carpenter, Robert Black, Anne Castro, James Ayers, Timothy Gonzalez, Leah Martin, Rachel Haley, April Johnson, Alexandra Hale, Erin Little
- Fiendship connections: Brian Jenkins to Roger Carpenter, Karen Wagner to Roger Carpenter, Mark Williams to Beth Murphy, Mark Williams to Roger Carpenter, Mark Williams to Erin Little, Mark Williams to April Johnson, Amy Long to Roger Carpenter, Erin Ingram to Alexandra Hale, Beth Murphy to Erin Little, Beth Murphy to April Johnson, Nicole Clements to Roger Carpenter, Anna Wilkinson to Roger Carpenter, Roger Carpenter to Erin Little, Roger Carpenter to April Johnson, Roger Carpenter to Alexandra Hale, Roger Carpenter to Timothy Gonzalez, Roger Carpenter to Leah Martin, Robert Black to Alexandra Hale, Robert Black to Rachel Haley, April Johnson to Erin Little
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": "Brian Jenkins", "id": 4849408}, {"name": "Karen Wagner", "id": 4849381}, {"name": "Mark Williams", "id": 2405351}, {"name": "Amy Long", "id": 4849384}, {"name": "Erin Ingram", "id": 2442751}, {"name": "Beth Murphy", "id": 2478991}, {"name": "Nicole Clements", "id": 2557840}, {"name": "Anna Wilkinson", "id": 4849393}, {"name": "Roger Carpenter", "id": 2497971}, {"name": "Robert Black", "id": 2435764}, {"name": "Anne Castro", "id": 2425619}, {"name": "James Ayers", "id": 2464787}, {"name": "Timothy Gonzalez", "id": 4849395}, {"name": "Leah Martin", "id": 4849398}, {"name": "Rachel Haley", "id": 2792377}, {"name": "April Johnson", "id": 2554676}, {"name": "Alexandra Hale", "id": 2725787}, {"name": "Erin Little", "id": 2498527}], "links": [{"source": 4849408, "target": 2497971}, {"source": 4849381, "target": 2497971}, {"source": 2405351, "target": 2478991}, {"source": 2405351, "target": 2497971}, {"source": 2405351, "target": 2498527}, {"source": 2405351, "target": 2554676}, {"source": 4849384, "target": 2497971}, {"source": 2442751, "target": 2725787}, {"source": 2478991, "target": 2498527}, {"source": 2478991, "target": 2554676}, {"source": 2557840, "target": 2497971}, {"source": 4849393, "target": 2497971}, {"source": 2497971, "target": 2498527}, {"source": 2497971, "target": 2554676}, {"source": 2497971, "target": 2725787}, {"source": 2497971, "target": 4849395}, {"source": 2497971, "target": 4849398}, {"source": 2435764, "target": 2725787}, {"source": 2435764, "target": 2792377}, {"source": 2554676, "target": 2498527}]}
|
[
4849408,
2425619,
2464787
] | 3 |
701 |
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: Melanie Aguirre, Edward Landry, Kristen Moody, Daniel Ward, Tricia Shaw, Mr. Scott Miller, Stacey Choi, Steven Berry, Kevin Davis, Dr. Leon Roberts Jr., Jamie Scott, Cole Campbell, Linda Hill, Brenda Flores, Barbara Allen, Nicholas Alexander
- Fiendship connections: Melanie Aguirre to Kevin Davis, Melanie Aguirre to Jamie Scott, Melanie Aguirre to Daniel Ward, Edward Landry to Mr. Scott Miller, Kristen Moody to Mr. Scott Miller, Daniel Ward to Kevin Davis, Daniel Ward to Jamie Scott, Daniel Ward to Barbara Allen, Tricia Shaw to Steven Berry, Mr. Scott Miller to Cole Campbell, Mr. Scott Miller to Nicholas Alexander, Stacey Choi to Brenda Flores, Steven Berry to Linda Hill, Steven Berry to Dr. Leon Roberts Jr., Kevin Davis to Jamie Scott, Kevin Davis to Barbara 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": "Melanie Aguirre", "id": 3499364}, {"name": "Edward Landry", "id": 4310468}, {"name": "Kristen Moody", "id": 3077573}, {"name": "Daniel Ward", "id": 2432743}, {"name": "Tricia Shaw", "id": 5006331}, {"name": "Mr. Scott Miller", "id": 2471212}, {"name": "Stacey Choi", "id": 2002861}, {"name": "Steven Berry", "id": 5000910}, {"name": "Kevin Davis", "id": 2432656}, {"name": "Dr. Leon Roberts Jr.", "id": 4983730}, {"name": "Jamie Scott", "id": 2432659}, {"name": "Cole Campbell", "id": 3816148}, {"name": "Linda Hill", "id": 4953750}, {"name": "Brenda Flores", "id": 1734584}, {"name": "Barbara Allen", "id": 2432665}, {"name": "Nicholas Alexander", "id": 4310459}], "links": [{"source": 3499364, "target": 2432656}, {"source": 3499364, "target": 2432659}, {"source": 3499364, "target": 2432743}, {"source": 4310468, "target": 2471212}, {"source": 3077573, "target": 2471212}, {"source": 2432743, "target": 2432656}, {"source": 2432743, "target": 2432659}, {"source": 2432743, "target": 2432665}, {"source": 5006331, "target": 5000910}, {"source": 2471212, "target": 3816148}, {"source": 2471212, "target": 4310459}, {"source": 2002861, "target": 1734584}, {"source": 5000910, "target": 4953750}, {"source": 5000910, "target": 4983730}, {"source": 2432656, "target": 2432659}, {"source": 2432656, "target": 2432665}]}
|
[
3499364,
4310468,
4983730,
1734584
] | 4 |
702 |
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: Kerri Lee MD, Barbara Wright, Sarah Lawson, Bianca Erickson, Laura Leonard, Rachel Tran, Emma Zamora, Richard Sanford, Jessica Perry, Arthur Rogers, Kayla Booker, Daniel Fritz, Linda Rogers, Peggy Kline, Valerie Gonzalez, Paul Johnson
- Fiendship connections: Barbara Wright to Linda Rogers, Barbara Wright to Peggy Kline, Sarah Lawson to Jessica Perry, Sarah Lawson to Emma Zamora, Sarah Lawson to Bianca Erickson, Sarah Lawson to Rachel Tran, Bianca Erickson to Valerie Gonzalez, Laura Leonard to Jessica Perry, Arthur Rogers to Valerie Gonzalez, Kayla Booker to Daniel Fritz
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": "Kerri Lee MD", "id": 2457472}, {"name": "Barbara Wright", "id": 2427713}, {"name": "Sarah Lawson", "id": 2493378}, {"name": "Bianca Erickson", "id": 3803011}, {"name": "Laura Leonard", "id": 2448357}, {"name": "Rachel Tran", "id": 4786860}, {"name": "Emma Zamora", "id": 2570798}, {"name": "Richard Sanford", "id": 2428079}, {"name": "Jessica Perry", "id": 2477585}, {"name": "Arthur Rogers", "id": 3000754}, {"name": "Kayla Booker", "id": 2488627}, {"name": "Daniel Fritz", "id": 2463764}, {"name": "Linda Rogers", "id": 2461655}, {"name": "Peggy Kline", "id": 3346360}, {"name": "Valerie Gonzalez", "id": 2447993}, {"name": "Paul Johnson", "id": 2482813}], "links": [{"source": 2427713, "target": 2461655}, {"source": 2427713, "target": 3346360}, {"source": 2493378, "target": 2477585}, {"source": 2493378, "target": 2570798}, {"source": 2493378, "target": 3803011}, {"source": 2493378, "target": 4786860}, {"source": 3803011, "target": 2447993}, {"source": 2448357, "target": 2477585}, {"source": 3000754, "target": 2447993}, {"source": 2488627, "target": 2463764}]}
|
[
2457472,
3346360,
2493378,
2428079,
2488627,
2482813
] | 6 |
703 |
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 Wilson, Kelly Phillips, Nathan Dunn, Katelyn Wilson, Victoria Kelly, Paul Morris, Sean Moreno, Victoria Patterson, Rebecca Johnson, Mrs. Michelle Harrison, Tyrone Stevens, Cheryl Morrow, Jeffrey Poole, Alicia Williams, Valerie Ellis, George Ramsey, Sydney Allen, Brandi Munoz, Preston Diaz, Brandon Bridges, Mark Stewart, Albert Moore, David Mathews, William Dunlap, Cameron Jefferson, Kenneth Brown, Deanna Wallace, Jeffery Avila
- Fiendship connections: David Wilson to William Dunlap, David Wilson to Valerie Ellis, David Wilson to Paul Morris, David Wilson to Alicia Williams, David Wilson to George Ramsey, David Wilson to Sean Moreno, David Wilson to Jeffery Avila, Kelly Phillips to Mrs. Michelle Harrison, Kelly Phillips to David Mathews, Kelly Phillips to Valerie Ellis, Nathan Dunn to Cameron Jefferson, Katelyn Wilson to William Dunlap, Katelyn Wilson to Paul Morris, Katelyn Wilson to George Ramsey, Katelyn Wilson to Jeffery Avila, Victoria Kelly to Kenneth Brown, Victoria Kelly to Mark Stewart, Victoria Kelly to Deanna Wallace, Paul Morris to George Ramsey, Paul Morris to Sydney Allen, Sean Moreno to Valerie Ellis, Sean Moreno to George Ramsey, Victoria Patterson to Preston Diaz, Victoria Patterson to Albert Moore, Rebecca Johnson to David Mathews, Rebecca Johnson to Albert Moore, Mrs. Michelle Harrison to Brandon Bridges, Mrs. Michelle Harrison to William Dunlap, Tyrone Stevens to Kenneth Brown, Tyrone Stevens to Brandi Munoz, Cheryl Morrow to Sydney Allen, Jeffrey Poole to Deanna Wallace, Alicia Williams to Brandon Bridges, Valerie Ellis to William Dunlap, Brandi Munoz to Preston Diaz, Brandi Munoz to Kenneth Brown, Mark Stewart to Deanna Wallace, William Dunlap to Jeffery Avila
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 Wilson", "id": 1011201}, {"name": "Kelly Phillips", "id": 786436}, {"name": "Nathan Dunn", "id": 1355782}, {"name": "Katelyn Wilson", "id": 1035784}, {"name": "Victoria Kelly", "id": 1197580}, {"name": "Paul Morris", "id": 934670}, {"name": "Sean Moreno", "id": 1011215}, {"name": "Victoria Patterson", "id": 967441}, {"name": "Rebecca Johnson", "id": 787739}, {"name": "Mrs. Michelle Harrison", "id": 842401}, {"name": "Tyrone Stevens", "id": 1503268}, {"name": "Cheryl Morrow", "id": 1759275}, {"name": "Jeffrey Poole", "id": 1168683}, {"name": "Alicia Williams", "id": 963260}, {"name": "Valerie Ellis", "id": 927036}, {"name": "George Ramsey", "id": 963646}, {"name": "Sydney Allen", "id": 1011904}, {"name": "Brandi Munoz", "id": 1401923}, {"name": "Preston Diaz", "id": 836420}, {"name": "Brandon Bridges", "id": 920265}, {"name": "Mark Stewart", "id": 1701451}, {"name": "Albert Moore", "id": 930385}, {"name": "David Mathews", "id": 926804}, {"name": "William Dunlap", "id": 898133}, {"name": "Cameron Jefferson", "id": 1355752}, {"name": "Kenneth Brown", "id": 1030126}, {"name": "Deanna Wallace", "id": 1945330}, {"name": "Jeffery Avila", "id": 1927421}], "links": [{"source": 1011201, "target": 898133}, {"source": 1011201, "target": 927036}, {"source": 1011201, "target": 934670}, {"source": 1011201, "target": 963260}, {"source": 1011201, "target": 963646}, {"source": 1011201, "target": 1011215}, {"source": 1011201, "target": 1927421}, {"source": 786436, "target": 842401}, {"source": 786436, "target": 926804}, {"source": 786436, "target": 927036}, {"source": 1355782, "target": 1355752}, {"source": 1035784, "target": 898133}, {"source": 1035784, "target": 934670}, {"source": 1035784, "target": 963646}, {"source": 1035784, "target": 1927421}, {"source": 1197580, "target": 1030126}, {"source": 1197580, "target": 1701451}, {"source": 1197580, "target": 1945330}, {"source": 934670, "target": 963646}, {"source": 934670, "target": 1011904}, {"source": 1011215, "target": 927036}, {"source": 1011215, "target": 963646}, {"source": 967441, "target": 836420}, {"source": 967441, "target": 930385}, {"source": 787739, "target": 926804}, {"source": 787739, "target": 930385}, {"source": 842401, "target": 920265}, {"source": 842401, "target": 898133}, {"source": 1503268, "target": 1030126}, {"source": 1503268, "target": 1401923}, {"source": 1759275, "target": 1011904}, {"source": 1168683, "target": 1945330}, {"source": 963260, "target": 920265}, {"source": 927036, "target": 898133}, {"source": 1401923, "target": 836420}, {"source": 1401923, "target": 1030126}, {"source": 1701451, "target": 1945330}, {"source": 898133, "target": 1927421}]}
|
[
1011201,
1355752
] | 2 |
704 |
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 Dennis, Joseph Clark, Kenneth Jones, Kyle Ware, Jeff Hunter, Jason Rush, Lisa Freeman, Susan Harris, Brittany King, Marie Nelson, Robert Gibson, Linda Hall, Erica Lopez, Joseph Whitehead, Reginald Stevens, Brianna Holland, Shelly Browning, Amanda Sanders, Olivia Johnson, Janet Payne
- Fiendship connections: Joseph Clark to Linda Hall, Kyle Ware to Susan Harris, Jeff Hunter to Marie Nelson, Jeff Hunter to Janet Payne, Lisa Freeman to Joseph Whitehead, Lisa Freeman to Brianna Holland, Lisa Freeman to Shelly Browning, Lisa Freeman to Brittany King, Brittany King to Brianna Holland
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 Dennis", "id": 2442375}, {"name": "Joseph Clark", "id": 2415761}, {"name": "Kenneth Jones", "id": 2466197}, {"name": "Kyle Ware", "id": 3344791}, {"name": "Jeff Hunter", "id": 2442523}, {"name": "Jason Rush", "id": 2451997}, {"name": "Lisa Freeman", "id": 3235616}, {"name": "Susan Harris", "id": 2427681}, {"name": "Brittany King", "id": 2475057}, {"name": "Marie Nelson", "id": 2502842}, {"name": "Robert Gibson", "id": 2427715}, {"name": "Linda Hall", "id": 2930772}, {"name": "Erica Lopez", "id": 2436182}, {"name": "Joseph Whitehead", "id": 2424542}, {"name": "Reginald Stevens", "id": 2407520}, {"name": "Brianna Holland", "id": 2430944}, {"name": "Shelly Browning", "id": 2463726}, {"name": "Amanda Sanders", "id": 2482159}, {"name": "Olivia Johnson", "id": 2461939}, {"name": "Janet Payne", "id": 3693556}], "links": [{"source": 2415761, "target": 2930772}, {"source": 3344791, "target": 2427681}, {"source": 2442523, "target": 2502842}, {"source": 2442523, "target": 3693556}, {"source": 3235616, "target": 2424542}, {"source": 3235616, "target": 2430944}, {"source": 3235616, "target": 2463726}, {"source": 3235616, "target": 2475057}, {"source": 2475057, "target": 2430944}]}
|
[
2442375,
2415761,
2466197,
2427681,
2502842,
2451997,
3235616,
2427715,
2436182,
2407520,
2482159,
2461939
] | 12 |
705 |
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 Morris, Nathaniel Washington, Megan Murray, Melissa Taylor, George Lynch, Jordan Allen, Hannah Schroeder, Michael Cervantes, Holly Harris, Randy Osborne, Michelle Torres, Marcus Allison, Amanda Terry, Denise Morris, Melissa Martin
- Fiendship connections: Angela Morris to Melissa Taylor, Angela Morris to Randy Osborne, Nathaniel Washington to Hannah Schroeder, Megan Murray to Michelle Torres, Hannah Schroeder to Holly Harris, Michael Cervantes to Melissa Martin, Michael Cervantes to Holly Harris, Marcus Allison to Denise Morris
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 Morris", "id": 2699264}, {"name": "Nathaniel Washington", "id": 5169762}, {"name": "Megan Murray", "id": 3607652}, {"name": "Melissa Taylor", "id": 2408423}, {"name": "George Lynch", "id": 2493319}, {"name": "Jordan Allen", "id": 4928935}, {"name": "Hannah Schroeder", "id": 5755402}, {"name": "Michael Cervantes", "id": 5642635}, {"name": "Holly Harris", "id": 5353198}, {"name": "Randy Osborne", "id": 2438894}, {"name": "Michelle Torres", "id": 2438289}, {"name": "Marcus Allison", "id": 5974359}, {"name": "Amanda Terry", "id": 4960986}, {"name": "Denise Morris", "id": 4937534}, {"name": "Melissa Martin", "id": 5040575}], "links": [{"source": 2699264, "target": 2408423}, {"source": 2699264, "target": 2438894}, {"source": 5169762, "target": 5755402}, {"source": 3607652, "target": 2438289}, {"source": 5755402, "target": 5353198}, {"source": 5642635, "target": 5040575}, {"source": 5642635, "target": 5353198}, {"source": 5974359, "target": 4937534}]}
|
[
2699264,
5169762,
2438289,
2493319,
4928935,
4937534,
4960986
] | 7 |
706 |
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: Kayla Rosales, Elizabeth Wells, Jennifer Smith, Casey Jones, Claire Thomas, Lisa Fuentes, Richard Stephens, Bonnie Baker, Mackenzie Wheeler, Max Roberts, Ronald Baker, Lisa Gonzalez, Beth Bullock MD, Norma Gibson, Andrew Allen, Kimberly Jimenez, Jamie Hampton, Samuel Gill, Gregory Burgess, Tammy Holmes, Dr. Lisa Esparza DVM, Jessica Thomas, Danielle Stanley, Jonathan Henry, Karen Turner, Karen Vargas, Kevin Bowers, Jeffery Walter, Brittany Marquez
- Fiendship connections: Kayla Rosales to Norma Gibson, Kayla Rosales to Max Roberts, Elizabeth Wells to Richard Stephens, Elizabeth Wells to Jamie Hampton, Casey Jones to Tammy Holmes, Casey Jones to Jeffery Walter, Claire Thomas to Brittany Marquez, Claire Thomas to Lisa Gonzalez, Lisa Fuentes to Max Roberts, Mackenzie Wheeler to Karen Vargas, Ronald Baker to Karen Vargas, Beth Bullock MD to Jeffery Walter, Beth Bullock MD to Danielle Stanley, Andrew Allen to Jeffery Walter, Gregory Burgess to Karen Vargas, Dr. Lisa Esparza DVM to Karen Vargas, Jessica Thomas to Karen Vargas, Jonathan Henry to Karen Vargas, Karen Vargas to Kevin Bowers
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": "Kayla Rosales", "id": 5731845}, {"name": "Elizabeth Wells", "id": 821898}, {"name": "Jennifer Smith", "id": 2432909}, {"name": "Casey Jones", "id": 794137}, {"name": "Claire Thomas", "id": 1408674}, {"name": "Lisa Fuentes", "id": 5364404}, {"name": "Richard Stephens", "id": 1348788}, {"name": "Bonnie Baker", "id": 5036085}, {"name": "Mackenzie Wheeler", "id": 2411448}, {"name": "Max Roberts", "id": 5927608}, {"name": "Ronald Baker", "id": 2423866}, {"name": "Lisa Gonzalez", "id": 1101628}, {"name": "Beth Bullock MD", "id": 1039805}, {"name": "Norma Gibson", "id": 5855167}, {"name": "Andrew Allen", "id": 859584}, {"name": "Kimberly Jimenez", "id": 5135298}, {"name": "Jamie Hampton", "id": 1348803}, {"name": "Samuel Gill", "id": 1794376}, {"name": "Gregory Burgess", "id": 2415821}, {"name": "Tammy Holmes", "id": 908111}, {"name": "Dr. Lisa Esparza DVM", "id": 2494676}, {"name": "Jessica Thomas", "id": 4804442}, {"name": "Danielle Stanley", "id": 1143003}, {"name": "Jonathan Henry", "id": 4804443}, {"name": "Karen Turner", "id": 4943201}, {"name": "Karen Vargas", "id": 2494691}, {"name": "Kevin Bowers", "id": 4804454}, {"name": "Jeffery Walter", "id": 1067767}, {"name": "Brittany Marquez", "id": 803834}], "links": [{"source": 5731845, "target": 5855167}, {"source": 5731845, "target": 5927608}, {"source": 821898, "target": 1348788}, {"source": 821898, "target": 1348803}, {"source": 794137, "target": 908111}, {"source": 794137, "target": 1067767}, {"source": 1408674, "target": 803834}, {"source": 1408674, "target": 1101628}, {"source": 5364404, "target": 5927608}, {"source": 2411448, "target": 2494691}, {"source": 2423866, "target": 2494691}, {"source": 1039805, "target": 1067767}, {"source": 1039805, "target": 1143003}, {"source": 859584, "target": 1067767}, {"source": 2415821, "target": 2494691}, {"source": 2494676, "target": 2494691}, {"source": 4804442, "target": 2494691}, {"source": 4804443, "target": 2494691}, {"source": 2494691, "target": 4804454}]}
|
[
5927608,
821898,
2432909,
859584,
1408674,
5036085,
2494691,
5135298,
1794376,
4943201
] | 10 |
707 |
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: Barbara Nelson, William Wilson, Margaret Murray, Anthony Riddle, Jennifer Garza, Jon Wang, Jennifer Briggs, Jennifer Larson, Jasmine Simpson, Donald Hall, Theresa Lindsey, Philip Morrison, Gregory West, James Sanchez, David Perez, Scott Allen
- Fiendship connections: Barbara Nelson to David Perez, William Wilson to James Sanchez, William Wilson to Jennifer Briggs, William Wilson to Jennifer Larson, William Wilson to Donald Hall, Margaret Murray to Jennifer Briggs, Jon Wang to Theresa Lindsey, Jennifer Briggs to Jennifer Larson, Theresa Lindsey to Philip Morrison, Gregory West to David Perez, David Perez to Scott 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": "Barbara Nelson", "id": 2220065}, {"name": "William Wilson", "id": 1592580}, {"name": "Margaret Murray", "id": 871559}, {"name": "Anthony Riddle", "id": 861291}, {"name": "Jennifer Garza", "id": 1427373}, {"name": "Jon Wang", "id": 1745742}, {"name": "Jennifer Briggs", "id": 1215567}, {"name": "Jennifer Larson", "id": 1347056}, {"name": "Jasmine Simpson", "id": 1233169}, {"name": "Donald Hall", "id": 1952436}, {"name": "Theresa Lindsey", "id": 902806}, {"name": "Philip Morrison", "id": 1360310}, {"name": "Gregory West", "id": 2220094}, {"name": "James Sanchez", "id": 1138678}, {"name": "David Perez", "id": 1055166}, {"name": "Scott Allen", "id": 2220089}], "links": [{"source": 2220065, "target": 1055166}, {"source": 1592580, "target": 1138678}, {"source": 1592580, "target": 1215567}, {"source": 1592580, "target": 1347056}, {"source": 1592580, "target": 1952436}, {"source": 871559, "target": 1215567}, {"source": 1745742, "target": 902806}, {"source": 1215567, "target": 1347056}, {"source": 902806, "target": 1360310}, {"source": 2220094, "target": 1055166}, {"source": 1055166, "target": 2220089}]}
|
[
2220094,
1592580,
861291,
1427373,
902806,
1233169
] | 6 |
708 |
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: Judy Johnson, John York, Jeremy Smith, Charles Bates, Marcia Rivera, Lindsey Carlson, Troy Jennings, Linda Fletcher, Charles Saunders, Tina Johnson, Julie Randall, Lisa Garcia, Brittany Zhang, Cheryl Lara DDS, Brandi Johnson, Monica Vasquez, Megan Gross, Rebecca Vasquez, Kevin Jackson, Brenda Marshall, Elizabeth Jones, Lisa Harper
- Fiendship connections: John York to Rebecca Vasquez, Jeremy Smith to Julie Randall, Marcia Rivera to Cheryl Lara DDS, Lindsey Carlson to Kevin Jackson, Troy Jennings to Brittany Zhang, Troy Jennings to Megan Gross, Linda Fletcher to Julie Randall, Charles Saunders to Cheryl Lara DDS, Tina Johnson to Rebecca Vasquez, Lisa Garcia to Cheryl Lara DDS, Brittany Zhang to Elizabeth Jones, Cheryl Lara DDS to Brandi Johnson, Cheryl Lara DDS to Monica Vasquez, Megan Gross to Elizabeth Jones
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": "Judy Johnson", "id": 2500868}, {"name": "John York", "id": 2446476}, {"name": "Jeremy Smith", "id": 2446862}, {"name": "Charles Bates", "id": 2478099}, {"name": "Marcia Rivera", "id": 813595}, {"name": "Lindsey Carlson", "id": 1237918}, {"name": "Troy Jennings", "id": 2486945}, {"name": "Linda Fletcher", "id": 2482217}, {"name": "Charles Saunders", "id": 1532716}, {"name": "Tina Johnson", "id": 2411183}, {"name": "Julie Randall", "id": 3765173}, {"name": "Lisa Garcia", "id": 1584182}, {"name": "Brittany Zhang", "id": 2491703}, {"name": "Cheryl Lara DDS", "id": 1320641}, {"name": "Brandi Johnson", "id": 981445}, {"name": "Monica Vasquez", "id": 2048723}, {"name": "Megan Gross", "id": 2502124}, {"name": "Rebecca Vasquez", "id": 2797677}, {"name": "Kevin Jackson", "id": 1201008}, {"name": "Brenda Marshall", "id": 2454897}, {"name": "Elizabeth Jones", "id": 4758386}, {"name": "Lisa Harper", "id": 2489974}], "links": [{"source": 2446476, "target": 2797677}, {"source": 2446862, "target": 3765173}, {"source": 813595, "target": 1320641}, {"source": 1237918, "target": 1201008}, {"source": 2486945, "target": 2491703}, {"source": 2486945, "target": 2502124}, {"source": 2482217, "target": 3765173}, {"source": 1532716, "target": 1320641}, {"source": 2411183, "target": 2797677}, {"source": 1584182, "target": 1320641}, {"source": 2491703, "target": 4758386}, {"source": 1320641, "target": 981445}, {"source": 1320641, "target": 2048723}, {"source": 2502124, "target": 4758386}]}
|
[
2500868,
2446476,
2482217,
2478099,
1320641,
1201008,
2486945,
2454897,
2489974
] | 9 |
709 |
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 Dominguez, Blake Owens, Jermaine Crawford, Brent Anderson, Teresa Jones, Trevor Carpenter, Dr. John Allen, Jasmine Henry, Jeremy Price, William Johnson, Robert Pruitt, Charles Blair, Mary Parker, Amanda Rodriguez, Ryan Murray, Rodney Ward, Deborah Snyder, Ryan Flores
- Fiendship connections: John Dominguez to Charles Blair, John Dominguez to Amanda Rodriguez, John Dominguez to Deborah Snyder, John Dominguez to Jeremy Price, Blake Owens to Jermaine Crawford, Blake Owens to Dr. John Allen, Blake Owens to Brent Anderson, Blake Owens to Rodney Ward, Teresa Jones to Trevor Carpenter, Trevor Carpenter to Mary Parker, Trevor Carpenter to Jasmine Henry, Jasmine Henry to Mary Parker, William Johnson to Ryan Flores, William Johnson to Ryan Murray, Robert Pruitt to Mary Parker, Ryan Murray to Ryan 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": "John Dominguez", "id": 2467265}, {"name": "Blake Owens", "id": 5669122}, {"name": "Jermaine Crawford", "id": 4933890}, {"name": "Brent Anderson", "id": 5407140}, {"name": "Teresa Jones", "id": 41924}, {"name": "Trevor Carpenter", "id": 774}, {"name": "Dr. John Allen", "id": 5056102}, {"name": "Jasmine Henry", "id": 3817}, {"name": "Jeremy Price", "id": 4251306}, {"name": "William Johnson", "id": 2408333}, {"name": "Robert Pruitt", "id": 78702}, {"name": "Charles Blair", "id": 2452688}, {"name": "Mary Parker", "id": 6066}, {"name": "Amanda Rodriguez", "id": 3429431}, {"name": "Ryan Murray", "id": 2692214}, {"name": "Rodney Ward", "id": 5469910}, {"name": "Deborah Snyder", "id": 4251261}, {"name": "Ryan Flores", "id": 2445886}], "links": [{"source": 2467265, "target": 2452688}, {"source": 2467265, "target": 3429431}, {"source": 2467265, "target": 4251261}, {"source": 2467265, "target": 4251306}, {"source": 5669122, "target": 4933890}, {"source": 5669122, "target": 5056102}, {"source": 5669122, "target": 5407140}, {"source": 5669122, "target": 5469910}, {"source": 41924, "target": 774}, {"source": 774, "target": 6066}, {"source": 774, "target": 3817}, {"source": 3817, "target": 6066}, {"source": 2408333, "target": 2445886}, {"source": 2408333, "target": 2692214}, {"source": 78702, "target": 6066}, {"source": 2692214, "target": 2445886}]}
|
[
2467265,
5669122,
41924,
2692214
] | 4 |
710 |
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 Hamilton, Matthew Velez, Cody Patton, Christine Miller, Jasmine Wood, Erika Cunningham, Steven Welch, Matthew Jordan, Brett Riley, Andrew Chapman Jr., Seth Wood, Wendy Reynolds, Patricia Booth, Dawn Knapp, Chelsey Scott DDS, James Miller, Jeffrey Sanchez, Lisa Kim, Olivia Strickland, Jennifer Smith, Frederick Hernandez, Joseph Todd, Marcus Allen, Tammie Marshall
- Fiendship connections: Mary Hamilton to Cody Patton, Mary Hamilton to Steven Welch, Matthew Velez to Patricia Booth, Matthew Velez to Frederick Hernandez, Cody Patton to Joseph Todd, Christine Miller to Matthew Jordan, Jasmine Wood to Seth Wood, Jasmine Wood to Olivia Strickland, Erika Cunningham to James Miller, Matthew Jordan to Chelsey Scott DDS, Brett Riley to Olivia Strickland, Brett Riley to Tammie Marshall, Andrew Chapman Jr. to Seth Wood, Andrew Chapman Jr. to Joseph Todd, Seth Wood to Olivia Strickland, Seth Wood to Frederick Hernandez, Seth Wood to Chelsey Scott DDS, Wendy Reynolds to Tammie Marshall, Patricia Booth to Frederick Hernandez, Dawn Knapp to James Miller, James Miller to Marcus 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": "Mary Hamilton", "id": 925838}, {"name": "Matthew Velez", "id": 1403023}, {"name": "Cody Patton", "id": 924569}, {"name": "Christine Miller", "id": 1747357}, {"name": "Jasmine Wood", "id": 1155102}, {"name": "Erika Cunningham", "id": 986404}, {"name": "Steven Welch", "id": 2039719}, {"name": "Matthew Jordan", "id": 2317357}, {"name": "Brett Riley", "id": 1697838}, {"name": "Andrew Chapman Jr.", "id": 1097523}, {"name": "Seth Wood", "id": 1553204}, {"name": "Wendy Reynolds", "id": 1779903}, {"name": "Patricia Booth", "id": 2000832}, {"name": "Dawn Knapp", "id": 1095871}, {"name": "Chelsey Scott DDS", "id": 2317508}, {"name": "James Miller", "id": 784339}, {"name": "Jeffrey Sanchez", "id": 1512796}, {"name": "Lisa Kim", "id": 1230302}, {"name": "Olivia Strickland", "id": 1317095}, {"name": "Jennifer Smith", "id": 996335}, {"name": "Frederick Hernandez", "id": 2001267}, {"name": "Joseph Todd", "id": 1577461}, {"name": "Marcus Allen", "id": 1627900}, {"name": "Tammie Marshall", "id": 1968254}], "links": [{"source": 925838, "target": 924569}, {"source": 925838, "target": 2039719}, {"source": 1403023, "target": 2000832}, {"source": 1403023, "target": 2001267}, {"source": 924569, "target": 1577461}, {"source": 1747357, "target": 2317357}, {"source": 1155102, "target": 1553204}, {"source": 1155102, "target": 1317095}, {"source": 986404, "target": 784339}, {"source": 2317357, "target": 2317508}, {"source": 1697838, "target": 1317095}, {"source": 1697838, "target": 1968254}, {"source": 1097523, "target": 1553204}, {"source": 1097523, "target": 1577461}, {"source": 1553204, "target": 1317095}, {"source": 1553204, "target": 2001267}, {"source": 1553204, "target": 2317508}, {"source": 1779903, "target": 1968254}, {"source": 2000832, "target": 2001267}, {"source": 1095871, "target": 784339}, {"source": 784339, "target": 1627900}]}
|
[
2000832,
1627900,
1512796,
1230302,
996335
] | 5 |
711 |
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: Edward Carlson, Ryan Collins, Jason Ortega, Crystal Johnson, Jason Kaiser, Kathleen Hernandez, Marcus Robinson, Rachel Brown, Joseph Sandoval, Kimberly Jenkins, Margaret Mitchell, Roger Johnson, Jeffrey Andrews, Lee Bautista, Nathan Williams, Shirley Hernandez, Theresa Marshall, Michael Martinez, Jose Collins
- Fiendship connections: Edward Carlson to Shirley Hernandez, Ryan Collins to Shirley Hernandez, Jason Ortega to Shirley Hernandez, Crystal Johnson to Shirley Hernandez, Marcus Robinson to Shirley Hernandez, Rachel Brown to Nathan Williams, Rachel Brown to Lee Bautista, Joseph Sandoval to Jeffrey Andrews, Joseph Sandoval to Lee Bautista, Kimberly Jenkins to Roger Johnson, Margaret Mitchell to Roger Johnson, Margaret Mitchell to Jeffrey Andrews, Nathan Williams to Shirley Hernandez, Shirley Hernandez to Theresa Marshall, Shirley Hernandez to Michael Martinez, Shirley Hernandez to Jose Collins
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": "Edward Carlson", "id": 3901185}, {"name": "Ryan Collins", "id": 3901186}, {"name": "Jason Ortega", "id": 3901188}, {"name": "Crystal Johnson", "id": 3901189}, {"name": "Jason Kaiser", "id": 2435857}, {"name": "Kathleen Hernandez", "id": 2456342}, {"name": "Marcus Robinson", "id": 2404135}, {"name": "Rachel Brown", "id": 2423975}, {"name": "Joseph Sandoval", "id": 2415407}, {"name": "Kimberly Jenkins", "id": 3085896}, {"name": "Margaret Mitchell", "id": 2415573}, {"name": "Roger Johnson", "id": 2419166}, {"name": "Jeffrey Andrews", "id": 2514910}, {"name": "Lee Bautista", "id": 2917861}, {"name": "Nathan Williams", "id": 2638831}, {"name": "Shirley Hernandez", "id": 2453488}, {"name": "Theresa Marshall", "id": 3901174}, {"name": "Michael Martinez", "id": 3901178}, {"name": "Jose Collins", "id": 3901181}], "links": [{"source": 3901185, "target": 2453488}, {"source": 3901186, "target": 2453488}, {"source": 3901188, "target": 2453488}, {"source": 3901189, "target": 2453488}, {"source": 2404135, "target": 2453488}, {"source": 2423975, "target": 2638831}, {"source": 2423975, "target": 2917861}, {"source": 2415407, "target": 2514910}, {"source": 2415407, "target": 2917861}, {"source": 3085896, "target": 2419166}, {"source": 2415573, "target": 2419166}, {"source": 2415573, "target": 2514910}, {"source": 2638831, "target": 2453488}, {"source": 2453488, "target": 3901174}, {"source": 2453488, "target": 3901178}, {"source": 2453488, "target": 3901181}]}
|
[
3901185,
2435857,
2456342
] | 3 |
712 |
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: Penny Ward, Shannon Robinson, Gina Jackson, Whitney Powell, Joan Buckley, Brittany Zhang, Margaret Baker, Jason Reyes, Aaron Montgomery, Brandon Mercado, Amy Compton, Tiffany Dennis, Stephanie Wells, Megan Gross, Jason Wong, Elizabeth Jones, Anthony Barnes, Douglas Miller, Ashley Johnson
- Fiendship connections: Shannon Robinson to Jason Wong, Shannon Robinson to Ashley Johnson, Gina Jackson to Amy Compton, Gina Jackson to Joan Buckley, Gina Jackson to Jason Reyes, Joan Buckley to Amy Compton, Joan Buckley to Jason Reyes, Brittany Zhang to Elizabeth Jones, Jason Reyes to Amy Compton, Megan Gross to Elizabeth Jones
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": "Penny Ward", "id": 2466957}, {"name": "Shannon Robinson", "id": 5503385}, {"name": "Gina Jackson", "id": 2454938}, {"name": "Whitney Powell", "id": 2478370}, {"name": "Joan Buckley", "id": 2479659}, {"name": "Brittany Zhang", "id": 2491703}, {"name": "Margaret Baker", "id": 2501563}, {"name": "Jason Reyes", "id": 3914946}, {"name": "Aaron Montgomery", "id": 2500556}, {"name": "Brandon Mercado", "id": 2468818}, {"name": "Amy Compton", "id": 2454360}, {"name": "Tiffany Dennis", "id": 2495706}, {"name": "Stephanie Wells", "id": 2455133}, {"name": "Megan Gross", "id": 2502124}, {"name": "Jason Wong", "id": 5000173}, {"name": "Elizabeth Jones", "id": 4758386}, {"name": "Anthony Barnes", "id": 2437493}, {"name": "Douglas Miller", "id": 2418169}, {"name": "Ashley Johnson", "id": 5208061}], "links": [{"source": 5503385, "target": 5000173}, {"source": 5503385, "target": 5208061}, {"source": 2454938, "target": 2454360}, {"source": 2454938, "target": 2479659}, {"source": 2454938, "target": 3914946}, {"source": 2479659, "target": 2454360}, {"source": 2479659, "target": 3914946}, {"source": 2491703, "target": 4758386}, {"source": 3914946, "target": 2454360}, {"source": 2502124, "target": 4758386}]}
|
[
2466957,
5503385,
2454360,
2478370,
4758386,
2501563,
2500556,
2468818,
2495706,
2455133,
2437493,
2418169
] | 12 |
713 |
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: Alexis King, Edward Berry, Mary Mcmillan, Benjamin Gray, Catherine Clay, Gary Ramirez, James Thompson, Dawn Brown, James Myers, Brittany Burgess, Emily Johnson, James Mathis, Daniel Williams, Jennifer Moore, Amanda Fox, Deborah Walsh, Valerie Anthony, Gina Taylor, Jose Adams, Michael Hill, Thomas Campbell, Kevin Johnson, Margaret Gonzalez, Chris Martin, Kenneth Turner, Anna Mcclain, Michelle White, Tiffany Diaz
- Fiendship connections: Alexis King to James Myers, Alexis King to Margaret Gonzalez, Edward Berry to Kenneth Turner, Benjamin Gray to Valerie Anthony, Catherine Clay to Jose Adams, James Thompson to Michael Hill, James Thompson to Deborah Walsh, James Myers to Kevin Johnson, Emily Johnson to Valerie Anthony, Jennifer Moore to Anna Mcclain, Amanda Fox to Thomas Campbell, Valerie Anthony to Anna Mcclain, Gina Taylor to Jose Adams, Jose Adams to Thomas Campbell, Kenneth Turner to Michelle White
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": "Alexis King", "id": 3047937}, {"name": "Edward Berry", "id": 2467590}, {"name": "Mary Mcmillan", "id": 1591955}, {"name": "Benjamin Gray", "id": 5515283}, {"name": "Catherine Clay", "id": 30358}, {"name": "Gary Ramirez", "id": 2481305}, {"name": "James Thompson", "id": 2481318}, {"name": "Dawn Brown", "id": 2479782}, {"name": "James Myers", "id": 2418736}, {"name": "Brittany Burgess", "id": 2413236}, {"name": "Emily Johnson", "id": 5400501}, {"name": "James Mathis", "id": 4987331}, {"name": "Daniel Williams", "id": 2463301}, {"name": "Jennifer Moore", "id": 4997205}, {"name": "Amanda Fox", "id": 84822}, {"name": "Deborah Walsh", "id": 4590937}, {"name": "Valerie Anthony", "id": 5431900}, {"name": "Gina Taylor", "id": 88545}, {"name": "Jose Adams", "id": 88546}, {"name": "Michael Hill", "id": 4549346}, {"name": "Thomas Campbell", "id": 88548}, {"name": "Kevin Johnson", "id": 2560098}, {"name": "Margaret Gonzalez", "id": 2427754}, {"name": "Chris Martin", "id": 2421106}, {"name": "Kenneth Turner", "id": 3187061}, {"name": "Anna Mcclain", "id": 5947767}, {"name": "Michelle White", "id": 2423033}, {"name": "Tiffany Diaz", "id": 5387516}], "links": [{"source": 3047937, "target": 2418736}, {"source": 3047937, "target": 2427754}, {"source": 2467590, "target": 3187061}, {"source": 5515283, "target": 5431900}, {"source": 30358, "target": 88546}, {"source": 2481318, "target": 4549346}, {"source": 2481318, "target": 4590937}, {"source": 2418736, "target": 2560098}, {"source": 5400501, "target": 5431900}, {"source": 4997205, "target": 5947767}, {"source": 84822, "target": 88548}, {"source": 5431900, "target": 5947767}, {"source": 88545, "target": 88546}, {"source": 88546, "target": 88548}, {"source": 3187061, "target": 2423033}]}
|
[
2418736,
2423033,
1591955,
5515283,
88545,
2481305,
4590937,
2479782,
2413236,
4987331,
2463301,
2421106,
5387516
] | 13 |
714 |
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: Juan Olson, Rebecca Ford, Joseph Davis, Corey Walsh, Samantha Cole, Cory Todd, Shannon Carney, Jacqueline Hopkins, Ryan Hall, Dawn Rogers, Theresa Jackson, Denise Fisher, Christina Gould, Shirley Barr, Dawn Crawford, Rachel Anderson, Rhonda Boyd, Nicole Thompson
- Fiendship connections: Juan Olson to Corey Walsh, Rebecca Ford to Joseph Davis, Joseph Davis to Cory Todd, Joseph Davis to Dawn Crawford, Joseph Davis to Nicole Thompson, Samantha Cole to Jacqueline Hopkins, Cory Todd to Rachel Anderson, Shannon Carney to Theresa Jackson, Ryan Hall to Rhonda Boyd, Ryan Hall to Denise Fisher, Ryan Hall to Shirley Barr, Ryan Hall to Dawn Rogers, Dawn Rogers to Rhonda Boyd, Dawn Rogers to Denise Fisher, Dawn Rogers to Shirley Barr, Denise Fisher to Rhonda Boyd, Denise Fisher to Shirley Barr, Shirley Barr to Rhonda Boyd
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": "Juan Olson", "id": 5484736}, {"name": "Rebecca Ford", "id": 2421890}, {"name": "Joseph Davis", "id": 2668645}, {"name": "Corey Walsh", "id": 5008742}, {"name": "Samantha Cole", "id": 2466567}, {"name": "Cory Todd", "id": 2411878}, {"name": "Shannon Carney", "id": 2491081}, {"name": "Jacqueline Hopkins", "id": 4238713}, {"name": "Ryan Hall", "id": 2081774}, {"name": "Dawn Rogers", "id": 2081775}, {"name": "Theresa Jackson", "id": 4738832}, {"name": "Denise Fisher", "id": 1660432}, {"name": "Christina Gould", "id": 2489118}, {"name": "Shirley Barr", "id": 2042195}, {"name": "Dawn Crawford", "id": 2424243}, {"name": "Rachel Anderson", "id": 2435315}, {"name": "Rhonda Boyd", "id": 1090585}, {"name": "Nicole Thompson", "id": 2469598}], "links": [{"source": 5484736, "target": 5008742}, {"source": 2421890, "target": 2668645}, {"source": 2668645, "target": 2411878}, {"source": 2668645, "target": 2424243}, {"source": 2668645, "target": 2469598}, {"source": 2466567, "target": 4238713}, {"source": 2411878, "target": 2435315}, {"source": 2491081, "target": 4738832}, {"source": 2081774, "target": 1090585}, {"source": 2081774, "target": 1660432}, {"source": 2081774, "target": 2042195}, {"source": 2081774, "target": 2081775}, {"source": 2081775, "target": 1090585}, {"source": 2081775, "target": 1660432}, {"source": 2081775, "target": 2042195}, {"source": 1660432, "target": 1090585}, {"source": 1660432, "target": 2042195}, {"source": 2042195, "target": 1090585}]}
|
[
5484736,
2421890,
4238713,
4738832,
2081774,
2489118
] | 6 |
715 |
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: Jessica Jones, James Gregory, Dr. Matthew Lee, Courtney Hernandez, Shannon Kaiser, Carly Blackburn, Phillip Smith, Colleen Mullins, Timothy Parrish, Mark Zimmerman, Stacey Chavez, Robert Werner, Brian Neal, Patricia Clements, Jacob West, Jon Knight
- Fiendship connections: Jessica Jones to James Gregory, James Gregory to Brian Neal, James Gregory to Carly Blackburn, Courtney Hernandez to Phillip Smith, Shannon Kaiser to Brian Neal, Shannon Kaiser to Stacey Chavez, Shannon Kaiser to Carly Blackburn, Carly Blackburn to Stacey Chavez, Carly Blackburn to Patricia Clements, Carly Blackburn to Jon Knight, Carly Blackburn to Mark Zimmerman, Carly Blackburn to Timothy Parrish, Phillip Smith to Brian Neal, Phillip Smith to Jacob West, Colleen Mullins to Patricia Clements, Mark Zimmerman to Robert Werner, Mark Zimmerman to Stacey Chavez, Stacey Chavez to Brian Neal
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": "Jessica Jones", "id": 60224}, {"name": "James Gregory", "id": 145569}, {"name": "Dr. Matthew Lee", "id": 25760}, {"name": "Courtney Hernandez", "id": 44963}, {"name": "Shannon Kaiser", "id": 160604}, {"name": "Carly Blackburn", "id": 159912}, {"name": "Phillip Smith", "id": 135975}, {"name": "Colleen Mullins", "id": 309034}, {"name": "Timothy Parrish", "id": 420455}, {"name": "Mark Zimmerman", "id": 160013}, {"name": "Stacey Chavez", "id": 105198}, {"name": "Robert Werner", "id": 81521}, {"name": "Brian Neal", "id": 30549}, {"name": "Patricia Clements", "id": 117878}, {"name": "Jacob West", "id": 399289}, {"name": "Jon Knight", "id": 126876}], "links": [{"source": 60224, "target": 145569}, {"source": 145569, "target": 30549}, {"source": 145569, "target": 159912}, {"source": 44963, "target": 135975}, {"source": 160604, "target": 30549}, {"source": 160604, "target": 105198}, {"source": 160604, "target": 159912}, {"source": 159912, "target": 105198}, {"source": 159912, "target": 117878}, {"source": 159912, "target": 126876}, {"source": 159912, "target": 160013}, {"source": 159912, "target": 420455}, {"source": 135975, "target": 30549}, {"source": 135975, "target": 399289}, {"source": 309034, "target": 117878}, {"source": 160013, "target": 81521}, {"source": 160013, "target": 105198}, {"source": 105198, "target": 30549}]}
|
[
60224,
25760
] | 2 |
716 |
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: Erin Fitzgerald, Tristan Mejia, Lauren Patel, Cheryl Welch, George West, Mr. Jason Oneill, Sarah Valencia, Robin Hobbs, Gregory Patel, Matthew Powell, Michelle Jacobson, Matthew Patterson, Kiara Harris, Melanie Rodriguez, Ana Johnson, Christopher Owen, Mr. Joseph Osborn, Nathan Fernandez, Joshua Guerrero, Derek Cooper
- Fiendship connections: Tristan Mejia to Derek Cooper, Tristan Mejia to Matthew Powell, Lauren Patel to Nathan Fernandez, George West to Gregory Patel, George West to Kiara Harris, George West to Christopher Owen, George West to Joshua Guerrero, Mr. Jason Oneill to Sarah Valencia, Robin Hobbs to Matthew Powell, Gregory Patel to Michelle Jacobson, Matthew Powell to Mr. Joseph Osborn
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": "Erin Fitzgerald", "id": 73732}, {"name": "Tristan Mejia", "id": 31881}, {"name": "Lauren Patel", "id": 2455575}, {"name": "Cheryl Welch", "id": 1395996}, {"name": "George West", "id": 2468512}, {"name": "Mr. Jason Oneill", "id": 1473834}, {"name": "Sarah Valencia", "id": 850992}, {"name": "Robin Hobbs", "id": 12210}, {"name": "Gregory Patel", "id": 2468537}, {"name": "Matthew Powell", "id": 229435}, {"name": "Michelle Jacobson", "id": 2468549}, {"name": "Matthew Patterson", "id": 64585}, {"name": "Kiara Harris", "id": 2468556}, {"name": "Melanie Rodriguez", "id": 2468557}, {"name": "Ana Johnson", "id": 2444494}, {"name": "Christopher Owen", "id": 4267733}, {"name": "Mr. Joseph Osborn", "id": 50910}, {"name": "Nathan Fernandez", "id": 3943778}, {"name": "Joshua Guerrero", "id": 4267752}, {"name": "Derek Cooper", "id": 156400}], "links": [{"source": 31881, "target": 156400}, {"source": 31881, "target": 229435}, {"source": 2455575, "target": 3943778}, {"source": 2468512, "target": 2468537}, {"source": 2468512, "target": 2468556}, {"source": 2468512, "target": 4267733}, {"source": 2468512, "target": 4267752}, {"source": 1473834, "target": 850992}, {"source": 12210, "target": 229435}, {"source": 2468537, "target": 2468549}, {"source": 229435, "target": 50910}]}
|
[
73732,
31881,
3943778,
1395996,
2468512,
850992,
64585,
2468557,
2444494
] | 9 |
717 |
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 Owen, Kaylee Jackson, Becky Freeman, Jeffery Melendez, Deborah Thomas, Destiny Smith, Teresa Hughes, Robin Richard, David Mendoza, Raymond Smith, Sierra Greene, Justin Warren, Matthew Simpson, Robert Garcia, Pamela Miranda, Jasmine Gonzalez, Douglas Williams, Kayla Wilson, Madison Medina, Ellen Donovan, Randall Robinson, Ashley Guzman, Richard Curry, Jason White, John Rodriguez, Jonathan Sanders, Kristen Clark
- Fiendship connections: Tammy Owen to Richard Curry, Kaylee Jackson to Sierra Greene, Becky Freeman to Randall Robinson, Becky Freeman to Destiny Smith, Jeffery Melendez to Kristen Clark, Deborah Thomas to Kristen Clark, Robin Richard to Pamela Miranda, Raymond Smith to Jasmine Gonzalez, Sierra Greene to Madison Medina, Sierra Greene to Justin Warren, Sierra Greene to Robert Garcia, Jasmine Gonzalez to Ashley Guzman, Douglas Williams to John Rodriguez, Douglas Williams to Jason White, Randall Robinson to Jonathan Sanders
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 Owen", "id": 5124619}, {"name": "Kaylee Jackson", "id": 2463374}, {"name": "Becky Freeman", "id": 4967960}, {"name": "Jeffery Melendez", "id": 4974363}, {"name": "Deborah Thomas", "id": 4942639}, {"name": "Destiny Smith", "id": 5042488}, {"name": "Teresa Hughes", "id": 2501050}, {"name": "Robin Richard", "id": 4842818}, {"name": "David Mendoza", "id": 4957123}, {"name": "Raymond Smith", "id": 2448966}, {"name": "Sierra Greene", "id": 2750791}, {"name": "Justin Warren", "id": 2454344}, {"name": "Matthew Simpson", "id": 5188552}, {"name": "Robert Garcia", "id": 2491596}, {"name": "Pamela Miranda", "id": 2496844}, {"name": "Jasmine Gonzalez", "id": 2854228}, {"name": "Douglas Williams", "id": 5492703}, {"name": "Kayla Wilson", "id": 2461663}, {"name": "Madison Medina", "id": 2409829}, {"name": "Ellen Donovan", "id": 2501989}, {"name": "Randall Robinson", "id": 4966507}, {"name": "Ashley Guzman", "id": 2412525}, {"name": "Richard Curry", "id": 5351668}, {"name": "Jason White", "id": 4958837}, {"name": "John Rodriguez", "id": 4927608}, {"name": "Jonathan Sanders", "id": 4933498}, {"name": "Kristen Clark", "id": 5938300}], "links": [{"source": 5124619, "target": 5351668}, {"source": 2463374, "target": 2750791}, {"source": 4967960, "target": 4966507}, {"source": 4967960, "target": 5042488}, {"source": 4974363, "target": 5938300}, {"source": 4942639, "target": 5938300}, {"source": 4842818, "target": 2496844}, {"source": 2448966, "target": 2854228}, {"source": 2750791, "target": 2409829}, {"source": 2750791, "target": 2454344}, {"source": 2750791, "target": 2491596}, {"source": 2854228, "target": 2412525}, {"source": 5492703, "target": 4927608}, {"source": 5492703, "target": 4958837}, {"source": 4966507, "target": 4933498}]}
|
[
5124619,
2409829,
4967960,
4974363,
2501050,
4842818,
4957123,
2854228,
5188552,
4927608,
2461663,
2501989
] | 12 |
718 |
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 Hopkins, Danielle Mccoy, Kara Wells, Katie Velez, Mike Harrison, Austin Carr, Julia Ashley, Emily Kim, John Gross, Misty Hicks, Thomas Peterson, Jessica Arnold, Melanie Gibbs, Ms. Rhonda Robinson, Joseph Gill II, Amanda Terry
- Fiendship connections: Danielle Mccoy to Joseph Gill II, Danielle Mccoy to John Gross, Katie Velez to Mike Harrison, Austin Carr to Amanda Terry, Austin Carr to Melanie Gibbs, Melanie Gibbs to Ms. Rhonda Robinson
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 Hopkins", "id": 2467232}, {"name": "Danielle Mccoy", "id": 2497253}, {"name": "Kara Wells", "id": 5178949}, {"name": "Katie Velez", "id": 2478439}, {"name": "Mike Harrison", "id": 4523943}, {"name": "Austin Carr", "id": 5104040}, {"name": "Julia Ashley", "id": 5089066}, {"name": "Emily Kim", "id": 2489067}, {"name": "John Gross", "id": 4854381}, {"name": "Misty Hicks", "id": 4980497}, {"name": "Thomas Peterson", "id": 2480785}, {"name": "Jessica Arnold", "id": 5328210}, {"name": "Melanie Gibbs", "id": 5747444}, {"name": "Ms. Rhonda Robinson", "id": 5191190}, {"name": "Joseph Gill II", "id": 4854359}, {"name": "Amanda Terry", "id": 4960986}], "links": [{"source": 2497253, "target": 4854359}, {"source": 2497253, "target": 4854381}, {"source": 2478439, "target": 4523943}, {"source": 5104040, "target": 4960986}, {"source": 5104040, "target": 5747444}, {"source": 5747444, "target": 5191190}]}
|
[
2467232,
2497253,
5178949,
4523943,
5104040,
5089066,
2489067,
4980497,
2480785,
5328210
] | 10 |
719 |
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: Kimberly Davis, Kaitlin Holt, James Estrada, Danny Gregory, Barbara Hill, Joan Sutton, Thomas Flores, Lisa Berry, Andrew Montoya, Matthew Lane, Cameron Baker, Brenda White, Megan Dunn, Kirk Miller, Vanessa Rivas
- Fiendship connections: Kaitlin Holt to Danny Gregory, Kaitlin Holt to Cameron Baker, Kaitlin Holt to James Estrada, Kaitlin Holt to Brenda White, Kaitlin Holt to Lisa Berry, Kaitlin Holt to Thomas Flores, James Estrada to Brenda White, Danny Gregory to Brenda White, Barbara Hill to Matthew Lane, Joan Sutton to Matthew Lane, Lisa Berry to Vanessa Rivas, Lisa Berry to Brenda White, Matthew Lane to Megan Dunn
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": "Kimberly Davis", "id": 818657}, {"name": "Kaitlin Holt", "id": 1193192}, {"name": "James Estrada", "id": 854953}, {"name": "Danny Gregory", "id": 816396}, {"name": "Barbara Hill", "id": 87538}, {"name": "Joan Sutton", "id": 474835}, {"name": "Thomas Flores", "id": 1900562}, {"name": "Lisa Berry", "id": 1467253}, {"name": "Andrew Montoya", "id": 1147349}, {"name": "Matthew Lane", "id": 19159}, {"name": "Cameron Baker", "id": 827634}, {"name": "Brenda White", "id": 1131740}, {"name": "Megan Dunn", "id": 71449}, {"name": "Kirk Miller", "id": 23292}, {"name": "Vanessa Rivas", "id": 974943}], "links": [{"source": 1193192, "target": 816396}, {"source": 1193192, "target": 827634}, {"source": 1193192, "target": 854953}, {"source": 1193192, "target": 1131740}, {"source": 1193192, "target": 1467253}, {"source": 1193192, "target": 1900562}, {"source": 854953, "target": 1131740}, {"source": 816396, "target": 1131740}, {"source": 87538, "target": 19159}, {"source": 474835, "target": 19159}, {"source": 1467253, "target": 974943}, {"source": 1467253, "target": 1131740}, {"source": 19159, "target": 71449}]}
|
[
818657,
1193192,
71449,
1147349,
23292
] | 5 |
720 |
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 Williams, Spencer Tanner, Brittany Richardson, Melissa Martinez, Elizabeth Brown, Megan Williams, Beth Howe, Linda Wang MD, Charles Hill, Sharon Conway, Jacob Curtis, Monica Ryan, James Kaufman, Danielle Martin, Brandon Abbott, Alisha Coleman, Vincent Reed, Michael Cole
- Fiendship connections: Spencer Tanner to Jacob Curtis, Spencer Tanner to Linda Wang MD, Spencer Tanner to Vincent Reed, Spencer Tanner to Sharon Conway, Spencer Tanner to James Kaufman, Melissa Martinez to Beth Howe, Elizabeth Brown to Vincent Reed, Elizabeth Brown to Megan Williams, Megan Williams to Alisha Coleman, Beth Howe to Linda Wang MD, Charles Hill to Michael Cole, Charles Hill to Alisha Coleman, Danielle Martin to Michael Cole
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 Williams", "id": 2477600}, {"name": "Spencer Tanner", "id": 2491777}, {"name": "Brittany Richardson", "id": 2435232}, {"name": "Melissa Martinez", "id": 3043072}, {"name": "Elizabeth Brown", "id": 2481947}, {"name": "Megan Williams", "id": 4090501}, {"name": "Beth Howe", "id": 2447624}, {"name": "Linda Wang MD", "id": 2968330}, {"name": "Charles Hill", "id": 2801131}, {"name": "Sharon Conway", "id": 4761804}, {"name": "Jacob Curtis", "id": 2940878}, {"name": "Monica Ryan", "id": 2472049}, {"name": "James Kaufman", "id": 4761817}, {"name": "Danielle Martin", "id": 4169625}, {"name": "Brandon Abbott", "id": 2423515}, {"name": "Alisha Coleman", "id": 2494332}, {"name": "Vincent Reed", "id": 3130749}, {"name": "Michael Cole", "id": 2463483}], "links": [{"source": 2491777, "target": 2940878}, {"source": 2491777, "target": 2968330}, {"source": 2491777, "target": 3130749}, {"source": 2491777, "target": 4761804}, {"source": 2491777, "target": 4761817}, {"source": 3043072, "target": 2447624}, {"source": 2481947, "target": 3130749}, {"source": 2481947, "target": 4090501}, {"source": 4090501, "target": 2494332}, {"source": 2447624, "target": 2968330}, {"source": 2801131, "target": 2463483}, {"source": 2801131, "target": 2494332}, {"source": 4169625, "target": 2463483}]}
|
[
2477600,
3043072,
2435232,
2472049,
2423515
] | 5 |
721 |
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: William Rivera, Daniel Murphy, Chloe Reed, Tina Lopez, John Park, Allison Davis, Shaun Young, Rachel Wheeler, Gloria Fitzgerald, Juan Berry, Anita Ramirez, Joshua Montgomery, Terri Le, Jenna Gardner, James Martinez
- Fiendship connections: William Rivera to Allison Davis, Daniel Murphy to Chloe Reed, Chloe Reed to Gloria Fitzgerald, Tina Lopez to Allison Davis, Rachel Wheeler to Gloria Fitzgerald, Gloria Fitzgerald to Juan Berry, Gloria Fitzgerald to Jenna Gardner, Anita Ramirez to Terri Le, Anita Ramirez to Joshua Montgomery, Joshua Montgomery to James 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": "William Rivera", "id": 3940128}, {"name": "Daniel Murphy", "id": 814882}, {"name": "Chloe Reed", "id": 799269}, {"name": "Tina Lopez", "id": 2455365}, {"name": "John Park", "id": 2455000}, {"name": "Allison Davis", "id": 2455468}, {"name": "Shaun Young", "id": 839213}, {"name": "Rachel Wheeler", "id": 774959}, {"name": "Gloria Fitzgerald", "id": 1101232}, {"name": "Juan Berry", "id": 883023}, {"name": "Anita Ramirez", "id": 3116146}, {"name": "Joshua Montgomery", "id": 2421397}, {"name": "Terri Le", "id": 2420917}, {"name": "Jenna Gardner", "id": 925432}, {"name": "James Martinez", "id": 2498939}], "links": [{"source": 3940128, "target": 2455468}, {"source": 814882, "target": 799269}, {"source": 799269, "target": 1101232}, {"source": 2455365, "target": 2455468}, {"source": 774959, "target": 1101232}, {"source": 1101232, "target": 883023}, {"source": 1101232, "target": 925432}, {"source": 3116146, "target": 2420917}, {"source": 3116146, "target": 2421397}, {"source": 2421397, "target": 2498939}]}
|
[
3940128,
814882,
2455000,
839213,
3116146
] | 5 |
722 |
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: Ricky Jones, Christopher Watson, Theresa Lindsey, Brandon Bates, Edward Bates, Joseph Robinson, Joseph Mcknight II, Laura Fernandez DVM, John Davis, Nicholas Olson, William Kelly, Jon Wang, Erin Holt, Tracy Melton, Kevin Chase, Joseph Gonzalez, James Roman, James Jones, Andrew Shea
- Fiendship connections: Ricky Jones to Theresa Lindsey, Ricky Jones to Christopher Watson, Christopher Watson to Theresa Lindsey, Christopher Watson to William Kelly, Theresa Lindsey to Tracy Melton, Theresa Lindsey to William Kelly, Theresa Lindsey to Jon Wang, Theresa Lindsey to Kevin Chase, Edward Bates to Nicholas Olson, Joseph Robinson to Erin Holt, Joseph Mcknight II to James Jones, Laura Fernandez DVM to Erin Holt, John Davis to William Kelly, Nicholas Olson to Joseph Gonzalez, Joseph Gonzalez to James Roman, Joseph Gonzalez to James Jones, Joseph Gonzalez to Andrew Shea
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": "Ricky Jones", "id": 1614855}, {"name": "Christopher Watson", "id": 1282319}, {"name": "Theresa Lindsey", "id": 902806}, {"name": "Brandon Bates", "id": 138518}, {"name": "Edward Bates", "id": 256672}, {"name": "Joseph Robinson", "id": 450085}, {"name": "Joseph Mcknight II", "id": 168}, {"name": "Laura Fernandez DVM", "id": 449705}, {"name": "John Davis", "id": 1079621}, {"name": "Nicholas Olson", "id": 25541}, {"name": "William Kelly", "id": 1413450}, {"name": "Jon Wang", "id": 1745742}, {"name": "Erin Holt", "id": 121935}, {"name": "Tracy Melton", "id": 1017555}, {"name": "Kevin Chase", "id": 1656792}, {"name": "Joseph Gonzalez", "id": 189145}, {"name": "James Roman", "id": 189146}, {"name": "James Jones", "id": 189151}, {"name": "Andrew Shea", "id": 189153}], "links": [{"source": 1614855, "target": 902806}, {"source": 1614855, "target": 1282319}, {"source": 1282319, "target": 902806}, {"source": 1282319, "target": 1413450}, {"source": 902806, "target": 1017555}, {"source": 902806, "target": 1413450}, {"source": 902806, "target": 1745742}, {"source": 902806, "target": 1656792}, {"source": 256672, "target": 25541}, {"source": 450085, "target": 121935}, {"source": 168, "target": 189151}, {"source": 449705, "target": 121935}, {"source": 1079621, "target": 1413450}, {"source": 25541, "target": 189145}, {"source": 189145, "target": 189146}, {"source": 189145, "target": 189151}, {"source": 189145, "target": 189153}]}
|
[
1079621,
138518,
256672,
449705
] | 4 |
723 |
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: Pamela Hernandez, Jessica Cooper, Edward Lozano, Danielle Parker, Shawn Horn, Ray Collins, Tiffany Walker, David Newman, Nicolas Ramsey, William Delgado, Andrea Foster, Hunter Leon, Sarah Wolf, James Greene, Jordan Smith
- Fiendship connections: Pamela Hernandez to Tiffany Walker, Pamela Hernandez to Sarah Wolf, Edward Lozano to David Newman, Danielle Parker to Shawn Horn, Shawn Horn to Sarah Wolf, Andrea Foster to Jordan 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": "Pamela Hernandez", "id": 1576544}, {"name": "Jessica Cooper", "id": 4928994}, {"name": "Edward Lozano", "id": 4996869}, {"name": "Danielle Parker", "id": 947173}, {"name": "Shawn Horn", "id": 1141063}, {"name": "Ray Collins", "id": 5148777}, {"name": "Tiffany Walker", "id": 1595497}, {"name": "David Newman", "id": 5227630}, {"name": "Nicolas Ramsey", "id": 959568}, {"name": "William Delgado", "id": 5091248}, {"name": "Andrea Foster", "id": 4607188}, {"name": "Hunter Leon", "id": 5348948}, {"name": "Sarah Wolf", "id": 1723030}, {"name": "James Greene", "id": 4959608}, {"name": "Jordan Smith", "id": 2482814}], "links": [{"source": 1576544, "target": 1595497}, {"source": 1576544, "target": 1723030}, {"source": 4996869, "target": 5227630}, {"source": 947173, "target": 1141063}, {"source": 1141063, "target": 1723030}, {"source": 4607188, "target": 2482814}]}
|
[
1576544,
4928994,
4996869,
5148777,
959568,
5091248,
4607188,
5348948,
4959608
] | 9 |
724 |
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: Ashlee Long, Janice Rodriguez, Jasmine Baxter, Deborah Best, Brendan Kim, Dawn Watson, Christopher Prince, Jordan Houston, Christopher Rivera, Jack Wilkins, Joseph Perry, Holly Evans, Gloria Calhoun, Adam Hutchinson, Olivia Harmon, Jennifer Andrews, Antonio Ramirez, Jason Rivera MD, Vanessa Bryant
- Fiendship connections: Janice Rodriguez to Holly Evans, Jasmine Baxter to Antonio Ramirez, Deborah Best to Holly Evans, Dawn Watson to Jason Rivera MD, Christopher Prince to Jason Rivera MD, Jordan Houston to Jason Rivera MD, Christopher Rivera to Jason Rivera MD, Jack Wilkins to Jason Rivera MD, Joseph Perry to Jason Rivera MD, Gloria Calhoun to Antonio Ramirez, Adam Hutchinson to Jason Rivera MD, Olivia Harmon to Jason Rivera MD, Jennifer Andrews to Antonio Ramirez, Jason Rivera MD to Vanessa Bryant
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": "Ashlee Long", "id": 4944773}, {"name": "Janice Rodriguez", "id": 2064}, {"name": "Jasmine Baxter", "id": 4927509}, {"name": "Deborah Best", "id": 925}, {"name": "Brendan Kim", "id": 84400}, {"name": "Dawn Watson", "id": 4925618}, {"name": "Christopher Prince", "id": 4925620}, {"name": "Jordan Houston", "id": 4925623}, {"name": "Christopher Rivera", "id": 4925624}, {"name": "Jack Wilkins", "id": 4925629}, {"name": "Joseph Perry", "id": 4925633}, {"name": "Holly Evans", "id": 738370}, {"name": "Gloria Calhoun", "id": 4979399}, {"name": "Adam Hutchinson", "id": 4925639}, {"name": "Olivia Harmon", "id": 4925645}, {"name": "Jennifer Andrews", "id": 6115931}, {"name": "Antonio Ramirez", "id": 5208551}, {"name": "Jason Rivera MD", "id": 2503146}, {"name": "Vanessa Bryant", "id": 2503284}], "links": [{"source": 2064, "target": 738370}, {"source": 4927509, "target": 5208551}, {"source": 925, "target": 738370}, {"source": 4925618, "target": 2503146}, {"source": 4925620, "target": 2503146}, {"source": 4925623, "target": 2503146}, {"source": 4925624, "target": 2503146}, {"source": 4925629, "target": 2503146}, {"source": 4925633, "target": 2503146}, {"source": 4979399, "target": 5208551}, {"source": 4925639, "target": 2503146}, {"source": 4925645, "target": 2503146}, {"source": 6115931, "target": 5208551}, {"source": 2503146, "target": 2503284}]}
|
[
4944773,
2064,
4979399,
84400,
4925633
] | 5 |
725 |
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 Tran, Christopher Scott, Douglas Freeman, Audrey Williams, Cheryl Williams, Donna Powell, Jody Smith, Robert Mueller, Christina Williams, Tyler Smith, John Mitchell, Jacob Rosales, Amber Lopez, David Hunt, Brandon Brooks, Lindsay Hart, Lee Horton, Jamie Martin, Jonathan Fisher, Catherine Stewart, Gregory Ball, Brittney Willis
- Fiendship connections: Amanda Tran to Catherine Stewart, Amanda Tran to Jacob Rosales, Christopher Scott to Gregory Ball, Christopher Scott to Brandon Brooks, Douglas Freeman to Brandon Brooks, Douglas Freeman to John Mitchell, Audrey Williams to David Hunt, Audrey Williams to Jacob Rosales, Cheryl Williams to Jamie Martin, Donna Powell to Jacob Rosales, Jody Smith to Jacob Rosales, John Mitchell to Jacob Rosales, Amber Lopez to David Hunt, Amber Lopez to Lee Horton, David Hunt to Lindsay Hart, David Hunt to Lee Horton, Jamie Martin to Jonathan Fisher, Jonathan Fisher to Gregory Ball
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 Tran", "id": 5207561}, {"name": "Christopher Scott", "id": 4935691}, {"name": "Douglas Freeman", "id": 4980495}, {"name": "Audrey Williams", "id": 5074210}, {"name": "Cheryl Williams", "id": 5024674}, {"name": "Donna Powell", "id": 5892773}, {"name": "Jody Smith", "id": 5892774}, {"name": "Robert Mueller", "id": 5627687}, {"name": "Christina Williams", "id": 4963757}, {"name": "Tyler Smith", "id": 4951982}, {"name": "John Mitchell", "id": 5798706}, {"name": "Jacob Rosales", "id": 5774270}, {"name": "Amber Lopez", "id": 5205825}, {"name": "David Hunt", "id": 5002052}, {"name": "Brandon Brooks", "id": 5407429}, {"name": "Lindsay Hart", "id": 5205832}, {"name": "Lee Horton", "id": 5205838}, {"name": "Jamie Martin", "id": 5036759}, {"name": "Jonathan Fisher", "id": 5006170}, {"name": "Catherine Stewart", "id": 5080161}, {"name": "Gregory Ball", "id": 5347702}, {"name": "Brittney Willis", "id": 4934783}], "links": [{"source": 5207561, "target": 5080161}, {"source": 5207561, "target": 5774270}, {"source": 4935691, "target": 5347702}, {"source": 4935691, "target": 5407429}, {"source": 4980495, "target": 5407429}, {"source": 4980495, "target": 5798706}, {"source": 5074210, "target": 5002052}, {"source": 5074210, "target": 5774270}, {"source": 5024674, "target": 5036759}, {"source": 5892773, "target": 5774270}, {"source": 5892774, "target": 5774270}, {"source": 5798706, "target": 5774270}, {"source": 5205825, "target": 5002052}, {"source": 5205825, "target": 5205838}, {"source": 5002052, "target": 5205832}, {"source": 5002052, "target": 5205838}, {"source": 5036759, "target": 5006170}, {"source": 5006170, "target": 5347702}]}
|
[
5080161,
5627687,
4963757,
4951982,
4934783
] | 5 |
726 |
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: Eric Nelson, Ryan Hale, Jason Jones, James Collins, Stanley Jones, Jackson Watson, Richard Ware, Belinda Jones, Shirley Montgomery, Erin Munoz, Christopher Mccarthy, Thomas Vargas, Jeremiah Howell, Kaitlin Jordan, Brian Sutton, Mallory Lewis
- Fiendship connections: Eric Nelson to Thomas Vargas, Eric Nelson to Erin Munoz, Ryan Hale to Thomas Vargas, Ryan Hale to Jason Jones, Jason Jones to Brian Sutton, Jason Jones to Christopher Mccarthy, Jason Jones to James Collins, Jason Jones to Jeremiah Howell, Jason Jones to Jackson Watson, Stanley Jones to Richard Ware, Stanley Jones to Shirley Montgomery, Richard Ware to Christopher Mccarthy, Erin Munoz to Kaitlin Jordan
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": "Eric Nelson", "id": 2423008}, {"name": "Ryan Hale", "id": 2415234}, {"name": "Jason Jones", "id": 2429347}, {"name": "James Collins", "id": 2466270}, {"name": "Stanley Jones", "id": 2429735}, {"name": "Jackson Watson", "id": 3425033}, {"name": "Richard Ware", "id": 2452490}, {"name": "Belinda Jones", "id": 2489919}, {"name": "Shirley Montgomery", "id": 3430989}, {"name": "Erin Munoz", "id": 2419186}, {"name": "Christopher Mccarthy", "id": 2414133}, {"name": "Thomas Vargas", "id": 2414043}, {"name": "Jeremiah Howell", "id": 3168188}, {"name": "Kaitlin Jordan", "id": 2411613}, {"name": "Brian Sutton", "id": 2413630}, {"name": "Mallory Lewis", "id": 2459199}], "links": [{"source": 2423008, "target": 2414043}, {"source": 2423008, "target": 2419186}, {"source": 2415234, "target": 2414043}, {"source": 2415234, "target": 2429347}, {"source": 2429347, "target": 2413630}, {"source": 2429347, "target": 2414133}, {"source": 2429347, "target": 2466270}, {"source": 2429347, "target": 3168188}, {"source": 2429347, "target": 3425033}, {"source": 2429735, "target": 2452490}, {"source": 2429735, "target": 3430989}, {"source": 2452490, "target": 2414133}, {"source": 2419186, "target": 2411613}]}
|
[
2423008,
2489919,
2459199
] | 3 |
727 |
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: Stephanie Adams, Bradley Anderson, John Lowe, Ralph Morrow, David Holt, Andrew Gill, Madison Johnson, Courtney Mitchell, David Ray, Chris Kim, Scott Baker, Oscar Scott, Heidi Day, Crystal Mata, Cynthia Wilson, Evan Stokes, Kevin Brooks, Sheila Moreno, Scott Allison, Katie Johnson, Shaun Smith, Roberto Montgomery, Angela Burns, John Saunders, James Miller, Gail Gallagher, Drew Meadows
- Fiendship connections: Stephanie Adams to Katie Johnson, Bradley Anderson to Katie Johnson, John Lowe to Katie Johnson, Ralph Morrow to Crystal Mata, Andrew Gill to Chris Kim, Madison Johnson to David Ray, David Ray to Kevin Brooks, Chris Kim to Gail Gallagher, Chris Kim to Sheila Moreno, Scott Baker to James Miller, Oscar Scott to James Miller, Cynthia Wilson to Shaun Smith, Evan Stokes to James Miller, Kevin Brooks to Roberto Montgomery, Scott Allison to Angela Burns, Scott Allison to James Miller, Shaun Smith to James Miller
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": "Stephanie Adams", "id": 4438532}, {"name": "Bradley Anderson", "id": 4438533}, {"name": "John Lowe", "id": 2503563}, {"name": "Ralph Morrow", "id": 5710351}, {"name": "David Holt", "id": 2405779}, {"name": "Andrew Gill", "id": 572826}, {"name": "Madison Johnson", "id": 46368}, {"name": "Courtney Mitchell", "id": 2475553}, {"name": "David Ray", "id": 502436}, {"name": "Chris Kim", "id": 43825}, {"name": "Scott Baker", "id": 2464306}, {"name": "Oscar Scott", "id": 4816179}, {"name": "Heidi Day", "id": 2444593}, {"name": "Crystal Mata", "id": 4951221}, {"name": "Cynthia Wilson", "id": 2487604}, {"name": "Evan Stokes", "id": 4369589}, {"name": "Kevin Brooks", "id": 95673}, {"name": "Sheila Moreno", "id": 216379}, {"name": "Scott Allison", "id": 2463165}, {"name": "Katie Johnson", "id": 2475582}, {"name": "Shaun Smith", "id": 4707663}, {"name": "Roberto Montgomery", "id": 578772}, {"name": "Angela Burns", "id": 2478556}, {"name": "John Saunders", "id": 2493149}, {"name": "James Miller", "id": 2495462}, {"name": "Gail Gallagher", "id": 4211}, {"name": "Drew Meadows", "id": 21116}], "links": [{"source": 4438532, "target": 2475582}, {"source": 4438533, "target": 2475582}, {"source": 2503563, "target": 2475582}, {"source": 5710351, "target": 4951221}, {"source": 572826, "target": 43825}, {"source": 46368, "target": 502436}, {"source": 502436, "target": 95673}, {"source": 43825, "target": 4211}, {"source": 43825, "target": 216379}, {"source": 2464306, "target": 2495462}, {"source": 4816179, "target": 2495462}, {"source": 2487604, "target": 4707663}, {"source": 4369589, "target": 2495462}, {"source": 95673, "target": 578772}, {"source": 2463165, "target": 2478556}, {"source": 2463165, "target": 2495462}, {"source": 4707663, "target": 2495462}]}
|
[
2503563,
4951221,
2405779,
43825,
46368,
2475553,
2495462,
2444593,
2493149,
21116
] | 10 |
728 |
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: Karen Compton, Carolyn Fisher, Scott Mcdonald, Kimberly Stevens, Yolanda Mann, Gregory Travis, Samuel Harvey, Kenneth Villegas, Curtis Hernandez, Scott Thomas, Mr. Nicholas Thomas, Roberto Hamilton, Sheila Murray, Nicole Lewis, Austin Stewart, Matthew Owens, Robert Schultz, Melissa Nelson
- Fiendship connections: Karen Compton to Austin Stewart, Karen Compton to Gregory Travis, Carolyn Fisher to Scott Thomas, Scott Mcdonald to Nicole Lewis, Kimberly Stevens to Yolanda Mann, Yolanda Mann to Nicole Lewis, Gregory Travis to Nicole Lewis, Samuel Harvey to Nicole Lewis, Kenneth Villegas to Matthew Owens, Kenneth Villegas to Nicole Lewis, Curtis Hernandez to Nicole Lewis, Scott Thomas to Austin Stewart, Mr. Nicholas Thomas to Matthew Owens, Roberto Hamilton to Nicole Lewis, Nicole Lewis to Robert Schultz, Nicole Lewis to Melissa Nelson
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": "Karen Compton", "id": 1453954}, {"name": "Carolyn Fisher", "id": 1356247}, {"name": "Scott Mcdonald", "id": 1862594}, {"name": "Kimberly Stevens", "id": 837797}, {"name": "Yolanda Mann", "id": 1165225}, {"name": "Gregory Travis", "id": 1526410}, {"name": "Samuel Harvey", "id": 1165194}, {"name": "Kenneth Villegas", "id": 837228}, {"name": "Curtis Hernandez", "id": 1861946}, {"name": "Scott Thomas", "id": 915631}, {"name": "Mr. Nicholas Thomas", "id": 890384}, {"name": "Roberto Hamilton", "id": 971155}, {"name": "Sheila Murray", "id": 1705716}, {"name": "Nicole Lewis", "id": 971350}, {"name": "Austin Stewart", "id": 1268759}, {"name": "Matthew Owens", "id": 920826}, {"name": "Robert Schultz", "id": 1862587}, {"name": "Melissa Nelson", "id": 1862589}], "links": [{"source": 1453954, "target": 1268759}, {"source": 1453954, "target": 1526410}, {"source": 1356247, "target": 915631}, {"source": 1862594, "target": 971350}, {"source": 837797, "target": 1165225}, {"source": 1165225, "target": 971350}, {"source": 1526410, "target": 971350}, {"source": 1165194, "target": 971350}, {"source": 837228, "target": 920826}, {"source": 837228, "target": 971350}, {"source": 1861946, "target": 971350}, {"source": 915631, "target": 1268759}, {"source": 890384, "target": 920826}, {"source": 971155, "target": 971350}, {"source": 971350, "target": 1862587}, {"source": 971350, "target": 1862589}]}
|
[
1453954,
1705716
] | 2 |
729 |
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: Corey Hale, David Perkins, Thomas Tran, Kelly Smith, Laura Allen, Danielle Waller, Ryan Evans, Michael Rush, Ashley Murphy, Sara Barber, Patricia Hall, Anthony Mckay, Benjamin Marshall, Randall Elliott, Justin Rivera, Stacey Brooks, Michelle Gibson, Thomas Hubbard
- Fiendship connections: David Perkins to Thomas Tran, Thomas Tran to Laura Allen, Thomas Tran to Stacey Brooks, Thomas Tran to Patricia Hall, Thomas Tran to Thomas Hubbard, Kelly Smith to Justin Rivera, Danielle Waller to Stacey Brooks, Michael Rush to Michelle Gibson, Ashley Murphy to Patricia Hall, Sara Barber to Randall Elliott, Benjamin Marshall to Michelle 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": "Corey Hale", "id": 2501568}, {"name": "David Perkins", "id": 1654658}, {"name": "Thomas Tran", "id": 1784773}, {"name": "Kelly Smith", "id": 4951782}, {"name": "Laura Allen", "id": 853241}, {"name": "Danielle Waller", "id": 2080264}, {"name": "Ryan Evans", "id": 2477096}, {"name": "Michael Rush", "id": 2428173}, {"name": "Ashley Murphy", "id": 2087053}, {"name": "Sara Barber", "id": 2493485}, {"name": "Patricia Hall", "id": 1709168}, {"name": "Anthony Mckay", "id": 2455662}, {"name": "Benjamin Marshall", "id": 2475123}, {"name": "Randall Elliott", "id": 2456661}, {"name": "Justin Rivera", "id": 5228278}, {"name": "Stacey Brooks", "id": 1373656}, {"name": "Michelle Gibson", "id": 3368505}, {"name": "Thomas Hubbard", "id": 2324863}], "links": [{"source": 1654658, "target": 1784773}, {"source": 1784773, "target": 853241}, {"source": 1784773, "target": 1373656}, {"source": 1784773, "target": 1709168}, {"source": 1784773, "target": 2324863}, {"source": 4951782, "target": 5228278}, {"source": 2080264, "target": 1373656}, {"source": 2428173, "target": 3368505}, {"source": 2087053, "target": 1709168}, {"source": 2493485, "target": 2456661}, {"source": 2475123, "target": 3368505}]}
|
[
2501568,
1654658,
5228278,
2477096,
3368505,
2456661,
2455662
] | 7 |
730 |
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 Wolf, Jeffrey Jones, Lindsay Yu, Shane Delgado, Kimberly Woods, Matthew Fitzgerald, William Collins, Zachary Pena, Kevin Sherman, Nathan Ward, Nathaniel Cooper, Karen Lynn, Juan Green, Theresa Carpenter, Duane Dyer, Andrew Ford
- Fiendship connections: David Wolf to Nathan Ward, Jeffrey Jones to Karen Lynn, Lindsay Yu to Karen Lynn, Shane Delgado to Karen Lynn, Kimberly Woods to Karen Lynn, Matthew Fitzgerald to William Collins, Matthew Fitzgerald to Kevin Sherman, Zachary Pena to Duane Dyer, Kevin Sherman to Karen Lynn, Nathan Ward to Karen Lynn, Nathaniel Cooper to Andrew Ford, Nathaniel Cooper to Karen Lynn, Karen Lynn to Andrew Ford, Juan Green to Theresa Carpenter, Juan Green to Duane Dyer
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 Wolf", "id": 794242}, {"name": "Jeffrey Jones", "id": 790820}, {"name": "Lindsay Yu", "id": 1201321}, {"name": "Shane Delgado", "id": 1653834}, {"name": "Kimberly Woods", "id": 1815755}, {"name": "Matthew Fitzgerald", "id": 1802508}, {"name": "William Collins", "id": 1176655}, {"name": "Zachary Pena", "id": 5985808}, {"name": "Kevin Sherman", "id": 1356176}, {"name": "Nathan Ward", "id": 773016}, {"name": "Nathaniel Cooper", "id": 1176375}, {"name": "Karen Lynn", "id": 941464}, {"name": "Juan Green", "id": 5062649}, {"name": "Theresa Carpenter", "id": 4936570}, {"name": "Duane Dyer", "id": 4985692}, {"name": "Andrew Ford", "id": 926719}], "links": [{"source": 794242, "target": 773016}, {"source": 790820, "target": 941464}, {"source": 1201321, "target": 941464}, {"source": 1653834, "target": 941464}, {"source": 1815755, "target": 941464}, {"source": 1802508, "target": 1176655}, {"source": 1802508, "target": 1356176}, {"source": 5985808, "target": 4985692}, {"source": 1356176, "target": 941464}, {"source": 773016, "target": 941464}, {"source": 1176375, "target": 926719}, {"source": 1176375, "target": 941464}, {"source": 941464, "target": 926719}, {"source": 5062649, "target": 4936570}, {"source": 5062649, "target": 4985692}]}
|
[
794242,
5985808
] | 2 |
731 |
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: Terry Salazar, Matthew Ho, Sharon Gilbert, Michael Burton, Mallory Andrews DDS, Ryan Hall, Tracy Smith, Tracy Villarreal, Shannon Taylor, Edwin Taylor, Jason Reynolds, Steven Meyer, Gina King, Eric Williams, Kimberly Guerra, April Smith DDS
- Fiendship connections: Terry Salazar to Jason Reynolds, Terry Salazar to Sharon Gilbert, Terry Salazar to Steven Meyer, Matthew Ho to Eric Williams, Sharon Gilbert to Edwin Taylor, Sharon Gilbert to Steven Meyer, Michael Burton to Steven Meyer, Mallory Andrews DDS to Tracy Smith, Ryan Hall to April Smith DDS, Tracy Smith to Steven Meyer, Shannon Taylor to Steven Meyer
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": "Terry Salazar", "id": 1673632}, {"name": "Matthew Ho", "id": 4472193}, {"name": "Sharon Gilbert", "id": 1533345}, {"name": "Michael Burton", "id": 2395327}, {"name": "Mallory Andrews DDS", "id": 941827}, {"name": "Ryan Hall", "id": 4127871}, {"name": "Tracy Smith", "id": 1600615}, {"name": "Tracy Villarreal", "id": 1053863}, {"name": "Shannon Taylor", "id": 1622348}, {"name": "Edwin Taylor", "id": 1828653}, {"name": "Jason Reynolds", "id": 1501900}, {"name": "Steven Meyer", "id": 2288339}, {"name": "Gina King", "id": 2437400}, {"name": "Eric Williams", "id": 2476891}, {"name": "Kimberly Guerra", "id": 1352862}, {"name": "April Smith DDS", "id": 2470143}], "links": [{"source": 1673632, "target": 1501900}, {"source": 1673632, "target": 1533345}, {"source": 1673632, "target": 2288339}, {"source": 4472193, "target": 2476891}, {"source": 1533345, "target": 1828653}, {"source": 1533345, "target": 2288339}, {"source": 2395327, "target": 2288339}, {"source": 941827, "target": 1600615}, {"source": 4127871, "target": 2470143}, {"source": 1600615, "target": 2288339}, {"source": 1622348, "target": 2288339}]}
|
[
1673632,
4472193,
2470143,
1053863,
2437400,
1352862
] | 6 |
732 |
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: Debra Johnson, Stephanie Smith, Christian Franklin, Eddie Diaz, Christine Maxwell, James Chambers, Katie Li, Carlos White, Elizabeth Salas, Frank Thomas, Michael Lee, Sarah Nelson, Vanessa Montgomery, Joel Rice, Steven Riley, Molly Sparks, Emily Hunter, Shawn King, Kristi Franco, Cameron Mccann
- Fiendship connections: Stephanie Smith to Katie Li, Christian Franklin to Michael Lee, Christian Franklin to Eddie Diaz, Eddie Diaz to Frank Thomas, Eddie Diaz to Michael Lee, Christine Maxwell to Vanessa Montgomery, Katie Li to Joel Rice, Katie Li to Kristi Franco, Elizabeth Salas to Cameron Mccann, Michael Lee to Molly Sparks, Michael Lee to Emily Hunter, Michael Lee to Shawn King, Vanessa Montgomery to Emily Hunter, Joel Rice to Kristi Franco
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": "Debra Johnson", "id": 2493313}, {"name": "Stephanie Smith", "id": 3458946}, {"name": "Christian Franklin", "id": 5097736}, {"name": "Eddie Diaz", "id": 5413396}, {"name": "Christine Maxwell", "id": 5485976}, {"name": "James Chambers", "id": 2477594}, {"name": "Katie Li", "id": 2431664}, {"name": "Carlos White", "id": 5109040}, {"name": "Elizabeth Salas", "id": 841919}, {"name": "Frank Thomas", "id": 4929216}, {"name": "Michael Lee", "id": 5199170}, {"name": "Sarah Nelson", "id": 2432834}, {"name": "Vanessa Montgomery", "id": 5689155}, {"name": "Joel Rice", "id": 2407127}, {"name": "Steven Riley", "id": 2496090}, {"name": "Molly Sparks", "id": 5502692}, {"name": "Emily Hunter", "id": 5502707}, {"name": "Shawn King", "id": 5502710}, {"name": "Kristi Franco", "id": 2537975}, {"name": "Cameron Mccann", "id": 1231357}], "links": [{"source": 3458946, "target": 2431664}, {"source": 5097736, "target": 5199170}, {"source": 5097736, "target": 5413396}, {"source": 5413396, "target": 4929216}, {"source": 5413396, "target": 5199170}, {"source": 5485976, "target": 5689155}, {"source": 2431664, "target": 2407127}, {"source": 2431664, "target": 2537975}, {"source": 841919, "target": 1231357}, {"source": 5199170, "target": 5502692}, {"source": 5199170, "target": 5502707}, {"source": 5199170, "target": 5502710}, {"source": 5689155, "target": 5502707}, {"source": 2407127, "target": 2537975}]}
|
[
2493313,
2431664,
4929216,
2477594,
5109040,
1231357,
2432834,
2496090
] | 8 |
733 |
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: Tyler May, Melanie Sloan, Michael Knight, Christina Young, Shirley Greene, Kimberly Dickerson, Rose Daniel, Jesse Osborne, Casey Little, Michael Greer, Daniel Young, Brenda Dawson, Brent Schultz, Erica Lynn, Bryan Johnson, Jacob Wallace, Jacob Smith MD, John Knight, Tonya Chavez, Tom Key, Jennifer Torres, Malik Gomez
- Fiendship connections: Tyler May to Michael Knight, Tyler May to Bryan Johnson, Melanie Sloan to Brenda Dawson, Melanie Sloan to Daniel Young, Melanie Sloan to Brent Schultz, Melanie Sloan to Tonya Chavez, Melanie Sloan to Bryan Johnson, Melanie Sloan to Jacob Smith MD, Melanie Sloan to John Knight, Melanie Sloan to Shirley Greene, Michael Knight to Tom Key, Christina Young to Rose Daniel, Christina Young to Michael Greer, Christina Young to Jacob Wallace, Kimberly Dickerson to Tom Key, Kimberly Dickerson to Rose Daniel, Kimberly Dickerson to Malik Gomez, Kimberly Dickerson to Erica Lynn, Rose Daniel to Jesse Osborne, Rose Daniel to Jacob Wallace, Rose Daniel to Casey Little, Jesse Osborne to Erica Lynn, Casey Little to Tom Key, Casey Little to Malik Gomez, Erica Lynn to Tom Key, Bryan Johnson to Jennifer 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": "Tyler May", "id": 5350401}, {"name": "Melanie Sloan", "id": 4974488}, {"name": "Michael Knight", "id": 4964519}, {"name": "Christina Young", "id": 4965162}, {"name": "Shirley Greene", "id": 5245231}, {"name": "Kimberly Dickerson", "id": 4953521}, {"name": "Rose Daniel", "id": 4964529}, {"name": "Jesse Osborne", "id": 4953524}, {"name": "Casey Little", "id": 4964540}, {"name": "Michael Greer", "id": 4964544}, {"name": "Daniel Young", "id": 5436225}, {"name": "Brenda Dawson", "id": 5485379}, {"name": "Brent Schultz", "id": 5745987}, {"name": "Erica Lynn", "id": 5210691}, {"name": "Bryan Johnson", "id": 5360458}, {"name": "Jacob Wallace", "id": 5049807}, {"name": "Jacob Smith MD", "id": 5606869}, {"name": "John Knight", "id": 6025824}, {"name": "Tonya Chavez", "id": 5853927}, {"name": "Tom Key", "id": 4944489}, {"name": "Jennifer Torres", "id": 5229804}, {"name": "Malik Gomez", "id": 4964600}], "links": [{"source": 5350401, "target": 4964519}, {"source": 5350401, "target": 5360458}, {"source": 4974488, "target": 5485379}, {"source": 4974488, "target": 5436225}, {"source": 4974488, "target": 5745987}, {"source": 4974488, "target": 5853927}, {"source": 4974488, "target": 5360458}, {"source": 4974488, "target": 5606869}, {"source": 4974488, "target": 6025824}, {"source": 4974488, "target": 5245231}, {"source": 4964519, "target": 4944489}, {"source": 4965162, "target": 4964529}, {"source": 4965162, "target": 4964544}, {"source": 4965162, "target": 5049807}, {"source": 4953521, "target": 4944489}, {"source": 4953521, "target": 4964529}, {"source": 4953521, "target": 4964600}, {"source": 4953521, "target": 5210691}, {"source": 4964529, "target": 4953524}, {"source": 4964529, "target": 5049807}, {"source": 4964529, "target": 4964540}, {"source": 4953524, "target": 5210691}, {"source": 4964540, "target": 4944489}, {"source": 4964540, "target": 4964600}, {"source": 5210691, "target": 4944489}, {"source": 5360458, "target": 5229804}]}
|
[
5350401
] | 1 |
734 |
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 Tran, Christina Scott, Michael Gibson, Brenda Vega, James Franklin, William Phillips, Michelle Francis, Lori Long, Robert Colon, Daniel Mcguire, Gina King, Amber Campbell, Martin Morris, Roger Martin, Christine Brown, Jennifer Washington, Timothy Rodriguez, Jennifer Willis, Amanda Bryant
- Fiendship connections: Heather Tran to Gina King, Heather Tran to Christine Brown, Heather Tran to Lori Long, Christina Scott to Robert Colon, Christina Scott to Brenda Vega, Michael Gibson to Amber Campbell, Michael Gibson to Jennifer Washington, William Phillips to Amanda Bryant, William Phillips to Timothy Rodriguez, William Phillips to Martin Morris, Michelle Francis to Timothy Rodriguez, Lori Long to Gina King, Martin Morris to Jennifer Willis, Martin Morris to Roger 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": "Heather Tran", "id": 2551940}, {"name": "Christina Scott", "id": 2439822}, {"name": "Michael Gibson", "id": 2323481}, {"name": "Brenda Vega", "id": 3642011}, {"name": "James Franklin", "id": 2472609}, {"name": "William Phillips", "id": 496291}, {"name": "Michelle Francis", "id": 179371}, {"name": "Lori Long", "id": 2498876}, {"name": "Robert Colon", "id": 2439747}, {"name": "Daniel Mcguire", "id": 2451145}, {"name": "Gina King", "id": 2405334}, {"name": "Amber Campbell", "id": 1510742}, {"name": "Martin Morris", "id": 258777}, {"name": "Roger Martin", "id": 2010}, {"name": "Christine Brown", "id": 2458972}, {"name": "Jennifer Washington", "id": 1543904}, {"name": "Timothy Rodriguez", "id": 156010}, {"name": "Jennifer Willis", "id": 1003}, {"name": "Amanda Bryant", "id": 14065}], "links": [{"source": 2551940, "target": 2405334}, {"source": 2551940, "target": 2458972}, {"source": 2551940, "target": 2498876}, {"source": 2439822, "target": 2439747}, {"source": 2439822, "target": 3642011}, {"source": 2323481, "target": 1510742}, {"source": 2323481, "target": 1543904}, {"source": 496291, "target": 14065}, {"source": 496291, "target": 156010}, {"source": 496291, "target": 258777}, {"source": 179371, "target": 156010}, {"source": 2498876, "target": 2405334}, {"source": 258777, "target": 1003}, {"source": 258777, "target": 2010}]}
|
[
2498876,
2439747,
1543904,
2472609,
496291,
2451145
] | 6 |
735 |
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: Jillian Kelly, Brandi Wang, Connie Waller, Kevin Noble, Karen Blair, Jacob Young, Jeffrey Bradley III, Yolanda Sanchez, Dwayne Robertson, Holly Cook, Nancy Jimenez, Shannon Little, Daniel Carson, Michael Blackburn, Brian Mccarty, Courtney Ward, Jason Curry, Justin Stanton, Kevin Love, Katrina Graves, Tracie Bates, Steven Gamble, Brandon Silva, Dr. Lucas Morris DDS, Patty Stokes, Patricia Wilson
- Fiendship connections: Jillian Kelly to Tracie Bates, Jillian Kelly to Karen Blair, Jillian Kelly to Jacob Young, Jillian Kelly to Dwayne Robertson, Connie Waller to Katrina Graves, Connie Waller to Steven Gamble, Connie Waller to Nancy Jimenez, Kevin Noble to Brian Mccarty, Holly Cook to Shannon Little, Daniel Carson to Jason Curry, Daniel Carson to Justin Stanton, Daniel Carson to Kevin Love, Michael Blackburn to Tracie Bates, Jason Curry to Justin Stanton, Jason Curry to Kevin Love, Jason Curry to Dr. Lucas Morris DDS, Jason Curry to Patty Stokes, Jason Curry to Patricia Wilson, Katrina Graves to Steven Gamble
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": "Jillian Kelly", "id": 2421011}, {"name": "Brandi Wang", "id": 82708}, {"name": "Connie Waller", "id": 507930}, {"name": "Kevin Noble", "id": 4646172}, {"name": "Karen Blair", "id": 3124257}, {"name": "Jacob Young", "id": 3124259}, {"name": "Jeffrey Bradley III", "id": 2425898}, {"name": "Yolanda Sanchez", "id": 2420267}, {"name": "Dwayne Robertson", "id": 3124268}, {"name": "Holly Cook", "id": 5396526}, {"name": "Nancy Jimenez", "id": 138161}, {"name": "Shannon Little", "id": 5081653}, {"name": "Daniel Carson", "id": 82230}, {"name": "Michael Blackburn", "id": 2420665}, {"name": "Brian Mccarty", "id": 2483265}, {"name": "Courtney Ward", "id": 2416211}, {"name": "Jason Curry", "id": 430165}, {"name": "Justin Stanton", "id": 430166}, {"name": "Kevin Love", "id": 430167}, {"name": "Katrina Graves", "id": 728}, {"name": "Tracie Bates", "id": 2419161}, {"name": "Steven Gamble", "id": 12390}, {"name": "Brandon Silva", "id": 2424694}, {"name": "Dr. Lucas Morris DDS", "id": 713081}, {"name": "Patty Stokes", "id": 713082}, {"name": "Patricia Wilson", "id": 713083}], "links": [{"source": 2421011, "target": 2419161}, {"source": 2421011, "target": 3124257}, {"source": 2421011, "target": 3124259}, {"source": 2421011, "target": 3124268}, {"source": 507930, "target": 728}, {"source": 507930, "target": 12390}, {"source": 507930, "target": 138161}, {"source": 4646172, "target": 2483265}, {"source": 5396526, "target": 5081653}, {"source": 82230, "target": 430165}, {"source": 82230, "target": 430166}, {"source": 82230, "target": 430167}, {"source": 2420665, "target": 2419161}, {"source": 430165, "target": 430166}, {"source": 430165, "target": 430167}, {"source": 430165, "target": 713081}, {"source": 430165, "target": 713082}, {"source": 430165, "target": 713083}, {"source": 728, "target": 12390}]}
|
[
3124257,
82708,
728,
2483265,
2425898,
2420267,
5081653,
430165,
2416211,
2424694
] | 10 |
736 |
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 Wilson, Traci Morales, Kathleen Fisher, Michael Johnson, Ronald Taylor, Alicia Woods, Jose Jones, Raymond Miller, Scott Brown, Shannon Davis, Michelle Valentine, Joshua White, Amanda Thomas, Dakota Jones, Kristy Lewis
- Fiendship connections: Christina Wilson to Kristy Lewis, Traci Morales to Ronald Taylor, Kathleen Fisher to Ronald Taylor, Michael Johnson to Dakota Jones, Ronald Taylor to Raymond Miller, Jose Jones to Dakota Jones, Jose Jones to Joshua White, Shannon Davis to Dakota Jones
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 Wilson", "id": 2405312}, {"name": "Traci Morales", "id": 3432128}, {"name": "Kathleen Fisher", "id": 3063680}, {"name": "Michael Johnson", "id": 5800836}, {"name": "Ronald Taylor", "id": 2429769}, {"name": "Alicia Woods", "id": 2472713}, {"name": "Jose Jones", "id": 5014219}, {"name": "Raymond Miller", "id": 3432209}, {"name": "Scott Brown", "id": 5404882}, {"name": "Shannon Davis", "id": 5133843}, {"name": "Michelle Valentine", "id": 2446580}, {"name": "Joshua White", "id": 5077302}, {"name": "Amanda Thomas", "id": 4968281}, {"name": "Dakota Jones", "id": 4936956}, {"name": "Kristy Lewis", "id": 2549087}], "links": [{"source": 2405312, "target": 2549087}, {"source": 3432128, "target": 2429769}, {"source": 3063680, "target": 2429769}, {"source": 5800836, "target": 4936956}, {"source": 2429769, "target": 3432209}, {"source": 5014219, "target": 4936956}, {"source": 5014219, "target": 5077302}, {"source": 5133843, "target": 4936956}]}
|
[
2405312,
3432128,
5800836,
2472713,
5404882,
2446580,
4968281
] | 7 |
737 |
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: Anthony Duke, Mrs. Ashley Harris, Sharon Ortega, Joe Banks, Nicole Richardson, Dean Mooney, Robin Mckinney, Terry Johnson, Danielle Owens, Terri Bailey, Monica Proctor, Lydia Davis, Jesse Gomez, Joshua Rivas, Albert Flynn, Bradley Bailey, Audrey Ferguson, Erika Santos, Sean Chandler
- Fiendship connections: Mrs. Ashley Harris to Joe Banks, Mrs. Ashley Harris to Joshua Rivas, Sharon Ortega to Lydia Davis, Joe Banks to Lydia Davis, Joe Banks to Dean Mooney, Nicole Richardson to Lydia Davis, Robin Mckinney to Lydia Davis, Terry Johnson to Erika Santos, Terry Johnson to Bradley Bailey, Danielle Owens to Monica Proctor, Danielle Owens to Erika Santos, Terri Bailey to Monica Proctor, Terri Bailey to Jesse Gomez, Lydia Davis to Bradley Bailey, Lydia Davis to Audrey Ferguson, Jesse Gomez to Sean Chandler, Joshua Rivas to Albert Flynn
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": "Anthony Duke", "id": 4980490}, {"name": "Mrs. Ashley Harris", "id": 5232781}, {"name": "Sharon Ortega", "id": 4963862}, {"name": "Joe Banks", "id": 4934299}, {"name": "Nicole Richardson", "id": 5089956}, {"name": "Dean Mooney", "id": 5182888}, {"name": "Robin Mckinney", "id": 5838122}, {"name": "Terry Johnson", "id": 4954539}, {"name": "Danielle Owens", "id": 4952379}, {"name": "Terri Bailey", "id": 4951229}, {"name": "Monica Proctor", "id": 4947006}, {"name": "Lydia Davis", "id": 5018189}, {"name": "Jesse Gomez", "id": 4965201}, {"name": "Joshua Rivas", "id": 5058391}, {"name": "Albert Flynn", "id": 5240154}, {"name": "Bradley Bailey", "id": 5192284}, {"name": "Audrey Ferguson", "id": 5649774}, {"name": "Erika Santos", "id": 5082864}, {"name": "Sean Chandler", "id": 5181438}], "links": [{"source": 5232781, "target": 4934299}, {"source": 5232781, "target": 5058391}, {"source": 4963862, "target": 5018189}, {"source": 4934299, "target": 5018189}, {"source": 4934299, "target": 5182888}, {"source": 5089956, "target": 5018189}, {"source": 5838122, "target": 5018189}, {"source": 4954539, "target": 5082864}, {"source": 4954539, "target": 5192284}, {"source": 4952379, "target": 4947006}, {"source": 4952379, "target": 5082864}, {"source": 4951229, "target": 4947006}, {"source": 4951229, "target": 4965201}, {"source": 5018189, "target": 5192284}, {"source": 5018189, "target": 5649774}, {"source": 4965201, "target": 5181438}, {"source": 5058391, "target": 5240154}]}
|
[
4980490,
5089956
] | 2 |
738 |
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: Jose Oliver, Jason Gallegos DVM, Tiffany Hernandez, Joshua Fleming, Amanda Clark, Tristan Ramsey, Jessica Conner, Jonathan Whitney, Christina Middleton, Kristine Gray, Brandy Smith, Cassandra Martinez, Matthew Phillips, Jeffrey Johnson, Patricia Fry
- Fiendship connections: Jose Oliver to Christina Middleton, Jason Gallegos DVM to Jeffrey Johnson, Jason Gallegos DVM to Jonathan Whitney, Jason Gallegos DVM to Cassandra Martinez, Joshua Fleming to Tristan Ramsey, Amanda Clark to Jessica Conner, Tristan Ramsey to Jessica Conner, Jonathan Whitney to Jeffrey Johnson, Jonathan Whitney to Cassandra Martinez, Jonathan Whitney to Matthew Phillips, Kristine Gray to Matthew Phillips, Brandy Smith to Matthew Phillips, Cassandra Martinez to Jeffrey Johnson, Cassandra Martinez to Matthew Phillips, Matthew Phillips to Jeffrey Johnson
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": "Jose Oliver", "id": 5935584}, {"name": "Jason Gallegos DVM", "id": 2431224}, {"name": "Tiffany Hernandez", "id": 2453954}, {"name": "Joshua Fleming", "id": 5309221}, {"name": "Amanda Clark", "id": 4977349}, {"name": "Tristan Ramsey", "id": 5309225}, {"name": "Jessica Conner", "id": 5056586}, {"name": "Jonathan Whitney", "id": 2407467}, {"name": "Christina Middleton", "id": 5348110}, {"name": "Kristine Gray", "id": 2444462}, {"name": "Brandy Smith", "id": 2444241}, {"name": "Cassandra Martinez", "id": 2407698}, {"name": "Matthew Phillips", "id": 2603987}, {"name": "Jeffrey Johnson", "id": 2405784}, {"name": "Patricia Fry", "id": 2405434}], "links": [{"source": 5935584, "target": 5348110}, {"source": 2431224, "target": 2405784}, {"source": 2431224, "target": 2407467}, {"source": 2431224, "target": 2407698}, {"source": 5309221, "target": 5309225}, {"source": 4977349, "target": 5056586}, {"source": 5309225, "target": 5056586}, {"source": 2407467, "target": 2405784}, {"source": 2407467, "target": 2407698}, {"source": 2407467, "target": 2603987}, {"source": 2444462, "target": 2603987}, {"source": 2444241, "target": 2603987}, {"source": 2407698, "target": 2405784}, {"source": 2407698, "target": 2603987}, {"source": 2603987, "target": 2405784}]}
|
[
5935584,
2405784,
2453954,
4977349,
2405434
] | 5 |
739 |
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: Richard Reynolds, Chris Ferguson, Michelle Bridges, Matthew Reyes, Joshua Smith, Sandra Thompson, Sarah Johnson, Heather Johnson, Andrea Sanchez, Tracy Roach, Alison Warner, Gabriel Morrison, Daniel Tran, Patrick Davidson, Joshua Ferguson, Daniel Hill
- Fiendship connections: Chris Ferguson to Joshua Smith, Chris Ferguson to Heather Johnson, Michelle Bridges to Sarah Johnson, Matthew Reyes to Sarah Johnson, Sandra Thompson to Joshua Ferguson, Sarah Johnson to Tracy Roach, Sarah Johnson to Andrea Sanchez, Andrea Sanchez to Patrick Davidson, Andrea Sanchez to Daniel Hill, Patrick Davidson to Daniel Hill
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": "Richard Reynolds", "id": 2497249}, {"name": "Chris Ferguson", "id": 4029634}, {"name": "Michelle Bridges", "id": 2387075}, {"name": "Matthew Reyes", "id": 2387076}, {"name": "Joshua Smith", "id": 2458692}, {"name": "Sandra Thompson", "id": 2479878}, {"name": "Sarah Johnson", "id": 2210759}, {"name": "Heather Johnson", "id": 2477288}, {"name": "Andrea Sanchez", "id": 1722659}, {"name": "Tracy Roach", "id": 1208742}, {"name": "Alison Warner", "id": 911813}, {"name": "Gabriel Morrison", "id": 2448840}, {"name": "Daniel Tran", "id": 2462761}, {"name": "Patrick Davidson", "id": 901453}, {"name": "Joshua Ferguson", "id": 4569904}, {"name": "Daniel Hill", "id": 1673336}], "links": [{"source": 4029634, "target": 2458692}, {"source": 4029634, "target": 2477288}, {"source": 2387075, "target": 2210759}, {"source": 2387076, "target": 2210759}, {"source": 2479878, "target": 4569904}, {"source": 2210759, "target": 1208742}, {"source": 2210759, "target": 1722659}, {"source": 1722659, "target": 901453}, {"source": 1722659, "target": 1673336}, {"source": 901453, "target": 1673336}]}
|
[
2497249,
2477288,
1722659,
4569904,
911813,
2448840,
2462761
] | 7 |
740 |
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 Martinez, Brittany Butler, Jennifer Dixon, Tammie Meza, Mr. Ronald Cooper II, Jeffery Burns, Jeremiah Bowman, Jeanette Rodriguez, Melanie Rhodes, Michael Norris, Barbara Mcdonald, Bryce Hill, Glenn Orr, Sarah Thompson, Lisa Randall, Justin Tran, Laura Massey, Alicia Sutton, Christopher Jones, Meghan Howard, Ethan Mendoza, Matthew Cruz
- Fiendship connections: Michael Martinez to Christopher Jones, Michael Martinez to Justin Tran, Michael Martinez to Mr. Ronald Cooper II, Michael Martinez to Bryce Hill, Michael Martinez to Matthew Cruz, Brittany Butler to Jeffery Burns, Jennifer Dixon to Mr. Ronald Cooper II, Jennifer Dixon to Ethan Mendoza, Jennifer Dixon to Jeanette Rodriguez, Jennifer Dixon to Alicia Sutton, Tammie Meza to Meghan Howard, Tammie Meza to Michael Norris, Mr. Ronald Cooper II to Christopher Jones, Mr. Ronald Cooper II to Matthew Cruz, Mr. Ronald Cooper II to Jeanette Rodriguez, Mr. Ronald Cooper II to Jeremiah Bowman, Mr. Ronald Cooper II to Sarah Thompson, Mr. Ronald Cooper II to Melanie Rhodes, Jeffery Burns to Michael Norris, Jeremiah Bowman to Alicia Sutton, Jeremiah Bowman to Sarah Thompson, Jeremiah Bowman to Glenn Orr, Jeanette Rodriguez to Sarah Thompson, Melanie Rhodes to Christopher Jones, Melanie Rhodes to Sarah Thompson, Michael Norris to Christopher Jones, Barbara Mcdonald to Ethan Mendoza, Barbara Mcdonald to Meghan Howard, Glenn Orr to Alicia Sutton, Sarah Thompson to Christopher Jones, Sarah Thompson to Justin Tran, Sarah Thompson to Matthew Cruz, Laura Massey to Alicia Sutton, Alicia Sutton to Matthew Cruz, Christopher Jones to Matthew Cruz, Meghan Howard to Ethan Mendoza
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 Martinez", "id": 2306}, {"name": "Brittany Butler", "id": 72457}, {"name": "Jennifer Dixon", "id": 1703}, {"name": "Tammie Meza", "id": 203565}, {"name": "Mr. Ronald Cooper II", "id": 10031}, {"name": "Jeffery Burns", "id": 25776}, {"name": "Jeremiah Bowman", "id": 60223}, {"name": "Jeanette Rodriguez", "id": 10054}, {"name": "Melanie Rhodes", "id": 232520}, {"name": "Michael Norris", "id": 45641}, {"name": "Barbara Mcdonald", "id": 29898}, {"name": "Bryce Hill", "id": 12361}, {"name": "Glenn Orr", "id": 311247}, {"name": "Sarah Thompson", "id": 10068}, {"name": "Lisa Randall", "id": 4821}, {"name": "Justin Tran", "id": 5460}, {"name": "Laura Massey", "id": 733793}, {"name": "Alicia Sutton", "id": 6498}, {"name": "Christopher Jones", "id": 2150}, {"name": "Meghan Howard", "id": 35565}, {"name": "Ethan Mendoza", "id": 24700}, {"name": "Matthew Cruz", "id": 20092}], "links": [{"source": 2306, "target": 2150}, {"source": 2306, "target": 5460}, {"source": 2306, "target": 10031}, {"source": 2306, "target": 12361}, {"source": 2306, "target": 20092}, {"source": 72457, "target": 25776}, {"source": 1703, "target": 10031}, {"source": 1703, "target": 24700}, {"source": 1703, "target": 10054}, {"source": 1703, "target": 6498}, {"source": 203565, "target": 35565}, {"source": 203565, "target": 45641}, {"source": 10031, "target": 2150}, {"source": 10031, "target": 20092}, {"source": 10031, "target": 10054}, {"source": 10031, "target": 60223}, {"source": 10031, "target": 10068}, {"source": 10031, "target": 232520}, {"source": 25776, "target": 45641}, {"source": 60223, "target": 6498}, {"source": 60223, "target": 10068}, {"source": 60223, "target": 311247}, {"source": 10054, "target": 10068}, {"source": 232520, "target": 2150}, {"source": 232520, "target": 10068}, {"source": 45641, "target": 2150}, {"source": 29898, "target": 24700}, {"source": 29898, "target": 35565}, {"source": 311247, "target": 6498}, {"source": 10068, "target": 2150}, {"source": 10068, "target": 5460}, {"source": 10068, "target": 20092}, {"source": 733793, "target": 6498}, {"source": 6498, "target": 20092}, {"source": 2150, "target": 20092}, {"source": 35565, "target": 24700}]}
|
[
2306,
4821
] | 2 |
741 |
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 Adams, Jeffrey Brock, Alice Rice, Melissa Smith, Matthew Mcmillan, Casey Reid, James Hahn, Megan Green, Melissa Lester, Stephen Gonzalez, Megan Moore, Antonio Singleton, David Mccormick MD, Kristina Vargas, Mark Berry, Adam Jackson Jr., Edward Nguyen, Anne Charles
- Fiendship connections: Dwayne Adams to Anne Charles, Jeffrey Brock to Megan Moore, Jeffrey Brock to Mark Berry, Jeffrey Brock to Alice Rice, Jeffrey Brock to Kristina Vargas, Alice Rice to Megan Moore, Alice Rice to Megan Green, Alice Rice to Kristina Vargas, Matthew Mcmillan to Megan Moore, Matthew Mcmillan to Mark Berry, Matthew Mcmillan to Kristina Vargas, Casey Reid to Edward Nguyen, Casey Reid to Anne Charles, Megan Green to Megan Moore, Megan Green to Kristina Vargas, Stephen Gonzalez to Kristina Vargas, Megan Moore to Antonio Singleton, Megan Moore to Mark Berry, Megan Moore to Kristina Vargas, David Mccormick MD to Anne Charles, Kristina Vargas to Mark Berry, Adam Jackson Jr. to Anne Charles
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 Adams", "id": 4424064}, {"name": "Jeffrey Brock", "id": 2488484}, {"name": "Alice Rice", "id": 2482341}, {"name": "Melissa Smith", "id": 2443238}, {"name": "Matthew Mcmillan", "id": 2447975}, {"name": "Casey Reid", "id": 3313818}, {"name": "James Hahn", "id": 2478311}, {"name": "Megan Green", "id": 2476040}, {"name": "Melissa Lester", "id": 2465178}, {"name": "Stephen Gonzalez", "id": 2418418}, {"name": "Megan Moore", "id": 2422291}, {"name": "Antonio Singleton", "id": 2422035}, {"name": "David Mccormick MD", "id": 4424058}, {"name": "Kristina Vargas", "id": 3027419}, {"name": "Mark Berry", "id": 2472991}, {"name": "Adam Jackson Jr.", "id": 4424061}, {"name": "Edward Nguyen", "id": 2464638}, {"name": "Anne Charles", "id": 2473247}], "links": [{"source": 4424064, "target": 2473247}, {"source": 2488484, "target": 2422291}, {"source": 2488484, "target": 2472991}, {"source": 2488484, "target": 2482341}, {"source": 2488484, "target": 3027419}, {"source": 2482341, "target": 2422291}, {"source": 2482341, "target": 2476040}, {"source": 2482341, "target": 3027419}, {"source": 2447975, "target": 2422291}, {"source": 2447975, "target": 2472991}, {"source": 2447975, "target": 3027419}, {"source": 3313818, "target": 2464638}, {"source": 3313818, "target": 2473247}, {"source": 2476040, "target": 2422291}, {"source": 2476040, "target": 3027419}, {"source": 2418418, "target": 3027419}, {"source": 2422291, "target": 2422035}, {"source": 2422291, "target": 2472991}, {"source": 2422291, "target": 3027419}, {"source": 4424058, "target": 2473247}, {"source": 3027419, "target": 2472991}, {"source": 4424061, "target": 2473247}]}
|
[
4424064,
2488484,
2443238,
2478311,
2465178
] | 5 |
742 |
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 Clarke, Richard Suarez, Michael Smith, Natasha Jackson, Chad Carlson, Elizabeth Long, Sandra Hancock, Linda Coffey, Andrew Pope, David Mullins, Mr. Trevor Hernandez MD, Robert Nguyen, Juan Garza, Kelly Ortiz, Kathleen Martin, Connie Thompson, Laura Brown, Lisa Baldwin, Michael Green, Thomas Flores, Teresa Sullivan, Christine Sullivan, Michael Lopez, Rebecca Franklin, Michael Manning, Jason Osborne, Christopher Rubio MD
- Fiendship connections: Mary Clarke to Christopher Rubio MD, Mary Clarke to Robert Nguyen, Mary Clarke to Chad Carlson, Richard Suarez to Lisa Baldwin, Richard Suarez to Christopher Rubio MD, Richard Suarez to Robert Nguyen, Richard Suarez to Chad Carlson, Michael Smith to Mr. Trevor Hernandez MD, Natasha Jackson to Kelly Ortiz, Chad Carlson to Lisa Baldwin, Chad Carlson to Christopher Rubio MD, Chad Carlson to Robert Nguyen, Chad Carlson to Jason Osborne, Sandra Hancock to Laura Brown, Sandra Hancock to Michael Lopez, Linda Coffey to Mr. Trevor Hernandez MD, Andrew Pope to Mr. Trevor Hernandez MD, David Mullins to Teresa Sullivan, Mr. Trevor Hernandez MD to Michael Manning, Robert Nguyen to Lisa Baldwin, Robert Nguyen to Christopher Rubio MD, Robert Nguyen to Jason Osborne, Kathleen Martin to Lisa Baldwin, Kathleen Martin to Christopher Rubio MD, Kathleen Martin to Jason Osborne, Lisa Baldwin to Christopher Rubio MD, Lisa Baldwin to Jason Osborne, Michael Green to Thomas Flores, Michael Green to Christine Sullivan, Thomas Flores to Christine Sullivan, Jason Osborne to Christopher Rubio MD
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 Clarke", "id": 2471433}, {"name": "Richard Suarez", "id": 2471313}, {"name": "Michael Smith", "id": 4940446}, {"name": "Natasha Jackson", "id": 5140769}, {"name": "Chad Carlson", "id": 2471585}, {"name": "Elizabeth Long", "id": 5046947}, {"name": "Sandra Hancock", "id": 2447656}, {"name": "Linda Coffey", "id": 5069224}, {"name": "Andrew Pope", "id": 4960684}, {"name": "David Mullins", "id": 5995191}, {"name": "Mr. Trevor Hernandez MD", "id": 5080888}, {"name": "Robert Nguyen", "id": 2471490}, {"name": "Juan Garza", "id": 2409032}, {"name": "Kelly Ortiz", "id": 6100556}, {"name": "Kathleen Martin", "id": 2442193}, {"name": "Connie Thompson", "id": 2407892}, {"name": "Laura Brown", "id": 2417240}, {"name": "Lisa Baldwin", "id": 2452056}, {"name": "Michael Green", "id": 355810}, {"name": "Thomas Flores", "id": 73826}, {"name": "Teresa Sullivan", "id": 4946411}, {"name": "Christine Sullivan", "id": 284267}, {"name": "Michael Lopez", "id": 3791469}, {"name": "Rebecca Franklin", "id": 2427373}, {"name": "Michael Manning", "id": 4977653}, {"name": "Jason Osborne", "id": 3672182}, {"name": "Christopher Rubio MD", "id": 2471294}], "links": [{"source": 2471433, "target": 2471294}, {"source": 2471433, "target": 2471490}, {"source": 2471433, "target": 2471585}, {"source": 2471313, "target": 2452056}, {"source": 2471313, "target": 2471294}, {"source": 2471313, "target": 2471490}, {"source": 2471313, "target": 2471585}, {"source": 4940446, "target": 5080888}, {"source": 5140769, "target": 6100556}, {"source": 2471585, "target": 2452056}, {"source": 2471585, "target": 2471294}, {"source": 2471585, "target": 2471490}, {"source": 2471585, "target": 3672182}, {"source": 2447656, "target": 2417240}, {"source": 2447656, "target": 3791469}, {"source": 5069224, "target": 5080888}, {"source": 4960684, "target": 5080888}, {"source": 5995191, "target": 4946411}, {"source": 5080888, "target": 4977653}, {"source": 2471490, "target": 2452056}, {"source": 2471490, "target": 2471294}, {"source": 2471490, "target": 3672182}, {"source": 2442193, "target": 2452056}, {"source": 2442193, "target": 2471294}, {"source": 2442193, "target": 3672182}, {"source": 2452056, "target": 2471294}, {"source": 2452056, "target": 3672182}, {"source": 355810, "target": 73826}, {"source": 355810, "target": 284267}, {"source": 73826, "target": 284267}, {"source": 3672182, "target": 2471294}]}
|
[
2471585,
5069224,
5140769,
5046947,
2447656,
4946411,
2409032,
2407892,
355810,
2427373
] | 10 |
743 |
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: Karen Lin, Kevin Smith, Krystal Kirk, Lori Smith, Daniel Vaughan, Darryl Coffey, Kathleen Burns, Amber Kirk, William Torres, Christopher Haas, Nicole Williams, Brittney Burns, Catherine Perez, Wendy Ritter, Mary Brown
- Fiendship connections: Karen Lin to Nicole Williams, Kevin Smith to Darryl Coffey, Krystal Kirk to Darryl Coffey, Lori Smith to Christopher Haas, Daniel Vaughan to Darryl Coffey, Darryl Coffey to William Torres, Darryl Coffey to Amber Kirk, Darryl Coffey to Brittney Burns, Darryl Coffey to Wendy Ritter, Wendy Ritter to Mary 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": "Karen Lin", "id": 3581729}, {"name": "Kevin Smith", "id": 2621794}, {"name": "Krystal Kirk", "id": 2621699}, {"name": "Lori Smith", "id": 3581677}, {"name": "Daniel Vaughan", "id": 2620942}, {"name": "Darryl Coffey", "id": 2407219}, {"name": "Kathleen Burns", "id": 2426900}, {"name": "Amber Kirk", "id": 2621429}, {"name": "William Torres", "id": 2621175}, {"name": "Christopher Haas", "id": 2436760}, {"name": "Nicole Williams", "id": 2436762}, {"name": "Brittney Burns", "id": 2621660}, {"name": "Catherine Perez", "id": 2456253}, {"name": "Wendy Ritter", "id": 2621726}, {"name": "Mary Brown", "id": 2503231}], "links": [{"source": 3581729, "target": 2436762}, {"source": 2621794, "target": 2407219}, {"source": 2621699, "target": 2407219}, {"source": 3581677, "target": 2436760}, {"source": 2620942, "target": 2407219}, {"source": 2407219, "target": 2621175}, {"source": 2407219, "target": 2621429}, {"source": 2407219, "target": 2621660}, {"source": 2407219, "target": 2621726}, {"source": 2621726, "target": 2503231}]}
|
[
3581729,
2621794,
2436760,
2426900,
2456253
] | 5 |
744 |
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: William Welch, Henry Osborn, Heather Cooper, Samantha Briggs, Jason Lamb, Timothy Garcia, Bonnie Casey, James Kelley, Casey Harris, Krista Perry, Regina Rojas, Jay Nelson, Sarah Little, David Murphy, Shawn Palmer, Alyssa Coleman
- Fiendship connections: Henry Osborn to Alyssa Coleman, Henry Osborn to Regina Rojas, Henry Osborn to Krista Perry, Henry Osborn to Bonnie Casey, Henry Osborn to Jason Lamb, Heather Cooper to Jay Nelson, Samantha Briggs to Timothy Garcia, Samantha Briggs to Krista Perry, Jason Lamb to Regina Rojas, Timothy Garcia to Casey Harris, Bonnie Casey to James Kelley, Krista Perry to David Murphy, Regina Rojas to Alyssa Coleman, Jay Nelson to Shawn Palmer, Jay Nelson to Sarah Little, David Murphy to Alyssa Coleman
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": "William Welch", "id": 1022137}, {"name": "Henry Osborn", "id": 65766}, {"name": "Heather Cooper", "id": 853575}, {"name": "Samantha Briggs", "id": 297}, {"name": "Jason Lamb", "id": 454058}, {"name": "Timothy Garcia", "id": 33452}, {"name": "Bonnie Casey", "id": 75534}, {"name": "James Kelley", "id": 132304}, {"name": "Casey Harris", "id": 86642}, {"name": "Krista Perry", "id": 237075}, {"name": "Regina Rojas", "id": 11028}, {"name": "Jay Nelson", "id": 1138969}, {"name": "Sarah Little", "id": 899418}, {"name": "David Murphy", "id": 38012}, {"name": "Shawn Palmer", "id": 862557}, {"name": "Alyssa Coleman", "id": 4703}], "links": [{"source": 65766, "target": 4703}, {"source": 65766, "target": 11028}, {"source": 65766, "target": 237075}, {"source": 65766, "target": 75534}, {"source": 65766, "target": 454058}, {"source": 853575, "target": 1138969}, {"source": 297, "target": 33452}, {"source": 297, "target": 237075}, {"source": 454058, "target": 11028}, {"source": 33452, "target": 86642}, {"source": 75534, "target": 132304}, {"source": 237075, "target": 38012}, {"source": 11028, "target": 4703}, {"source": 1138969, "target": 862557}, {"source": 1138969, "target": 899418}, {"source": 38012, "target": 4703}]}
|
[
1022137,
65766,
1138969
] | 3 |
745 |
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 Chen, Daniel Adams, Michael Torres, Cynthia Schultz, Mrs. Sharon Burton, Jay Bush, John Smith, Nicholas Vasquez, Natasha Huffman, Micheal Johnson, Nathan Green, John Wood, Elizabeth Goodman, Dustin Wright, Courtney Price, Sara Long, Kevin Walker, Barbara Archer, Brenda Wade
- Fiendship connections: Daniel Adams to Nicholas Vasquez, Daniel Adams to Elizabeth Goodman, Michael Torres to Dustin Wright, Michael Torres to John Smith, Cynthia Schultz to John Smith, Mrs. Sharon Burton to Jay Bush, Jay Bush to Nathan Green, John Smith to Dustin Wright, John Smith to Sara Long, John Smith to Natasha Huffman, Natasha Huffman to John Wood, Nathan Green to Courtney Price, Nathan Green to Kevin Walker, Nathan Green to Barbara Archer, Nathan Green to Brenda Wade
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 Chen", "id": 2427910}, {"name": "Daniel Adams", "id": 2463885}, {"name": "Michael Torres", "id": 1565586}, {"name": "Cynthia Schultz", "id": 1059474}, {"name": "Mrs. Sharon Burton", "id": 2431378}, {"name": "Jay Bush", "id": 2707094}, {"name": "John Smith", "id": 1820311}, {"name": "Nicholas Vasquez", "id": 2471333}, {"name": "Natasha Huffman", "id": 1087924}, {"name": "Micheal Johnson", "id": 911925}, {"name": "Nathan Green", "id": 2427581}, {"name": "John Wood", "id": 1026776}, {"name": "Elizabeth Goodman", "id": 2473692}, {"name": "Dustin Wright", "id": 939101}, {"name": "Courtney Price", "id": 3339749}, {"name": "Sara Long", "id": 1075302}, {"name": "Kevin Walker", "id": 3339752}, {"name": "Barbara Archer", "id": 3339754}, {"name": "Brenda Wade", "id": 3339758}], "links": [{"source": 2463885, "target": 2471333}, {"source": 2463885, "target": 2473692}, {"source": 1565586, "target": 939101}, {"source": 1565586, "target": 1820311}, {"source": 1059474, "target": 1820311}, {"source": 2431378, "target": 2707094}, {"source": 2707094, "target": 2427581}, {"source": 1820311, "target": 939101}, {"source": 1820311, "target": 1075302}, {"source": 1820311, "target": 1087924}, {"source": 1087924, "target": 1026776}, {"source": 2427581, "target": 3339749}, {"source": 2427581, "target": 3339752}, {"source": 2427581, "target": 3339754}, {"source": 2427581, "target": 3339758}]}
|
[
2427910,
2473692,
1075302,
3339749,
911925
] | 5 |
746 |
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, Matthew Peterson, Christopher Ford, Stephen Webster, Christopher Herring, Amanda Webster, Kaitlyn Castillo, Joe Robinson, Mr. Kyle Erickson, Elaine Dodson, Melissa Evans, Travis Pace, Savannah Mitchell, Cheryl Castillo, Amanda Christian, Whitney Marks, Christina Gonzalez, Brenda Soto, Megan Brown, Christian Craig
- Fiendship connections: Nicholas Tapia to Joe Robinson, Nicholas Tapia to Elaine Dodson, Matthew Peterson to Travis Pace, Christopher Ford to Travis Pace, Stephen Webster to Travis Pace, Christopher Herring to Travis Pace, Amanda Webster to Travis Pace, Kaitlyn Castillo to Whitney Marks, Mr. Kyle Erickson to Megan Brown, Mr. Kyle Erickson to Brenda Soto, Mr. Kyle Erickson to Savannah Mitchell, Melissa Evans to Christian Craig, Travis Pace to Christian Craig, Amanda Christian to Whitney Marks
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": "Matthew Peterson", "id": 4728709}, {"name": "Christopher Ford", "id": 4728710}, {"name": "Stephen Webster", "id": 4728712}, {"name": "Christopher Herring", "id": 4728714}, {"name": "Amanda Webster", "id": 4728715}, {"name": "Kaitlyn Castillo", "id": 2406415}, {"name": "Joe Robinson", "id": 826017}, {"name": "Mr. Kyle Erickson", "id": 2485543}, {"name": "Elaine Dodson", "id": 1655080}, {"name": "Melissa Evans", "id": 2426670}, {"name": "Travis Pace", "id": 2489719}, {"name": "Savannah Mitchell", "id": 4677057}, {"name": "Cheryl Castillo", "id": 2460101}, {"name": "Amanda Christian", "id": 2436050}, {"name": "Whitney Marks", "id": 2626142}, {"name": "Christina Gonzalez", "id": 897258}, {"name": "Brenda Soto", "id": 2436334}, {"name": "Megan Brown", "id": 2405878}, {"name": "Christian Craig", "id": 3306487}], "links": [{"source": 1399297, "target": 826017}, {"source": 1399297, "target": 1655080}, {"source": 4728709, "target": 2489719}, {"source": 4728710, "target": 2489719}, {"source": 4728712, "target": 2489719}, {"source": 4728714, "target": 2489719}, {"source": 4728715, "target": 2489719}, {"source": 2406415, "target": 2626142}, {"source": 2485543, "target": 2405878}, {"source": 2485543, "target": 2436334}, {"source": 2485543, "target": 4677057}, {"source": 2426670, "target": 3306487}, {"source": 2489719, "target": 3306487}, {"source": 2436050, "target": 2626142}]}
|
[
1655080,
4728709,
2436050,
4677057,
2460101,
897258
] | 6 |
747 |
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 Guerra, Matthew Evans, Amanda Vaughn, Alex Hansen, Stephanie English, Regina Allen, Linda Perez, Matthew Thomas, Alexander Williams, Isabel Thomas, Madison Russell, Michele Jackson, Mackenzie Hall, Michelle Freeman, Emily Austin, Adam Lewis, Olivia Martin, Heather Daniels, Julie Espinoza
- Fiendship connections: Michael Guerra to Regina Allen, Matthew Evans to Stephanie English, Matthew Evans to Olivia Martin, Matthew Evans to Michele Jackson, Matthew Evans to Matthew Thomas, Amanda Vaughn to Linda Perez, Alex Hansen to Linda Perez, Stephanie English to Alexander Williams, Stephanie English to Olivia Martin, Stephanie English to Matthew Thomas, Regina Allen to Emily Austin, Regina Allen to Madison Russell, Regina Allen to Michelle Freeman, Matthew Thomas to Olivia Martin, Michele Jackson to Julie Espinoza, Michele Jackson to Olivia 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": "Michael Guerra", "id": 5032707}, {"name": "Matthew Evans", "id": 2460307}, {"name": "Amanda Vaughn", "id": 4566422}, {"name": "Alex Hansen", "id": 4566431}, {"name": "Stephanie English", "id": 2456227}, {"name": "Regina Allen", "id": 5561645}, {"name": "Linda Perez", "id": 2479795}, {"name": "Matthew Thomas", "id": 3977015}, {"name": "Alexander Williams", "id": 2449340}, {"name": "Isabel Thomas", "id": 2487356}, {"name": "Madison Russell", "id": 5035856}, {"name": "Michele Jackson", "id": 2484562}, {"name": "Mackenzie Hall", "id": 2455125}, {"name": "Michelle Freeman", "id": 5387479}, {"name": "Emily Austin", "id": 5026908}, {"name": "Adam Lewis", "id": 5012067}, {"name": "Olivia Martin", "id": 2460135}, {"name": "Heather Daniels", "id": 4934128}, {"name": "Julie Espinoza", "id": 2435965}], "links": [{"source": 5032707, "target": 5561645}, {"source": 2460307, "target": 2456227}, {"source": 2460307, "target": 2460135}, {"source": 2460307, "target": 2484562}, {"source": 2460307, "target": 3977015}, {"source": 4566422, "target": 2479795}, {"source": 4566431, "target": 2479795}, {"source": 2456227, "target": 2449340}, {"source": 2456227, "target": 2460135}, {"source": 2456227, "target": 3977015}, {"source": 5561645, "target": 5026908}, {"source": 5561645, "target": 5035856}, {"source": 5561645, "target": 5387479}, {"source": 3977015, "target": 2460135}, {"source": 2484562, "target": 2435965}, {"source": 2484562, "target": 2460135}]}
|
[
5032707,
2456227,
2479795,
2487356,
2455125,
5012067,
4934128
] | 7 |
748 |
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: Ann Stanley, John King, Tommy Pierce, Jeffrey Gardner, David Booker, Charles Brown, Rebecca Johnston, Bradley Hopkins, Jeffery Blair, Sarah Davis, Jacqueline Montgomery, Ryan Perkins II, Jennifer Moore, James Cooper, Keith Wright
- Fiendship connections: Ann Stanley to Sarah Davis, David Booker to Keith Wright, Charles Brown to Jennifer Moore, Rebecca Johnston to Sarah Davis, Bradley Hopkins to Jeffery Blair, Jennifer Moore to James Cooper
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": "Ann Stanley", "id": 2406304}, {"name": "John King", "id": 2469635}, {"name": "Tommy Pierce", "id": 2482499}, {"name": "Jeffrey Gardner", "id": 1180421}, {"name": "David Booker", "id": 4582471}, {"name": "Charles Brown", "id": 2448967}, {"name": "Rebecca Johnston", "id": 2444266}, {"name": "Bradley Hopkins", "id": 1109931}, {"name": "Jeffery Blair", "id": 836813}, {"name": "Sarah Davis", "id": 2614865}, {"name": "Jacqueline Montgomery", "id": 2462292}, {"name": "Ryan Perkins II", "id": 2421941}, {"name": "Jennifer Moore", "id": 3814263}, {"name": "James Cooper", "id": 2449372}, {"name": "Keith Wright", "id": 2480479}], "links": [{"source": 2406304, "target": 2614865}, {"source": 4582471, "target": 2480479}, {"source": 2448967, "target": 3814263}, {"source": 2444266, "target": 2614865}, {"source": 1109931, "target": 836813}, {"source": 3814263, "target": 2449372}]}
|
[
2406304,
2469635,
2482499,
1180421,
2480479,
3814263,
1109931,
2462292,
2421941
] | 9 |
749 |
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: Patricia Hines, Eric Davis, Kathleen Turner, Steven Gordon, Jonathan Martinez, David Young, Nathan Gibbs, Chad Chang, Amber Griffin, James Aguirre, Victoria Wood, Ashley Randolph, James Anderson, Mary Santiago, Michael Clark, Madison Parsons, Stacy Flores
- Fiendship connections: Patricia Hines to Madison Parsons, Patricia Hines to James Anderson, Eric Davis to Mary Santiago, Kathleen Turner to Ashley Randolph, Steven Gordon to Amber Griffin, Jonathan Martinez to Madison Parsons, Jonathan Martinez to Ashley Randolph, David Young to Chad Chang, David Young to Victoria Wood, David Young to Madison Parsons, David Young to Ashley Randolph, Nathan Gibbs to Michael Clark, Chad Chang to James Aguirre, Chad Chang to Amber Griffin, Chad Chang to Victoria Wood, Chad Chang to Madison Parsons, Amber Griffin to Stacy Flores, Amber Griffin to Madison Parsons, James Aguirre to Stacy Flores, James Aguirre to Michael Clark, James Aguirre to Madison Parsons, James Aguirre to James Anderson, Victoria Wood to Stacy Flores, Victoria Wood to Ashley Randolph, Ashley Randolph to Stacy Flores, Ashley Randolph to Madison Parsons, James Anderson to Michael Clark, Mary Santiago to Michael 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": "Patricia Hines", "id": 1205857}, {"name": "Eric Davis", "id": 1012805}, {"name": "Kathleen Turner", "id": 1356102}, {"name": "Steven Gordon", "id": 1102264}, {"name": "Jonathan Martinez", "id": 1354568}, {"name": "David Young", "id": 905096}, {"name": "Nathan Gibbs", "id": 814826}, {"name": "Chad Chang", "id": 1218219}, {"name": "Amber Griffin", "id": 941933}, {"name": "James Aguirre", "id": 848976}, {"name": "Victoria Wood", "id": 967344}, {"name": "Ashley Randolph", "id": 1424211}, {"name": "James Anderson", "id": 1481813}, {"name": "Mary Santiago", "id": 836920}, {"name": "Michael Clark", "id": 1212377}, {"name": "Madison Parsons", "id": 1370588}, {"name": "Stacy Flores", "id": 905182}], "links": [{"source": 1205857, "target": 1370588}, {"source": 1205857, "target": 1481813}, {"source": 1012805, "target": 836920}, {"source": 1356102, "target": 1424211}, {"source": 1102264, "target": 941933}, {"source": 1354568, "target": 1370588}, {"source": 1354568, "target": 1424211}, {"source": 905096, "target": 1218219}, {"source": 905096, "target": 967344}, {"source": 905096, "target": 1370588}, {"source": 905096, "target": 1424211}, {"source": 814826, "target": 1212377}, {"source": 1218219, "target": 848976}, {"source": 1218219, "target": 941933}, {"source": 1218219, "target": 967344}, {"source": 1218219, "target": 1370588}, {"source": 941933, "target": 905182}, {"source": 941933, "target": 1370588}, {"source": 848976, "target": 905182}, {"source": 848976, "target": 1212377}, {"source": 848976, "target": 1370588}, {"source": 848976, "target": 1481813}, {"source": 967344, "target": 905182}, {"source": 967344, "target": 1424211}, {"source": 1424211, "target": 905182}, {"source": 1424211, "target": 1370588}, {"source": 1481813, "target": 1212377}, {"source": 836920, "target": 1212377}]}
|
[
1205857
] | 1 |
750 |
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: Jordan Gibson, Sarah Thompson, Ricky Cobb, Robert Thomas, Jessica Mcdaniel, Lisa Gibson, Tiffany Best, Paula Brown, Christina Scott, Michael Thomas, William Delgado, Steven Burns, Jacob Rasmussen, Dr. Nicholas Fleming DDS, Monica Brown, Raymond Sanchez, David Stevens, Robert Hendricks, Jenna Jordan, Jeffrey Montgomery, Andrea Gonzalez, Mark Arias, Matthew Weaver, James Briggs, Wendy Morris, Wesley Clark, Denise Robinson, Kent Taylor, James Fleming PhD
- Fiendship connections: Ricky Cobb to Kent Taylor, Jessica Mcdaniel to Matthew Weaver, Lisa Gibson to Kent Taylor, Tiffany Best to Matthew Weaver, Paula Brown to David Stevens, Paula Brown to Steven Burns, Michael Thomas to Wesley Clark, Michael Thomas to Denise Robinson, Steven Burns to David Stevens, Steven Burns to Jenna Jordan, Steven Burns to Monica Brown, Steven Burns to Mark Arias, Jacob Rasmussen to Kent Taylor, David Stevens to Jenna Jordan, Robert Hendricks to Wesley Clark, Robert Hendricks to Denise Robinson, Andrea Gonzalez to Kent Taylor, Matthew Weaver to James Briggs, James Briggs to Wendy Morris, Wesley Clark to Denise Robinson
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": "Jordan Gibson", "id": 2467072}, {"name": "Sarah Thompson", "id": 2477569}, {"name": "Ricky Cobb", "id": 2448135}, {"name": "Robert Thomas", "id": 2472971}, {"name": "Jessica Mcdaniel", "id": 2455054}, {"name": "Lisa Gibson", "id": 2463121}, {"name": "Tiffany Best", "id": 2457752}, {"name": "Paula Brown", "id": 4971422}, {"name": "Christina Scott", "id": 5037351}, {"name": "Michael Thomas", "id": 2431661}, {"name": "William Delgado", "id": 5091248}, {"name": "Steven Burns", "id": 5000243}, {"name": "Jacob Rasmussen", "id": 2451763}, {"name": "Dr. Nicholas Fleming DDS", "id": 5022132}, {"name": "Monica Brown", "id": 5000248}, {"name": "Raymond Sanchez", "id": 2431673}, {"name": "David Stevens", "id": 4946361}, {"name": "Robert Hendricks", "id": 2405691}, {"name": "Jenna Jordan", "id": 4946363}, {"name": "Jeffrey Montgomery", "id": 5144381}, {"name": "Andrea Gonzalez", "id": 2475329}, {"name": "Mark Arias", "id": 5000260}, {"name": "Matthew Weaver", "id": 2868172}, {"name": "James Briggs", "id": 2413527}, {"name": "Wendy Morris", "id": 2413535}, {"name": "Wesley Clark", "id": 2431845}, {"name": "Denise Robinson", "id": 2595189}, {"name": "Kent Taylor", "id": 3064822}, {"name": "James Fleming PhD", "id": 5417718}], "links": [{"source": 2448135, "target": 3064822}, {"source": 2455054, "target": 2868172}, {"source": 2463121, "target": 3064822}, {"source": 2457752, "target": 2868172}, {"source": 4971422, "target": 4946361}, {"source": 4971422, "target": 5000243}, {"source": 2431661, "target": 2431845}, {"source": 2431661, "target": 2595189}, {"source": 5000243, "target": 4946361}, {"source": 5000243, "target": 4946363}, {"source": 5000243, "target": 5000248}, {"source": 5000243, "target": 5000260}, {"source": 2451763, "target": 3064822}, {"source": 4946361, "target": 4946363}, {"source": 2405691, "target": 2431845}, {"source": 2405691, "target": 2595189}, {"source": 2475329, "target": 3064822}, {"source": 2868172, "target": 2413527}, {"source": 2413527, "target": 2413535}, {"source": 2431845, "target": 2595189}]}
|
[
2467072,
2477569,
2475329,
2472971,
2868172,
5000260,
5037351,
2431845,
5091248,
5022132,
2431673,
5144381,
5417718
] | 13 |
751 |
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 Greer, Nicolas Flynn, Paul Dunn, Ryan Mcgee, Taylor Perez, Amanda White, Meghan Obrien, Heather Roberts, Catherine Macdonald, Troy Ballard, Ronald Cruz, Peter Coleman, Mary Todd, Erin Long, Jenna Fox, Mark Cook
- Fiendship connections: Nicolas Flynn to Erin Long, Paul Dunn to Erin Long, Taylor Perez to Troy Ballard, Taylor Perez to Jenna Fox, Taylor Perez to Ronald Cruz, Taylor Perez to Catherine Macdonald, Amanda White to Troy Ballard, Meghan Obrien to Ronald Cruz, Meghan Obrien to Catherine Macdonald, Meghan Obrien to Peter Coleman, Heather Roberts to Erin Long, Mary Todd to Erin Long, Mary Todd to Mark Cook, Erin Long to Mark Cook
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 Greer", "id": 1122432}, {"name": "Nicolas Flynn", "id": 2451972}, {"name": "Paul Dunn", "id": 2451909}, {"name": "Ryan Mcgee", "id": 1244198}, {"name": "Taylor Perez", "id": 1891143}, {"name": "Amanda White", "id": 1252486}, {"name": "Meghan Obrien", "id": 960395}, {"name": "Heather Roberts", "id": 3870093}, {"name": "Catherine Macdonald", "id": 1835502}, {"name": "Troy Ballard", "id": 988846}, {"name": "Ronald Cruz", "id": 1295152}, {"name": "Peter Coleman", "id": 1835505}, {"name": "Mary Todd", "id": 2412499}, {"name": "Erin Long", "id": 2451929}, {"name": "Jenna Fox", "id": 1275642}, {"name": "Mark Cook", "id": 2850655}], "links": [{"source": 2451972, "target": 2451929}, {"source": 2451909, "target": 2451929}, {"source": 1891143, "target": 988846}, {"source": 1891143, "target": 1275642}, {"source": 1891143, "target": 1295152}, {"source": 1891143, "target": 1835502}, {"source": 1252486, "target": 988846}, {"source": 960395, "target": 1295152}, {"source": 960395, "target": 1835502}, {"source": 960395, "target": 1835505}, {"source": 3870093, "target": 2451929}, {"source": 2412499, "target": 2451929}, {"source": 2412499, "target": 2850655}, {"source": 2451929, "target": 2850655}]}
|
[
1122432,
2451972,
1244198,
1252486
] | 4 |
752 |
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: Katherine Bentley, Cory Garcia, Alicia Woods, Eric Boyer, Connie Mccann, Maria Lee, Mary Fisher, Dawn Figueroa, Savannah Rose, Sarah Lee, Audrey Cole, Thomas Miller, Marie Hunt, Debra Walker, Shannon Hines, Timothy Allen, Tracey Sanchez, Todd Castro, Anthony Flores, Wendy Woods, Nathaniel Washington, Linda Clark, William Porter II, Pamela Turner, Kimberly Rose
- Fiendship connections: Katherine Bentley to Thomas Miller, Cory Garcia to Pamela Turner, Cory Garcia to William Porter II, Alicia Woods to Wendy Woods, Alicia Woods to Timothy Allen, Eric Boyer to Dawn Figueroa, Eric Boyer to Pamela Turner, Connie Mccann to Sarah Lee, Maria Lee to Sarah Lee, Maria Lee to Nathaniel Washington, Mary Fisher to Sarah Lee, Dawn Figueroa to Pamela Turner, Dawn Figueroa to Audrey Cole, Audrey Cole to Pamela Turner, Thomas Miller to Todd Castro, Marie Hunt to Kimberly Rose, Marie Hunt to Shannon Hines, Debra Walker to Wendy Woods, Shannon Hines to Pamela Turner, Timothy Allen to Pamela Turner, Todd Castro to Wendy Woods, Anthony Flores to Pamela Turner, Wendy Woods to Pamela Turner, Nathaniel Washington to Linda Clark, Pamela Turner to Kimberly 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": "Katherine Bentley", "id": 3409538}, {"name": "Cory Garcia", "id": 4356740}, {"name": "Alicia Woods", "id": 2472713}, {"name": "Eric Boyer", "id": 2497930}, {"name": "Connie Mccann", "id": 4952331}, {"name": "Maria Lee", "id": 5069339}, {"name": "Mary Fisher", "id": 4950430}, {"name": "Dawn Figueroa", "id": 2428191}, {"name": "Savannah Rose", "id": 2459295}, {"name": "Sarah Lee", "id": 4950691}, {"name": "Audrey Cole", "id": 3119140}, {"name": "Thomas Miller", "id": 2471595}, {"name": "Marie Hunt", "id": 2493241}, {"name": "Debra Walker", "id": 2474445}, {"name": "Shannon Hines", "id": 4398289}, {"name": "Timothy Allen", "id": 4388050}, {"name": "Tracey Sanchez", "id": 5500499}, {"name": "Todd Castro", "id": 3113429}, {"name": "Anthony Flores", "id": 4398302}, {"name": "Wendy Woods", "id": 2473953}, {"name": "Nathaniel Washington", "id": 5169762}, {"name": "Linda Clark", "id": 5475814}, {"name": "William Porter II", "id": 2474348}, {"name": "Pamela Turner", "id": 2474227}, {"name": "Kimberly Rose", "id": 4398198}], "links": [{"source": 3409538, "target": 2471595}, {"source": 4356740, "target": 2474227}, {"source": 4356740, "target": 2474348}, {"source": 2472713, "target": 2473953}, {"source": 2472713, "target": 4388050}, {"source": 2497930, "target": 2428191}, {"source": 2497930, "target": 2474227}, {"source": 4952331, "target": 4950691}, {"source": 5069339, "target": 4950691}, {"source": 5069339, "target": 5169762}, {"source": 4950430, "target": 4950691}, {"source": 2428191, "target": 2474227}, {"source": 2428191, "target": 3119140}, {"source": 3119140, "target": 2474227}, {"source": 2471595, "target": 3113429}, {"source": 2493241, "target": 4398198}, {"source": 2493241, "target": 4398289}, {"source": 2474445, "target": 2473953}, {"source": 4398289, "target": 2474227}, {"source": 4388050, "target": 2474227}, {"source": 3113429, "target": 2473953}, {"source": 4398302, "target": 2474227}, {"source": 2473953, "target": 2474227}, {"source": 5169762, "target": 5475814}, {"source": 2474227, "target": 4398198}]}
|
[
2473953,
5169762,
2459295,
5500499
] | 4 |
753 |
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: Courtney Mckay, Patrick Kim, Austin Miranda, Anthony Walters, Alyssa Gomez, Kevin Wood, Terry Jacobson, Angelica Bean, Matthew Joseph, Emily Figueroa, Robert Hogan, James Grant, Bianca Hayes, Zachary Graham, Alyssa Hardy
- Fiendship connections: Courtney Mckay to Matthew Joseph, Patrick Kim to Matthew Joseph, Austin Miranda to Matthew Joseph, Alyssa Gomez to Kevin Wood, Alyssa Gomez to Zachary Graham, Alyssa Gomez to Alyssa Hardy, Alyssa Gomez to Terry Jacobson, Kevin Wood to Terry Jacobson, Angelica Bean to Matthew Joseph, Matthew Joseph to James Grant, Emily Figueroa to Bianca Hayes, Robert Hogan to Bianca Hayes
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": "Courtney Mckay", "id": 789190}, {"name": "Patrick Kim", "id": 901306}, {"name": "Austin Miranda", "id": 825097}, {"name": "Anthony Walters", "id": 786027}, {"name": "Alyssa Gomez", "id": 2094444}, {"name": "Kevin Wood", "id": 893548}, {"name": "Terry Jacobson", "id": 2045200}, {"name": "Angelica Bean", "id": 901308}, {"name": "Matthew Joseph", "id": 776819}, {"name": "Emily Figueroa", "id": 3919957}, {"name": "Robert Hogan", "id": 2454262}, {"name": "James Grant", "id": 901303}, {"name": "Bianca Hayes", "id": 2454426}, {"name": "Zachary Graham", "id": 1171580}, {"name": "Alyssa Hardy", "id": 1327359}], "links": [{"source": 789190, "target": 776819}, {"source": 901306, "target": 776819}, {"source": 825097, "target": 776819}, {"source": 2094444, "target": 893548}, {"source": 2094444, "target": 1171580}, {"source": 2094444, "target": 1327359}, {"source": 2094444, "target": 2045200}, {"source": 893548, "target": 2045200}, {"source": 901308, "target": 776819}, {"source": 776819, "target": 901303}, {"source": 3919957, "target": 2454426}, {"source": 2454262, "target": 2454426}]}
|
[
789190,
786027,
893548,
2454426
] | 4 |
754 |
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 Lawrence, Susan Hampton, Sydney White, Travis Williams, Jessica Anderson, Christina Moran, Samantha Madden, Todd Ferguson, Theresa Pollard, Stephen Jones, Jeffrey Sweeney, Julie Morris, Evelyn Rios, Valerie Smith, Christine Floyd, Michele Hughes, Rodney Campbell, Jessica Johnson, Ashley White, Bryan Rodriguez, Sandra Carter, Bryan Chaney, Elizabeth Jackson
- Fiendship connections: Christina Lawrence to Bryan Rodriguez, Christina Lawrence to Sydney White, Susan Hampton to Valerie Smith, Susan Hampton to Theresa Pollard, Sydney White to Bryan Rodriguez, Travis Williams to Jessica Anderson, Travis Williams to Christina Moran, Travis Williams to Todd Ferguson, Jessica Anderson to Christina Moran, Samantha Madden to Julie Morris, Theresa Pollard to Jessica Johnson, Stephen Jones to Julie Morris, Julie Morris to Christine Floyd, Julie Morris to Rodney 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": "Christina Lawrence", "id": 3066633}, {"name": "Susan Hampton", "id": 5277193}, {"name": "Sydney White", "id": 2459663}, {"name": "Travis Williams", "id": 5010066}, {"name": "Jessica Anderson", "id": 4934939}, {"name": "Christina Moran", "id": 4937373}, {"name": "Samantha Madden", "id": 1495710}, {"name": "Todd Ferguson", "id": 4991008}, {"name": "Theresa Pollard", "id": 5675049}, {"name": "Stephen Jones", "id": 1780142}, {"name": "Jeffrey Sweeney", "id": 4950449}, {"name": "Julie Morris", "id": 1691067}, {"name": "Evelyn Rios", "id": 5520188}, {"name": "Valerie Smith", "id": 5331916}, {"name": "Christine Floyd", "id": 1229517}, {"name": "Michele Hughes", "id": 5191503}, {"name": "Rodney Campbell", "id": 1462481}, {"name": "Jessica Johnson", "id": 5439447}, {"name": "Ashley White", "id": 4966747}, {"name": "Bryan Rodriguez", "id": 2420450}, {"name": "Sandra Carter", "id": 5207410}, {"name": "Bryan Chaney", "id": 4927349}, {"name": "Elizabeth Jackson", "id": 4946558}], "links": [{"source": 3066633, "target": 2420450}, {"source": 3066633, "target": 2459663}, {"source": 5277193, "target": 5331916}, {"source": 5277193, "target": 5675049}, {"source": 2459663, "target": 2420450}, {"source": 5010066, "target": 4934939}, {"source": 5010066, "target": 4937373}, {"source": 5010066, "target": 4991008}, {"source": 4934939, "target": 4937373}, {"source": 1495710, "target": 1691067}, {"source": 5675049, "target": 5439447}, {"source": 1780142, "target": 1691067}, {"source": 1691067, "target": 1229517}, {"source": 1691067, "target": 1462481}]}
|
[
3066633,
5277193,
4991008,
1229517,
4950449,
5520188,
5191503,
4966747,
5207410,
4927349,
4946558
] | 11 |
755 |
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: Miranda Vega, Stephen Crawford, Alexandra Woods, Dennis Beck, Norma Santiago, Amy Cline, Mr. Mark Cole, Jennifer Moody, Joyce Skinner, Javier Macias, Tyler Butler, Willie Knight, Jessica Dunn, Monica Little, Dawn Mckinney, Brian Roberts, Michelle Gardner, Zachary Allen, Christopher Holden, Mallory Harper, Lisa Thomas, Brandon Wilson
- Fiendship connections: Miranda Vega to Willie Knight, Stephen Crawford to Mr. Mark Cole, Stephen Crawford to Lisa Thomas, Alexandra Woods to Mallory Harper, Alexandra Woods to Dennis Beck, Alexandra Woods to Amy Cline, Norma Santiago to Joyce Skinner, Norma Santiago to Tyler Butler, Jennifer Moody to Mallory Harper, Jennifer Moody to Willie Knight, Joyce Skinner to Dawn Mckinney, Javier Macias to Willie Knight, Tyler Butler to Willie Knight, Willie Knight to Brian Roberts, Willie Knight to Monica Little, Willie Knight to Lisa Thomas, Willie Knight to Jessica Dunn, Willie Knight to Zachary Allen, Willie Knight to Christopher Holden, Willie Knight to Brandon Wilson, Jessica Dunn to Mallory Harper, Monica Little to Michelle Gardner
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": "Miranda Vega", "id": 3497858}, {"name": "Stephen Crawford", "id": 2443781}, {"name": "Alexandra Woods", "id": 2406295}, {"name": "Dennis Beck", "id": 2613784}, {"name": "Norma Santiago", "id": 2478236}, {"name": "Amy Cline", "id": 2613793}, {"name": "Mr. Mark Cole", "id": 2418980}, {"name": "Jennifer Moody", "id": 3582373}, {"name": "Joyce Skinner", "id": 3030312}, {"name": "Javier Macias", "id": 4746800}, {"name": "Tyler Butler", "id": 3084593}, {"name": "Willie Knight", "id": 2494258}, {"name": "Jessica Dunn", "id": 3582387}, {"name": "Monica Little", "id": 2838713}, {"name": "Dawn Mckinney", "id": 2481861}, {"name": "Brian Roberts", "id": 2424015}, {"name": "Michelle Gardner", "id": 2424156}, {"name": "Zachary Allen", "id": 4812649}, {"name": "Christopher Holden", "id": 4812650}, {"name": "Mallory Harper", "id": 2436590}, {"name": "Lisa Thomas", "id": 3419126}, {"name": "Brandon Wilson", "id": 4812664}], "links": [{"source": 3497858, "target": 2494258}, {"source": 2443781, "target": 2418980}, {"source": 2443781, "target": 3419126}, {"source": 2406295, "target": 2436590}, {"source": 2406295, "target": 2613784}, {"source": 2406295, "target": 2613793}, {"source": 2478236, "target": 3030312}, {"source": 2478236, "target": 3084593}, {"source": 3582373, "target": 2436590}, {"source": 3582373, "target": 2494258}, {"source": 3030312, "target": 2481861}, {"source": 4746800, "target": 2494258}, {"source": 3084593, "target": 2494258}, {"source": 2494258, "target": 2424015}, {"source": 2494258, "target": 2838713}, {"source": 2494258, "target": 3419126}, {"source": 2494258, "target": 3582387}, {"source": 2494258, "target": 4812649}, {"source": 2494258, "target": 4812650}, {"source": 2494258, "target": 4812664}, {"source": 3582387, "target": 2436590}, {"source": 2838713, "target": 2424156}]}
|
[
3497858
] | 1 |
756 |
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: Kimberly Myers, Gregory Evans, Frank Mason, Ariana Brown, Heather Ortiz, Katherine Sparks, Brittany King, Shannon Savage, Tyler Fitzpatrick, Cynthia Rogers, Karen Cain, Amy Howard, Mary Murray, Kaitlyn Thompson, Terry Flores, David Valdez, Samantha Kline DVM, Nicholas Bennett, Sandra Parker, Tanya Morgan
- Fiendship connections: Gregory Evans to Katherine Sparks, Frank Mason to Tyler Fitzpatrick, Katherine Sparks to Terry Flores, Katherine Sparks to Cynthia Rogers, Brittany King to Karen Cain, Shannon Savage to David Valdez, Shannon Savage to Mary Murray, Shannon Savage to Nicholas Bennett, Tyler Fitzpatrick to Amy Howard, Karen Cain to Tanya Morgan, Mary Murray to David Valdez, Mary Murray to Samantha Kline DVM, Mary Murray to Nicholas Bennett, David Valdez to Samantha Kline DVM, David Valdez to Nicholas Bennett, Samantha Kline DVM to Nicholas Bennett
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": "Kimberly Myers", "id": 2474628}, {"name": "Gregory Evans", "id": 2482955}, {"name": "Frank Mason", "id": 2449422}, {"name": "Ariana Brown", "id": 1102362}, {"name": "Heather Ortiz", "id": 2418598}, {"name": "Katherine Sparks", "id": 3066928}, {"name": "Brittany King", "id": 2475057}, {"name": "Shannon Savage", "id": 1043890}, {"name": "Tyler Fitzpatrick", "id": 3838387}, {"name": "Cynthia Rogers", "id": 2484145}, {"name": "Karen Cain", "id": 2452278}, {"name": "Amy Howard", "id": 2459707}, {"name": "Mary Murray", "id": 1379408}, {"name": "Kaitlyn Thompson", "id": 2459862}, {"name": "Terry Flores", "id": 2420452}, {"name": "David Valdez", "id": 1444969}, {"name": "Samantha Kline DVM", "id": 2072682}, {"name": "Nicholas Bennett", "id": 1976683}, {"name": "Sandra Parker", "id": 2426859}, {"name": "Tanya Morgan", "id": 3873007}], "links": [{"source": 2482955, "target": 3066928}, {"source": 2449422, "target": 3838387}, {"source": 3066928, "target": 2420452}, {"source": 3066928, "target": 2484145}, {"source": 2475057, "target": 2452278}, {"source": 1043890, "target": 1444969}, {"source": 1043890, "target": 1379408}, {"source": 1043890, "target": 1976683}, {"source": 3838387, "target": 2459707}, {"source": 2452278, "target": 3873007}, {"source": 1379408, "target": 1444969}, {"source": 1379408, "target": 2072682}, {"source": 1379408, "target": 1976683}, {"source": 1444969, "target": 2072682}, {"source": 1444969, "target": 1976683}, {"source": 2072682, "target": 1976683}]}
|
[
2474628,
3066928,
2459707,
1102362,
2418598,
2475057,
1444969,
2459862,
2426859
] | 9 |
757 |
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: Vickie Frank, Marc Garrett, Jennifer Ruiz, Gerald Landry II, Taylor Goodman, Manuel Williamson, Brian Perry, Cody Cruz, Kimberly Leonard, Christina Harris, Brandon Cook, Brenda Patton, John Jones, Manuel Wallace, Joshua Erickson, Daniel Werner, Jamie Ball, Donald Martin, Kristi Torres, Lori Schmidt
- Fiendship connections: Vickie Frank to Manuel Williamson, Vickie Frank to Joshua Erickson, Marc Garrett to Brian Perry, Marc Garrett to Brandon Cook, Marc Garrett to Jamie Ball, Gerald Landry II to Manuel Williamson, Taylor Goodman to Jamie Ball, Manuel Williamson to Brenda Patton, Brian Perry to Brandon Cook, Brian Perry to Jamie Ball, Kimberly Leonard to Jamie Ball, Christina Harris to Jamie Ball, Christina Harris to Kristi Torres, Christina Harris to Lori Schmidt, Brandon Cook to Jamie Ball, Brandon Cook to Daniel Werner, John Jones to Jamie Ball, Manuel Wallace to Joshua Erickson, Joshua Erickson to Donald Martin, Jamie Ball to Donald Martin, Jamie Ball to Kristi Torres, Jamie Ball to Lori Schmidt
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": "Vickie Frank", "id": 2439451}, {"name": "Marc Garrett", "id": 2510244}, {"name": "Jennifer Ruiz", "id": 2420902}, {"name": "Gerald Landry II", "id": 3537703}, {"name": "Taylor Goodman", "id": 4745019}, {"name": "Manuel Williamson", "id": 2434750}, {"name": "Brian Perry", "id": 2447554}, {"name": "Cody Cruz", "id": 2449348}, {"name": "Kimberly Leonard", "id": 4745041}, {"name": "Christina Harris", "id": 2412631}, {"name": "Brandon Cook", "id": 2468567}, {"name": "Brenda Patton", "id": 2475741}, {"name": "John Jones", "id": 4745060}, {"name": "Manuel Wallace", "id": 4765929}, {"name": "Joshua Erickson", "id": 2492268}, {"name": "Daniel Werner", "id": 4268656}, {"name": "Jamie Ball", "id": 2492018}, {"name": "Donald Martin", "id": 2703734}, {"name": "Kristi Torres", "id": 2862072}, {"name": "Lori Schmidt", "id": 2862077}], "links": [{"source": 2439451, "target": 2434750}, {"source": 2439451, "target": 2492268}, {"source": 2510244, "target": 2447554}, {"source": 2510244, "target": 2468567}, {"source": 2510244, "target": 2492018}, {"source": 3537703, "target": 2434750}, {"source": 4745019, "target": 2492018}, {"source": 2434750, "target": 2475741}, {"source": 2447554, "target": 2468567}, {"source": 2447554, "target": 2492018}, {"source": 4745041, "target": 2492018}, {"source": 2412631, "target": 2492018}, {"source": 2412631, "target": 2862072}, {"source": 2412631, "target": 2862077}, {"source": 2468567, "target": 2492018}, {"source": 2468567, "target": 4268656}, {"source": 4745060, "target": 2492018}, {"source": 4765929, "target": 2492268}, {"source": 2492268, "target": 2703734}, {"source": 2492018, "target": 2703734}, {"source": 2492018, "target": 2862072}, {"source": 2492018, "target": 2862077}]}
|
[
4745019,
2420902,
2449348
] | 3 |
758 |
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: Wendy Carlson, David Johnson, Cody Scott, Miss Kimberly Orr, Tonya Taylor, Dwayne Reyes, Joseph Franklin, George Sullivan, Thomas Cunningham, Dr. Vanessa Smith, John Baker, Jesse Moore, Bryce Norman, Martin Wilson, Robert Thomas, Alyssa Woodard, Jesus Scott, Crystal Scott, Michael Jackson
- Fiendship connections: Wendy Carlson to Miss Kimberly Orr, Cody Scott to Jesse Moore, Tonya Taylor to Michael Jackson, Tonya Taylor to Crystal Scott, Dwayne Reyes to Bryce Norman, George Sullivan to Jesus Scott, Thomas Cunningham to Jesus Scott, Dr. Vanessa Smith to John Baker, John Baker to Jesse Moore, John Baker to Bryce Norman, John Baker to Martin Wilson
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": "Wendy Carlson", "id": 5153037}, {"name": "David Johnson", "id": 2447377}, {"name": "Cody Scott", "id": 5002386}, {"name": "Miss Kimberly Orr", "id": 5012125}, {"name": "Tonya Taylor", "id": 217376}, {"name": "Dwayne Reyes", "id": 5490852}, {"name": "Joseph Franklin", "id": 4981161}, {"name": "George Sullivan", "id": 4810672}, {"name": "Thomas Cunningham", "id": 2433346}, {"name": "Dr. Vanessa Smith", "id": 4950864}, {"name": "John Baker", "id": 5013338}, {"name": "Jesse Moore", "id": 5013340}, {"name": "Bryce Norman", "id": 5013342}, {"name": "Martin Wilson", "id": 5013343}, {"name": "Robert Thomas", "id": 4946020}, {"name": "Alyssa Woodard", "id": 5067883}, {"name": "Jesus Scott", "id": 2494191}, {"name": "Crystal Scott", "id": 48879}, {"name": "Michael Jackson", "id": 31729}], "links": [{"source": 5153037, "target": 5012125}, {"source": 5002386, "target": 5013340}, {"source": 217376, "target": 31729}, {"source": 217376, "target": 48879}, {"source": 5490852, "target": 5013342}, {"source": 4810672, "target": 2494191}, {"source": 2433346, "target": 2494191}, {"source": 4950864, "target": 5013338}, {"source": 5013338, "target": 5013340}, {"source": 5013338, "target": 5013342}, {"source": 5013338, "target": 5013343}]}
|
[
5153037,
2447377,
5490852,
217376,
4981161,
4810672,
4946020,
5067883
] | 8 |
759 |
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 Gray, Donna Miller, Brandon Castillo, Dustin Horton, Jennifer Anderson, Beverly Walker, Richard Morris, Abigail Davis, Gloria Baker, Jody Braun, Mike Henderson, Keith Williams, Johnathan Richards, Wendy Smith, Cheryl Smith MD, Rick Sandoval, Sarah Mora, Vanessa Stark, Jennifer Burke, William Curry
- Fiendship connections: Mary Gray to Donna Miller, Donna Miller to Jennifer Anderson, Brandon Castillo to Vanessa Stark, Dustin Horton to Vanessa Stark, Jennifer Anderson to William Curry, Jennifer Anderson to Gloria Baker, Jennifer Anderson to Keith Williams, Beverly Walker to Wendy Smith, Richard Morris to William Curry, Jody Braun to Sarah Mora, Mike Henderson to Wendy Smith, Johnathan Richards to Jennifer Burke, Wendy Smith to Cheryl Smith MD
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 Gray", "id": 2501248}, {"name": "Donna Miller", "id": 4894737}, {"name": "Brandon Castillo", "id": 5166738}, {"name": "Dustin Horton", "id": 4988327}, {"name": "Jennifer Anderson", "id": 2501417}, {"name": "Beverly Walker", "id": 301993}, {"name": "Richard Morris", "id": 2501299}, {"name": "Abigail Davis", "id": 34611}, {"name": "Gloria Baker", "id": 4896439}, {"name": "Jody Braun", "id": 4615736}, {"name": "Mike Henderson", "id": 35771}, {"name": "Keith Williams", "id": 4896448}, {"name": "Johnathan Richards", "id": 6096069}, {"name": "Wendy Smith", "id": 692436}, {"name": "Cheryl Smith MD", "id": 692438}, {"name": "Rick Sandoval", "id": 5297111}, {"name": "Sarah Mora", "id": 2483031}, {"name": "Vanessa Stark", "id": 5643871}, {"name": "Jennifer Burke", "id": 5153124}, {"name": "William Curry", "id": 4895228}], "links": [{"source": 2501248, "target": 4894737}, {"source": 4894737, "target": 2501417}, {"source": 5166738, "target": 5643871}, {"source": 4988327, "target": 5643871}, {"source": 2501417, "target": 4895228}, {"source": 2501417, "target": 4896439}, {"source": 2501417, "target": 4896448}, {"source": 301993, "target": 692436}, {"source": 2501299, "target": 4895228}, {"source": 4615736, "target": 2483031}, {"source": 35771, "target": 692436}, {"source": 6096069, "target": 5153124}, {"source": 692436, "target": 692438}]}
|
[
2501248,
4988327,
301993,
34611,
4615736,
5153124,
5297111
] | 7 |
760 |
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: Jack Johnston, Jeffrey Ruiz, Tiffany Daugherty, Catherine Osborne, Angel Cox, Dr. Jason Robertson, Gary Jacobs, Holly Cuevas, Jeffrey Huber, Ernest Page, Tim Callahan, Robert Davis, Christopher Bishop, Collin Collier, Christopher Wilson, Jesse Diaz, Michael Lee, Brian Castillo DVM, Brittany Robinson, Tanya Mcneil, Michael Carr, Tina Cole, Beth Johnston, Michelle Johnson
- Fiendship connections: Jack Johnston to Jeffrey Huber, Jack Johnston to Christopher Wilson, Jack Johnston to Jesse Diaz, Jeffrey Ruiz to Holly Cuevas, Jeffrey Ruiz to Brittany Robinson, Tiffany Daugherty to Brian Castillo DVM, Catherine Osborne to Christopher Wilson, Catherine Osborne to Dr. Jason Robertson, Angel Cox to Collin Collier, Dr. Jason Robertson to Gary Jacobs, Gary Jacobs to Christopher Wilson, Gary Jacobs to Robert Davis, Holly Cuevas to Christopher Wilson, Jeffrey Huber to Christopher Wilson, Jeffrey Huber to Ernest Page, Tim Callahan to Christopher Wilson, Robert Davis to Christopher Wilson, Christopher Bishop to Christopher Wilson, Collin Collier to Christopher Wilson, Christopher Wilson to Tina Cole, Christopher Wilson to Tanya Mcneil, Christopher Wilson to Brian Castillo DVM, Christopher Wilson to Michael Carr, Christopher Wilson to Jesse Diaz, Jesse Diaz to Michelle Johnson, Michael Lee to Michelle Johnson, Beth Johnston to Michelle Johnson
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": "Jack Johnston", "id": 2429452}, {"name": "Jeffrey Ruiz", "id": 2416781}, {"name": "Tiffany Daugherty", "id": 2470029}, {"name": "Catherine Osborne", "id": 2421521}, {"name": "Angel Cox", "id": 2406810}, {"name": "Dr. Jason Robertson", "id": 2435997}, {"name": "Gary Jacobs", "id": 2419873}, {"name": "Holly Cuevas", "id": 2416805}, {"name": "Jeffrey Huber", "id": 2419897}, {"name": "Ernest Page", "id": 3081530}, {"name": "Tim Callahan", "id": 3296314}, {"name": "Robert Davis", "id": 2438334}, {"name": "Christopher Bishop", "id": 3296325}, {"name": "Collin Collier", "id": 2655819}, {"name": "Christopher Wilson", "id": 2426316}, {"name": "Jesse Diaz", "id": 3296337}, {"name": "Michael Lee", "id": 2462802}, {"name": "Brian Castillo DVM", "id": 2708186}, {"name": "Brittany Robinson", "id": 2958812}, {"name": "Tanya Mcneil", "id": 2708712}, {"name": "Michael Carr", "id": 2983664}, {"name": "Tina Cole", "id": 2504307}, {"name": "Beth Johnston", "id": 4640765}, {"name": "Michelle Johnson", "id": 2482431}], "links": [{"source": 2429452, "target": 2419897}, {"source": 2429452, "target": 2426316}, {"source": 2429452, "target": 3296337}, {"source": 2416781, "target": 2416805}, {"source": 2416781, "target": 2958812}, {"source": 2470029, "target": 2708186}, {"source": 2421521, "target": 2426316}, {"source": 2421521, "target": 2435997}, {"source": 2406810, "target": 2655819}, {"source": 2435997, "target": 2419873}, {"source": 2419873, "target": 2426316}, {"source": 2419873, "target": 2438334}, {"source": 2416805, "target": 2426316}, {"source": 2419897, "target": 2426316}, {"source": 2419897, "target": 3081530}, {"source": 3296314, "target": 2426316}, {"source": 2438334, "target": 2426316}, {"source": 3296325, "target": 2426316}, {"source": 2655819, "target": 2426316}, {"source": 2426316, "target": 2504307}, {"source": 2426316, "target": 2708712}, {"source": 2426316, "target": 2708186}, {"source": 2426316, "target": 2983664}, {"source": 2426316, "target": 3296337}, {"source": 3296337, "target": 2482431}, {"source": 2462802, "target": 2482431}, {"source": 4640765, "target": 2482431}]}
|
[
2429452
] | 1 |
761 |
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: Amy Davis, Terry Garcia, Vanessa Hernandez, Laura Wheeler, Deborah Reid, Jeremiah Gonzalez, Mr. William Gray, Erin Hughes, Ronnie Green, Joshua Parks, Matthew Cox, Lisa Patterson, Deanna Baird, David Rodriguez, Elizabeth Russell, Pamela Marshall, Sarah Frye, Daniel Stevens, Amanda Cruz, Adam Goodman
- Fiendship connections: Amy Davis to Elizabeth Russell, Amy Davis to Erin Hughes, Amy Davis to Ronnie Green, Terry Garcia to Ronnie Green, Terry Garcia to Matthew Cox, Vanessa Hernandez to Elizabeth Russell, Laura Wheeler to Elizabeth Russell, Deborah Reid to Daniel Stevens, Deborah Reid to Joshua Parks, Jeremiah Gonzalez to Lisa Patterson, Mr. William Gray to Joshua Parks, Mr. William Gray to Ronnie Green, Ronnie Green to Amanda Cruz, Ronnie Green to Deanna Baird, Matthew Cox to Lisa Patterson, Elizabeth Russell to Adam Goodman, Elizabeth Russell to Pamela Marshall
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": "Amy Davis", "id": 5065222}, {"name": "Terry Garcia", "id": 5029384}, {"name": "Vanessa Hernandez", "id": 5065366}, {"name": "Laura Wheeler", "id": 5065497}, {"name": "Deborah Reid", "id": 5205282}, {"name": "Jeremiah Gonzalez", "id": 5004196}, {"name": "Mr. William Gray", "id": 5128230}, {"name": "Erin Hughes", "id": 4983727}, {"name": "Ronnie Green", "id": 5205812}, {"name": "Joshua Parks", "id": 4979894}, {"name": "Matthew Cox", "id": 5145016}, {"name": "Lisa Patterson", "id": 5032253}, {"name": "Deanna Baird", "id": 5844035}, {"name": "David Rodriguez", "id": 5040580}, {"name": "Elizabeth Russell", "id": 4964294}, {"name": "Pamela Marshall", "id": 5065040}, {"name": "Sarah Frye", "id": 4971601}, {"name": "Daniel Stevens", "id": 4956792}, {"name": "Amanda Cruz", "id": 5543417}, {"name": "Adam Goodman", "id": 5064957}], "links": [{"source": 5065222, "target": 4964294}, {"source": 5065222, "target": 4983727}, {"source": 5065222, "target": 5205812}, {"source": 5029384, "target": 5205812}, {"source": 5029384, "target": 5145016}, {"source": 5065366, "target": 4964294}, {"source": 5065497, "target": 4964294}, {"source": 5205282, "target": 4956792}, {"source": 5205282, "target": 4979894}, {"source": 5004196, "target": 5032253}, {"source": 5128230, "target": 4979894}, {"source": 5128230, "target": 5205812}, {"source": 5205812, "target": 5543417}, {"source": 5205812, "target": 5844035}, {"source": 5145016, "target": 5032253}, {"source": 4964294, "target": 5064957}, {"source": 4964294, "target": 5065040}]}
|
[
5205282,
5040580,
4971601
] | 3 |
762 |
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: Jacqueline Le, John Walters, John Dorsey, Todd Green, James Maldonado, Alexander Lopez, Nicole Gordon, Steven Porter, Natalie Hicks, Heather Mcgee, Thomas Allen, John Leon, Peter Porter, Krystal Torres, Adam Hatfield, Zachary Meyer, Stephen Kelley
- Fiendship connections: Jacqueline Le to Stephen Kelley, Jacqueline Le to Krystal Torres, John Walters to Peter Porter, John Walters to Zachary Meyer, John Walters to Alexander Lopez, John Walters to John Leon, John Walters to Thomas Allen, John Dorsey to Stephen Kelley, John Dorsey to Heather Mcgee, James Maldonado to Natalie Hicks, James Maldonado to Krystal Torres, James Maldonado to Nicole Gordon, Alexander Lopez to Peter Porter, Alexander Lopez to Zachary Meyer, Alexander Lopez to John Leon, Alexander Lopez to Thomas Allen, Steven Porter to Peter Porter, Steven Porter to Heather Mcgee, Heather Mcgee to Stephen Kelley, Thomas Allen to Zachary Meyer, Thomas Allen to John Leon, John Leon to Zachary Meyer
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": "Jacqueline Le", "id": 2438016}, {"name": "John Walters", "id": 2439873}, {"name": "John Dorsey", "id": 3969921}, {"name": "Todd Green", "id": 2435909}, {"name": "James Maldonado", "id": 2482950}, {"name": "Alexander Lopez", "id": 2439882}, {"name": "Nicole Gordon", "id": 4612300}, {"name": "Steven Porter", "id": 3068494}, {"name": "Natalie Hicks", "id": 2987886}, {"name": "Heather Mcgee", "id": 2461840}, {"name": "Thomas Allen", "id": 3636657}, {"name": "John Leon", "id": 2448657}, {"name": "Peter Porter", "id": 2420469}, {"name": "Krystal Torres", "id": 3602427}, {"name": "Adam Hatfield", "id": 2490172}, {"name": "Zachary Meyer", "id": 2439742}, {"name": "Stephen Kelley", "id": 2455167}], "links": [{"source": 2438016, "target": 2455167}, {"source": 2438016, "target": 3602427}, {"source": 2439873, "target": 2420469}, {"source": 2439873, "target": 2439742}, {"source": 2439873, "target": 2439882}, {"source": 2439873, "target": 2448657}, {"source": 2439873, "target": 3636657}, {"source": 3969921, "target": 2455167}, {"source": 3969921, "target": 2461840}, {"source": 2482950, "target": 2987886}, {"source": 2482950, "target": 3602427}, {"source": 2482950, "target": 4612300}, {"source": 2439882, "target": 2420469}, {"source": 2439882, "target": 2439742}, {"source": 2439882, "target": 2448657}, {"source": 2439882, "target": 3636657}, {"source": 3068494, "target": 2420469}, {"source": 3068494, "target": 2461840}, {"source": 2461840, "target": 2455167}, {"source": 3636657, "target": 2439742}, {"source": 3636657, "target": 2448657}, {"source": 2448657, "target": 2439742}]}
|
[
2438016,
2435909,
2490172
] | 3 |
763 |
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: Timothy Morales, Gerald Walker, Chelsea Carpenter, Debbie Park, Dylan Ortega, Alexander Hamilton, Austin Cardenas, James Murillo, Alice Silva, Lisa Walker, Eric Callahan, Nathaniel Fisher, Deborah Wright, Linda Lawrence, Hannah Burns, Alexandra Ramirez, Jessica Nguyen
- Fiendship connections: Timothy Morales to Eric Callahan, Timothy Morales to Gerald Walker, Timothy Morales to James Murillo, Dylan Ortega to Hannah Burns, Alexander Hamilton to Hannah Burns, Nathaniel Fisher to Linda Lawrence, Hannah Burns to Alexandra Ramirez, Hannah Burns to Jessica Nguyen
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": "Timothy Morales", "id": 1351649}, {"name": "Gerald Walker", "id": 1488067}, {"name": "Chelsea Carpenter", "id": 2444260}, {"name": "Debbie Park", "id": 2474085}, {"name": "Dylan Ortega", "id": 2699941}, {"name": "Alexander Hamilton", "id": 2840199}, {"name": "Austin Cardenas", "id": 2488548}, {"name": "James Murillo", "id": 1664797}, {"name": "Alice Silva", "id": 1076043}, {"name": "Lisa Walker", "id": 1335054}, {"name": "Eric Callahan", "id": 1075998}, {"name": "Nathaniel Fisher", "id": 629490}, {"name": "Deborah Wright", "id": 132827}, {"name": "Linda Lawrence", "id": 153466}, {"name": "Hannah Burns", "id": 2480987}, {"name": "Alexandra Ramirez", "id": 2461821}, {"name": "Jessica Nguyen", "id": 4594014}], "links": [{"source": 1351649, "target": 1075998}, {"source": 1351649, "target": 1488067}, {"source": 1351649, "target": 1664797}, {"source": 2699941, "target": 2480987}, {"source": 2840199, "target": 2480987}, {"source": 629490, "target": 153466}, {"source": 2480987, "target": 2461821}, {"source": 2480987, "target": 4594014}]}
|
[
1351649,
2444260,
2474085,
2699941,
2488548,
1076043,
1335054,
629490,
132827
] | 9 |
764 |
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: Albert Gutierrez, Paul Stanley, Christina Frye, Benjamin Williams, Amber Holmes, Allen Velez, Brenda Butler, Dan Burns, Andrea Richmond, Jimmy Martin, Pamela Martin, Robert Moreno, Olivia Rodriguez, Kathryn Roth, Jeremy Carey, Kristen Fernandez, Joseph Carpenter, Charles Cabrera, Thomas Reynolds, Christine Parker, Jeffrey Perez, Sharon Chavez, Bridget Price, Joseph Solomon, Jeffery Jensen, Jose Rice, Yolanda Price, Patricia Montoya, Benjamin Adams
- Fiendship connections: Albert Gutierrez to Kathryn Roth, Albert Gutierrez to Benjamin Williams, Paul Stanley to Joseph Solomon, Paul Stanley to Jeffery Jensen, Christina Frye to Joseph Carpenter, Christina Frye to Andrea Richmond, Christina Frye to Benjamin Williams, Christina Frye to Charles Cabrera, Benjamin Williams to Christine Parker, Benjamin Williams to Amber Holmes, Benjamin Williams to Charles Cabrera, Amber Holmes to Bridget Price, Allen Velez to Pamela Martin, Allen Velez to Kristen Fernandez, Allen Velez to Robert Moreno, Brenda Butler to Kathryn Roth, Brenda Butler to Bridget Price, Dan Burns to Jeffrey Perez, Dan Burns to Bridget Price, Andrea Richmond to Pamela Martin, Jimmy Martin to Jeffery Jensen, Pamela Martin to Yolanda Price, Robert Moreno to Jeffrey Perez, Olivia Rodriguez to Joseph Solomon, Jeremy Carey to Jose Rice, Jeremy Carey to Benjamin Adams, Kristen Fernandez to Joseph Carpenter, Joseph Carpenter to Thomas Reynolds, Thomas Reynolds to Sharon Chavez, Bridget Price to Joseph Solomon, Bridget Price to Jose Rice, Patricia Montoya to Benjamin 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": "Albert Gutierrez", "id": 4954498}, {"name": "Paul Stanley", "id": 4986114}, {"name": "Christina Frye", "id": 5223174}, {"name": "Benjamin Williams", "id": 5131654}, {"name": "Amber Holmes", "id": 5815176}, {"name": "Allen Velez", "id": 4930057}, {"name": "Brenda Butler", "id": 5815181}, {"name": "Dan Burns", "id": 5815185}, {"name": "Andrea Richmond", "id": 5024790}, {"name": "Jimmy Martin", "id": 5553302}, {"name": "Pamela Martin", "id": 4968352}, {"name": "Robert Moreno", "id": 5123749}, {"name": "Olivia Rodriguez", "id": 5341613}, {"name": "Kathryn Roth", "id": 5036589}, {"name": "Jeremy Carey", "id": 4933306}, {"name": "Kristen Fernandez", "id": 4934203}, {"name": "Joseph Carpenter", "id": 4947400}, {"name": "Charles Cabrera", "id": 6019657}, {"name": "Thomas Reynolds", "id": 4947788}, {"name": "Christine Parker", "id": 5310546}, {"name": "Jeffrey Perez", "id": 4928466}, {"name": "Sharon Chavez", "id": 5137629}, {"name": "Bridget Price", "id": 5151711}, {"name": "Joseph Solomon", "id": 4943464}, {"name": "Jeffery Jensen", "id": 5048552}, {"name": "Jose Rice", "id": 5062636}, {"name": "Yolanda Price", "id": 5619958}, {"name": "Patricia Montoya", "id": 5831548}, {"name": "Benjamin Adams", "id": 5652221}], "links": [{"source": 4954498, "target": 5036589}, {"source": 4954498, "target": 5131654}, {"source": 4986114, "target": 4943464}, {"source": 4986114, "target": 5048552}, {"source": 5223174, "target": 4947400}, {"source": 5223174, "target": 5024790}, {"source": 5223174, "target": 5131654}, {"source": 5223174, "target": 6019657}, {"source": 5131654, "target": 5310546}, {"source": 5131654, "target": 5815176}, {"source": 5131654, "target": 6019657}, {"source": 5815176, "target": 5151711}, {"source": 4930057, "target": 4968352}, {"source": 4930057, "target": 4934203}, {"source": 4930057, "target": 5123749}, {"source": 5815181, "target": 5036589}, {"source": 5815181, "target": 5151711}, {"source": 5815185, "target": 4928466}, {"source": 5815185, "target": 5151711}, {"source": 5024790, "target": 4968352}, {"source": 5553302, "target": 5048552}, {"source": 4968352, "target": 5619958}, {"source": 5123749, "target": 4928466}, {"source": 5341613, "target": 4943464}, {"source": 4933306, "target": 5062636}, {"source": 4933306, "target": 5652221}, {"source": 4934203, "target": 4947400}, {"source": 4947400, "target": 4947788}, {"source": 4947788, "target": 5137629}, {"source": 5151711, "target": 4943464}, {"source": 5151711, "target": 5062636}, {"source": 5831548, "target": 5652221}]}
|
[
4954498
] | 1 |
765 |
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: Andrea Logan, Kristine Powers, Joseph Hansen, Kevin Sanchez, Brooke Taylor, Heather Eaton, Kelly Brooks, Karl Lang, Caleb Lambert, Dylan Pittman, Noah Aguilar, Catherine Arnold, Eric Brown, James Powers, Tammy Adams, Rachel Taylor, Yvonne Carlson, Dr. Sandra Alvarez, Jesse Thomas
- Fiendship connections: Andrea Logan to Dylan Pittman, Kristine Powers to Dr. Sandra Alvarez, Kristine Powers to Kevin Sanchez, Kristine Powers to Joseph Hansen, Kristine Powers to Noah Aguilar, Kristine Powers to Jesse Thomas, Kristine Powers to Tammy Adams, Kristine Powers to Rachel Taylor, Brooke Taylor to James Powers, Heather Eaton to Tammy Adams, Kelly Brooks to Noah Aguilar, Karl Lang to James Powers, Karl Lang to Jesse Thomas, Dylan Pittman to Yvonne Carlson, Catherine Arnold to Eric Brown, Yvonne Carlson to Dr. Sandra 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": "Andrea Logan", "id": 2151950}, {"name": "Kristine Powers", "id": 1880979}, {"name": "Joseph Hansen", "id": 1216536}, {"name": "Kevin Sanchez", "id": 1010973}, {"name": "Brooke Taylor", "id": 1480862}, {"name": "Heather Eaton", "id": 1474088}, {"name": "Kelly Brooks", "id": 2321834}, {"name": "Karl Lang", "id": 1737131}, {"name": "Caleb Lambert", "id": 848694}, {"name": "Dylan Pittman", "id": 1457467}, {"name": "Noah Aguilar", "id": 1538501}, {"name": "Catherine Arnold", "id": 814924}, {"name": "Eric Brown", "id": 1249488}, {"name": "James Powers", "id": 1399384}, {"name": "Tammy Adams", "id": 2011354}, {"name": "Rachel Taylor", "id": 2194523}, {"name": "Yvonne Carlson", "id": 779100}, {"name": "Dr. Sandra Alvarez", "id": 801910}, {"name": "Jesse Thomas", "id": 1557629}], "links": [{"source": 2151950, "target": 1457467}, {"source": 1880979, "target": 801910}, {"source": 1880979, "target": 1010973}, {"source": 1880979, "target": 1216536}, {"source": 1880979, "target": 1538501}, {"source": 1880979, "target": 1557629}, {"source": 1880979, "target": 2011354}, {"source": 1880979, "target": 2194523}, {"source": 1480862, "target": 1399384}, {"source": 1474088, "target": 2011354}, {"source": 2321834, "target": 1538501}, {"source": 1737131, "target": 1399384}, {"source": 1737131, "target": 1557629}, {"source": 1457467, "target": 779100}, {"source": 814924, "target": 1249488}, {"source": 779100, "target": 801910}]}
|
[
1538501,
848694,
1249488
] | 3 |
766 |
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 Sosa, Jacob James, James Kelly, Benjamin Bennett, Casey Buchanan, Vanessa Hicks, Tabitha Nelson, Donald Wyatt, Ellen Powell, Brandon Alvarez, James Graham, Richard Kennedy, Amanda Coleman, Samuel Harris, David Ortiz
- Fiendship connections: Chad Sosa to James Kelly, Chad Sosa to James Graham, Chad Sosa to Samuel Harris, Jacob James to David Ortiz, Jacob James to Vanessa Hicks, James Kelly to Samuel Harris, Benjamin Bennett to Amanda Coleman, Casey Buchanan to Brandon Alvarez, Donald Wyatt to James Graham, Donald Wyatt to Samuel Harris, James Graham to Samuel 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": "Chad Sosa", "id": 5243136}, {"name": "Jacob James", "id": 2484354}, {"name": "James Kelly", "id": 4929762}, {"name": "Benjamin Bennett", "id": 3626885}, {"name": "Casey Buchanan", "id": 5812010}, {"name": "Vanessa Hicks", "id": 4657163}, {"name": "Tabitha Nelson", "id": 4947946}, {"name": "Donald Wyatt", "id": 5062253}, {"name": "Ellen Powell", "id": 2415567}, {"name": "Brandon Alvarez", "id": 5368914}, {"name": "James Graham", "id": 5243155}, {"name": "Richard Kennedy", "id": 4942103}, {"name": "Amanda Coleman", "id": 2439128}, {"name": "Samuel Harris", "id": 5243162}, {"name": "David Ortiz", "id": 3431709}], "links": [{"source": 5243136, "target": 4929762}, {"source": 5243136, "target": 5243155}, {"source": 5243136, "target": 5243162}, {"source": 2484354, "target": 3431709}, {"source": 2484354, "target": 4657163}, {"source": 4929762, "target": 5243162}, {"source": 3626885, "target": 2439128}, {"source": 5812010, "target": 5368914}, {"source": 5062253, "target": 5243155}, {"source": 5062253, "target": 5243162}, {"source": 5243155, "target": 5243162}]}
|
[
5243136,
2484354,
2439128,
5812010,
4947946,
2415567,
4942103
] | 7 |
767 |
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 Bennett, Tyler Simon, Mr. Gary Meyer, James Rose, Kelly Smith, Malik Watkins, Michael Moore, Madison Jimenez, Aaron Macias, Darlene Stephens, Laurie Garza, Karen Johnson, Christina Patel, Justin Rivera, Nicole Simmons, Daniel Gillespie, Kyle Wilcox
- Fiendship connections: Tyler Simon to Kelly Smith, Mr. Gary Meyer to Karen Johnson, Kelly Smith to Kyle Wilcox, Kelly Smith to Aaron Macias, Kelly Smith to Nicole Simmons, Kelly Smith to Laurie Garza, Kelly Smith to Daniel Gillespie, Kelly Smith to Malik Watkins, Kelly Smith to Christina Patel, Kelly Smith to Darlene Stephens, Kelly Smith to Justin Rivera, Michael Moore to Karen Johnson, Michael Moore to Laurie Garza
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 Bennett", "id": 4996224}, {"name": "Tyler Simon", "id": 5228003}, {"name": "Mr. Gary Meyer", "id": 5128388}, {"name": "James Rose", "id": 5348709}, {"name": "Kelly Smith", "id": 4951782}, {"name": "Malik Watkins", "id": 5228171}, {"name": "Michael Moore", "id": 4935372}, {"name": "Madison Jimenez", "id": 4950031}, {"name": "Aaron Macias", "id": 5227921}, {"name": "Darlene Stephens", "id": 5228242}, {"name": "Laurie Garza", "id": 5227923}, {"name": "Karen Johnson", "id": 5209844}, {"name": "Christina Patel", "id": 5228213}, {"name": "Justin Rivera", "id": 5228278}, {"name": "Nicole Simmons", "id": 5227922}, {"name": "Daniel Gillespie", "id": 5227928}, {"name": "Kyle Wilcox", "id": 5227900}], "links": [{"source": 5228003, "target": 4951782}, {"source": 5128388, "target": 5209844}, {"source": 4951782, "target": 5227900}, {"source": 4951782, "target": 5227921}, {"source": 4951782, "target": 5227922}, {"source": 4951782, "target": 5227923}, {"source": 4951782, "target": 5227928}, {"source": 4951782, "target": 5228171}, {"source": 4951782, "target": 5228213}, {"source": 4951782, "target": 5228242}, {"source": 4951782, "target": 5228278}, {"source": 4935372, "target": 5209844}, {"source": 4935372, "target": 5227923}]}
|
[
4996224,
5228003,
5348709,
4950031
] | 4 |
768 |
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: Shannon Petty, Joshua Olson, Alicia Hawkins, Gregory May, Cynthia Gray, David Williams, Jessica Campbell, Tina Jones, Julie French, Steven Mendoza, David Jackson, Jonathan Martinez, Todd Khan, Lauren Brown, Mr. Gary Lawson MD
- Fiendship connections: Shannon Petty to David Jackson, Joshua Olson to Jessica Campbell, Gregory May to Todd Khan, Cynthia Gray to Julie French, Cynthia Gray to Steven Mendoza, David Williams to Mr. Gary Lawson MD, Julie French to Todd Khan, Julie French to Steven Mendoza, Steven Mendoza to Todd Khan, Jonathan Martinez to Lauren 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": "Shannon Petty", "id": 2448706}, {"name": "Joshua Olson", "id": 5903047}, {"name": "Alicia Hawkins", "id": 5066441}, {"name": "Gregory May", "id": 2222330}, {"name": "Cynthia Gray", "id": 1398891}, {"name": "David Williams", "id": 2432685}, {"name": "Jessica Campbell", "id": 5583442}, {"name": "Tina Jones", "id": 2455795}, {"name": "Julie French", "id": 2217588}, {"name": "Steven Mendoza", "id": 2217589}, {"name": "David Jackson", "id": 2448690}, {"name": "Jonathan Martinez", "id": 8439}, {"name": "Todd Khan", "id": 2162745}, {"name": "Lauren Brown", "id": 274426}, {"name": "Mr. Gary Lawson MD", "id": 3500954}], "links": [{"source": 2448706, "target": 2448690}, {"source": 5903047, "target": 5583442}, {"source": 2222330, "target": 2162745}, {"source": 1398891, "target": 2217588}, {"source": 1398891, "target": 2217589}, {"source": 2432685, "target": 3500954}, {"source": 2217588, "target": 2162745}, {"source": 2217588, "target": 2217589}, {"source": 2217589, "target": 2162745}, {"source": 8439, "target": 274426}]}
|
[
2448706,
5583442,
5066441,
1398891,
3500954,
2455795,
274426
] | 7 |
769 |
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: Ruben Dyer, Sydney Madden, Alexander Hill, Anthony Garcia, Karen Mccoy, Amy Russell, Cassandra Roy, Alexandra Maldonado, Jessica Morrow, Jenna Myers, Tommy Evans, Clinton Durham, Tonya Good, Tyrone Mitchell, Jennifer Jackson, Robin Nelson, Mitchell Davis, Caleb Anderson, Alan Mcmahon, Charles Callahan, Bradley Brewer, Matthew Vargas, Cynthia Reeves, Jorge Parker, Kim Ward
- Fiendship connections: Ruben Dyer to Clinton Durham, Ruben Dyer to Kim Ward, Sydney Madden to Anthony Garcia, Sydney Madden to Kim Ward, Sydney Madden to Amy Russell, Sydney Madden to Jennifer Jackson, Anthony Garcia to Kim Ward, Anthony Garcia to Amy Russell, Anthony Garcia to Jennifer Jackson, Anthony Garcia to Jessica Morrow, Karen Mccoy to Tonya Good, Karen Mccoy to Tommy Evans, Amy Russell to Kim Ward, Amy Russell to Jennifer Jackson, Amy Russell to Jessica Morrow, Jessica Morrow to Jennifer Jackson, Jenna Myers to Clinton Durham, Jenna Myers to Tommy Evans, Tyrone Mitchell to Robin Nelson, Tyrone Mitchell to Mitchell Davis, Tyrone Mitchell to Caleb Anderson, Tyrone Mitchell to Alan Mcmahon, Tyrone Mitchell to Charles Callahan, Tyrone Mitchell to Bradley Brewer, Tyrone Mitchell to Matthew Vargas, Tyrone Mitchell to Cynthia Reeves, Jennifer Jackson to Kim Ward
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": "Ruben Dyer", "id": 2686978}, {"name": "Sydney Madden", "id": 2471557}, {"name": "Alexander Hill", "id": 2494726}, {"name": "Anthony Garcia", "id": 2471310}, {"name": "Karen Mccoy", "id": 4540947}, {"name": "Amy Russell", "id": 2471573}, {"name": "Cassandra Roy", "id": 2404274}, {"name": "Alexandra Maldonado", "id": 2429626}, {"name": "Jessica Morrow", "id": 2566211}, {"name": "Jenna Myers", "id": 2686916}, {"name": "Tommy Evans", "id": 2482888}, {"name": "Clinton Durham", "id": 2408266}, {"name": "Tonya Good", "id": 2479569}, {"name": "Tyrone Mitchell", "id": 2472019}, {"name": "Jennifer Jackson", "id": 2471765}, {"name": "Robin Nelson", "id": 4314328}, {"name": "Mitchell Davis", "id": 4314329}, {"name": "Caleb Anderson", "id": 4314330}, {"name": "Alan Mcmahon", "id": 4314332}, {"name": "Charles Callahan", "id": 4314333}, {"name": "Bradley Brewer", "id": 4314336}, {"name": "Matthew Vargas", "id": 4314337}, {"name": "Cynthia Reeves", "id": 4314338}, {"name": "Jorge Parker", "id": 2491766}, {"name": "Kim Ward", "id": 2471423}], "links": [{"source": 2686978, "target": 2408266}, {"source": 2686978, "target": 2471423}, {"source": 2471557, "target": 2471310}, {"source": 2471557, "target": 2471423}, {"source": 2471557, "target": 2471573}, {"source": 2471557, "target": 2471765}, {"source": 2471310, "target": 2471423}, {"source": 2471310, "target": 2471573}, {"source": 2471310, "target": 2471765}, {"source": 2471310, "target": 2566211}, {"source": 4540947, "target": 2479569}, {"source": 4540947, "target": 2482888}, {"source": 2471573, "target": 2471423}, {"source": 2471573, "target": 2471765}, {"source": 2471573, "target": 2566211}, {"source": 2566211, "target": 2471765}, {"source": 2686916, "target": 2408266}, {"source": 2686916, "target": 2482888}, {"source": 2472019, "target": 4314328}, {"source": 2472019, "target": 4314329}, {"source": 2472019, "target": 4314330}, {"source": 2472019, "target": 4314332}, {"source": 2472019, "target": 4314333}, {"source": 2472019, "target": 4314336}, {"source": 2472019, "target": 4314337}, {"source": 2472019, "target": 4314338}, {"source": 2471765, "target": 2471423}]}
|
[
2686978,
2494726,
2404274,
2429626,
4314336,
2491766
] | 6 |
770 |
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 Sanders, Douglas Everett, Ms. Laura Page, Abigail Conley, Megan Santos, John Lindsey, James Chambers, Patrick Gomez, Michael Pratt, Adam Dickson, Kimberly Noble, Taylor Hill, Hayden Cardenas, Russell Greene, Todd Harvey, Olivia Howell, Jaclyn Baker, Rebekah Reed, Lauren Rodriguez, Tonya Walker, Michael Medina, Matthew Erickson, Daniel Johnson, Miguel Alexander, Amanda Morris, Jeremy Henry, Jennifer Murray, Robert Johnson
- Fiendship connections: Christine Sanders to James Chambers, Christine Sanders to Ms. Laura Page, Christine Sanders to Jennifer Murray, Christine Sanders to Hayden Cardenas, Douglas Everett to Michael Medina, Abigail Conley to Amanda Morris, Megan Santos to Lauren Rodriguez, Taylor Hill to Lauren Rodriguez, Russell Greene to Rebekah Reed, Olivia Howell to Amanda Morris, Rebekah Reed to Daniel Johnson, Tonya Walker to Amanda Morris, Miguel Alexander to Jeremy Henry
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 Sanders", "id": 2817543}, {"name": "Douglas Everett", "id": 323336}, {"name": "Ms. Laura Page", "id": 2413063}, {"name": "Abigail Conley", "id": 2437129}, {"name": "Megan Santos", "id": 52746}, {"name": "John Lindsey", "id": 2417419}, {"name": "James Chambers", "id": 2412079}, {"name": "Patrick Gomez", "id": 2474295}, {"name": "Michael Pratt", "id": 2502458}, {"name": "Adam Dickson", "id": 5288253}, {"name": "Kimberly Noble", "id": 2422080}, {"name": "Taylor Hill", "id": 32584}, {"name": "Hayden Cardenas", "id": 2480587}, {"name": "Russell Greene", "id": 4945106}, {"name": "Todd Harvey", "id": 5124830}, {"name": "Olivia Howell", "id": 3588068}, {"name": "Jaclyn Baker", "id": 2413670}, {"name": "Rebekah Reed", "id": 4932456}, {"name": "Lauren Rodriguez", "id": 105193}, {"name": "Tonya Walker", "id": 3588074}, {"name": "Michael Medina", "id": 296683}, {"name": "Matthew Erickson", "id": 20205}, {"name": "Daniel Johnson", "id": 5344494}, {"name": "Miguel Alexander", "id": 15475}, {"name": "Amanda Morris", "id": 2437114}, {"name": "Jeremy Henry", "id": 446460}, {"name": "Jennifer Murray", "id": 2429565}, {"name": "Robert Johnson", "id": 2435326}], "links": [{"source": 2817543, "target": 2412079}, {"source": 2817543, "target": 2413063}, {"source": 2817543, "target": 2429565}, {"source": 2817543, "target": 2480587}, {"source": 323336, "target": 296683}, {"source": 2437129, "target": 2437114}, {"source": 52746, "target": 105193}, {"source": 32584, "target": 105193}, {"source": 4945106, "target": 4932456}, {"source": 3588068, "target": 2437114}, {"source": 4932456, "target": 5344494}, {"source": 3588074, "target": 2437114}, {"source": 15475, "target": 446460}]}
|
[
2413063,
323336,
3588074,
32584,
2417419,
2474295,
2502458,
5288253,
2422080,
4932456,
5124830,
2413670,
20205,
15475,
2435326
] | 15 |
771 |
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 Lucas, Tanya Gordon, Kristina Rivers, Kathy Austin, Jeffrey Lee, Mary Arias DVM, David Giles, Kim Abbott, Kevin Schneider, Adrienne Hanson, Dawn Brown, Dr. Derek Weiss Jr., Joseph Riddle, Jason Roberts, Karen Palmer, Mr. Jeffrey Bush DDS, Randall Martinez, Lee Stokes, Melissa Garcia, Jonathan Mack, Bryan Mckinney, William Hernandez, Jacqueline Fitzgerald, Michael Thomas, Tanya Hoffman
- Fiendship connections: Amanda Lucas to Jacqueline Fitzgerald, Kristina Rivers to Kevin Schneider, Jeffrey Lee to Michael Thomas, Mary Arias DVM to Melissa Garcia, Mary Arias DVM to Jacqueline Fitzgerald, Mary Arias DVM to Dr. Derek Weiss Jr., Karen Palmer to William Hernandez, Mr. Jeffrey Bush DDS to Jonathan Mack, Bryan Mckinney to Michael Thomas, William Hernandez to Michael Thomas
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 Lucas", "id": 4939269}, {"name": "Tanya Gordon", "id": 4927750}, {"name": "Kristina Rivers", "id": 37511}, {"name": "Kathy Austin", "id": 4940427}, {"name": "Jeffrey Lee", "id": 1721234}, {"name": "Mary Arias DVM", "id": 5032857}, {"name": "David Giles", "id": 4945954}, {"name": "Kim Abbott", "id": 5170344}, {"name": "Kevin Schneider", "id": 632374}, {"name": "Adrienne Hanson", "id": 5180474}, {"name": "Dawn Brown", "id": 4982459}, {"name": "Dr. Derek Weiss Jr.", "id": 6053312}, {"name": "Joseph Riddle", "id": 5453250}, {"name": "Jason Roberts", "id": 5246531}, {"name": "Karen Palmer", "id": 1134546}, {"name": "Mr. Jeffrey Bush DDS", "id": 5522131}, {"name": "Randall Martinez", "id": 5168725}, {"name": "Lee Stokes", "id": 12633}, {"name": "Melissa Garcia", "id": 5198049}, {"name": "Jonathan Mack", "id": 4933730}, {"name": "Bryan Mckinney", "id": 1439335}, {"name": "William Hernandez", "id": 798440}, {"name": "Jacqueline Fitzgerald", "id": 5878892}, {"name": "Michael Thomas", "id": 1134580}, {"name": "Tanya Hoffman", "id": 5082235}], "links": [{"source": 4939269, "target": 5878892}, {"source": 37511, "target": 632374}, {"source": 1721234, "target": 1134580}, {"source": 5032857, "target": 5198049}, {"source": 5032857, "target": 5878892}, {"source": 5032857, "target": 6053312}, {"source": 1134546, "target": 798440}, {"source": 5522131, "target": 4933730}, {"source": 1439335, "target": 1134580}, {"source": 798440, "target": 1134580}]}
|
[
6053312,
4927750,
632374,
4940427,
1439335,
4945954,
5170344,
5180474,
4982459,
5453250,
5246531,
4933730,
5168725,
12633,
5082235
] | 15 |
772 |
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: Kurt Sullivan, Robert Clarke, Cheryl Wells, Caitlin Cline, Timothy Benson, Xavier Roberts, Michael Ball, Jesse Cannon, Jeffrey Moore, Kristen Waller, Angela Perez, Belinda Morris, Christopher Wilson, Marvin Barnes, Antonio Evans, Stacey Robbins, Ray Cummings, Hector Hayes, Randall Wise, Jesse Wilson, Mary Calhoun, Michael Carr, Kristina Reyes, Jeffrey Smith
- Fiendship connections: Kurt Sullivan to Cheryl Wells, Kurt Sullivan to Stacey Robbins, Kurt Sullivan to Randall Wise, Robert Clarke to Christopher Wilson, Robert Clarke to Kristen Waller, Cheryl Wells to Ray Cummings, Cheryl Wells to Kristina Reyes, Caitlin Cline to Jesse Cannon, Caitlin Cline to Christopher Wilson, Timothy Benson to Randall Wise, Xavier Roberts to Jesse Cannon, Michael Ball to Christopher Wilson, Jeffrey Moore to Mary Calhoun, Angela Perez to Christopher Wilson, Belinda Morris to Christopher Wilson, Christopher Wilson to Michael Carr, Christopher Wilson to Antonio Evans, Christopher Wilson to Hector Hayes, Christopher Wilson to Jesse Wilson, Ray Cummings to Hector Hayes
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": "Kurt Sullivan", "id": 2420871}, {"name": "Robert Clarke", "id": 2726288}, {"name": "Cheryl Wells", "id": 2416660}, {"name": "Caitlin Cline", "id": 2456091}, {"name": "Timothy Benson", "id": 2428582}, {"name": "Xavier Roberts", "id": 2456104}, {"name": "Michael Ball", "id": 2680744}, {"name": "Jesse Cannon", "id": 2404397}, {"name": "Jeffrey Moore", "id": 2406202}, {"name": "Kristen Waller", "id": 2433852}, {"name": "Angela Perez", "id": 3296321}, {"name": "Belinda Morris", "id": 3296330}, {"name": "Christopher Wilson", "id": 2426316}, {"name": "Marvin Barnes", "id": 2407761}, {"name": "Antonio Evans", "id": 3296341}, {"name": "Stacey Robbins", "id": 3111390}, {"name": "Ray Cummings", "id": 2455265}, {"name": "Hector Hayes", "id": 3296356}, {"name": "Randall Wise", "id": 3111400}, {"name": "Jesse Wilson", "id": 3296362}, {"name": "Mary Calhoun", "id": 2438383}, {"name": "Michael Carr", "id": 2983664}, {"name": "Kristina Reyes", "id": 2500092}, {"name": "Jeffrey Smith", "id": 2406782}], "links": [{"source": 2420871, "target": 2416660}, {"source": 2420871, "target": 3111390}, {"source": 2420871, "target": 3111400}, {"source": 2726288, "target": 2426316}, {"source": 2726288, "target": 2433852}, {"source": 2416660, "target": 2455265}, {"source": 2416660, "target": 2500092}, {"source": 2456091, "target": 2404397}, {"source": 2456091, "target": 2426316}, {"source": 2428582, "target": 3111400}, {"source": 2456104, "target": 2404397}, {"source": 2680744, "target": 2426316}, {"source": 2406202, "target": 2438383}, {"source": 3296321, "target": 2426316}, {"source": 3296330, "target": 2426316}, {"source": 2426316, "target": 2983664}, {"source": 2426316, "target": 3296341}, {"source": 2426316, "target": 3296356}, {"source": 2426316, "target": 3296362}, {"source": 2455265, "target": 3296356}]}
|
[
2420871,
2406202,
2407761,
2406782
] | 4 |
773 |
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: Hayden Atkins, Frank Miller, Rose Weiss, Michelle Bennett, Michael Sullivan, Jamie Fox, Courtney Flores, Wanda Yang, Julie Miller, Cole Smith, Sandra Santana, Christopher Zhang, Scott Lucas, Robert Valentine, Lori Bradley, Gene Smith, Brenda Ryan, Brandi Ward, Richard Moore, Jonathan Lopez
- Fiendship connections: Hayden Atkins to Courtney Flores, Hayden Atkins to Richard Moore, Hayden Atkins to Jonathan Lopez, Hayden Atkins to Julie Miller, Hayden Atkins to Robert Valentine, Hayden Atkins to Brenda Ryan, Hayden Atkins to Michelle Bennett, Hayden Atkins to Christopher Zhang, Hayden Atkins to Rose Weiss, Frank Miller to Sandra Santana, Frank Miller to Brandi Ward, Frank Miller to Lori Bradley, Rose Weiss to Christopher Zhang, Michael Sullivan to Jamie Fox, Michael Sullivan to Jonathan Lopez, Courtney Flores to Julie Miller, Julie Miller to Richard Moore, Cole Smith to Gene Smith, Cole Smith to Brenda Ryan, Sandra Santana to Brandi Ward, Sandra Santana to Lori Bradley, Scott Lucas to Gene Smith, Robert Valentine to Brenda Ryan, Lori Bradley to Brandi Ward
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": "Hayden Atkins", "id": 1491601}, {"name": "Frank Miller", "id": 949011}, {"name": "Rose Weiss", "id": 1711771}, {"name": "Michelle Bennett", "id": 1265820}, {"name": "Michael Sullivan", "id": 1169957}, {"name": "Jamie Fox", "id": 924071}, {"name": "Courtney Flores", "id": 852777}, {"name": "Wanda Yang", "id": 1149100}, {"name": "Julie Miller", "id": 1088817}, {"name": "Cole Smith", "id": 956082}, {"name": "Sandra Santana", "id": 1217718}, {"name": "Christopher Zhang", "id": 1334075}, {"name": "Scott Lucas", "id": 1085118}, {"name": "Robert Valentine", "id": 1108927}, {"name": "Lori Bradley", "id": 1856962}, {"name": "Gene Smith", "id": 958152}, {"name": "Brenda Ryan", "id": 1175502}, {"name": "Brandi Ward", "id": 1328338}, {"name": "Richard Moore", "id": 975454}, {"name": "Jonathan Lopez", "id": 1049594}], "links": [{"source": 1491601, "target": 852777}, {"source": 1491601, "target": 975454}, {"source": 1491601, "target": 1049594}, {"source": 1491601, "target": 1088817}, {"source": 1491601, "target": 1108927}, {"source": 1491601, "target": 1175502}, {"source": 1491601, "target": 1265820}, {"source": 1491601, "target": 1334075}, {"source": 1491601, "target": 1711771}, {"source": 949011, "target": 1217718}, {"source": 949011, "target": 1328338}, {"source": 949011, "target": 1856962}, {"source": 1711771, "target": 1334075}, {"source": 1169957, "target": 924071}, {"source": 1169957, "target": 1049594}, {"source": 852777, "target": 1088817}, {"source": 1088817, "target": 975454}, {"source": 956082, "target": 958152}, {"source": 956082, "target": 1175502}, {"source": 1217718, "target": 1328338}, {"source": 1217718, "target": 1856962}, {"source": 1085118, "target": 958152}, {"source": 1108927, "target": 1175502}, {"source": 1856962, "target": 1328338}]}
|
[
1169957,
1856962,
1149100
] | 3 |
774 |
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: Mark Henderson, Kelly Howell, Joseph Waters, Calvin Pennington, Desiree Bailey, Daniel Patel, Amy Hansen, Jacqueline Sawyer, Tony Smith, Hannah Simpson, Jeanette Baker, Willie Jackson, Christine Rowe, Dawn Chen, Sean Ellis, Mary Leonard
- Fiendship connections: Mark Henderson to Amy Hansen, Kelly Howell to Amy Hansen, Calvin Pennington to Amy Hansen, Daniel Patel to Sean Ellis, Amy Hansen to Hannah Simpson, Tony Smith to Jeanette Baker, Tony Smith to Willie Jackson, Christine Rowe to Sean Ellis, Sean Ellis to Mary Leonard
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": "Mark Henderson", "id": 1882594}, {"name": "Kelly Howell", "id": 2082949}, {"name": "Joseph Waters", "id": 1058950}, {"name": "Calvin Pennington", "id": 853288}, {"name": "Desiree Bailey", "id": 2486216}, {"name": "Daniel Patel", "id": 3408940}, {"name": "Amy Hansen", "id": 1481581}, {"name": "Jacqueline Sawyer", "id": 2461229}, {"name": "Tony Smith", "id": 5933331}, {"name": "Hannah Simpson", "id": 1555283}, {"name": "Jeanette Baker", "id": 5933334}, {"name": "Willie Jackson", "id": 5933335}, {"name": "Christine Rowe", "id": 2416543}, {"name": "Dawn Chen", "id": 2482073}, {"name": "Sean Ellis", "id": 2430589}, {"name": "Mary Leonard", "id": 2439519}], "links": [{"source": 1882594, "target": 1481581}, {"source": 2082949, "target": 1481581}, {"source": 853288, "target": 1481581}, {"source": 3408940, "target": 2430589}, {"source": 1481581, "target": 1555283}, {"source": 5933331, "target": 5933334}, {"source": 5933331, "target": 5933335}, {"source": 2416543, "target": 2430589}, {"source": 2430589, "target": 2439519}]}
|
[
1882594,
1058950,
2486216,
3408940,
2461229,
5933331,
2482073
] | 7 |
775 |
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 Osborne, Kimberly Villegas, Walter Dean, Michelle Harper, Mark Ward, William Perez, Jennifer Mclaughlin, Carolyn Johnson, Brenda Ramirez, Dr. William Ali MD, Richard Berg, Nicholas Haley, Jack Ortiz, Alexis Hodges, David Schneider, Robert Strickland, Alisha Koch, Darlene Cordova, Amanda Mitchell, Krystal Butler, Diane Green, Stefanie Lopez, Melissa Mann, Erik George, Michele Paul
- Fiendship connections: Kimberly Villegas to Krystal Butler, Michelle Harper to Brenda Ramirez, Michelle Harper to Diane Green, Michelle Harper to Melissa Mann, Michelle Harper to Michele Paul, Mark Ward to Dr. William Ali MD, William Perez to Dr. William Ali MD, Carolyn Johnson to Dr. William Ali MD, Brenda Ramirez to Melissa Mann, Brenda Ramirez to Michele Paul, Brenda Ramirez to Erik George, Richard Berg to Michele Paul, Jack Ortiz to Alexis Hodges, Alexis Hodges to Amanda Mitchell, David Schneider to Stefanie Lopez, Darlene Cordova to Amanda Mitchell, Melissa Mann to Michele Paul, Erik George to Michele Paul
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 Osborne", "id": 5147025}, {"name": "Kimberly Villegas", "id": 1974802}, {"name": "Walter Dean", "id": 1831313}, {"name": "Michelle Harper", "id": 2404756}, {"name": "Mark Ward", "id": 1208213}, {"name": "William Perez", "id": 1091355}, {"name": "Jennifer Mclaughlin", "id": 2498592}, {"name": "Carolyn Johnson", "id": 997793}, {"name": "Brenda Ramirez", "id": 2407076}, {"name": "Dr. William Ali MD", "id": 1637034}, {"name": "Richard Berg", "id": 4837418}, {"name": "Nicholas Haley", "id": 2445763}, {"name": "Jack Ortiz", "id": 5940036}, {"name": "Alexis Hodges", "id": 5523535}, {"name": "David Schneider", "id": 1941967}, {"name": "Robert Strickland", "id": 4966617}, {"name": "Alisha Koch", "id": 2499682}, {"name": "Darlene Cordova", "id": 5017577}, {"name": "Amanda Mitchell", "id": 5424490}, {"name": "Krystal Butler", "id": 1045873}, {"name": "Diane Green", "id": 2497657}, {"name": "Stefanie Lopez", "id": 1278586}, {"name": "Melissa Mann", "id": 2497659}, {"name": "Erik George", "id": 2629501}, {"name": "Michele Paul", "id": 2497662}], "links": [{"source": 1974802, "target": 1045873}, {"source": 2404756, "target": 2407076}, {"source": 2404756, "target": 2497657}, {"source": 2404756, "target": 2497659}, {"source": 2404756, "target": 2497662}, {"source": 1208213, "target": 1637034}, {"source": 1091355, "target": 1637034}, {"source": 997793, "target": 1637034}, {"source": 2407076, "target": 2497659}, {"source": 2407076, "target": 2497662}, {"source": 2407076, "target": 2629501}, {"source": 4837418, "target": 2497662}, {"source": 5940036, "target": 5523535}, {"source": 5523535, "target": 5424490}, {"source": 1941967, "target": 1278586}, {"source": 5017577, "target": 5424490}, {"source": 2497659, "target": 2497662}, {"source": 2629501, "target": 2497662}]}
|
[
5147025,
1045873,
1831313,
2407076,
997793,
2498592,
2445763,
5017577,
1278586,
4966617,
2499682
] | 11 |
776 |
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: Justin Armstrong, Karen Robinson, David Bentley, Richard Gonzalez, Nichole Harrison, Eric Braun, Marilyn Nelson, Caleb Clark DVM, Steve Meyers, Kristine Dunn, Michael Ford, Daniel Barr, Randy Jones, Kaitlyn Rojas, Kara Morrow, Morgan Stewart, Christopher Porter, Matthew Chapman, Sara Clark, Andrea Evans, David Vincent, Stephen Kelley
- Fiendship connections: Karen Robinson to Marilyn Nelson, Richard Gonzalez to Morgan Stewart, Eric Braun to Marilyn Nelson, Marilyn Nelson to Kara Morrow, Caleb Clark DVM to Randy Jones, Caleb Clark DVM to David Vincent, Caleb Clark DVM to Michael Ford, Caleb Clark DVM to Daniel Barr, Caleb Clark DVM to Christopher Porter, Steve Meyers to Morgan Stewart, Kristine Dunn to Daniel Barr, Michael Ford to Randy Jones, Morgan Stewart to Andrea Evans, Morgan Stewart to Sara 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": "Justin Armstrong", "id": 73984}, {"name": "Karen Robinson", "id": 39686}, {"name": "David Bentley", "id": 2473735}, {"name": "Richard Gonzalez", "id": 1329802}, {"name": "Nichole Harrison", "id": 16658}, {"name": "Eric Braun", "id": 42909}, {"name": "Marilyn Nelson", "id": 446751}, {"name": "Caleb Clark DVM", "id": 3015587}, {"name": "Steve Meyers", "id": 1561394}, {"name": "Kristine Dunn", "id": 2427316}, {"name": "Michael Ford", "id": 2473786}, {"name": "Daniel Barr", "id": 2473915}, {"name": "Randy Jones", "id": 2418242}, {"name": "Kaitlyn Rojas", "id": 2460354}, {"name": "Kara Morrow", "id": 19282}, {"name": "Morgan Stewart", "id": 859221}, {"name": "Christopher Porter", "id": 2474207}, {"name": "Matthew Chapman", "id": 1559648}, {"name": "Sara Clark", "id": 1060196}, {"name": "Andrea Evans", "id": 915702}, {"name": "David Vincent", "id": 2421626}, {"name": "Stephen Kelley", "id": 2455167}], "links": [{"source": 39686, "target": 446751}, {"source": 1329802, "target": 859221}, {"source": 42909, "target": 446751}, {"source": 446751, "target": 19282}, {"source": 3015587, "target": 2418242}, {"source": 3015587, "target": 2421626}, {"source": 3015587, "target": 2473786}, {"source": 3015587, "target": 2473915}, {"source": 3015587, "target": 2474207}, {"source": 1561394, "target": 859221}, {"source": 2427316, "target": 2473915}, {"source": 2473786, "target": 2418242}, {"source": 859221, "target": 915702}, {"source": 859221, "target": 1060196}]}
|
[
73984,
19282,
2473735,
1060196,
16658,
2418242,
2460354,
1559648,
2455167
] | 9 |
777 |
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 Vincent, Mr. Jason Fletcher, David Taylor, Dr. Cameron Castro, Stacy Hughes, Lindsay Perez, John Bright DVM, Michelle Alvarez DDS, Amanda Martinez, Cheyenne Webster, John Jackson III, Dana Campbell, Brian Crane, David Solis, Charles Jackson, Anthony Combs, Stephen Wright, Daniel Harrison, Robin Brown, Luke White, Melissa Bond, Jerry Taylor, Samantha Erickson
- Fiendship connections: Mr. Jason Fletcher to Cheyenne Webster, Mr. Jason Fletcher to Melissa Bond, Dr. Cameron Castro to Amanda Martinez, Dr. Cameron Castro to Stacy Hughes, Dr. Cameron Castro to John Bright DVM, Stacy Hughes to Amanda Martinez, Stacy Hughes to John Bright DVM, Lindsay Perez to Robin Brown, Lindsay Perez to Charles Jackson, John Bright DVM to Amanda Martinez, John Bright DVM to Daniel Harrison, John Bright DVM to Samantha Erickson, Michelle Alvarez DDS to John Jackson III, Michelle Alvarez DDS to Anthony Combs, Brian Crane to Luke White, David Solis to Robin Brown, David Solis to Charles Jackson, Stephen Wright to Jerry 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": "Amanda Vincent", "id": 5257346}, {"name": "Mr. Jason Fletcher", "id": 368648}, {"name": "David Taylor", "id": 2425227}, {"name": "Dr. Cameron Castro", "id": 1869966}, {"name": "Stacy Hughes", "id": 1869967}, {"name": "Lindsay Perez", "id": 4946579}, {"name": "John Bright DVM", "id": 1869972}, {"name": "Michelle Alvarez DDS", "id": 3775390}, {"name": "Amanda Martinez", "id": 907295}, {"name": "Cheyenne Webster", "id": 69926}, {"name": "John Jackson III", "id": 2448687}, {"name": "Dana Campbell", "id": 297908}, {"name": "Brian Crane", "id": 5531456}, {"name": "David Solis", "id": 5096392}, {"name": "Charles Jackson", "id": 5501257}, {"name": "Anthony Combs", "id": 2464972}, {"name": "Stephen Wright", "id": 6067921}, {"name": "Daniel Harrison", "id": 1381850}, {"name": "Robin Brown", "id": 5078491}, {"name": "Luke White", "id": 5922272}, {"name": "Melissa Bond", "id": 551535}, {"name": "Jerry Taylor", "id": 4979446}, {"name": "Samantha Erickson", "id": 1704315}], "links": [{"source": 368648, "target": 69926}, {"source": 368648, "target": 551535}, {"source": 1869966, "target": 907295}, {"source": 1869966, "target": 1869967}, {"source": 1869966, "target": 1869972}, {"source": 1869967, "target": 907295}, {"source": 1869967, "target": 1869972}, {"source": 4946579, "target": 5078491}, {"source": 4946579, "target": 5501257}, {"source": 1869972, "target": 907295}, {"source": 1869972, "target": 1381850}, {"source": 1869972, "target": 1704315}, {"source": 3775390, "target": 2448687}, {"source": 3775390, "target": 2464972}, {"source": 5531456, "target": 5922272}, {"source": 5096392, "target": 5078491}, {"source": 5096392, "target": 5501257}, {"source": 6067921, "target": 4979446}]}
|
[
5257346,
368648,
2425227,
1869966,
5096392,
2464972,
297908,
5531456,
6067921
] | 9 |
778 |
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: Peggy Roberts, Andrew Jones, Kelly Adams, Elizabeth Ayala, Justin Jones, Michelle Lam, Tracy Riley, Zachary Snyder, Karen Zhang, Debra Allen, David Friedman, Christopher Ramos, Joshua Conner, Richard Schwartz, Melissa Mills, Anna Fernandez, Jason Johnson, Jennifer Brady
- Fiendship connections: Peggy Roberts to Richard Schwartz, Peggy Roberts to David Friedman, Peggy Roberts to Jennifer Brady, Andrew Jones to Kelly Adams, Kelly Adams to Debra Allen, Kelly Adams to Joshua Conner, Elizabeth Ayala to Jason Johnson, Justin Jones to Anna Fernandez, Justin Jones to Christopher Ramos, Michelle Lam to Jason Johnson, Michelle Lam to David Friedman, Michelle Lam to Jennifer Brady, Tracy Riley to Zachary Snyder, Tracy Riley to Jennifer Brady, Debra Allen to Jason Johnson, David Friedman to Richard Schwartz, David Friedman to Jennifer Brady, Richard Schwartz to Jennifer Brady, Anna Fernandez to Jason Johnson
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": "Peggy Roberts", "id": 1677312}, {"name": "Andrew Jones", "id": 1017825}, {"name": "Kelly Adams", "id": 1287970}, {"name": "Elizabeth Ayala", "id": 1278371}, {"name": "Justin Jones", "id": 1276868}, {"name": "Michelle Lam", "id": 1213351}, {"name": "Tracy Riley", "id": 1269672}, {"name": "Zachary Snyder", "id": 1018473}, {"name": "Karen Zhang", "id": 922060}, {"name": "Debra Allen", "id": 1278381}, {"name": "David Friedman", "id": 1134766}, {"name": "Christopher Ramos", "id": 1276207}, {"name": "Joshua Conner", "id": 1451826}, {"name": "Richard Schwartz", "id": 802132}, {"name": "Melissa Mills", "id": 1266231}, {"name": "Anna Fernandez", "id": 1089369}, {"name": "Jason Johnson", "id": 808217}, {"name": "Jennifer Brady", "id": 1134779}], "links": [{"source": 1677312, "target": 802132}, {"source": 1677312, "target": 1134766}, {"source": 1677312, "target": 1134779}, {"source": 1017825, "target": 1287970}, {"source": 1287970, "target": 1278381}, {"source": 1287970, "target": 1451826}, {"source": 1278371, "target": 808217}, {"source": 1276868, "target": 1089369}, {"source": 1276868, "target": 1276207}, {"source": 1213351, "target": 808217}, {"source": 1213351, "target": 1134766}, {"source": 1213351, "target": 1134779}, {"source": 1269672, "target": 1018473}, {"source": 1269672, "target": 1134779}, {"source": 1278381, "target": 808217}, {"source": 1134766, "target": 802132}, {"source": 1134766, "target": 1134779}, {"source": 802132, "target": 1134779}, {"source": 1089369, "target": 808217}]}
|
[
1677312,
922060,
1266231
] | 3 |
779 |
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 Ford, Stacey Martin, Rebecca Lawrence, Angela Anderson, Donald Clark, Adam Dickerson, Martha English, Tanya Brandt, Amy Reed, Monica Gutierrez, Mitchell Taylor, Nathan Miller, Sharon Martinez, Katie Peck, Miranda Stevens, Jennifer Wyatt, Donna Kemp
- Fiendship connections: Stacey Martin to Sharon Martinez, Rebecca Lawrence to Adam Dickerson, Rebecca Lawrence to Amy Reed, Donald Clark to Amy Reed, Adam Dickerson to Amy Reed, Tanya Brandt to Donna Kemp, Amy Reed to Monica Gutierrez, Sharon Martinez to Jennifer Wyatt, Sharon Martinez to Miranda Stevens, Katie Peck to Donna Kemp
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 Ford", "id": 5020002}, {"name": "Stacey Martin", "id": 816739}, {"name": "Rebecca Lawrence", "id": 5082884}, {"name": "Angela Anderson", "id": 2451718}, {"name": "Donald Clark", "id": 5071207}, {"name": "Adam Dickerson", "id": 5193224}, {"name": "Martha English", "id": 2428617}, {"name": "Tanya Brandt", "id": 2404938}, {"name": "Amy Reed", "id": 5364751}, {"name": "Monica Gutierrez", "id": 5142387}, {"name": "Mitchell Taylor", "id": 5254387}, {"name": "Nathan Miller", "id": 5062933}, {"name": "Sharon Martinez", "id": 1341335}, {"name": "Katie Peck", "id": 2485785}, {"name": "Miranda Stevens", "id": 979098}, {"name": "Jennifer Wyatt", "id": 781086}, {"name": "Donna Kemp", "id": 2510335}], "links": [{"source": 816739, "target": 1341335}, {"source": 5082884, "target": 5193224}, {"source": 5082884, "target": 5364751}, {"source": 5071207, "target": 5364751}, {"source": 5193224, "target": 5364751}, {"source": 2404938, "target": 2510335}, {"source": 5364751, "target": 5142387}, {"source": 1341335, "target": 781086}, {"source": 1341335, "target": 979098}, {"source": 2485785, "target": 2510335}]}
|
[
5020002,
979098,
5082884,
2451718,
2428617,
2485785,
5254387,
5062933
] | 8 |
780 |
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: Kyle Maddox, Mrs. Vanessa Perkins PhD, Kathleen Gallegos, Jill Mckinney, Stephen Thornton, Wesley Bailey, Michelle Gonzalez, Eric Hall, Stacy Ray, Paige Calderon, Wendy Sullivan, Daniel Larsen, Anna Cannon, Ronald Garcia, Sandra Rodriguez
- Fiendship connections: Kyle Maddox to Sandra Rodriguez, Kyle Maddox to Mrs. Vanessa Perkins PhD, Mrs. Vanessa Perkins PhD to Wendy Sullivan, Kathleen Gallegos to Sandra Rodriguez, Jill Mckinney to Sandra Rodriguez, Jill Mckinney to Wesley Bailey, Stephen Thornton to Sandra Rodriguez, Wesley Bailey to Anna Cannon, Michelle Gonzalez to Sandra Rodriguez, Michelle Gonzalez to Daniel Larsen, Eric Hall to Ronald Garcia, Stacy Ray to Sandra Rodriguez, Paige Calderon to Anna Cannon, Daniel Larsen to Ronald Garcia
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": "Kyle Maddox", "id": 5041056}, {"name": "Mrs. Vanessa Perkins PhD", "id": 5010498}, {"name": "Kathleen Gallegos", "id": 6106691}, {"name": "Jill Mckinney", "id": 4933570}, {"name": "Stephen Thornton", "id": 5675525}, {"name": "Wesley Bailey", "id": 4944867}, {"name": "Michelle Gonzalez", "id": 5769103}, {"name": "Eric Hall", "id": 5032847}, {"name": "Stacy Ray", "id": 5030417}, {"name": "Paige Calderon", "id": 5235855}, {"name": "Wendy Sullivan", "id": 5216788}, {"name": "Daniel Larsen", "id": 4947349}, {"name": "Anna Cannon", "id": 4944917}, {"name": "Ronald Garcia", "id": 4998266}, {"name": "Sandra Rodriguez", "id": 4933502}], "links": [{"source": 5041056, "target": 4933502}, {"source": 5041056, "target": 5010498}, {"source": 5010498, "target": 5216788}, {"source": 6106691, "target": 4933502}, {"source": 4933570, "target": 4933502}, {"source": 4933570, "target": 4944867}, {"source": 5675525, "target": 4933502}, {"source": 4944867, "target": 4944917}, {"source": 5769103, "target": 4933502}, {"source": 5769103, "target": 4947349}, {"source": 5032847, "target": 4998266}, {"source": 5030417, "target": 4933502}, {"source": 5235855, "target": 4944917}, {"source": 4947349, "target": 4998266}]}
|
[
5041056
] | 1 |
781 |
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 Swanson, Tiffany Morrison, Curtis Nguyen, Trevor Harvey, Courtney Jensen, Mark Gutierrez, Kimberly Fox, Patricia Huffman, Jason Newman, Debra Matthews, Laura Bond, Gina Beck, Brittany Salazar, Melanie Long, Tyler Nielsen, Teresa Rhodes, Michelle Thomas
- Fiendship connections: Kenneth Swanson to Michelle Thomas, Kenneth Swanson to Debra Matthews, Tiffany Morrison to Laura Bond, Curtis Nguyen to Laura Bond, Curtis Nguyen to Jason Newman, Curtis Nguyen to Tyler Nielsen, Trevor Harvey to Tyler Nielsen, Kimberly Fox to Brittany Salazar, Kimberly Fox to Laura Bond, Patricia Huffman to Michelle Thomas, Laura Bond to Brittany Salazar, Laura Bond to Tyler Nielsen, Gina Beck to Michelle Thomas, Teresa Rhodes to Michelle Thomas
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 Swanson", "id": 2668834}, {"name": "Tiffany Morrison", "id": 1755426}, {"name": "Curtis Nguyen", "id": 1793796}, {"name": "Trevor Harvey", "id": 903429}, {"name": "Courtney Jensen", "id": 2410250}, {"name": "Mark Gutierrez", "id": 1103274}, {"name": "Kimberly Fox", "id": 989228}, {"name": "Patricia Huffman", "id": 2429676}, {"name": "Jason Newman", "id": 1727182}, {"name": "Debra Matthews", "id": 2476943}, {"name": "Laura Bond", "id": 989232}, {"name": "Gina Beck", "id": 3881936}, {"name": "Brittany Salazar", "id": 787183}, {"name": "Melanie Long", "id": 2450271}, {"name": "Tyler Nielsen", "id": 1732055}, {"name": "Teresa Rhodes", "id": 3881947}, {"name": "Michelle Thomas", "id": 2452191}], "links": [{"source": 2668834, "target": 2452191}, {"source": 2668834, "target": 2476943}, {"source": 1755426, "target": 989232}, {"source": 1793796, "target": 989232}, {"source": 1793796, "target": 1727182}, {"source": 1793796, "target": 1732055}, {"source": 903429, "target": 1732055}, {"source": 989228, "target": 787183}, {"source": 989228, "target": 989232}, {"source": 2429676, "target": 2452191}, {"source": 989232, "target": 787183}, {"source": 989232, "target": 1732055}, {"source": 3881936, "target": 2452191}, {"source": 3881947, "target": 2452191}]}
|
[
2668834,
1755426,
2410250,
1103274,
2450271
] | 5 |
782 |
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: Leslie Vang, Mark Scott, Joseph Delgado, Autumn Allen, Sarah Thompson, Kara Khan, Tammy Lara, Larry Mckenzie, Samuel Mcconnell, Shane Cobb, Adam Ali, Donna Brown, Melissa Wilkinson, Darren Moore, Michael Combs, Gina Edwards, Shawn Murray
- Fiendship connections: Leslie Vang to Kara Khan, Leslie Vang to Samuel Mcconnell, Leslie Vang to Adam Ali, Leslie Vang to Donna Brown, Leslie Vang to Melissa Wilkinson, Joseph Delgado to Gina Edwards, Autumn Allen to Michael Combs, Sarah Thompson to Shawn Murray, Kara Khan to Samuel Mcconnell, Kara Khan to Shane Cobb
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": "Leslie Vang", "id": 2456322}, {"name": "Mark Scott", "id": 2484835}, {"name": "Joseph Delgado", "id": 24132}, {"name": "Autumn Allen", "id": 4898854}, {"name": "Sarah Thompson", "id": 2411592}, {"name": "Kara Khan", "id": 2404398}, {"name": "Tammy Lara", "id": 2473967}, {"name": "Larry Mckenzie", "id": 2459794}, {"name": "Samuel Mcconnell", "id": 2436755}, {"name": "Shane Cobb", "id": 2456469}, {"name": "Adam Ali", "id": 3982200}, {"name": "Donna Brown", "id": 3982201}, {"name": "Melissa Wilkinson", "id": 3982202}, {"name": "Darren Moore", "id": 2491480}, {"name": "Michael Combs", "id": 2500860}, {"name": "Gina Edwards", "id": 671421}, {"name": "Shawn Murray", "id": 2413310}], "links": [{"source": 2456322, "target": 2404398}, {"source": 2456322, "target": 2436755}, {"source": 2456322, "target": 3982200}, {"source": 2456322, "target": 3982201}, {"source": 2456322, "target": 3982202}, {"source": 24132, "target": 671421}, {"source": 4898854, "target": 2500860}, {"source": 2411592, "target": 2413310}, {"source": 2404398, "target": 2436755}, {"source": 2404398, "target": 2456469}]}
|
[
2456322,
2484835,
24132,
2500860,
2411592,
2473967,
2459794,
2491480
] | 8 |
783 |
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: Eric Fleming, Frank Scott, Eric Johnson, Suzanne Evans, Lauren Blevins, Mary Fry, Toni Goodman, Donna Martin, Mr. Benjamin Jones, Martha Black, Juan Mcdaniel, Shelley Martinez, Eric Garcia, Susan Castillo, William Moody, Jill Russell, Douglas Campbell, Mrs. Elizabeth Brown, Robert Martinez, Scott Bautista MD
- Fiendship connections: Eric Fleming to Jill Russell, Eric Fleming to Eric Johnson, Frank Scott to Mary Fry, Eric Johnson to Mary Fry, Suzanne Evans to Eric Garcia, Lauren Blevins to Shelley Martinez, Lauren Blevins to Susan Castillo, Mary Fry to Juan Mcdaniel, Toni Goodman to Douglas Campbell, Donna Martin to Shelley Martinez, Martha Black to Eric Garcia, Martha Black to Douglas Campbell, Shelley Martinez to Scott Bautista MD, Shelley Martinez to Mrs. Elizabeth Brown, Shelley Martinez to Robert 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": "Eric Fleming", "id": 31618}, {"name": "Frank Scott", "id": 310543}, {"name": "Eric Johnson", "id": 310289}, {"name": "Suzanne Evans", "id": 26271}, {"name": "Lauren Blevins", "id": 867104}, {"name": "Mary Fry", "id": 39978}, {"name": "Toni Goodman", "id": 162995}, {"name": "Donna Martin", "id": 1274421}, {"name": "Mr. Benjamin Jones", "id": 45877}, {"name": "Martha Black", "id": 39482}, {"name": "Juan Mcdaniel", "id": 94908}, {"name": "Shelley Martinez", "id": 868673}, {"name": "Eric Garcia", "id": 39489}, {"name": "Susan Castillo", "id": 1175112}, {"name": "William Moody", "id": 20055}, {"name": "Jill Russell", "id": 267624}, {"name": "Douglas Campbell", "id": 39539}, {"name": "Mrs. Elizabeth Brown", "id": 893045}, {"name": "Robert Martinez", "id": 1460982}, {"name": "Scott Bautista MD", "id": 868853}], "links": [{"source": 31618, "target": 267624}, {"source": 31618, "target": 310289}, {"source": 310543, "target": 39978}, {"source": 310289, "target": 39978}, {"source": 26271, "target": 39489}, {"source": 867104, "target": 868673}, {"source": 867104, "target": 1175112}, {"source": 39978, "target": 94908}, {"source": 162995, "target": 39539}, {"source": 1274421, "target": 868673}, {"source": 39482, "target": 39489}, {"source": 39482, "target": 39539}, {"source": 868673, "target": 868853}, {"source": 868673, "target": 893045}, {"source": 868673, "target": 1460982}]}
|
[
31618,
39489,
867104,
45877,
20055
] | 5 |
784 |
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 Davis, Michael Noble, Jacob Zamora, Chad Rodriguez, Johnny Walters, Stacey Price, Caroline Edwards, Denise Nelson, Thomas Marshall, James Johnson, Bradley Shannon, Elizabeth Hunt, Ashley Collins, Laura Stevenson, Jill Serrano, Stacey Novak, Crystal Roth, Lee Craig, Christopher Atkinson, Chad Stewart, Emily Rogers, Abigail Merritt
- Fiendship connections: Sarah Davis to Denise Nelson, Michael Noble to James Johnson, Jacob Zamora to James Johnson, Chad Rodriguez to Bradley Shannon, Chad Rodriguez to Chad Stewart, Johnny Walters to Stacey Price, Johnny Walters to Lee Craig, Stacey Price to Lee Craig, Denise Nelson to Thomas Marshall, Denise Nelson to Emily Rogers, James Johnson to Ashley Collins, James Johnson to Abigail Merritt, James Johnson to Elizabeth Hunt, Laura Stevenson to Christopher Atkinson, Laura Stevenson to Crystal Roth, Crystal Roth to Christopher Atkinson
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 Davis", "id": 5109634}, {"name": "Michael Noble", "id": 2473992}, {"name": "Jacob Zamora", "id": 2474260}, {"name": "Chad Rodriguez", "id": 3796117}, {"name": "Johnny Walters", "id": 4981145}, {"name": "Stacey Price", "id": 4947751}, {"name": "Caroline Edwards", "id": 2414631}, {"name": "Denise Nelson", "id": 5568809}, {"name": "Thomas Marshall", "id": 4942633}, {"name": "James Johnson", "id": 3066798}, {"name": "Bradley Shannon", "id": 2447795}, {"name": "Elizabeth Hunt", "id": 2474292}, {"name": "Ashley Collins", "id": 2435129}, {"name": "Laura Stevenson", "id": 238014}, {"name": "Jill Serrano", "id": 2474310}, {"name": "Stacey Novak", "id": 2436810}, {"name": "Crystal Roth", "id": 46167}, {"name": "Lee Craig", "id": 4981209}, {"name": "Christopher Atkinson", "id": 10977}, {"name": "Chad Stewart", "id": 2493162}, {"name": "Emily Rogers", "id": 5066871}, {"name": "Abigail Merritt", "id": 2471161}], "links": [{"source": 5109634, "target": 5568809}, {"source": 2473992, "target": 3066798}, {"source": 2474260, "target": 3066798}, {"source": 3796117, "target": 2447795}, {"source": 3796117, "target": 2493162}, {"source": 4981145, "target": 4947751}, {"source": 4981145, "target": 4981209}, {"source": 4947751, "target": 4981209}, {"source": 5568809, "target": 4942633}, {"source": 5568809, "target": 5066871}, {"source": 3066798, "target": 2435129}, {"source": 3066798, "target": 2471161}, {"source": 3066798, "target": 2474292}, {"source": 238014, "target": 10977}, {"source": 238014, "target": 46167}, {"source": 46167, "target": 10977}]}
|
[
5066871,
2471161,
2493162,
4981145,
2414631,
10977,
2474310,
2436810
] | 8 |
785 |
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 Hall, Samantha Miller, Ms. Janet Walker, Sarah White, Michael Reed, Jay Tucker, Thomas Blake, Jacob Vaughn, Mrs. Christina Wilson, Kelsey Miller, Steven Mcgee, Holly Richard, Marc Simon, Cynthia Bryan, Ashley Gibson, Kevin Mack, Richard Glover, James Maxwell, Cassandra Tran, Barry Davis, Kimberly Spears, Daniel Sanders, Mark Bishop, Christopher Gordon
- Fiendship connections: Michael Hall to Christopher Gordon, Michael Hall to Mrs. Christina Wilson, Samantha Miller to Jacob Vaughn, Samantha Miller to James Maxwell, Samantha Miller to Daniel Sanders, Ms. Janet Walker to Steven Mcgee, Sarah White to Barry Davis, Thomas Blake to Jacob Vaughn, Jacob Vaughn to Marc Simon, Jacob Vaughn to Daniel Sanders, Jacob Vaughn to James Maxwell, Jacob Vaughn to Ashley Gibson, Jacob Vaughn to Mark Bishop, Holly Richard to Christopher Gordon, Marc Simon to James Maxwell, Ashley Gibson to James Maxwell, Ashley Gibson to Daniel Sanders, Kevin Mack to Cassandra Tran, James Maxwell to Daniel Sanders, James Maxwell to Mark Bishop, Daniel Sanders to Mark Bishop
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 Hall", "id": 2430218}, {"name": "Samantha Miller", "id": 5280382}, {"name": "Ms. Janet Walker", "id": 2454543}, {"name": "Sarah White", "id": 4980368}, {"name": "Michael Reed", "id": 2495376}, {"name": "Jay Tucker", "id": 5077648}, {"name": "Thomas Blake", "id": 4976147}, {"name": "Jacob Vaughn", "id": 4946967}, {"name": "Mrs. Christina Wilson", "id": 3397784}, {"name": "Kelsey Miller", "id": 2955420}, {"name": "Steven Mcgee", "id": 2467741}, {"name": "Holly Richard", "id": 2480670}, {"name": "Marc Simon", "id": 4975918}, {"name": "Cynthia Bryan", "id": 2474293}, {"name": "Ashley Gibson", "id": 5189695}, {"name": "Kevin Mack", "id": 2420935}, {"name": "Richard Glover", "id": 5160392}, {"name": "James Maxwell", "id": 4947657}, {"name": "Cassandra Tran", "id": 3117898}, {"name": "Barry Davis", "id": 5353444}, {"name": "Kimberly Spears", "id": 4973286}, {"name": "Daniel Sanders", "id": 5280367}, {"name": "Mark Bishop", "id": 5280377}, {"name": "Christopher Gordon", "id": 3397630}], "links": [{"source": 2430218, "target": 3397630}, {"source": 2430218, "target": 3397784}, {"source": 5280382, "target": 4946967}, {"source": 5280382, "target": 4947657}, {"source": 5280382, "target": 5280367}, {"source": 2454543, "target": 2467741}, {"source": 4980368, "target": 5353444}, {"source": 4976147, "target": 4946967}, {"source": 4946967, "target": 4975918}, {"source": 4946967, "target": 5280367}, {"source": 4946967, "target": 4947657}, {"source": 4946967, "target": 5189695}, {"source": 4946967, "target": 5280377}, {"source": 2480670, "target": 3397630}, {"source": 4975918, "target": 4947657}, {"source": 5189695, "target": 4947657}, {"source": 5189695, "target": 5280367}, {"source": 2420935, "target": 3117898}, {"source": 4947657, "target": 5280367}, {"source": 4947657, "target": 5280377}, {"source": 5280367, "target": 5280377}]}
|
[
3397784,
4947657,
2467741,
4980368,
2495376,
5077648,
2955420,
2474293,
3117898,
5160392,
4973286
] | 11 |
786 |
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 Salinas, Joshua Beck, Dr. Michelle Green, Mr. Robert Preston, Stephanie Carter, Deborah Martin, Tracy Nelson, Michael Benson, Dana Kirby, Jacqueline Jimenez, Brent Gibbs, Edward Santos, Jessica Castro, Tyler Ruiz, Amber Fields
- Fiendship connections: Jason Salinas to Dana Kirby, Joshua Beck to Jacqueline Jimenez, Dr. Michelle Green to Edward Santos, Dr. Michelle Green to Deborah Martin, Mr. Robert Preston to Brent Gibbs, Mr. Robert Preston to Michael Benson, Stephanie Carter to Amber Fields, Deborah Martin to Jessica Castro, Deborah Martin to Edward Santos, Deborah Martin to Tracy Nelson, Deborah Martin to Dana Kirby, Tracy Nelson to Dana Kirby, Dana Kirby to Jessica Castro, Dana Kirby to Edward Santos, Dana Kirby to Amber Fields, Brent Gibbs to Jessica Castro, Tyler Ruiz to Amber Fields
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 Salinas", "id": 2403233}, {"name": "Joshua Beck", "id": 894264}, {"name": "Dr. Michelle Green", "id": 1493985}, {"name": "Mr. Robert Preston", "id": 1452417}, {"name": "Stephanie Carter", "id": 1350501}, {"name": "Deborah Martin", "id": 2180806}, {"name": "Tracy Nelson", "id": 2196422}, {"name": "Michael Benson", "id": 917097}, {"name": "Dana Kirby", "id": 2294538}, {"name": "Jacqueline Jimenez", "id": 1962410}, {"name": "Brent Gibbs", "id": 876382}, {"name": "Edward Santos", "id": 2077848}, {"name": "Jessica Castro", "id": 1648633}, {"name": "Tyler Ruiz", "id": 1696189}, {"name": "Amber Fields", "id": 2196382}], "links": [{"source": 2403233, "target": 2294538}, {"source": 894264, "target": 1962410}, {"source": 1493985, "target": 2077848}, {"source": 1493985, "target": 2180806}, {"source": 1452417, "target": 876382}, {"source": 1452417, "target": 917097}, {"source": 1350501, "target": 2196382}, {"source": 2180806, "target": 1648633}, {"source": 2180806, "target": 2077848}, {"source": 2180806, "target": 2196422}, {"source": 2180806, "target": 2294538}, {"source": 2196422, "target": 2294538}, {"source": 2294538, "target": 1648633}, {"source": 2294538, "target": 2077848}, {"source": 2294538, "target": 2196382}, {"source": 876382, "target": 1648633}, {"source": 1696189, "target": 2196382}]}
|
[
2403233,
894264
] | 2 |
787 |
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: Carrie Weber, Megan Warner, Samantha Cook, Lisa Perez, Linda Eaton, Cynthia Taylor, Joseph Bean, Amy Adams, Christopher Williams, Jennifer White, Paul Lee, Michael Perez, Matthew Tanner, Elizabeth Ford, Mary Bailey, Kari Smith, Catherine Kelley, Dennis West, Alexander Dunn, Thomas Johnson, Eric Lee, Arthur Wagner, Theodore Smith, Stacy Barajas, Karl Graham, April Salinas, Vanessa Wall, Mary Robinson
- Fiendship connections: Carrie Weber to Joseph Bean, Carrie Weber to Karl Graham, Carrie Weber to Theodore Smith, Carrie Weber to Cynthia Taylor, Megan Warner to Amy Adams, Megan Warner to Christopher Williams, Samantha Cook to Amy Adams, Lisa Perez to Alexander Dunn, Linda Eaton to Amy Adams, Linda Eaton to Vanessa Wall, Amy Adams to Vanessa Wall, Jennifer White to Alexander Dunn, Mary Bailey to Dennis West, Kari Smith to Mary Robinson, Catherine Kelley to Alexander Dunn, Eric Lee to Vanessa Wall, Arthur Wagner to Vanessa Wall
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": "Carrie Weber", "id": 1964289}, {"name": "Megan Warner", "id": 2863493}, {"name": "Samantha Cook", "id": 2863501}, {"name": "Lisa Perez", "id": 2417168}, {"name": "Linda Eaton", "id": 2863511}, {"name": "Cynthia Taylor", "id": 1994647}, {"name": "Joseph Bean", "id": 1038362}, {"name": "Amy Adams", "id": 2413467}, {"name": "Christopher Williams", "id": 2465181}, {"name": "Jennifer White", "id": 2474280}, {"name": "Paul Lee", "id": 5042474}, {"name": "Michael Perez", "id": 4977966}, {"name": "Matthew Tanner", "id": 2417733}, {"name": "Elizabeth Ford", "id": 1499208}, {"name": "Mary Bailey", "id": 2478536}, {"name": "Kari Smith", "id": 4993485}, {"name": "Catherine Kelley", "id": 2442838}, {"name": "Dennis West", "id": 4539608}, {"name": "Alexander Dunn", "id": 2946660}, {"name": "Thomas Johnson", "id": 2424292}, {"name": "Eric Lee", "id": 3212009}, {"name": "Arthur Wagner", "id": 3212010}, {"name": "Theodore Smith", "id": 1503467}, {"name": "Stacy Barajas", "id": 2460142}, {"name": "Karl Graham", "id": 1044463}, {"name": "April Salinas", "id": 2408307}, {"name": "Vanessa Wall", "id": 2423412}, {"name": "Mary Robinson", "id": 5392632}], "links": [{"source": 1964289, "target": 1038362}, {"source": 1964289, "target": 1044463}, {"source": 1964289, "target": 1503467}, {"source": 1964289, "target": 1994647}, {"source": 2863493, "target": 2413467}, {"source": 2863493, "target": 2465181}, {"source": 2863501, "target": 2413467}, {"source": 2417168, "target": 2946660}, {"source": 2863511, "target": 2413467}, {"source": 2863511, "target": 2423412}, {"source": 2413467, "target": 2423412}, {"source": 2474280, "target": 2946660}, {"source": 2478536, "target": 4539608}, {"source": 4993485, "target": 5392632}, {"source": 2442838, "target": 2946660}, {"source": 3212009, "target": 2423412}, {"source": 3212010, "target": 2423412}]}
|
[
1964289,
2863493,
2417168,
5042474,
4977966,
2417733,
1499208,
2478536,
5392632,
2424292,
2460142,
2408307
] | 12 |
788 |
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: Mike Deleon, Shelley Wiley, Luis Gardner, Kenneth Jacobs, Martin Jackson, Brandon Andrews, Patricia Turner, Kenneth Sloan, Joshua Aguilar, Matthew Kennedy, Sarah Martinez, Mr. Blake Douglas, William Abbott, Robert Harvey, April Kramer
- Fiendship connections: Mike Deleon to Kenneth Sloan, Patricia Turner to Matthew Kennedy, Joshua Aguilar to Mr. Blake Douglas, Matthew Kennedy to April Kramer, Matthew Kennedy to William Abbott, Sarah Martinez to Robert Harvey
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": "Mike Deleon", "id": 6020192}, {"name": "Shelley Wiley", "id": 8834}, {"name": "Luis Gardner", "id": 5362691}, {"name": "Kenneth Jacobs", "id": 1153157}, {"name": "Martin Jackson", "id": 4990821}, {"name": "Brandon Andrews", "id": 8523}, {"name": "Patricia Turner", "id": 32878}, {"name": "Kenneth Sloan", "id": 4933742}, {"name": "Joshua Aguilar", "id": 5363566}, {"name": "Matthew Kennedy", "id": 290993}, {"name": "Sarah Martinez", "id": 4963953}, {"name": "Mr. Blake Douglas", "id": 5089331}, {"name": "William Abbott", "id": 66068}, {"name": "Robert Harvey", "id": 5585496}, {"name": "April Kramer", "id": 2233}], "links": [{"source": 6020192, "target": 4933742}, {"source": 32878, "target": 290993}, {"source": 5363566, "target": 5089331}, {"source": 290993, "target": 2233}, {"source": 290993, "target": 66068}, {"source": 4963953, "target": 5585496}]}
|
[
6020192,
8834,
5362691,
1153157,
4990821,
8523,
290993,
5089331,
5585496
] | 9 |
789 |
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: Evan Ramirez, Brian Hale, Robert Knapp, Jeffrey Adams, Brian Dalton, Ronald Zimmerman, Shannon Page, Jose Thompson, Mary Kim, Larry Gonzalez, Keith Carney, Mr. Kevin Brown, Kelly Tanner, Matthew Cook, Kelly Cortez, Michael Dixon, Matthew Martinez, Laurie Fisher, Erica Reyes, Kelsey Wright, James Evans
- Fiendship connections: Evan Ramirez to Brian Hale, Evan Ramirez to Kelly Tanner, Brian Hale to Shannon Page, Brian Hale to Michael Dixon, Brian Hale to Matthew Martinez, Brian Hale to Laurie Fisher, Brian Hale to Erica Reyes, Robert Knapp to Kelly Tanner, Jeffrey Adams to Kelsey Wright, Jeffrey Adams to Matthew Cook, Brian Dalton to Kelly Tanner, Ronald Zimmerman to Matthew Cook, Mary Kim to James Evans, Mary Kim to Matthew Cook, Larry Gonzalez to Keith Carney
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": "Evan Ramirez", "id": 87682}, {"name": "Brian Hale", "id": 350986}, {"name": "Robert Knapp", "id": 102690}, {"name": "Jeffrey Adams", "id": 2461224}, {"name": "Brian Dalton", "id": 32693}, {"name": "Ronald Zimmerman", "id": 2449206}, {"name": "Shannon Page", "id": 277576}, {"name": "Jose Thompson", "id": 2480073}, {"name": "Mary Kim", "id": 2463309}, {"name": "Larry Gonzalez", "id": 146639}, {"name": "Keith Carney", "id": 146640}, {"name": "Mr. Kevin Brown", "id": 129880}, {"name": "Kelly Tanner", "id": 90841}, {"name": "Matthew Cook", "id": 3828968}, {"name": "Kelly Cortez", "id": 2478315}, {"name": "Michael Dixon", "id": 426604}, {"name": "Matthew Martinez", "id": 426605}, {"name": "Laurie Fisher", "id": 426606}, {"name": "Erica Reyes", "id": 426607}, {"name": "Kelsey Wright", "id": 2455793}, {"name": "James Evans", "id": 2557170}], "links": [{"source": 87682, "target": 350986}, {"source": 87682, "target": 90841}, {"source": 350986, "target": 277576}, {"source": 350986, "target": 426604}, {"source": 350986, "target": 426605}, {"source": 350986, "target": 426606}, {"source": 350986, "target": 426607}, {"source": 102690, "target": 90841}, {"source": 2461224, "target": 2455793}, {"source": 2461224, "target": 3828968}, {"source": 32693, "target": 90841}, {"source": 2449206, "target": 3828968}, {"source": 2463309, "target": 2557170}, {"source": 2463309, "target": 3828968}, {"source": 146639, "target": 146640}]}
|
[
87682,
2461224,
2480073,
146640,
129880,
2478315
] | 6 |
790 |
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 Johnson, Matthew Taylor, Tamara Williams, Linda Coffey, Lawrence Mcdaniel, Joshua Wilson, Megan Gilmore, Andrew Pope, Seth Smith, Benjamin Hall, Mary Williams, Michael Manning, John Fuentes, Mr. Trevor Hernandez MD, Katelyn Thompson, John Lewis, Michael Smith, Whitney Riley
- Fiendship connections: Matthew Taylor to Seth Smith, Matthew Taylor to Mary Williams, Matthew Taylor to Megan Gilmore, Tamara Williams to Whitney Riley, Linda Coffey to Mr. Trevor Hernandez MD, Lawrence Mcdaniel to Joshua Wilson, Lawrence Mcdaniel to John Lewis, Joshua Wilson to Mary Williams, Megan Gilmore to Mary Williams, Andrew Pope to Katelyn Thompson, Andrew Pope to John Fuentes, Andrew Pope to Mr. Trevor Hernandez MD, Andrew Pope to John Lewis, Seth Smith to Benjamin Hall, Benjamin Hall to Whitney Riley, Michael Manning to Katelyn Thompson, Michael Manning to Mr. Trevor Hernandez MD, Mr. Trevor Hernandez MD to Michael Smith, Katelyn Thompson to Michael 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": "Robert Johnson", "id": 4955680}, {"name": "Matthew Taylor", "id": 4953923}, {"name": "Tamara Williams", "id": 5428835}, {"name": "Linda Coffey", "id": 5069224}, {"name": "Lawrence Mcdaniel", "id": 5168617}, {"name": "Joshua Wilson", "id": 5018601}, {"name": "Megan Gilmore", "id": 4973259}, {"name": "Andrew Pope", "id": 4960684}, {"name": "Seth Smith", "id": 4976458}, {"name": "Benjamin Hall", "id": 5100433}, {"name": "Mary Williams", "id": 4983764}, {"name": "Michael Manning", "id": 4977653}, {"name": "John Fuentes", "id": 4989623}, {"name": "Mr. Trevor Hernandez MD", "id": 5080888}, {"name": "Katelyn Thompson", "id": 4932282}, {"name": "John Lewis", "id": 5488797}, {"name": "Michael Smith", "id": 4940446}, {"name": "Whitney Riley", "id": 5119421}], "links": [{"source": 4953923, "target": 4976458}, {"source": 4953923, "target": 4983764}, {"source": 4953923, "target": 4973259}, {"source": 5428835, "target": 5119421}, {"source": 5069224, "target": 5080888}, {"source": 5168617, "target": 5018601}, {"source": 5168617, "target": 5488797}, {"source": 5018601, "target": 4983764}, {"source": 4973259, "target": 4983764}, {"source": 4960684, "target": 4932282}, {"source": 4960684, "target": 4989623}, {"source": 4960684, "target": 5080888}, {"source": 4960684, "target": 5488797}, {"source": 4976458, "target": 5100433}, {"source": 5100433, "target": 5119421}, {"source": 4977653, "target": 4932282}, {"source": 4977653, "target": 5080888}, {"source": 5080888, "target": 4940446}, {"source": 4932282, "target": 4940446}]}
|
[
4955680,
4953923
] | 2 |
791 |
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: Bethany Snyder, Adrienne Rodriguez, Christine Russell, Timothy Taylor, Jennifer King, Kathryn Garcia, Jennifer Scott, Thomas Harris, Elizabeth Reilly, Emily Lester, Julia Sims, Jonathan Gonzalez, Michael Ferrell, Ashley Mason, Cassandra Ayala, Frank Hobbs, Kelly Drake, Brandi Morris
- Fiendship connections: Bethany Snyder to Jennifer King, Bethany Snyder to Christine Russell, Bethany Snyder to Kelly Drake, Bethany Snyder to Ashley Mason, Bethany Snyder to Brandi Morris, Bethany Snyder to Cassandra Ayala, Bethany Snyder to Kathryn Garcia, Bethany Snyder to Thomas Harris, Bethany Snyder to Elizabeth Reilly, Bethany Snyder to Frank Hobbs, Bethany Snyder to Michael Ferrell, Adrienne Rodriguez to Timothy Taylor, Christine Russell to Ashley Mason, Christine Russell to Jennifer Scott, Timothy Taylor to Emily Lester, Kathryn Garcia to Ashley Mason, Emily Lester to Brandi Morris, Julia Sims to Cassandra Ayala, Julia Sims to Jonathan 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": "Bethany Snyder", "id": 2466529}, {"name": "Adrienne Rodriguez", "id": 2553570}, {"name": "Christine Russell", "id": 2430401}, {"name": "Timothy Taylor", "id": 2405764}, {"name": "Jennifer King", "id": 2405797}, {"name": "Kathryn Garcia", "id": 3513121}, {"name": "Jennifer Scott", "id": 3406887}, {"name": "Thomas Harris", "id": 4239783}, {"name": "Elizabeth Reilly", "id": 4239799}, {"name": "Emily Lester", "id": 2485130}, {"name": "Julia Sims", "id": 2442887}, {"name": "Jonathan Gonzalez", "id": 3280387}, {"name": "Michael Ferrell", "id": 4239862}, {"name": "Ashley Mason", "id": 2488342}, {"name": "Cassandra Ayala", "id": 3025464}, {"name": "Frank Hobbs", "id": 4239835}, {"name": "Kelly Drake", "id": 2487228}, {"name": "Brandi Morris", "id": 2662974}], "links": [{"source": 2466529, "target": 2405797}, {"source": 2466529, "target": 2430401}, {"source": 2466529, "target": 2487228}, {"source": 2466529, "target": 2488342}, {"source": 2466529, "target": 2662974}, {"source": 2466529, "target": 3025464}, {"source": 2466529, "target": 3513121}, {"source": 2466529, "target": 4239783}, {"source": 2466529, "target": 4239799}, {"source": 2466529, "target": 4239835}, {"source": 2466529, "target": 4239862}, {"source": 2553570, "target": 2405764}, {"source": 2430401, "target": 2488342}, {"source": 2430401, "target": 3406887}, {"source": 2405764, "target": 2485130}, {"source": 3513121, "target": 2488342}, {"source": 2485130, "target": 2662974}, {"source": 2442887, "target": 3025464}, {"source": 2442887, "target": 3280387}]}
|
[
2466529
] | 1 |
792 |
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 Jackson, Michael Torres, Tricia Chambers, Wanda Johnson, Mr. Cody Castaneda III, Andrea Myers, William Foster, Michael Waters, James Figueroa, Monica Hall, Andrew Flores, Jennifer Cantrell, Caroline Sanchez, Alexis Irwin, Tiffany Greene, Gerald Reyes, Catherine Sanchez, Charles Anderson, Mary Cooley, Jason Sanchez, Maria Williams, Jeremy Rivera, Frank Davis, Sharon Sanchez, Mary Martin, Kyle Spencer, Emily Crawford
- Fiendship connections: Jason Jackson to Monica Hall, Jason Jackson to Andrew Flores, Michael Torres to Emily Crawford, Tricia Chambers to Emily Crawford, Wanda Johnson to Mr. Cody Castaneda III, Wanda Johnson to Jason Sanchez, Andrea Myers to Emily Crawford, William Foster to Jeremy Rivera, William Foster to Emily Crawford, Michael Waters to Kyle Spencer, Michael Waters to Mary Cooley, James Figueroa to Emily Crawford, James Figueroa to Monica Hall, James Figueroa to Caroline Sanchez, Andrew Flores to Catherine Sanchez, Alexis Irwin to Tiffany Greene, Tiffany Greene to Jeremy Rivera, Gerald Reyes to Frank Davis, Catherine Sanchez to Maria Williams, Charles Anderson to Emily Crawford, Mary Cooley to Maria Williams, Frank Davis to Emily Crawford, Mary Martin to Emily Crawford
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 Jackson", "id": 5097984}, {"name": "Michael Torres", "id": 6067074}, {"name": "Tricia Chambers", "id": 5011075}, {"name": "Wanda Johnson", "id": 1262469}, {"name": "Mr. Cody Castaneda III", "id": 901639}, {"name": "Andrea Myers", "id": 5431051}, {"name": "William Foster", "id": 6040078}, {"name": "Michael Waters", "id": 4993300}, {"name": "James Figueroa", "id": 5010581}, {"name": "Monica Hall", "id": 5098005}, {"name": "Andrew Flores", "id": 5098015}, {"name": "Jennifer Cantrell", "id": 1426079}, {"name": "Caroline Sanchez", "id": 5471905}, {"name": "Alexis Irwin", "id": 4942624}, {"name": "Tiffany Greene", "id": 5265450}, {"name": "Gerald Reyes", "id": 4979388}, {"name": "Catherine Sanchez", "id": 4972990}, {"name": "Charles Anderson", "id": 5635280}, {"name": "Mary Cooley", "id": 4971607}, {"name": "Jason Sanchez", "id": 1520603}, {"name": "Maria Williams", "id": 4988385}, {"name": "Jeremy Rivera", "id": 4978027}, {"name": "Frank Davis", "id": 5427949}, {"name": "Sharon Sanchez", "id": 2044272}, {"name": "Mary Martin", "id": 6067313}, {"name": "Kyle Spencer", "id": 4931579}, {"name": "Emily Crawford", "id": 4984060}], "links": [{"source": 5097984, "target": 5098005}, {"source": 5097984, "target": 5098015}, {"source": 6067074, "target": 4984060}, {"source": 5011075, "target": 4984060}, {"source": 1262469, "target": 901639}, {"source": 1262469, "target": 1520603}, {"source": 5431051, "target": 4984060}, {"source": 6040078, "target": 4978027}, {"source": 6040078, "target": 4984060}, {"source": 4993300, "target": 4931579}, {"source": 4993300, "target": 4971607}, {"source": 5010581, "target": 4984060}, {"source": 5010581, "target": 5098005}, {"source": 5010581, "target": 5471905}, {"source": 5098015, "target": 4972990}, {"source": 4942624, "target": 5265450}, {"source": 5265450, "target": 4978027}, {"source": 4979388, "target": 5427949}, {"source": 4972990, "target": 4988385}, {"source": 5635280, "target": 4984060}, {"source": 4971607, "target": 4988385}, {"source": 5427949, "target": 4984060}, {"source": 6067313, "target": 4984060}]}
|
[
5097984,
1520603,
1426079,
2044272
] | 4 |
793 |
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: Dr. Daniel Petty, Sheila Johnson, Toni Preston, Patrick Farrell, Shelby Jenkins, Monica Dyer, Alexandra Thompson, Christina Hernandez, Vickie Nichols, Patricia Moreno, David Hicks, Kathryn Williams, Kelsey Ramirez, Tracey Shepard, Allison Turner, Jillian Phillips
- Fiendship connections: Dr. Daniel Petty to Allison Turner, Dr. Daniel Petty to Patrick Farrell, Sheila Johnson to Allison Turner, Sheila Johnson to Kathryn Williams, Toni Preston to Allison Turner, Patrick Farrell to Patricia Moreno, Patrick Farrell to Tracey Shepard, Patrick Farrell to Shelby Jenkins, Patrick Farrell to Christina Hernandez, Shelby Jenkins to Allison Turner, Alexandra Thompson to Allison Turner, Christina Hernandez to Jillian Phillips, Vickie Nichols to Allison Turner, David Hicks to Allison Turner, Kathryn Williams to Kelsey Ramirez
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": "Dr. Daniel Petty", "id": 686019}, {"name": "Sheila Johnson", "id": 11907}, {"name": "Toni Preston", "id": 685832}, {"name": "Patrick Farrell", "id": 240170}, {"name": "Shelby Jenkins", "id": 685932}, {"name": "Monica Dyer", "id": 81804}, {"name": "Alexandra Thompson", "id": 686030}, {"name": "Christina Hernandez", "id": 707440}, {"name": "Vickie Nichols", "id": 685809}, {"name": "Patricia Moreno", "id": 57532}, {"name": "David Hicks", "id": 686067}, {"name": "Kathryn Williams", "id": 18675}, {"name": "Kelsey Ramirez", "id": 150169}, {"name": "Tracey Shepard", "id": 524415}, {"name": "Allison Turner", "id": 122141}, {"name": "Jillian Phillips", "id": 94879}], "links": [{"source": 686019, "target": 122141}, {"source": 686019, "target": 240170}, {"source": 11907, "target": 122141}, {"source": 11907, "target": 18675}, {"source": 685832, "target": 122141}, {"source": 240170, "target": 57532}, {"source": 240170, "target": 524415}, {"source": 240170, "target": 685932}, {"source": 240170, "target": 707440}, {"source": 685932, "target": 122141}, {"source": 686030, "target": 122141}, {"source": 707440, "target": 94879}, {"source": 685809, "target": 122141}, {"source": 686067, "target": 122141}, {"source": 18675, "target": 150169}]}
|
[
686019,
81804
] | 2 |
794 |
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 Kaufman, Allison Nguyen, Gregory Mendoza, Gloria Rodriguez, Dr. Garrett Tanner, Kristin Scott, Carolyn Travis, Matthew Smith, Lisa Porter, Emily Norris, Jody Ortiz, Joseph Holmes, Tyler Bautista, Jonathan Gilmore, Debbie Reynolds, Charles Mason, Cheryl Moore
- Fiendship connections: Amanda Kaufman to Charles Mason, Allison Nguyen to Kristin Scott, Allison Nguyen to Jody Ortiz, Allison Nguyen to Joseph Holmes, Allison Nguyen to Gloria Rodriguez, Allison Nguyen to Charles Mason, Gregory Mendoza to Jonathan Gilmore, Gloria Rodriguez to Charles Mason, Dr. Garrett Tanner to Charles Mason, Kristin Scott to Charles Mason, Carolyn Travis to Tyler Bautista, Carolyn Travis to Cheryl Moore, Matthew Smith to Debbie Reynolds, Matthew Smith to Lisa Porter, Lisa Porter to Jonathan Gilmore, Jody Ortiz to Tyler Bautista, Jody Ortiz to Charles Mason, Joseph Holmes to Tyler Bautista, Debbie Reynolds to Cheryl Moore
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 Kaufman", "id": 1369153}, {"name": "Allison Nguyen", "id": 1998274}, {"name": "Gregory Mendoza", "id": 1601537}, {"name": "Gloria Rodriguez", "id": 1737828}, {"name": "Dr. Garrett Tanner", "id": 1745317}, {"name": "Kristin Scott", "id": 1058886}, {"name": "Carolyn Travis", "id": 1439782}, {"name": "Matthew Smith", "id": 1562728}, {"name": "Lisa Porter", "id": 1601767}, {"name": "Emily Norris", "id": 1450090}, {"name": "Jody Ortiz", "id": 1352203}, {"name": "Joseph Holmes", "id": 1352204}, {"name": "Tyler Bautista", "id": 1317293}, {"name": "Jonathan Gilmore", "id": 1408935}, {"name": "Debbie Reynolds", "id": 1211419}, {"name": "Charles Mason", "id": 1958652}, {"name": "Cheryl Moore", "id": 1799391}], "links": [{"source": 1369153, "target": 1958652}, {"source": 1998274, "target": 1058886}, {"source": 1998274, "target": 1352203}, {"source": 1998274, "target": 1352204}, {"source": 1998274, "target": 1737828}, {"source": 1998274, "target": 1958652}, {"source": 1601537, "target": 1408935}, {"source": 1737828, "target": 1958652}, {"source": 1745317, "target": 1958652}, {"source": 1058886, "target": 1958652}, {"source": 1439782, "target": 1317293}, {"source": 1439782, "target": 1799391}, {"source": 1562728, "target": 1211419}, {"source": 1562728, "target": 1601767}, {"source": 1601767, "target": 1408935}, {"source": 1352203, "target": 1317293}, {"source": 1352203, "target": 1958652}, {"source": 1352204, "target": 1317293}, {"source": 1211419, "target": 1799391}]}
|
[
1369153,
1450090
] | 2 |
795 |
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 Alvarado, Regina Peterson, Kristin Howard, Janet Wall, Valerie Stokes, Dr. Gary Anderson, Amy Hinton, David Ramirez, Jonathan Hicks, Christina Maldonado, James Andersen, Ryan Moody, Norma Garcia, Suzanne Wilson, Katherine Sanders, Jesse Reyes, Jennifer Hahn, Mr. Kenneth Leach III, Steven Collins, Ruben Nelson, Richard Rodriguez, James Nelson, Danielle Smith
- Fiendship connections: Daniel Alvarado to Katherine Sanders, Daniel Alvarado to Ryan Moody, Regina Peterson to Jennifer Hahn, Regina Peterson to Janet Wall, Regina Peterson to Dr. Gary Anderson, Regina Peterson to Amy Hinton, Regina Peterson to David Ramirez, Regina Peterson to Jonathan Hicks, Regina Peterson to Christina Maldonado, Regina Peterson to James Andersen, Kristin Howard to James Nelson, Ryan Moody to Jesse Reyes, Ryan Moody to Norma Garcia, Ryan Moody to Ruben Nelson, Ryan Moody to Danielle Smith, Ryan Moody to Suzanne Wilson, Mr. Kenneth Leach III to James Nelson
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 Alvarado", "id": 2477318}, {"name": "Regina Peterson", "id": 2411024}, {"name": "Kristin Howard", "id": 4406544}, {"name": "Janet Wall", "id": 2796441}, {"name": "Valerie Stokes", "id": 2431770}, {"name": "Dr. Gary Anderson", "id": 2796443}, {"name": "Amy Hinton", "id": 2796444}, {"name": "David Ramirez", "id": 2796445}, {"name": "Jonathan Hicks", "id": 2796446}, {"name": "Christina Maldonado", "id": 2796447}, {"name": "James Andersen", "id": 2796449}, {"name": "Ryan Moody", "id": 2810536}, {"name": "Norma Garcia", "id": 2463784}, {"name": "Suzanne Wilson", "id": 2466513}, {"name": "Katherine Sanders", "id": 2477141}, {"name": "Jesse Reyes", "id": 2427863}, {"name": "Jennifer Hahn", "id": 2403677}, {"name": "Mr. Kenneth Leach III", "id": 2898142}, {"name": "Steven Collins", "id": 2478686}, {"name": "Ruben Nelson", "id": 2465774}, {"name": "Richard Rodriguez", "id": 2473077}, {"name": "James Nelson", "id": 2472952}, {"name": "Danielle Smith", "id": 2466041}], "links": [{"source": 2477318, "target": 2477141}, {"source": 2477318, "target": 2810536}, {"source": 2411024, "target": 2403677}, {"source": 2411024, "target": 2796441}, {"source": 2411024, "target": 2796443}, {"source": 2411024, "target": 2796444}, {"source": 2411024, "target": 2796445}, {"source": 2411024, "target": 2796446}, {"source": 2411024, "target": 2796447}, {"source": 2411024, "target": 2796449}, {"source": 4406544, "target": 2472952}, {"source": 2810536, "target": 2427863}, {"source": 2810536, "target": 2463784}, {"source": 2810536, "target": 2465774}, {"source": 2810536, "target": 2466041}, {"source": 2810536, "target": 2466513}, {"source": 2898142, "target": 2472952}]}
|
[
2477318,
2796449,
4406544,
2431770,
2478686,
2473077
] | 6 |
796 |
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, Kayla Delgado DVM, Christian Sanchez, Mrs. Sharon Burton, Juan Rice, Michael Cobb, Lisa Briggs, Jerome Ho, Dale Mason, James Cook, Christopher Carr, Amy Boyd, Joyce Fletcher, Megan Mason, Kiara Martin, Anthony Kelley, Jose Anderson, Anita Hill, Joshua Richards, Helen Rangel, Melanie Mcdaniel, Lisa Young
- Fiendship connections: Christian Sanchez to Anthony Kelley, Juan Rice to Joyce Fletcher, Michael Cobb to Melanie Mcdaniel, Lisa Briggs to Joyce Fletcher, Jerome Ho to Joyce Fletcher, Dale Mason to Kiara Martin, James Cook to Kiara Martin, Christopher Carr to Joyce Fletcher, Joyce Fletcher to Lisa Young, Megan Mason to Kiara Martin, Kiara Martin to Anthony Kelley
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": "Kayla Delgado DVM", "id": 5401607}, {"name": "Christian Sanchez", "id": 4061705}, {"name": "Mrs. Sharon Burton", "id": 2431378}, {"name": "Juan Rice", "id": 5371550}, {"name": "Michael Cobb", "id": 3747489}, {"name": "Lisa Briggs", "id": 6046630}, {"name": "Jerome Ho", "id": 6046638}, {"name": "Dale Mason", "id": 2442799}, {"name": "James Cook", "id": 2462768}, {"name": "Christopher Carr", "id": 4931118}, {"name": "Amy Boyd", "id": 2462393}, {"name": "Joyce Fletcher", "id": 5762234}, {"name": "Megan Mason", "id": 2454973}, {"name": "Kiara Martin", "id": 3218120}, {"name": "Anthony Kelley", "id": 2464342}, {"name": "Jose Anderson", "id": 2478810}, {"name": "Anita Hill", "id": 2488670}, {"name": "Joshua Richards", "id": 2425568}, {"name": "Helen Rangel", "id": 2455016}, {"name": "Melanie Mcdaniel", "id": 2446057}, {"name": "Lisa Young", "id": 5340393}], "links": [{"source": 4061705, "target": 2464342}, {"source": 5371550, "target": 5762234}, {"source": 3747489, "target": 2446057}, {"source": 6046630, "target": 5762234}, {"source": 6046638, "target": 5762234}, {"source": 2442799, "target": 3218120}, {"source": 2462768, "target": 3218120}, {"source": 4931118, "target": 5762234}, {"source": 5762234, "target": 5340393}, {"source": 2454973, "target": 3218120}, {"source": 3218120, "target": 2464342}]}
|
[
2463878,
5401607,
3218120,
2431378,
6046630,
3747489,
2462393,
2478810,
2488670,
2425568,
2455016
] | 11 |
797 |
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 Marquez, Jim Chan, Kent Moore, William Jones, Sarah Ford, Tamara Ortiz, Joseph Stevenson, Joseph Thomas, Jose Walter, Christie Hill, James Herrera, Amanda Rivas, Ryan Graham, Michael Alexander, Kimberly Baldwin, Jay Cline, Brian Hull, Diana Mcgee, Matthew Padilla
- Fiendship connections: Julie Marquez to William Jones, Julie Marquez to Kent Moore, Sarah Ford to Joseph Stevenson, Sarah Ford to Kimberly Baldwin, Sarah Ford to Matthew Padilla, Sarah Ford to Michael Alexander, Sarah Ford to Jay Cline, Tamara Ortiz to James Herrera, Joseph Stevenson to Kimberly Baldwin, Joseph Stevenson to Jay Cline, Joseph Thomas to Christie Hill, James Herrera to Brian Hull, James Herrera to Diana Mcgee, James Herrera to Ryan Graham, Michael Alexander to Kimberly Baldwin, Kimberly Baldwin to Matthew Padilla, Kimberly Baldwin to Jay Cline
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 Marquez", "id": 583944}, {"name": "Jim Chan", "id": 4965777}, {"name": "Kent Moore", "id": 116758}, {"name": "William Jones", "id": 8738}, {"name": "Sarah Ford", "id": 1173926}, {"name": "Tamara Ortiz", "id": 5624999}, {"name": "Joseph Stevenson", "id": 1398191}, {"name": "Joseph Thomas", "id": 46128}, {"name": "Jose Walter", "id": 4998449}, {"name": "Christie Hill", "id": 471488}, {"name": "James Herrera", "id": 5358020}, {"name": "Amanda Rivas", "id": 1667026}, {"name": "Ryan Graham", "id": 4965460}, {"name": "Michael Alexander", "id": 2028638}, {"name": "Kimberly Baldwin", "id": 1666150}, {"name": "Jay Cline", "id": 1965415}, {"name": "Brian Hull", "id": 4949743}, {"name": "Diana Mcgee", "id": 4958835}, {"name": "Matthew Padilla", "id": 1819639}], "links": [{"source": 583944, "target": 8738}, {"source": 583944, "target": 116758}, {"source": 1173926, "target": 1398191}, {"source": 1173926, "target": 1666150}, {"source": 1173926, "target": 1819639}, {"source": 1173926, "target": 2028638}, {"source": 1173926, "target": 1965415}, {"source": 5624999, "target": 5358020}, {"source": 1398191, "target": 1666150}, {"source": 1398191, "target": 1965415}, {"source": 46128, "target": 471488}, {"source": 5358020, "target": 4949743}, {"source": 5358020, "target": 4958835}, {"source": 5358020, "target": 4965460}, {"source": 2028638, "target": 1666150}, {"source": 1666150, "target": 1819639}, {"source": 1666150, "target": 1965415}]}
|
[
583944,
4965777,
1666150,
5358020,
46128,
4998449,
1667026
] | 7 |
798 |
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: Willie Kelly, Stephen Fitzgerald, Thomas Daniels, John Berry, Carol Stephenson, Sharon Wheeler, Rebecca Moore, Stephanie Williams, Matthew Sandoval, Billy Hernandez, Rebecca Curry, Thomas Cochran, Mr. Edward Myers, Robert Fields, Alexander Williams, Sheila Smith, Elizabeth Mitchell, Erika White, David Meadows, Christian Montgomery, Kari Smith, Travis Hughes, Isabel Wade, Austin Perez, Frederick Wyatt, Troy Brennan, Melanie Donovan, Melissa Nguyen, Mary Robinson, Mr. Nathaniel Mitchell MD
- Fiendship connections: Willie Kelly to Elizabeth Mitchell, Stephen Fitzgerald to Mr. Nathaniel Mitchell MD, Thomas Daniels to Melissa Nguyen, John Berry to Travis Hughes, John Berry to Sharon Wheeler, Carol Stephenson to Thomas Cochran, Sharon Wheeler to Travis Hughes, Sharon Wheeler to David Meadows, Sharon Wheeler to Rebecca Curry, Sharon Wheeler to Rebecca Moore, Stephanie Williams to Sheila Smith, Stephanie Williams to Isabel Wade, Stephanie Williams to Austin Perez, Billy Hernandez to Mr. Edward Myers, Robert Fields to Melissa Nguyen, Elizabeth Mitchell to Melanie Donovan, Elizabeth Mitchell to Melissa Nguyen, Erika White to Melissa Nguyen, David Meadows to Travis Hughes, David Meadows to Christian Montgomery, Kari Smith to Mary Robinson, Isabel Wade to Mr. Nathaniel Mitchell MD, Melanie Donovan to Melissa Nguyen
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": "Willie Kelly", "id": 3644045}, {"name": "Stephen Fitzgerald", "id": 2475279}, {"name": "Thomas Daniels", "id": 2536988}, {"name": "John Berry", "id": 1333149}, {"name": "Carol Stephenson", "id": 5082014}, {"name": "Sharon Wheeler", "id": 1920545}, {"name": "Rebecca Moore", "id": 2067361}, {"name": "Stephanie Williams", "id": 2484644}, {"name": "Matthew Sandoval", "id": 2436645}, {"name": "Billy Hernandez", "id": 1005349}, {"name": "Rebecca Curry", "id": 1846694}, {"name": "Thomas Cochran", "id": 5034158}, {"name": "Mr. Edward Myers", "id": 938548}, {"name": "Robert Fields", "id": 2597431}, {"name": "Alexander Williams", "id": 2449340}, {"name": "Sheila Smith", "id": 2408129}, {"name": "Elizabeth Mitchell", "id": 2439875}, {"name": "Erika White", "id": 3645385}, {"name": "David Meadows", "id": 1286474}, {"name": "Christian Montgomery", "id": 1286475}, {"name": "Kari Smith", "id": 4993485}, {"name": "Travis Hughes", "id": 1197776}, {"name": "Isabel Wade", "id": 2412884}, {"name": "Austin Perez", "id": 4669657}, {"name": "Frederick Wyatt", "id": 2441051}, {"name": "Troy Brennan", "id": 2429535}, {"name": "Melanie Donovan", "id": 2439912}, {"name": "Melissa Nguyen", "id": 2439919}, {"name": "Mary Robinson", "id": 5392632}, {"name": "Mr. Nathaniel Mitchell MD", "id": 2412030}], "links": [{"source": 3644045, "target": 2439875}, {"source": 2475279, "target": 2412030}, {"source": 2536988, "target": 2439919}, {"source": 1333149, "target": 1197776}, {"source": 1333149, "target": 1920545}, {"source": 5082014, "target": 5034158}, {"source": 1920545, "target": 1197776}, {"source": 1920545, "target": 1286474}, {"source": 1920545, "target": 1846694}, {"source": 1920545, "target": 2067361}, {"source": 2484644, "target": 2408129}, {"source": 2484644, "target": 2412884}, {"source": 2484644, "target": 4669657}, {"source": 1005349, "target": 938548}, {"source": 2597431, "target": 2439919}, {"source": 2439875, "target": 2439912}, {"source": 2439875, "target": 2439919}, {"source": 3645385, "target": 2439919}, {"source": 1286474, "target": 1197776}, {"source": 1286474, "target": 1286475}, {"source": 4993485, "target": 5392632}, {"source": 2412884, "target": 2412030}, {"source": 2439912, "target": 2439919}]}
|
[
2439875,
2408129,
1920545,
5034158,
2436645,
938548,
2449340,
5392632,
2441051,
2429535
] | 10 |
799 |
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 Rhodes, Timothy Jones, Lisa Colon, Sherri Mitchell, Terri Fletcher, Rebecca Rose, Alicia Morgan, Matthew Dickson, Christopher Patel, Gabriel Sanchez, Jessica Peterson, Michael Jefferson, Tracey Hill, Brian Jimenez, Jordan Moreno
- Fiendship connections: Timothy Jones to Alicia Morgan, Timothy Jones to Tracey Hill, Lisa Colon to Rebecca Rose, Lisa Colon to Jordan Moreno, Sherri Mitchell to Christopher Patel, Terri Fletcher to Matthew Dickson, Matthew Dickson to Christopher Patel, Christopher Patel to Gabriel Sanchez, Michael Jefferson to Brian Jimenez
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 Rhodes", "id": 2437857}, {"name": "Timothy Jones", "id": 2464738}, {"name": "Lisa Colon", "id": 1585955}, {"name": "Sherri Mitchell", "id": 2422370}, {"name": "Terri Fletcher", "id": 2474181}, {"name": "Rebecca Rose", "id": 1511364}, {"name": "Alicia Morgan", "id": 2436035}, {"name": "Matthew Dickson", "id": 2418248}, {"name": "Christopher Patel", "id": 3015951}, {"name": "Gabriel Sanchez", "id": 2445360}, {"name": "Jessica Peterson", "id": 2420976}, {"name": "Michael Jefferson", "id": 853459}, {"name": "Tracey Hill", "id": 4218102}, {"name": "Brian Jimenez", "id": 2085880}, {"name": "Jordan Moreno", "id": 1661214}], "links": [{"source": 2464738, "target": 2436035}, {"source": 2464738, "target": 4218102}, {"source": 1585955, "target": 1511364}, {"source": 1585955, "target": 1661214}, {"source": 2422370, "target": 3015951}, {"source": 2474181, "target": 2418248}, {"source": 2418248, "target": 3015951}, {"source": 3015951, "target": 2445360}, {"source": 853459, "target": 2085880}]}
|
[
2437857,
2464738,
1585955,
2422370,
2420976,
2085880
] | 6 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.