task_name,problem_type,instruction,instance,solution,obj,instance_variant,solution_variant,context_index,input_format,input_index_base SCP,SCP,"In my neighborhood someone is figuring out how to protect a whole house with detectors: the task is to pick which models to place around the house so each room gets at least one detector, and to do that while minimizing how many detector units are used overall. The way to judge any plan is by counting every detector installed across all rooms — the smaller that count, the better. Every room must have coverage, and putting more than one detector in the same room only increases the total and is therefore less desirable. The concrete layout and model options are listed below. { ""total_rooms"": 24, ""num_candidate_installations"": 24, ""sets"": [ { ""candidate_installation_id"": ""S1"", ""rooms_covered"": [ ""W"", ""X"" ] }, { ""candidate_installation_id"": ""S2"", ""rooms_covered"": [ ""B"", ""E"", ""I"", ""K"", ""O"" ] }, { ""candidate_installation_id"": ""S3"", ""rooms_covered"": [ ""C"", ""O"", ""S"", ""V"" ] }, { ""candidate_installation_id"": ""S4"", ""rooms_covered"": [ ""C"", ""D"", ""F"", ""N"", ""O"", ""V"" ] }, { ""candidate_installation_id"": ""S5"", ""rooms_covered"": [ ""B"", ""E"", ""I"", ""L"", ""O"", ""U"" ] }, { ""candidate_installation_id"": ""S6"", ""rooms_covered"": [ ""D"", ""F"", ""G"", ""Q"", ""W"" ] }, { ""candidate_installation_id"": ""S7"", ""rooms_covered"": [ ""A"", ""G"", ""H"", ""R"", ""W"", ""X"" ] }, { ""candidate_installation_id"": ""S8"", ""rooms_covered"": [ ""G"", ""H"", ""R"" ] }, { ""candidate_installation_id"": ""S9"", ""rooms_covered"": [ ""B"", ""E"", ""F"", ""K"", ""L"" ] }, { ""candidate_installation_id"": ""S10"", ""rooms_covered"": [ ""J"", ""P"", ""S"" ] }, { ""candidate_installation_id"": ""S11"", ""rooms_covered"": [ ""B"", ""K"" ] }, { ""candidate_installation_id"": ""S12"", ""rooms_covered"": [ ""E"", ""M"", ""U"" ] }, { ""candidate_installation_id"": ""S13"", ""rooms_covered"": [ ""L"", ""M"", ""U"" ] }, { ""candidate_installation_id"": ""S14"", ""rooms_covered"": [ ""C"", ""D"" ] }, { ""candidate_installation_id"": ""S15"", ""rooms_covered"": [ ""B"", ""C"", ""I"", ""O"", ""V"" ] }, { ""candidate_installation_id"": ""S16"", ""rooms_covered"": [ ""J"", ""P"" ] }, { ""candidate_installation_id"": ""S17"", ""rooms_covered"": [ ""F"", ""G"" ] }, { ""candidate_installation_id"": ""S18"", ""rooms_covered"": [ ""G"", ""H"", ""T"", ""X"" ] }, { ""candidate_installation_id"": ""S19"", ""rooms_covered"": [ ""C"", ""J"", ""N"", ""P"" ] }, { ""candidate_installation_id"": ""S20"", ""rooms_covered"": [ ""R"", ""X"" ] }, { ""candidate_installation_id"": ""S21"", ""rooms_covered"": [ ""E"", ""L"", ""M"" ] }, { ""candidate_installation_id"": ""S22"", ""rooms_covered"": [ ""O"", ""V"" ] }, { ""candidate_installation_id"": ""S23"", ""rooms_covered"": [ ""A"", ""F"", ""G"", ""X"" ] }, { ""candidate_installation_id"": ""S24"", ""rooms_covered"": [ ""A"", ""G"", ""H"", ""R"", ""T"", ""W"", ""X"" ] } ] } Also, when you send back your plan, just put the chosen detector identifiers into a tiny JSON object so it's easy to read — something like this (this is just the shape, not the actual answer): { ""solution"": [""detector_id"", ...] } Think of it like a simple form: ""solution"" is the list of detector models you picked (one entry for each model you want installed). The placeholder detector_id stands in for whatever exact IDs the instance uses; replace those placeholders with the real IDs from the problem when you answer. This JSON is only a sketch of the expected shape — not the actual solution. Please use the identifiers exactly as they appear in the instance input — no renaming and no new labels. - for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 24, 'num_sets': 24, 'density': 0.15625, 'sets': [{'id': 1, 'elements': [23, 24]}, {'id': 2, 'elements': [2, 5, 9, 11, 15]}, {'id': 3, 'elements': [3, 15, 19, 22]}, {'id': 4, 'elements': [3, 4, 6, 14, 15, 22]}, {'id': 5, 'elements': [2, 5, 9, 12, 15, 21]}, {'id': 6, 'elements': [4, 6, 7, 17, 23]}, {'id': 7, 'elements': [1, 7, 8, 18, 23, 24]}, {'id': 8, 'elements': [7, 8, 18]}, {'id': 9, 'elements': [2, 5, 6, 11, 12]}, {'id': 10, 'elements': [10, 16, 19]}, {'id': 11, 'elements': [2, 11]}, {'id': 12, 'elements': [5, 13, 21]}, {'id': 13, 'elements': [12, 13, 21]}, {'id': 14, 'elements': [3, 4]}, {'id': 15, 'elements': [2, 3, 9, 15, 22]}, {'id': 16, 'elements': [10, 16]}, {'id': 17, 'elements': [6, 7]}, {'id': 18, 'elements': [7, 8, 20, 24]}, {'id': 19, 'elements': [3, 10, 14, 16]}, {'id': 20, 'elements': [18, 24]}, {'id': 21, 'elements': [5, 12, 13]}, {'id': 22, 'elements': [15, 22]}, {'id': 23, 'elements': [1, 6, 7, 24]}, {'id': 24, 'elements': [1, 7, 8, 18, 20, 23, 24]}], 'graph': {'num_nodes': 24, 'edges': [{'u': 4, 'v': 3}, {'u': 4, 'v': 15}, {'u': 4, 'v': 22}, {'u': 14, 'v': 3}, {'u': 19, 'v': 3}, {'u': 19, 'v': 10}, {'u': 16, 'v': 10}, {'u': 17, 'v': 23}, {'u': 7, 'v': 1}, {'u': 7, 'v': 23}, {'u': 7, 'v': 24}, {'u': 21, 'v': 12}, {'u': 21, 'v': 13}, {'u': 5, 'v': 9}, {'u': 5, 'v': 12}, {'u': 24, 'v': 8}, {'u': 24, 'v': 18}, {'u': 6, 'v': 15}, {'u': 6, 'v': 23}, {'u': 15, 'v': 9}, {'u': 18, 'v': 20}, {'u': 9, 'v': 2}, {'u': 11, 'v': 2}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0000.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0000.png'}","[2, 4, 6, 10, 13, 24]",6.0,"{'num_elements': 24, 'num_sets': 24, 'sets': [{'id': 'S1', 'elements': ['W', 'X']}, {'id': 'S2', 'elements': ['B', 'E', 'I', 'K', 'O']}, {'id': 'S3', 'elements': ['C', 'O', 'S', 'V']}, {'id': 'S4', 'elements': ['C', 'D', 'F', 'N', 'O', 'V']}, {'id': 'S5', 'elements': ['B', 'E', 'I', 'L', 'O', 'U']}, {'id': 'S6', 'elements': ['D', 'F', 'G', 'Q', 'W']}, {'id': 'S7', 'elements': ['A', 'G', 'H', 'R', 'W', 'X']}, {'id': 'S8', 'elements': ['G', 'H', 'R']}, {'id': 'S9', 'elements': ['B', 'E', 'F', 'K', 'L']}, {'id': 'S10', 'elements': ['J', 'P', 'S']}, {'id': 'S11', 'elements': ['B', 'K']}, {'id': 'S12', 'elements': ['E', 'M', 'U']}, {'id': 'S13', 'elements': ['L', 'M', 'U']}, {'id': 'S14', 'elements': ['C', 'D']}, {'id': 'S15', 'elements': ['B', 'C', 'I', 'O', 'V']}, {'id': 'S16', 'elements': ['J', 'P']}, {'id': 'S17', 'elements': ['F', 'G']}, {'id': 'S18', 'elements': ['G', 'H', 'T', 'X']}, {'id': 'S19', 'elements': ['C', 'J', 'N', 'P']}, {'id': 'S20', 'elements': ['R', 'X']}, {'id': 'S21', 'elements': ['E', 'L', 'M']}, {'id': 'S22', 'elements': ['O', 'V']}, {'id': 'S23', 'elements': ['A', 'F', 'G', 'X']}, {'id': 'S24', 'elements': ['A', 'G', 'H', 'R', 'T', 'W', 'X']}]}","['S2', 'S4', 'S6', 'S10', 'S13', 'S24']",1,json,names SCP,SCP,"On a tight schedule, the event planner needs to assemble a compact roster that still includes every musical genre on the program. The task is to choose which performers to invite; better choices are those with fewer artists, because the effectiveness is just the number of invites (smaller is better), while making sure every genre appears at least once. No genre may be omitted, and duplicate invites don’t increase genre coverage. The specific options are given below. # total_genres=19 # total_performer_options=18 performer_id,genres_covered S1,A G J L P S2,B E G I M P S S3,C E H I J L S4,D F N S5,B C E G I M S6,F N S7,A B E P S8,H J K N S9,B E L M S S10,A C H J L N S11,H K R S12,A C F H I K L N R S13,B M S S14,D J L O S15,A B J S16,H Q R S17,H K L Q R S18,B E I M Also, when you hand me the final picks, please follow this simple JSON layout so it's easy to parse: { ""solution"": [""performer_id"", ...] } This just means ""solution"" is a list (an array) of the performer IDs you decide to invite. The string ""performer_id"" is a placeholder showing where each real ID goes — swap those placeholders for the actual IDs from the instance. It's just a sketch of the shape I expect, not the final answer itself. Please be sure to use the exact identifiers from the instance input — don't rename them or invent new labels. - for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 19, 'num_sets': 18, 'density': 0.23976608187134502, 'sets': [{'id': 1, 'elements': [1, 7, 10, 12, 16]}, {'id': 2, 'elements': [2, 5, 7, 9, 13, 16, 19]}, {'id': 3, 'elements': [3, 5, 8, 9, 10, 12]}, {'id': 4, 'elements': [4, 6, 14]}, {'id': 5, 'elements': [2, 3, 5, 7, 9, 13]}, {'id': 6, 'elements': [6, 14]}, {'id': 7, 'elements': [1, 2, 5, 16]}, {'id': 8, 'elements': [8, 10, 11, 14]}, {'id': 9, 'elements': [2, 5, 12, 13, 19]}, {'id': 10, 'elements': [1, 3, 8, 10, 12, 14]}, {'id': 11, 'elements': [8, 11, 18]}, {'id': 12, 'elements': [1, 3, 6, 8, 9, 11, 12, 14, 18]}, {'id': 13, 'elements': [2, 13, 19]}, {'id': 14, 'elements': [4, 10, 12, 15]}, {'id': 15, 'elements': [1, 2, 10]}, {'id': 16, 'elements': [8, 17, 18]}, {'id': 17, 'elements': [8, 11, 12, 17, 18]}, {'id': 18, 'elements': [2, 5, 9, 13]}], 'graph': {'num_nodes': 19, 'edges': [{'u': 5, 'v': 2}, {'u': 5, 'v': 9}, {'u': 5, 'v': 13}, {'u': 5, 'v': 19}, {'u': 18, 'v': 8}, {'u': 18, 'v': 17}, {'u': 1, 'v': 10}, {'u': 1, 'v': 16}, {'u': 15, 'v': 6}, {'u': 4, 'v': 14}, {'u': 11, 'v': 8}, {'u': 10, 'v': 12}, {'u': 12, 'v': 3}, {'u': 12, 'v': 8}, {'u': 12, 'v': 14}, {'u': 6, 'v': 14}, {'u': 7, 'v': 2}, {'u': 7, 'v': 16}, {'u': 3, 'v': 9}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0001.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0001.png'}","[2, 12, 14, 17]",4.0,"{'num_elements': 19, 'num_sets': 18, 'sets': [{'id': 'S1', 'elements': ['A', 'G', 'J', 'L', 'P']}, {'id': 'S2', 'elements': ['B', 'E', 'G', 'I', 'M', 'P', 'S']}, {'id': 'S3', 'elements': ['C', 'E', 'H', 'I', 'J', 'L']}, {'id': 'S4', 'elements': ['D', 'F', 'N']}, {'id': 'S5', 'elements': ['B', 'C', 'E', 'G', 'I', 'M']}, {'id': 'S6', 'elements': ['F', 'N']}, {'id': 'S7', 'elements': ['A', 'B', 'E', 'P']}, {'id': 'S8', 'elements': ['H', 'J', 'K', 'N']}, {'id': 'S9', 'elements': ['B', 'E', 'L', 'M', 'S']}, {'id': 'S10', 'elements': ['A', 'C', 'H', 'J', 'L', 'N']}, {'id': 'S11', 'elements': ['H', 'K', 'R']}, {'id': 'S12', 'elements': ['A', 'C', 'F', 'H', 'I', 'K', 'L', 'N', 'R']}, {'id': 'S13', 'elements': ['B', 'M', 'S']}, {'id': 'S14', 'elements': ['D', 'J', 'L', 'O']}, {'id': 'S15', 'elements': ['A', 'B', 'J']}, {'id': 'S16', 'elements': ['H', 'Q', 'R']}, {'id': 'S17', 'elements': ['H', 'K', 'L', 'Q', 'R']}, {'id': 'S18', 'elements': ['B', 'E', 'I', 'M']}]}","['S2', 'S12', 'S14', 'S17']",2,csv,names SCP,SCP,"Recently the district asked the library to make sure every curriculum topic is represented on the shelves, so the librarian is choosing which titles to buy. The trick is to pick books that together touch every topic, and the smarter plan is the one that does that while keeping the purchase count as low as possible — tally the number of titles to compare options. Every topic must have at least one book, and extra copies that don’t introduce new topics are unnecessary. The concrete instance details are given below. - **total_curriculum_topics**: 19 - **total_available_titles**: 19 | title_id | covered_topics | |---|---| | S1 | 9 12 17 | | S2 | 1 3 8 | | S3 | 2 3 6 8 9 11 13 16 17 | | S4 | 1 2 3 5 8 16 | | S5 | 4 8 10 | | S6 | 2 3 5 7 16 17 | | S7 | 2 6 13 15 18 | | S8 | 12 17 | | S9 | 1 3 4 9 11 13 | | S10 | 0 2 8 9 13 | | S11 | 4 8 16 | | S12 | 2 8 9 13 | | S13 | 0 7 8 12 17 | | S14 | 2 6 8 11 13 18 | | S15 | 6 14 18 | | S16 | 6 14 15 | | S17 | 2 3 4 5 10 | | S18 | 2 5 9 12 17 | | S19 | 6 14 15 18 | If you want to hand me the chosen titles, just drop them in a tiny JSON blob like this so I know what to expect: { ""solution"": [""book_id"", ...] } Here ""solution"" is just the list of book IDs the librarian would buy to cover all the curriculum topics — each entry is the ID of a title from the instance. It's a casual sketch of the shape I expect, not the actual answer itself. All identifiers must be used exactly as they appear in the instance input — no renaming and no new labels. - for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 19, 'num_sets': 19, 'density': 0.23822714681440443, 'sets': [{'id': 1, 'elements': [10, 13, 18]}, {'id': 2, 'elements': [2, 4, 9]}, {'id': 3, 'elements': [3, 4, 7, 9, 10, 12, 14, 17, 18]}, {'id': 4, 'elements': [2, 3, 4, 6, 9, 17]}, {'id': 5, 'elements': [5, 9, 11]}, {'id': 6, 'elements': [3, 4, 6, 8, 17, 18]}, {'id': 7, 'elements': [3, 7, 14, 16, 19]}, {'id': 8, 'elements': [13, 18]}, {'id': 9, 'elements': [2, 4, 5, 10, 12, 14]}, {'id': 10, 'elements': [1, 3, 9, 10, 14]}, {'id': 11, 'elements': [5, 9, 17]}, {'id': 12, 'elements': [3, 9, 10, 14]}, {'id': 13, 'elements': [1, 8, 9, 13, 18]}, {'id': 14, 'elements': [3, 7, 9, 12, 14, 19]}, {'id': 15, 'elements': [7, 15, 19]}, {'id': 16, 'elements': [7, 15, 16]}, {'id': 17, 'elements': [3, 4, 5, 6, 11]}, {'id': 18, 'elements': [3, 6, 10, 13, 18]}, {'id': 19, 'elements': [7, 15, 16, 19]}], 'graph': {'num_nodes': 19, 'edges': [{'u': 2, 'v': 4}, {'u': 3, 'v': 9}, {'u': 3, 'v': 10}, {'u': 3, 'v': 12}, {'u': 3, 'v': 14}, {'u': 6, 'v': 9}, {'u': 6, 'v': 13}, {'u': 14, 'v': 7}, {'u': 11, 'v': 17}, {'u': 1, 'v': 18}, {'u': 9, 'v': 4}, {'u': 9, 'v': 17}, {'u': 16, 'v': 19}, {'u': 18, 'v': 10}, {'u': 18, 'v': 13}, {'u': 15, 'v': 19}, {'u': 5, 'v': 17}, {'u': 7, 'v': 19}, {'u': 13, 'v': 8}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0002.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0002.png'}","[3, 4, 13, 17, 19]",5.0,"{'num_elements': 19, 'num_sets': 19, 'sets': [{'id': 'S1', 'elements': [9, 12, 17]}, {'id': 'S2', 'elements': [1, 3, 8]}, {'id': 'S3', 'elements': [2, 3, 6, 8, 9, 11, 13, 16, 17]}, {'id': 'S4', 'elements': [1, 2, 3, 5, 8, 16]}, {'id': 'S5', 'elements': [4, 8, 10]}, {'id': 'S6', 'elements': [2, 3, 5, 7, 16, 17]}, {'id': 'S7', 'elements': [2, 6, 13, 15, 18]}, {'id': 'S8', 'elements': [12, 17]}, {'id': 'S9', 'elements': [1, 3, 4, 9, 11, 13]}, {'id': 'S10', 'elements': [0, 2, 8, 9, 13]}, {'id': 'S11', 'elements': [4, 8, 16]}, {'id': 'S12', 'elements': [2, 8, 9, 13]}, {'id': 'S13', 'elements': [0, 7, 8, 12, 17]}, {'id': 'S14', 'elements': [2, 6, 8, 11, 13, 18]}, {'id': 'S15', 'elements': [6, 14, 18]}, {'id': 'S16', 'elements': [6, 14, 15]}, {'id': 'S17', 'elements': [2, 3, 4, 5, 10]}, {'id': 'S18', 'elements': [2, 5, 9, 12, 17]}, {'id': 'S19', 'elements': [6, 14, 15, 18]}]}","['S3', 'S4', 'S13', 'S17', 'S19']",3,markdown_table,0 SCP,SCP,"Picture this: an IT manager at a dashboard, checking boxes to enable modules, needing to make sure every required feature lights up but trying to check as few boxes as possible. The work is picking which boxes to check — because each box (module) turns on a set of features — and a smarter pick is one that leaves no required feature dark while keeping the number of checked boxes to a minimum. The way to evaluate any selection is simple: count the checked boxes, and don’t let any required feature be left out; checking extra boxes that only duplicate features just raises the total for no reason. The specific modules and features are listed below. # total_required_features=24 # total_available_modules=23 module_id,features_enabled S1,A C E N S T V S2,B D E S3,A B C D G M T S4,C D E H W S5,A B D E H M W S6,F J M R S7,F G K Q U X S8,D E H W S9,F I L S10,F M P R S11,G M Q U X S12,F I L P S13,A E K P Q S14,N V S15,K O S16,F I J L M P R S17,G K M Q S18,F J M P R S19,N S V S20,A C T S21,G O U X S22,A S V S23,G U Oh, and when you send the selection back, a tiny JSON snippet like this is perfect — just list the module ids you picked: { ""solution"": [""module_id"", ...] } The ""solution"" array is where you put the ids of the boxes/modules you checked — one identifier per selected module. Think of it as filling out a short checklist: each entry is the exact label for a module from the instance. This JSON is just a sketch of the shape I expect, not the actual answer itself — use it as a form to fill in. Please make sure to use the identifiers exactly as they appear in the instance input — no renaming and no new labels. Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 24, 'num_sets': 23, 'density': 0.1793478260869565, 'sets': [{'id': 1, 'elements': [1, 3, 5, 14, 19, 20, 22]}, {'id': 2, 'elements': [2, 4, 5]}, {'id': 3, 'elements': [1, 2, 3, 4, 7, 13, 20]}, {'id': 4, 'elements': [3, 4, 5, 8, 23]}, {'id': 5, 'elements': [1, 2, 4, 5, 8, 13, 23]}, {'id': 6, 'elements': [6, 10, 13, 18]}, {'id': 7, 'elements': [6, 7, 11, 17, 21, 24]}, {'id': 8, 'elements': [4, 5, 8, 23]}, {'id': 9, 'elements': [6, 9, 12]}, {'id': 10, 'elements': [6, 13, 16, 18]}, {'id': 11, 'elements': [7, 13, 17, 21, 24]}, {'id': 12, 'elements': [6, 9, 12, 16]}, {'id': 13, 'elements': [1, 5, 11, 16, 17]}, {'id': 14, 'elements': [14, 22]}, {'id': 15, 'elements': [11, 15]}, {'id': 16, 'elements': [6, 9, 10, 12, 13, 16, 18]}, {'id': 17, 'elements': [7, 11, 13, 17]}, {'id': 18, 'elements': [6, 10, 13, 16, 18]}, {'id': 19, 'elements': [14, 19, 22]}, {'id': 20, 'elements': [1, 3, 20]}, {'id': 21, 'elements': [7, 15, 21, 24]}, {'id': 22, 'elements': [1, 19, 22]}, {'id': 23, 'elements': [7, 21]}], 'graph': {'num_nodes': 24, 'edges': [{'u': 13, 'v': 3}, {'u': 13, 'v': 6}, {'u': 13, 'v': 7}, {'u': 21, 'v': 11}, {'u': 21, 'v': 15}, {'u': 8, 'v': 4}, {'u': 6, 'v': 10}, {'u': 6, 'v': 16}, {'u': 6, 'v': 18}, {'u': 24, 'v': 11}, {'u': 4, 'v': 5}, {'u': 4, 'v': 23}, {'u': 16, 'v': 9}, {'u': 16, 'v': 12}, {'u': 2, 'v': 5}, {'u': 19, 'v': 14}, {'u': 1, 'v': 3}, {'u': 1, 'v': 14}, {'u': 1, 'v': 20}, {'u': 3, 'v': 5}, {'u': 17, 'v': 7}, {'u': 14, 'v': 22}, {'u': 11, 'v': 7}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0003.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0003.png'}","[1, 5, 7, 15, 16]",5.0,"{'num_elements': 24, 'num_sets': 23, 'sets': [{'id': 'S1', 'elements': ['A', 'C', 'E', 'N', 'S', 'T', 'V']}, {'id': 'S2', 'elements': ['B', 'D', 'E']}, {'id': 'S3', 'elements': ['A', 'B', 'C', 'D', 'G', 'M', 'T']}, {'id': 'S4', 'elements': ['C', 'D', 'E', 'H', 'W']}, {'id': 'S5', 'elements': ['A', 'B', 'D', 'E', 'H', 'M', 'W']}, {'id': 'S6', 'elements': ['F', 'J', 'M', 'R']}, {'id': 'S7', 'elements': ['F', 'G', 'K', 'Q', 'U', 'X']}, {'id': 'S8', 'elements': ['D', 'E', 'H', 'W']}, {'id': 'S9', 'elements': ['F', 'I', 'L']}, {'id': 'S10', 'elements': ['F', 'M', 'P', 'R']}, {'id': 'S11', 'elements': ['G', 'M', 'Q', 'U', 'X']}, {'id': 'S12', 'elements': ['F', 'I', 'L', 'P']}, {'id': 'S13', 'elements': ['A', 'E', 'K', 'P', 'Q']}, {'id': 'S14', 'elements': ['N', 'V']}, {'id': 'S15', 'elements': ['K', 'O']}, {'id': 'S16', 'elements': ['F', 'I', 'J', 'L', 'M', 'P', 'R']}, {'id': 'S17', 'elements': ['G', 'K', 'M', 'Q']}, {'id': 'S18', 'elements': ['F', 'J', 'M', 'P', 'R']}, {'id': 'S19', 'elements': ['N', 'S', 'V']}, {'id': 'S20', 'elements': ['A', 'C', 'T']}, {'id': 'S21', 'elements': ['G', 'O', 'U', 'X']}, {'id': 'S22', 'elements': ['A', 'S', 'V']}, {'id': 'S23', 'elements': ['G', 'U']}]}","['S1', 'S5', 'S7', 'S15', 'S16']",4,csv,names SCP,SCP,"We heard about a teacher trying to assemble a tiny team of group leaders so all the course topics are handled during project week. The choice comes down to selecting leaders whose combined topic lists include every subject at least once; the better choice is the one that uses the fewest leaders overall, which you can check by simply counting the selected leaders. Every topic must appear under at least one chosen leader, and overlapping topic coverage is fine but doesn’t reduce the headcount. The exact setup appears below. There are 21 distinct topics and 20 candidate leaders listed below: Leader S1 handles 8 13 14. Leader S2 handles 1 2 5 20. Leader S3 handles 1 2 5 7 11 13 18. Leader S4 handles 5 20. Leader S5 handles 4 17 19. Leader S6 handles 1 2 3 5 18 20. Leader S7 handles 6 17. Leader S8 handles 4 7 11 13 17 19. Leader S9 handles 6 8 12 13 17. Leader S10 handles 0 16 18. Leader S11 handles 10 11 15. Leader S12 handles 2 7 10 11 13 15 18. Leader S13 handles 8 12 16 17 19. Leader S14 handles 2 7 8 9 11 13 14 16. Leader S15 handles 0 8 13 14 16. Leader S16 handles 0 9 12 13 14 16 18. Leader S17 handles 6 7 12 17. Leader S18 handles 2 5 7 9 11 13 18 19. Leader S19 handles 4 12 19. Leader S20 handles 1 2 3 5 20. We will select as few leaders as possible to cover all 21 topics. Also, if you could put the final choice into a tiny JSON snippet so I can parse it easily, that would be great — something like this: { ""solution"": [""leader_id"", ...] } Here ""solution"" should be a list of the chosen leader identifiers (one per selected leader). Think of each identifier as the little label on a leader’s name tag — that list is just the roster of people you picked. This JSON is only a sketch of the shape I expect, not your actual answer. Please use the exact identifiers from the instance input — don’t rename them or invent new labels. - Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 21, 'num_sets': 20, 'density': 0.22857142857142856, 'sets': [{'id': 1, 'elements': [9, 14, 15]}, {'id': 2, 'elements': [2, 3, 6, 21]}, {'id': 3, 'elements': [2, 3, 6, 8, 12, 14, 19]}, {'id': 4, 'elements': [6, 21]}, {'id': 5, 'elements': [5, 18, 20]}, {'id': 6, 'elements': [2, 3, 4, 6, 19, 21]}, {'id': 7, 'elements': [7, 18]}, {'id': 8, 'elements': [5, 8, 12, 14, 18, 20]}, {'id': 9, 'elements': [7, 9, 13, 14, 18]}, {'id': 10, 'elements': [1, 17, 19]}, {'id': 11, 'elements': [11, 12, 16]}, {'id': 12, 'elements': [3, 8, 11, 12, 14, 16, 19]}, {'id': 13, 'elements': [9, 13, 17, 18, 20]}, {'id': 14, 'elements': [3, 8, 9, 10, 12, 14, 15, 17]}, {'id': 15, 'elements': [1, 9, 14, 15, 17]}, {'id': 16, 'elements': [1, 10, 13, 14, 15, 17, 19]}, {'id': 17, 'elements': [7, 8, 13, 18]}, {'id': 18, 'elements': [3, 6, 8, 10, 12, 14, 19, 20]}, {'id': 19, 'elements': [5, 13, 20]}, {'id': 20, 'elements': [2, 3, 4, 6, 21]}], 'graph': {'num_nodes': 21, 'edges': [{'u': 21, 'v': 6}, {'u': 3, 'v': 6}, {'u': 3, 'v': 19}, {'u': 19, 'v': 8}, {'u': 19, 'v': 12}, {'u': 19, 'v': 14}, {'u': 5, 'v': 20}, {'u': 17, 'v': 1}, {'u': 17, 'v': 9}, {'u': 17, 'v': 14}, {'u': 17, 'v': 15}, {'u': 7, 'v': 13}, {'u': 14, 'v': 10}, {'u': 11, 'v': 16}, {'u': 12, 'v': 16}, {'u': 6, 'v': 2}, {'u': 6, 'v': 4}, {'u': 8, 'v': 20}, {'u': 13, 'v': 9}, {'u': 13, 'v': 18}, {'u': 10, 'v': 1}, {'u': 20, 'v': 18}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0004.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0004.png'}","[6, 9, 12, 16, 19]",5.0,"{'num_elements': 21, 'num_sets': 20, 'sets': [{'id': 'S1', 'elements': [8, 13, 14]}, {'id': 'S2', 'elements': [1, 2, 5, 20]}, {'id': 'S3', 'elements': [1, 2, 5, 7, 11, 13, 18]}, {'id': 'S4', 'elements': [5, 20]}, {'id': 'S5', 'elements': [4, 17, 19]}, {'id': 'S6', 'elements': [1, 2, 3, 5, 18, 20]}, {'id': 'S7', 'elements': [6, 17]}, {'id': 'S8', 'elements': [4, 7, 11, 13, 17, 19]}, {'id': 'S9', 'elements': [6, 8, 12, 13, 17]}, {'id': 'S10', 'elements': [0, 16, 18]}, {'id': 'S11', 'elements': [10, 11, 15]}, {'id': 'S12', 'elements': [2, 7, 10, 11, 13, 15, 18]}, {'id': 'S13', 'elements': [8, 12, 16, 17, 19]}, {'id': 'S14', 'elements': [2, 7, 8, 9, 11, 13, 14, 16]}, {'id': 'S15', 'elements': [0, 8, 13, 14, 16]}, {'id': 'S16', 'elements': [0, 9, 12, 13, 14, 16, 18]}, {'id': 'S17', 'elements': [6, 7, 12, 17]}, {'id': 'S18', 'elements': [2, 5, 7, 9, 11, 13, 18, 19]}, {'id': 'S19', 'elements': [4, 12, 19]}, {'id': 'S20', 'elements': [1, 2, 3, 5, 20]}]}","['S6', 'S9', 'S12', 'S16', 'S19']",5,nl,0 SCP,SCP,"Back at the agency, the task was to choose a handful of communication channels that collectively reach all the client’s target segments. The situation: there’s a list of channels and each one connects with certain segments; the decision is which specific channels to use so the whole audience is reached. A better plan is simply the one that achieves full coverage using as few channels as possible — evaluate by counting selected channels, lower is better — and ensure nobody is left out and don’t include channels that only duplicate reach. The concrete channel-by-group details follow below. # total_segments=20 # total_channels=19 channel_id,channel_segments S1,9 15 S2,4 7 9 11 15 20 S3,11 18 S4,4 5 7 9 12 20 S5,5 17 S6,3 6 8 11 S7,4 7 10 12 S8,3 6 8 12 S9,1 2 4 5 9 12 15 20 S10,2 4 7 S11,2 3 6 8 13 15 18 S12,1 2 7 8 9 10 12 14 15 17 S13,11 13 14 16 S14,1 2 4 5 15 S15,13 14 S16,5 9 15 17 S17,6 8 11 18 S18,1 19 S19,2 4 9 Quick note on how to return the result so it’s easy to read and machine-friendly — just use this simple JSON shape: { ""solution"": [""channel_id"", ...] } ""solution"" is the list of channels you’re choosing to cover everybody. Each ""channel_id"" is just a placeholder showing where an actual channel identifier goes — swap it for the exact id from the instance. The array should list the chosen channel ids (one per entry). This is just a sketch of the expected shape, not the final answer itself — please fill in the real identifiers. Please use the identifiers exactly as they appear in the instance input — don’t rename them or invent new labels. - for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 20, 'num_sets': 19, 'density': 0.21578947368421053, 'sets': [{'id': 1, 'elements': [9, 15]}, {'id': 2, 'elements': [4, 7, 9, 11, 15, 20]}, {'id': 3, 'elements': [11, 18]}, {'id': 4, 'elements': [4, 5, 7, 9, 12, 20]}, {'id': 5, 'elements': [5, 17]}, {'id': 6, 'elements': [3, 6, 8, 11]}, {'id': 7, 'elements': [4, 7, 10, 12]}, {'id': 8, 'elements': [3, 6, 8, 12]}, {'id': 9, 'elements': [1, 2, 4, 5, 9, 12, 15, 20]}, {'id': 10, 'elements': [2, 4, 7]}, {'id': 11, 'elements': [2, 3, 6, 8, 13, 15, 18]}, {'id': 12, 'elements': [1, 2, 7, 8, 9, 10, 12, 14, 15, 17]}, {'id': 13, 'elements': [11, 13, 14, 16]}, {'id': 14, 'elements': [1, 2, 4, 5, 15]}, {'id': 15, 'elements': [13, 14]}, {'id': 16, 'elements': [5, 9, 15, 17]}, {'id': 17, 'elements': [6, 8, 11, 18]}, {'id': 18, 'elements': [1, 19]}, {'id': 19, 'elements': [2, 4, 9]}], 'graph': {'num_nodes': 20, 'edges': [{'u': 11, 'v': 8}, {'u': 11, 'v': 12}, {'u': 11, 'v': 14}, {'u': 8, 'v': 3}, {'u': 8, 'v': 6}, {'u': 8, 'v': 18}, {'u': 9, 'v': 4}, {'u': 9, 'v': 5}, {'u': 9, 'v': 15}, {'u': 14, 'v': 13}, {'u': 14, 'v': 16}, {'u': 7, 'v': 2}, {'u': 17, 'v': 5}, {'u': 17, 'v': 15}, {'u': 15, 'v': 1}, {'u': 15, 'v': 12}, {'u': 1, 'v': 19}, {'u': 4, 'v': 2}, {'u': 4, 'v': 20}, {'u': 12, 'v': 2}, {'u': 10, 'v': 2}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0005.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0005.png'}","[4, 11, 12, 13, 18]",5.0,"{'num_elements': 20, 'num_sets': 19, 'sets': [{'id': 'S1', 'elements': [9, 15]}, {'id': 'S2', 'elements': [4, 7, 9, 11, 15, 20]}, {'id': 'S3', 'elements': [11, 18]}, {'id': 'S4', 'elements': [4, 5, 7, 9, 12, 20]}, {'id': 'S5', 'elements': [5, 17]}, {'id': 'S6', 'elements': [3, 6, 8, 11]}, {'id': 'S7', 'elements': [4, 7, 10, 12]}, {'id': 'S8', 'elements': [3, 6, 8, 12]}, {'id': 'S9', 'elements': [1, 2, 4, 5, 9, 12, 15, 20]}, {'id': 'S10', 'elements': [2, 4, 7]}, {'id': 'S11', 'elements': [2, 3, 6, 8, 13, 15, 18]}, {'id': 'S12', 'elements': [1, 2, 7, 8, 9, 10, 12, 14, 15, 17]}, {'id': 'S13', 'elements': [11, 13, 14, 16]}, {'id': 'S14', 'elements': [1, 2, 4, 5, 15]}, {'id': 'S15', 'elements': [13, 14]}, {'id': 'S16', 'elements': [5, 9, 15, 17]}, {'id': 'S17', 'elements': [6, 8, 11, 18]}, {'id': 'S18', 'elements': [1, 19]}, {'id': 'S19', 'elements': [2, 4, 9]}]}","['S4', 'S11', 'S12', 'S13', 'S18']",6,csv,1 SCP,SCP,"Back when packing for a long journey, the goal was to sort through a jumble of chargers and pick only what’s needed so every gadget could be powered. The choice is which chargers to bring so each device type has a way to charge; a smarter choice is the one with the fewest chargers that still covers all the devices — the straightforward way to tell is to count how many chargers are in the bag and confirm every device type is included. No device type can be left without a charger, and bringing multiple identical chargers is wasteful unless it’s necessary. The exact details of the devices and available chargers will be shown below. { ""total_device_types"": 20, ""total_available_chargers"": 19, ""sets"": [ { ""charger_id"": ""S1"", ""supported_device_types"": [ ""C"", ""N"", ""P"", ""Q"" ] }, { ""charger_id"": ""S2"", ""supported_device_types"": [ ""B"", ""G"", ""J"" ] }, { ""charger_id"": ""S3"", ""supported_device_types"": [ ""A"", ""P"", ""R"" ] }, { ""charger_id"": ""S4"", ""supported_device_types"": [ ""D"", ""K"", ""L"", ""T"" ] }, { ""charger_id"": ""S5"", ""supported_device_types"": [ ""H"", ""L"", ""O"", ""S"" ] }, { ""charger_id"": ""S6"", ""supported_device_types"": [ ""F"", ""K"", ""L"", ""R"", ""S"" ] }, { ""charger_id"": ""S7"", ""supported_device_types"": [ ""E"", ""H"", ""I"", ""L"", ""T"" ] }, { ""charger_id"": ""S8"", ""supported_device_types"": [ ""F"", ""H"", ""O"", ""R"", ""S"" ] }, { ""charger_id"": ""S9"", ""supported_device_types"": [ ""G"", ""J"", ""K"", ""M"", ""T"" ] }, { ""charger_id"": ""S10"", ""supported_device_types"": [ ""F"", ""G"", ""J"", ""M"", ""Q"" ] }, { ""charger_id"": ""S11"", ""supported_device_types"": [ ""D"", ""E"", ""H"", ""I"", ""O"" ] }, { ""charger_id"": ""S12"", ""supported_device_types"": [ ""J"", ""K"", ""M"", ""R"", ""T"" ] }, { ""charger_id"": ""S13"", ""supported_device_types"": [ ""A"", ""C"" ] }, { ""charger_id"": ""S14"", ""supported_device_types"": [ ""E"", ""I"", ""O"", ""S"" ] }, { ""charger_id"": ""S15"", ""supported_device_types"": [ ""A"", ""C"", ""Q"" ] }, { ""charger_id"": ""S16"", ""supported_device_types"": [ ""A"", ""C"", ""P"", ""Q"", ""R"" ] }, { ""charger_id"": ""S17"", ""supported_device_types"": [ ""C"", ""F"", ""Q"", ""R"" ] }, { ""charger_id"": ""S18"", ""supported_device_types"": [ ""E"", ""F"", ""I"", ""L"", ""S"" ] }, { ""charger_id"": ""S19"", ""supported_device_types"": [ ""H"", ""J"", ""M"", ""R"", ""T"" ] } ] } Oh, and one more thing — when you send the answer back, keep it in a little JSON shape so it's easy to read by whatever's checking the packing list. Something like this: { ""solution"": [""charger_id"", ...] } Here ""solution"" is just the list of charger identifiers you chose to bring — think of each entry as the label stuck to a charger in the inventory. This block is only a sketch of the shape I want, not the actual packing list. Please use the identifiers exactly as they appear in the instance input — do not rename them or invent new ones. - for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 20, 'num_sets': 19, 'density': 0.2131578947368421, 'sets': [{'id': 1, 'elements': [3, 14, 16, 17]}, {'id': 2, 'elements': [2, 7, 10]}, {'id': 3, 'elements': [1, 16, 18]}, {'id': 4, 'elements': [4, 11, 12, 20]}, {'id': 5, 'elements': [8, 12, 15, 19]}, {'id': 6, 'elements': [6, 11, 12, 18, 19]}, {'id': 7, 'elements': [5, 8, 9, 12, 20]}, {'id': 8, 'elements': [6, 8, 15, 18, 19]}, {'id': 9, 'elements': [7, 10, 11, 13, 20]}, {'id': 10, 'elements': [6, 7, 10, 13, 17]}, {'id': 11, 'elements': [4, 5, 8, 9, 15]}, {'id': 12, 'elements': [10, 11, 13, 18, 20]}, {'id': 13, 'elements': [1, 3]}, {'id': 14, 'elements': [5, 9, 15, 19]}, {'id': 15, 'elements': [1, 3, 17]}, {'id': 16, 'elements': [1, 3, 16, 17, 18]}, {'id': 17, 'elements': [3, 6, 17, 18]}, {'id': 18, 'elements': [5, 6, 9, 12, 19]}, {'id': 19, 'elements': [8, 10, 13, 18, 20]}], 'graph': {'num_nodes': 20, 'edges': [{'u': 3, 'v': 1}, {'u': 3, 'v': 16}, {'u': 3, 'v': 17}, {'u': 1, 'v': 14}, {'u': 8, 'v': 4}, {'u': 8, 'v': 12}, {'u': 9, 'v': 6}, {'u': 9, 'v': 12}, {'u': 9, 'v': 19}, {'u': 4, 'v': 20}, {'u': 5, 'v': 12}, {'u': 5, 'v': 15}, {'u': 5, 'v': 19}, {'u': 6, 'v': 18}, {'u': 20, 'v': 11}, {'u': 15, 'v': 19}, {'u': 10, 'v': 7}, {'u': 10, 'v': 11}, {'u': 18, 'v': 11}, {'u': 18, 'v': 17}, {'u': 7, 'v': 2}, {'u': 11, 'v': 13}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0006.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0006.png'}","[1, 2, 11, 12, 16, 18]",6.0,"{'num_elements': 20, 'num_sets': 19, 'sets': [{'id': 'S1', 'elements': ['C', 'N', 'P', 'Q']}, {'id': 'S2', 'elements': ['B', 'G', 'J']}, {'id': 'S3', 'elements': ['A', 'P', 'R']}, {'id': 'S4', 'elements': ['D', 'K', 'L', 'T']}, {'id': 'S5', 'elements': ['H', 'L', 'O', 'S']}, {'id': 'S6', 'elements': ['F', 'K', 'L', 'R', 'S']}, {'id': 'S7', 'elements': ['E', 'H', 'I', 'L', 'T']}, {'id': 'S8', 'elements': ['F', 'H', 'O', 'R', 'S']}, {'id': 'S9', 'elements': ['G', 'J', 'K', 'M', 'T']}, {'id': 'S10', 'elements': ['F', 'G', 'J', 'M', 'Q']}, {'id': 'S11', 'elements': ['D', 'E', 'H', 'I', 'O']}, {'id': 'S12', 'elements': ['J', 'K', 'M', 'R', 'T']}, {'id': 'S13', 'elements': ['A', 'C']}, {'id': 'S14', 'elements': ['E', 'I', 'O', 'S']}, {'id': 'S15', 'elements': ['A', 'C', 'Q']}, {'id': 'S16', 'elements': ['A', 'C', 'P', 'Q', 'R']}, {'id': 'S17', 'elements': ['C', 'F', 'Q', 'R']}, {'id': 'S18', 'elements': ['E', 'F', 'I', 'L', 'S']}, {'id': 'S19', 'elements': ['H', 'J', 'M', 'R', 'T']}]}","['S1', 'S2', 'S11', 'S12', 'S16', 'S18']",7,json,names SCP,SCP,"Someone at the community fair is matching volunteers to shifts and needs to be efficient about it. They want the leanest possible team that still covers every role — success is measured by how many volunteers end up on the roster, so fewer equals better. No job can be left without coverage, and doubling up on roles without reason is avoided wherever possible. The concrete list of roles and who can fill them appears below. - **total_roles_to_cover**: 20 - **total_available_volunteers**: 15 | volunteer_id | covered_roles | |---|---| | S1 | D K S | | S2 | B E G I O Q | | S3 | C F J R | | S4 | A K P R S | | S5 | E H L N O T | | S6 | C F J M R | | S7 | H O T | | S8 | F M Q | | S9 | A D K R | | S10 | H L N T | | S11 | F J O Q | | S12 | E H N | | S13 | E G H O Q | | S14 | D P S | | S15 | C D F K | Oh, and to keep things tidy, please show the chosen roster in a tiny JSON snippet like the one below — just the shape, nothing else: { ""solution"": [""volunteer_id"", ...] } Here ""solution"" is the list of volunteer IDs you plan to put on the roster — one ID per slot in the array. Think of it like filling out a short form: the array holds the exact labels of the volunteers who cover every role. This is just a sketch of the shape I expect, not your final answer. Please use the identifiers exactly as they appear in the problem input — do not rename them or invent new labels. For example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 20, 'num_sets': 15, 'density': 0.20666666666666667, 'sets': [{'id': 1, 'elements': [4, 11, 19]}, {'id': 2, 'elements': [2, 5, 7, 9, 15, 17]}, {'id': 3, 'elements': [3, 6, 10, 18]}, {'id': 4, 'elements': [1, 11, 16, 18, 19]}, {'id': 5, 'elements': [5, 8, 12, 14, 15, 20]}, {'id': 6, 'elements': [3, 6, 10, 13, 18]}, {'id': 7, 'elements': [8, 15, 20]}, {'id': 8, 'elements': [6, 13, 17]}, {'id': 9, 'elements': [1, 4, 11, 18]}, {'id': 10, 'elements': [8, 12, 14, 20]}, {'id': 11, 'elements': [6, 10, 15, 17]}, {'id': 12, 'elements': [5, 8, 14]}, {'id': 13, 'elements': [5, 7, 8, 15, 17]}, {'id': 14, 'elements': [4, 16, 19]}, {'id': 15, 'elements': [3, 4, 6, 11]}], 'graph': {'num_nodes': 20, 'edges': [{'u': 9, 'v': 7}, {'u': 10, 'v': 6}, {'u': 10, 'v': 13}, {'u': 15, 'v': 2}, {'u': 15, 'v': 5}, {'u': 15, 'v': 17}, {'u': 7, 'v': 2}, {'u': 4, 'v': 1}, {'u': 4, 'v': 11}, {'u': 4, 'v': 19}, {'u': 12, 'v': 5}, {'u': 12, 'v': 8}, {'u': 12, 'v': 14}, {'u': 16, 'v': 19}, {'u': 5, 'v': 8}, {'u': 11, 'v': 18}, {'u': 6, 'v': 3}, {'u': 3, 'v': 18}, {'u': 8, 'v': 20}, {'u': 17, 'v': 13}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0007.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0007.png'}","[2, 5, 6, 9, 14]",5.0,"{'num_elements': 20, 'num_sets': 15, 'sets': [{'id': 'S1', 'elements': ['D', 'K', 'S']}, {'id': 'S2', 'elements': ['B', 'E', 'G', 'I', 'O', 'Q']}, {'id': 'S3', 'elements': ['C', 'F', 'J', 'R']}, {'id': 'S4', 'elements': ['A', 'K', 'P', 'R', 'S']}, {'id': 'S5', 'elements': ['E', 'H', 'L', 'N', 'O', 'T']}, {'id': 'S6', 'elements': ['C', 'F', 'J', 'M', 'R']}, {'id': 'S7', 'elements': ['H', 'O', 'T']}, {'id': 'S8', 'elements': ['F', 'M', 'Q']}, {'id': 'S9', 'elements': ['A', 'D', 'K', 'R']}, {'id': 'S10', 'elements': ['H', 'L', 'N', 'T']}, {'id': 'S11', 'elements': ['F', 'J', 'O', 'Q']}, {'id': 'S12', 'elements': ['E', 'H', 'N']}, {'id': 'S13', 'elements': ['E', 'G', 'H', 'O', 'Q']}, {'id': 'S14', 'elements': ['D', 'P', 'S']}, {'id': 'S15', 'elements': ['C', 'D', 'F', 'K']}]}","['S2', 'S5', 'S6', 'S9', 'S14']",8,markdown_table,names SCP,SCP,"There’s a catering challenge: make a tight, easy-to-read special menu that satisfies every guest’s diet. The task is picking a few dishes so each dietary preference shows up on the menu at least once, and to do that using as few dishes as possible. To tell if one menu beats another, count how many dishes it has — the smaller the number that still covers everyone, the better. No preference can be left out, and piling on dishes that don’t expand coverage is unnecessary. The specific guest preferences and available dishes are detailed below. # num_preferences=19 # num_dishes_available=18 dish_id,preferences_covered S1,A B F H I P S2,K Q S3,C F K S4,D H K O S5,E H O S6,C F J K S7,L M P S8,B D E F H K S9,A K L S10,C F J S11,A B D F H I K O S12,G I L M P S13,I L N P R S S14,E H K O S15,I M N P R S16,B K S17,N P R S S18,P R S Oh, and when you send your final menu, just drop the chosen dishes into this simple JSON shape so whoever’s reading it can parse it quickly: { ""solution"": [""dish_id"", ...] } Think of ""solution"" as the list of dishes you picked for the special menu, and ""dish_id"" is just a placeholder showing where each real dish identifier goes. This is just the shape I want — not the actual answer itself — so replace the placeholders with the exact dish IDs from the instance. Please make sure to use the identifiers exactly as they appear in the input — don’t rename them or invent new labels. Valid identifiers look like plain numbers such as ""1"" or ""23"", single capital letters like ""A"" or ""B"", or a capital letter followed by digits like ""A1"" or ""X7"".","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 19, 'num_sets': 18, 'density': 0.21637426900584794, 'sets': [{'id': 1, 'elements': [1, 2, 6, 8, 9, 16]}, {'id': 2, 'elements': [11, 17]}, {'id': 3, 'elements': [3, 6, 11]}, {'id': 4, 'elements': [4, 8, 11, 15]}, {'id': 5, 'elements': [5, 8, 15]}, {'id': 6, 'elements': [3, 6, 10, 11]}, {'id': 7, 'elements': [12, 13, 16]}, {'id': 8, 'elements': [2, 4, 5, 6, 8, 11]}, {'id': 9, 'elements': [1, 11, 12]}, {'id': 10, 'elements': [3, 6, 10]}, {'id': 11, 'elements': [1, 2, 4, 6, 8, 9, 11, 15]}, {'id': 12, 'elements': [7, 9, 12, 13, 16]}, {'id': 13, 'elements': [9, 12, 14, 16, 18, 19]}, {'id': 14, 'elements': [5, 8, 11, 15]}, {'id': 15, 'elements': [9, 13, 14, 16, 18]}, {'id': 16, 'elements': [2, 11]}, {'id': 17, 'elements': [14, 16, 18, 19]}, {'id': 18, 'elements': [16, 18, 19]}], 'graph': {'num_nodes': 19, 'edges': [{'u': 16, 'v': 9}, {'u': 16, 'v': 12}, {'u': 16, 'v': 14}, {'u': 8, 'v': 4}, {'u': 8, 'v': 11}, {'u': 8, 'v': 15}, {'u': 17, 'v': 2}, {'u': 9, 'v': 1}, {'u': 13, 'v': 12}, {'u': 14, 'v': 18}, {'u': 14, 'v': 19}, {'u': 12, 'v': 7}, {'u': 5, 'v': 15}, {'u': 3, 'v': 6}, {'u': 3, 'v': 10}, {'u': 2, 'v': 11}, {'u': 11, 'v': 1}, {'u': 11, 'v': 6}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0008.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0008.png'}","[2, 10, 11, 12, 13, 14]",6.0,"{'num_elements': 19, 'num_sets': 18, 'sets': [{'id': 'S1', 'elements': ['A', 'B', 'F', 'H', 'I', 'P']}, {'id': 'S2', 'elements': ['K', 'Q']}, {'id': 'S3', 'elements': ['C', 'F', 'K']}, {'id': 'S4', 'elements': ['D', 'H', 'K', 'O']}, {'id': 'S5', 'elements': ['E', 'H', 'O']}, {'id': 'S6', 'elements': ['C', 'F', 'J', 'K']}, {'id': 'S7', 'elements': ['L', 'M', 'P']}, {'id': 'S8', 'elements': ['B', 'D', 'E', 'F', 'H', 'K']}, {'id': 'S9', 'elements': ['A', 'K', 'L']}, {'id': 'S10', 'elements': ['C', 'F', 'J']}, {'id': 'S11', 'elements': ['A', 'B', 'D', 'F', 'H', 'I', 'K', 'O']}, {'id': 'S12', 'elements': ['G', 'I', 'L', 'M', 'P']}, {'id': 'S13', 'elements': ['I', 'L', 'N', 'P', 'R', 'S']}, {'id': 'S14', 'elements': ['E', 'H', 'K', 'O']}, {'id': 'S15', 'elements': ['I', 'M', 'N', 'P', 'R']}, {'id': 'S16', 'elements': ['B', 'K']}, {'id': 'S17', 'elements': ['N', 'P', 'R', 'S']}, {'id': 'S18', 'elements': ['P', 'R', 'S']}]}","['S2', 'S10', 'S11', 'S12', 'S13', 'S14']",9,csv,names SCP,SCP,"A curator needs to assemble a short festival schedule that still represents every theme on the list; some movies touch several themes, so the aim is to select films that together cover all categories with the least number of screenings. The way to compare options is to count how many showings are on the schedule — lower counts win — and the rules are clear: every theme must be included at least once and avoid repeating screenings without purpose. The specific options and their theme coverage are shown below. - **num_themes**: 24 - **num_films_available**: 23 | film_id | themes_covered | |---|---| | S1 | B G H K L P Q | | S2 | A B G J K S W | | S3 | C I R T | | S4 | J L V | | S5 | E H P S | | S6 | F I O P | | S7 | B G | | S8 | A B E G H K L N P | | S9 | B D M T | | S10 | A B D G H J P | | S11 | A E L P | | S12 | J T | | S13 | A B C F N P Q R S | | S14 | C F I N O R W | | S15 | A E F K L N P | | S16 | A B D J R T U V | | S17 | B C N O R U W | | S18 | B F H N O S W | | S19 | B C M Q T U V | | S20 | B C I Q U V W X | | S21 | M Q T U | | S22 | B C F H I N O U W X | | S23 | B W X | If you want to hand this back in a tidy, machine-friendly way, a tiny JSON object with the chosen film identifiers is perfect. Here’s the shape I expect: { ""solution"": [""film_id"", ...] } ""solution"" is the list of films you pick for the schedule, and each entry in that array should be a film identifier (the ""film_id"" text above is just a placeholder). Think of this like filling out a short form: put the exact IDs of the movies you’re scheduling into that array. This JSON is just a sketch of the shape I want, not the actual answer. Please use the identifiers exactly as they appear in the instance input — don’t rename them or make up new labels. - ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 24, 'num_sets': 23, 'density': 0.2427536231884058, 'sets': [{'id': 1, 'elements': [2, 7, 8, 11, 12, 16, 17]}, {'id': 2, 'elements': [1, 2, 7, 10, 11, 19, 23]}, {'id': 3, 'elements': [3, 9, 18, 20]}, {'id': 4, 'elements': [10, 12, 22]}, {'id': 5, 'elements': [5, 8, 16, 19]}, {'id': 6, 'elements': [6, 9, 15, 16]}, {'id': 7, 'elements': [2, 7]}, {'id': 8, 'elements': [1, 2, 5, 7, 8, 11, 12, 14, 16]}, {'id': 9, 'elements': [2, 4, 13, 20]}, {'id': 10, 'elements': [1, 2, 4, 7, 8, 10, 16]}, {'id': 11, 'elements': [1, 5, 12, 16]}, {'id': 12, 'elements': [10, 20]}, {'id': 13, 'elements': [1, 2, 3, 6, 14, 16, 17, 18, 19]}, {'id': 14, 'elements': [3, 6, 9, 14, 15, 18, 23]}, {'id': 15, 'elements': [1, 5, 6, 11, 12, 14, 16]}, {'id': 16, 'elements': [1, 2, 4, 10, 18, 20, 21, 22]}, {'id': 17, 'elements': [2, 3, 14, 15, 18, 21, 23]}, {'id': 18, 'elements': [2, 6, 8, 14, 15, 19, 23]}, {'id': 19, 'elements': [2, 3, 13, 17, 20, 21, 22]}, {'id': 20, 'elements': [2, 3, 9, 17, 21, 22, 23, 24]}, {'id': 21, 'elements': [13, 17, 20, 21]}, {'id': 22, 'elements': [2, 3, 6, 8, 9, 14, 15, 21, 23, 24]}, {'id': 23, 'elements': [2, 23, 24]}], 'graph': {'num_nodes': 24, 'edges': [{'u': 15, 'v': 6}, {'u': 15, 'v': 9}, {'u': 15, 'v': 23}, {'u': 16, 'v': 5}, {'u': 16, 'v': 8}, {'u': 16, 'v': 12}, {'u': 16, 'v': 19}, {'u': 6, 'v': 19}, {'u': 19, 'v': 14}, {'u': 3, 'v': 9}, {'u': 3, 'v': 21}, {'u': 3, 'v': 23}, {'u': 8, 'v': 1}, {'u': 8, 'v': 14}, {'u': 10, 'v': 4}, {'u': 10, 'v': 17}, {'u': 10, 'v': 22}, {'u': 11, 'v': 1}, {'u': 11, 'v': 4}, {'u': 11, 'v': 12}, {'u': 20, 'v': 17}, {'u': 20, 'v': 21}, {'u': 20, 'v': 22}, {'u': 1, 'v': 2}, {'u': 1, 'v': 7}, {'u': 21, 'v': 18}, {'u': 18, 'v': 2}, {'u': 18, 'v': 23}, {'u': 18, 'v': 24}, {'u': 17, 'v': 2}, {'u': 22, 'v': 13}, {'u': 2, 'v': 14}, {'u': 23, 'v': 14}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0009.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0009.png'}","[8, 9, 16, 18, 20]",5.0,"{'num_elements': 24, 'num_sets': 23, 'sets': [{'id': 'S1', 'elements': ['B', 'G', 'H', 'K', 'L', 'P', 'Q']}, {'id': 'S2', 'elements': ['A', 'B', 'G', 'J', 'K', 'S', 'W']}, {'id': 'S3', 'elements': ['C', 'I', 'R', 'T']}, {'id': 'S4', 'elements': ['J', 'L', 'V']}, {'id': 'S5', 'elements': ['E', 'H', 'P', 'S']}, {'id': 'S6', 'elements': ['F', 'I', 'O', 'P']}, {'id': 'S7', 'elements': ['B', 'G']}, {'id': 'S8', 'elements': ['A', 'B', 'E', 'G', 'H', 'K', 'L', 'N', 'P']}, {'id': 'S9', 'elements': ['B', 'D', 'M', 'T']}, {'id': 'S10', 'elements': ['A', 'B', 'D', 'G', 'H', 'J', 'P']}, {'id': 'S11', 'elements': ['A', 'E', 'L', 'P']}, {'id': 'S12', 'elements': ['J', 'T']}, {'id': 'S13', 'elements': ['A', 'B', 'C', 'F', 'N', 'P', 'Q', 'R', 'S']}, {'id': 'S14', 'elements': ['C', 'F', 'I', 'N', 'O', 'R', 'W']}, {'id': 'S15', 'elements': ['A', 'E', 'F', 'K', 'L', 'N', 'P']}, {'id': 'S16', 'elements': ['A', 'B', 'D', 'J', 'R', 'T', 'U', 'V']}, {'id': 'S17', 'elements': ['B', 'C', 'N', 'O', 'R', 'U', 'W']}, {'id': 'S18', 'elements': ['B', 'F', 'H', 'N', 'O', 'S', 'W']}, {'id': 'S19', 'elements': ['B', 'C', 'M', 'Q', 'T', 'U', 'V']}, {'id': 'S20', 'elements': ['B', 'C', 'I', 'Q', 'U', 'V', 'W', 'X']}, {'id': 'S21', 'elements': ['M', 'Q', 'T', 'U']}, {'id': 'S22', 'elements': ['B', 'C', 'F', 'H', 'I', 'N', 'O', 'U', 'W', 'X']}, {'id': 'S23', 'elements': ['B', 'W', 'X']}]}","['S8', 'S9', 'S16', 'S18', 'S20']",10,markdown_table,names SCP,SCP,"There’s a dispatch puzzle: choose a few key curbside spots so that every block with customers is covered, and do it with as few stops as possible. The question is which spots to choose so their coverage covers every block; you judge any plan by counting how many stops it uses — fewer is better. No customer block can be skipped, and making extra stops that only repeat coverage is wasteful and counted against the plan. The concrete instance — the blocks and possible stops — is shown below. # total_customer_blocks=24 # available_stops_count=24 stop_id,covered_blocks S1,1 5 16 20 21 S2,1 2 3 5 8 S3,1 2 5 16 24 S4,3 4 6 24 S5,5 8 16 21 22 S6,4 6 10 14 18 20 S7,7 15 22 S8,2 5 17 21 22 S9,9 12 15 S10,6 20 S11,11 12 19 S12,9 11 12 13 S13,9 12 S14,4 6 S15,11 15 19 22 S16,2 16 20 23 S17,8 17 21 23 S18,4 6 18 S19,7 12 19 22 23 S20,1 3 4 6 10 14 16 20 S21,2 5 17 21 23 S22,5 7 8 19 21 S23,2 5 8 17 22 S24,3 4 10 18 20 If you want to send the selected curb stops back, just drop them into this tiny JSON shape so it's easy to read by hand or by a script: { ""solution"": [""set_id"", ...] } Think of ""solution"" as the single field where you list the stops you'll pick; each string in the array should be the exact identifier of a curb spot from the instance. This little block is just the form I expect — a sketch of the shape, not the actual filled-in plan. All identifiers must be used exactly as they appear in the instance input — no renaming and no new labels. - for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 24, 'num_sets': 24, 'density': 0.17708333333333334, 'sets': [{'id': 1, 'elements': [1, 5, 16, 20, 21]}, {'id': 2, 'elements': [1, 2, 3, 5, 8]}, {'id': 3, 'elements': [1, 2, 5, 16, 24]}, {'id': 4, 'elements': [3, 4, 6, 24]}, {'id': 5, 'elements': [5, 8, 16, 21, 22]}, {'id': 6, 'elements': [4, 6, 10, 14, 18, 20]}, {'id': 7, 'elements': [7, 15, 22]}, {'id': 8, 'elements': [2, 5, 17, 21, 22]}, {'id': 9, 'elements': [9, 12, 15]}, {'id': 10, 'elements': [6, 20]}, {'id': 11, 'elements': [11, 12, 19]}, {'id': 12, 'elements': [9, 11, 12, 13]}, {'id': 13, 'elements': [9, 12]}, {'id': 14, 'elements': [4, 6]}, {'id': 15, 'elements': [11, 15, 19, 22]}, {'id': 16, 'elements': [2, 16, 20, 23]}, {'id': 17, 'elements': [8, 17, 21, 23]}, {'id': 18, 'elements': [4, 6, 18]}, {'id': 19, 'elements': [7, 12, 19, 22, 23]}, {'id': 20, 'elements': [1, 3, 4, 6, 10, 14, 16, 20]}, {'id': 21, 'elements': [2, 5, 17, 21, 23]}, {'id': 22, 'elements': [5, 7, 8, 19, 21]}, {'id': 23, 'elements': [2, 5, 8, 17, 22]}, {'id': 24, 'elements': [3, 4, 10, 18, 20]}], 'graph': {'num_nodes': 24, 'edges': [{'u': 10, 'v': 18}, {'u': 10, 'v': 24}, {'u': 20, 'v': 3}, {'u': 20, 'v': 4}, {'u': 20, 'v': 24}, {'u': 1, 'v': 2}, {'u': 1, 'v': 3}, {'u': 1, 'v': 16}, {'u': 11, 'v': 15}, {'u': 13, 'v': 9}, {'u': 21, 'v': 2}, {'u': 21, 'v': 8}, {'u': 21, 'v': 23}, {'u': 2, 'v': 5}, {'u': 4, 'v': 6}, {'u': 4, 'v': 14}, {'u': 5, 'v': 16}, {'u': 5, 'v': 23}, {'u': 16, 'v': 3}, {'u': 6, 'v': 18}, {'u': 23, 'v': 8}, {'u': 23, 'v': 22}, {'u': 7, 'v': 19}, {'u': 8, 'v': 17}, {'u': 9, 'v': 12}, {'u': 12, 'v': 15}, {'u': 22, 'v': 19}, {'u': 19, 'v': 15}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0010.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0010.png'}","[4, 12, 15, 20, 21, 22, 24]",7.0,"{'num_elements': 24, 'num_sets': 24, 'sets': [{'id': 'S1', 'elements': [1, 5, 16, 20, 21]}, {'id': 'S2', 'elements': [1, 2, 3, 5, 8]}, {'id': 'S3', 'elements': [1, 2, 5, 16, 24]}, {'id': 'S4', 'elements': [3, 4, 6, 24]}, {'id': 'S5', 'elements': [5, 8, 16, 21, 22]}, {'id': 'S6', 'elements': [4, 6, 10, 14, 18, 20]}, {'id': 'S7', 'elements': [7, 15, 22]}, {'id': 'S8', 'elements': [2, 5, 17, 21, 22]}, {'id': 'S9', 'elements': [9, 12, 15]}, {'id': 'S10', 'elements': [6, 20]}, {'id': 'S11', 'elements': [11, 12, 19]}, {'id': 'S12', 'elements': [9, 11, 12, 13]}, {'id': 'S13', 'elements': [9, 12]}, {'id': 'S14', 'elements': [4, 6]}, {'id': 'S15', 'elements': [11, 15, 19, 22]}, {'id': 'S16', 'elements': [2, 16, 20, 23]}, {'id': 'S17', 'elements': [8, 17, 21, 23]}, {'id': 'S18', 'elements': [4, 6, 18]}, {'id': 'S19', 'elements': [7, 12, 19, 22, 23]}, {'id': 'S20', 'elements': [1, 3, 4, 6, 10, 14, 16, 20]}, {'id': 'S21', 'elements': [2, 5, 17, 21, 23]}, {'id': 'S22', 'elements': [5, 7, 8, 19, 21]}, {'id': 'S23', 'elements': [2, 5, 8, 17, 22]}, {'id': 'S24', 'elements': [3, 4, 10, 18, 20]}]}","['S4', 'S12', 'S15', 'S20', 'S21', 'S22', 'S24']",11,csv,1 SCP,SCP,"I’m juggling the gallery plan: pick a handful of exhibits so every historical era the museum cares about is shown somewhere on the walls. The choice is which exhibits to include; one choice is better than another if it uses fewer exhibits while still showing every era at least once — you can tell by simply counting how many exhibits were picked, and the smaller that number, the better. Nothing can be left out — each era has to appear at least once — and picking the same exhibit twice doesn’t help, though different exhibits can overlap in which eras they cover. The concrete list of eras and exhibit options is shown below. There are 23 distinct historical eras I need represented and 22 candidate exhibits to choose from. Exhibit S1 displays eras 1 3 10 14. Exhibit S2 displays eras 2 23. Exhibit S3 displays eras 3 4 8 10 11 13. Exhibit S4 displays eras 3 4 10 13 22. Exhibit S5 displays eras 5 19. Exhibit S6 displays eras 5 6 16 17 18. Exhibit S7 displays eras 7 16 19. Exhibit S8 displays eras 8 14. Exhibit S9 displays eras 2 9 17 20. Exhibit S10 displays eras 1 3 4 10 14 18. Exhibit S11 displays eras 8 11. Exhibit S12 displays eras 12 17 18 22. Exhibit S13 displays eras 13 22. Exhibit S14 displays eras 1 3 8 11 21. Exhibit S15 displays eras 9 15 20. Exhibit S16 displays eras 5 6 7 16 17. Exhibit S17 displays eras 6 18 23. Exhibit S18 displays eras 6 10 12 17 18 22 23. Exhibit S19 displays eras 5 7 16. Exhibit S20 displays eras 2 9 15 20 23. Exhibit S21 displays eras 8 14 21. Exhibit S22 displays eras 10 12 13 17 18. My aim is to cover all 23 eras while using as few of the 22 exhibits as possible. Also, when you send the final pick, please use this little JSON layout so I can read it easily: { ""solution"": [""exhibit_id"", ...] } Think of it like a tiny form: ""solution"" is the list of exhibits you chose, and each entry like ""exhibit_id"" is a placeholder for one exhibit identifier from the instance. This block is just the expected shape — not the actual answer — so replace the placeholder entries with the real exhibit ids from the problem. Please make sure to use the exhibit identifiers exactly as they appear in the instance input — no renaming and no new labels. - for example: Valid identifiers look like plain numbers such as ""1"" or ""23"", single capital letters like ""A"" or ""B"", or a capital letter followed by digits like ""A1"" or ""X7"".","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 23, 'num_sets': 22, 'density': 0.16996047430830039, 'sets': [{'id': 1, 'elements': [1, 3, 10, 14]}, {'id': 2, 'elements': [2, 23]}, {'id': 3, 'elements': [3, 4, 8, 10, 11, 13]}, {'id': 4, 'elements': [3, 4, 10, 13, 22]}, {'id': 5, 'elements': [5, 19]}, {'id': 6, 'elements': [5, 6, 16, 17, 18]}, {'id': 7, 'elements': [7, 16, 19]}, {'id': 8, 'elements': [8, 14]}, {'id': 9, 'elements': [2, 9, 17, 20]}, {'id': 10, 'elements': [1, 3, 4, 10, 14, 18]}, {'id': 11, 'elements': [8, 11]}, {'id': 12, 'elements': [12, 17, 18, 22]}, {'id': 13, 'elements': [13, 22]}, {'id': 14, 'elements': [1, 3, 8, 11, 21]}, {'id': 15, 'elements': [9, 15, 20]}, {'id': 16, 'elements': [5, 6, 7, 16, 17]}, {'id': 17, 'elements': [6, 18, 23]}, {'id': 18, 'elements': [6, 10, 12, 17, 18, 22, 23]}, {'id': 19, 'elements': [5, 7, 16]}, {'id': 20, 'elements': [2, 9, 15, 20, 23]}, {'id': 21, 'elements': [8, 14, 21]}, {'id': 22, 'elements': [10, 12, 13, 17, 18]}], 'graph': {'num_nodes': 23, 'edges': [{'u': 2, 'v': 9}, {'u': 3, 'v': 1}, {'u': 3, 'v': 10}, {'u': 3, 'v': 14}, {'u': 4, 'v': 10}, {'u': 15, 'v': 20}, {'u': 5, 'v': 7}, {'u': 5, 'v': 16}, {'u': 6, 'v': 16}, {'u': 6, 'v': 17}, {'u': 21, 'v': 8}, {'u': 12, 'v': 18}, {'u': 13, 'v': 10}, {'u': 14, 'v': 8}, {'u': 14, 'v': 11}, {'u': 10, 'v': 22}, {'u': 18, 'v': 17}, {'u': 18, 'v': 22}, {'u': 16, 'v': 7}, {'u': 17, 'v': 23}, {'u': 23, 'v': 9}, {'u': 9, 'v': 20}, {'u': 19, 'v': 7}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0011.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0011.png'}","[7, 10, 14, 16, 18, 20, 22]",7.0,"{'num_elements': 23, 'num_sets': 22, 'sets': [{'id': 'S1', 'elements': [1, 3, 10, 14]}, {'id': 'S2', 'elements': [2, 23]}, {'id': 'S3', 'elements': [3, 4, 8, 10, 11, 13]}, {'id': 'S4', 'elements': [3, 4, 10, 13, 22]}, {'id': 'S5', 'elements': [5, 19]}, {'id': 'S6', 'elements': [5, 6, 16, 17, 18]}, {'id': 'S7', 'elements': [7, 16, 19]}, {'id': 'S8', 'elements': [8, 14]}, {'id': 'S9', 'elements': [2, 9, 17, 20]}, {'id': 'S10', 'elements': [1, 3, 4, 10, 14, 18]}, {'id': 'S11', 'elements': [8, 11]}, {'id': 'S12', 'elements': [12, 17, 18, 22]}, {'id': 'S13', 'elements': [13, 22]}, {'id': 'S14', 'elements': [1, 3, 8, 11, 21]}, {'id': 'S15', 'elements': [9, 15, 20]}, {'id': 'S16', 'elements': [5, 6, 7, 16, 17]}, {'id': 'S17', 'elements': [6, 18, 23]}, {'id': 'S18', 'elements': [6, 10, 12, 17, 18, 22, 23]}, {'id': 'S19', 'elements': [5, 7, 16]}, {'id': 'S20', 'elements': [2, 9, 15, 20, 23]}, {'id': 'S21', 'elements': [8, 14, 21]}, {'id': 'S22', 'elements': [10, 12, 13, 17, 18]}]}","['S7', 'S10', 'S14', 'S16', 'S18', 'S20', 'S22']",12,nl,1 SCP,SCP,"We’ve got an HR puzzle: cover every required competency with training, but keep the variety of sessions to a minimum so employees aren’t juggling dozens of course types. The decision is which session types to pick so every needed competency shows up in at least one of them; a better decision is simply the one with fewer different session types — you measure that by counting the unique sessions chosen. Each competency must be included somewhere in the schedule, and there’s no point in scheduling the same type repeatedly just to pad numbers, so the plan should avoid needless duplication. The exact list of competencies and the session options are listed below. # total_competencies=19 # total_session_types=18 session_type_id,covered_competency_ids S1,A E F S2,B I S3,C E F J S4,D I J S5,A C F G S6,A F I Q S7,A E S8,B D H I J S9,B D H I K S10,C D E H I J L P Q S11,J L N P Q S12,M N P Q R S S13,L M N O Q S14,M N O Q S15,J L M P Q S S16,F I L M N O Q R S S17,M N Q R S18,M P Q S Oh, and when you send the chosen session types back, please stick to a tiny JSON shape like this so it’s easy to check: { ""solution"": [""session_id"", ...] } Here ""solution"" is just the list of session types you picked — each entry is a session identifier from the instance (so one item per chosen session). Think of it like filling in a short form: the array holds the session IDs you want to run. This JSON is only a sketch of the expected shape, not the actual answer. Please use the identifiers exactly as they appear in the instance input — don’t rename them or make up new labels. For example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 19, 'num_sets': 18, 'density': 0.24561403508771928, 'sets': [{'id': 1, 'elements': [1, 5, 6]}, {'id': 2, 'elements': [2, 9]}, {'id': 3, 'elements': [3, 5, 6, 10]}, {'id': 4, 'elements': [4, 9, 10]}, {'id': 5, 'elements': [1, 3, 6, 7]}, {'id': 6, 'elements': [1, 6, 9, 17]}, {'id': 7, 'elements': [1, 5]}, {'id': 8, 'elements': [2, 4, 8, 9, 10]}, {'id': 9, 'elements': [2, 4, 8, 9, 11]}, {'id': 10, 'elements': [3, 4, 5, 8, 9, 10, 12, 16, 17]}, {'id': 11, 'elements': [10, 12, 14, 16, 17]}, {'id': 12, 'elements': [13, 14, 16, 17, 18, 19]}, {'id': 13, 'elements': [12, 13, 14, 15, 17]}, {'id': 14, 'elements': [13, 14, 15, 17]}, {'id': 15, 'elements': [10, 12, 13, 16, 17, 19]}, {'id': 16, 'elements': [6, 9, 12, 13, 14, 15, 17, 18, 19]}, {'id': 17, 'elements': [13, 14, 17, 18]}, {'id': 18, 'elements': [13, 16, 17, 19]}], 'graph': {'num_nodes': 19, 'edges': [{'u': 5, 'v': 1}, {'u': 5, 'v': 6}, {'u': 6, 'v': 3}, {'u': 6, 'v': 10}, {'u': 2, 'v': 8}, {'u': 7, 'v': 1}, {'u': 13, 'v': 14}, {'u': 13, 'v': 16}, {'u': 14, 'v': 15}, {'u': 14, 'v': 17}, {'u': 14, 'v': 18}, {'u': 15, 'v': 12}, {'u': 16, 'v': 17}, {'u': 16, 'v': 19}, {'u': 17, 'v': 10}, {'u': 17, 'v': 12}, {'u': 8, 'v': 9}, {'u': 9, 'v': 4}, {'u': 9, 'v': 10}, {'u': 11, 'v': 4}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0012.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0012.png'}","[5, 9, 10, 16]",4.0,"{'num_elements': 19, 'num_sets': 18, 'sets': [{'id': 'S1', 'elements': ['A', 'E', 'F']}, {'id': 'S2', 'elements': ['B', 'I']}, {'id': 'S3', 'elements': ['C', 'E', 'F', 'J']}, {'id': 'S4', 'elements': ['D', 'I', 'J']}, {'id': 'S5', 'elements': ['A', 'C', 'F', 'G']}, {'id': 'S6', 'elements': ['A', 'F', 'I', 'Q']}, {'id': 'S7', 'elements': ['A', 'E']}, {'id': 'S8', 'elements': ['B', 'D', 'H', 'I', 'J']}, {'id': 'S9', 'elements': ['B', 'D', 'H', 'I', 'K']}, {'id': 'S10', 'elements': ['C', 'D', 'E', 'H', 'I', 'J', 'L', 'P', 'Q']}, {'id': 'S11', 'elements': ['J', 'L', 'N', 'P', 'Q']}, {'id': 'S12', 'elements': ['M', 'N', 'P', 'Q', 'R', 'S']}, {'id': 'S13', 'elements': ['L', 'M', 'N', 'O', 'Q']}, {'id': 'S14', 'elements': ['M', 'N', 'O', 'Q']}, {'id': 'S15', 'elements': ['J', 'L', 'M', 'P', 'Q', 'S']}, {'id': 'S16', 'elements': ['F', 'I', 'L', 'M', 'N', 'O', 'Q', 'R', 'S']}, {'id': 'S17', 'elements': ['M', 'N', 'Q', 'R']}, {'id': 'S18', 'elements': ['M', 'P', 'Q', 'S']}]}","['S5', 'S9', 'S10', 'S16']",13,csv,names SCP,SCP,"Recently a landscape designer had to sketch out a planting plan that satisfies every habitat in a park but avoids an overly large plant list. The question to answer was which species to pick so each habitat need gets covered by at least one selected species. The simpler plan is the one with fewer different species — you can judge plans by counting the unique species used, and the lower that number, the better. All habitat needs must be met; leaving any unmet is not allowed, and duplicating the same species doesn’t help. The concrete specifics are shown below. There were 21 candidate species available and 22 distinct habitat requirements to satisfy. Species S1 covered habitats 0 2 6 7 8 13 19. Species S2 covered habitats 0 1 2 8 17. Species S3 covered habitats 4 6 12 13 14 18 19. Species S4 covered habitats 3 14 18. Species S5 covered habitats 2 4 10 11 12 14 16 18. Species S6 covered habitats 5 7 15 21. Species S7 covered habitats 0 1 2 6 8 13 17 19. Species S8 covered habitats 0 5 7 13 15. Species S9 covered habitats 1 2 6 18 19. Species S10 covered habitats 3 18. Species S11 covered habitats 4 10 11 16 18. Species S12 covered habitats 12 14 18 20. Species S13 covered habitats 2 6 13 19. Species S14 covered habitats 3 4 9 12. Species S15 covered habitats 5 7 21. Species S16 covered habitats 4 11 16 18. Species S17 covered habitats 1 6 8. Species S18 covered habitats 3 4 8 11 12 16 18 20. Species S19 covered habitats 6 7 8 19. Species S20 covered habitats 18 20. Species S21 covered habitats 5 7 13 21. The objective was to cover all 22 habitats using as few of the 21 species as possible. Oh, and just so you know how I’ll format the final pick: I’ll give you a tiny JSON snippet like this. { ""solution"": [""species_id"", ...] } Here ""solution"" is the list of species you’d plant (one entry per chosen species). The placeholder ""species_id"" is just standing in for whatever actual species labels appear in the instance input — replace those placeholders with the real IDs when you submit. This JSON is just a sketch of the shape I’ll use, not the actual final plan. Please use the exact identifiers from the instance input — don’t rename them or invent new labels. - for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 22, 'num_sets': 21, 'density': 0.21428571428571427, 'sets': [{'id': 1, 'elements': [1, 3, 7, 8, 9, 14, 20]}, {'id': 2, 'elements': [1, 2, 3, 9, 18]}, {'id': 3, 'elements': [5, 7, 13, 14, 15, 19, 20]}, {'id': 4, 'elements': [4, 15, 19]}, {'id': 5, 'elements': [3, 5, 11, 12, 13, 15, 17, 19]}, {'id': 6, 'elements': [6, 8, 16, 22]}, {'id': 7, 'elements': [1, 2, 3, 7, 9, 14, 18, 20]}, {'id': 8, 'elements': [1, 6, 8, 14, 16]}, {'id': 9, 'elements': [2, 3, 7, 19, 20]}, {'id': 10, 'elements': [4, 19]}, {'id': 11, 'elements': [5, 11, 12, 17, 19]}, {'id': 12, 'elements': [13, 15, 19, 21]}, {'id': 13, 'elements': [3, 7, 14, 20]}, {'id': 14, 'elements': [4, 5, 10, 13]}, {'id': 15, 'elements': [6, 8, 22]}, {'id': 16, 'elements': [5, 12, 17, 19]}, {'id': 17, 'elements': [2, 7, 9]}, {'id': 18, 'elements': [4, 5, 9, 12, 13, 17, 19, 21]}, {'id': 19, 'elements': [7, 8, 9, 20]}, {'id': 20, 'elements': [19, 21]}, {'id': 21, 'elements': [6, 8, 14, 22]}], 'graph': {'num_nodes': 22, 'edges': [{'u': 10, 'v': 15}, {'u': 18, 'v': 2}, {'u': 9, 'v': 2}, {'u': 9, 'v': 3}, {'u': 9, 'v': 7}, {'u': 1, 'v': 7}, {'u': 1, 'v': 14}, {'u': 1, 'v': 20}, {'u': 21, 'v': 13}, {'u': 19, 'v': 3}, {'u': 19, 'v': 5}, {'u': 19, 'v': 13}, {'u': 19, 'v': 15}, {'u': 15, 'v': 4}, {'u': 12, 'v': 5}, {'u': 12, 'v': 11}, {'u': 6, 'v': 22}, {'u': 5, 'v': 17}, {'u': 7, 'v': 2}, {'u': 22, 'v': 8}, {'u': 22, 'v': 16}, {'u': 3, 'v': 20}, {'u': 14, 'v': 8}, {'u': 14, 'v': 20}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0013.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0013.png'}","[5, 6, 7, 12, 14]",5.0,"{'num_elements': 22, 'num_sets': 21, 'sets': [{'id': 'S1', 'elements': [0, 2, 6, 7, 8, 13, 19]}, {'id': 'S2', 'elements': [0, 1, 2, 8, 17]}, {'id': 'S3', 'elements': [4, 6, 12, 13, 14, 18, 19]}, {'id': 'S4', 'elements': [3, 14, 18]}, {'id': 'S5', 'elements': [2, 4, 10, 11, 12, 14, 16, 18]}, {'id': 'S6', 'elements': [5, 7, 15, 21]}, {'id': 'S7', 'elements': [0, 1, 2, 6, 8, 13, 17, 19]}, {'id': 'S8', 'elements': [0, 5, 7, 13, 15]}, {'id': 'S9', 'elements': [1, 2, 6, 18, 19]}, {'id': 'S10', 'elements': [3, 18]}, {'id': 'S11', 'elements': [4, 10, 11, 16, 18]}, {'id': 'S12', 'elements': [12, 14, 18, 20]}, {'id': 'S13', 'elements': [2, 6, 13, 19]}, {'id': 'S14', 'elements': [3, 4, 9, 12]}, {'id': 'S15', 'elements': [5, 7, 21]}, {'id': 'S16', 'elements': [4, 11, 16, 18]}, {'id': 'S17', 'elements': [1, 6, 8]}, {'id': 'S18', 'elements': [3, 4, 8, 11, 12, 16, 18, 20]}, {'id': 'S19', 'elements': [6, 7, 8, 19]}, {'id': 'S20', 'elements': [18, 20]}, {'id': 'S21', 'elements': [5, 7, 13, 21]}]}","['S5', 'S6', 'S7', 'S12', 'S14']",14,nl,0 SCP,SCP,"There’s a DJ piecing together a short setlist that still satisfies a bunch of mood requests; the idea is to pick songs that between them cover all the moods, using as few tracks as possible. Some tracks pull double duty and hit multiple moods, so the choice is about which combination covers everything. You measure success by counting tracks — the lower the count the better — but every requested mood has to appear at least once and no song should appear twice. The exact details are shown below. { ""num_moods_total"": 19, ""num_songs_available"": 18, ""sets"": [ { ""song_id"": ""S1"", ""moods_covered"": [ 1, 7, 11, 12, 17 ] }, { ""song_id"": ""S2"", ""moods_covered"": [ 2, 5, 6, 19 ] }, { ""song_id"": ""S3"", ""moods_covered"": [ 8, 9, 16 ] }, { ""song_id"": ""S4"", ""moods_covered"": [ 1, 4, 7, 14 ] }, { ""song_id"": ""S5"", ""moods_covered"": [ 2, 6, 8, 10, 19 ] }, { ""song_id"": ""S6"", ""moods_covered"": [ 2, 5, 6, 10, 16, 19 ] }, { ""song_id"": ""S7"", ""moods_covered"": [ 1, 4, 7, 17 ] }, { ""song_id"": ""S8"", ""moods_covered"": [ 6, 8, 10, 11, 15, 16 ] }, { ""song_id"": ""S9"", ""moods_covered"": [ 8, 19 ] }, { ""song_id"": ""S10"", ""moods_covered"": [ 1, 8, 15, 17 ] }, { ""song_id"": ""S11"", ""moods_covered"": [ 1, 7, 12 ] }, { ""song_id"": ""S12"", ""moods_covered"": [ 13, 16, 18 ] }, { ""song_id"": ""S13"", ""moods_covered"": [ 1, 7 ] }, { ""song_id"": ""S14"", ""moods_covered"": [ 6, 8, 15 ] }, { ""song_id"": ""S15"", ""moods_covered"": [ 3, 8, 9, 13 ] }, { ""song_id"": ""S16"", ""moods_covered"": [ 1, 7, 15, 17 ] }, { ""song_id"": ""S17"", ""moods_covered"": [ 3, 8, 13 ] }, { ""song_id"": ""S18"", ""moods_covered"": [ 2, 5, 6, 10 ] } ] } Also, when you reply, please use a tiny JSON sketch so it's easy to read and parse. Something like this: { ""solution"": [""track_id"", ...] } Here ""solution"" is just an array listing the tracks you pick for the DJ set — put each chosen track's identifier in there (that's the label from the instance). Think of the JSON as a simple form: the key says what the list is, and the array holds the exact track IDs. This is only a template showing the expected shape, not your actual answer. Please make sure all identifiers are used exactly as they appear in the instance input — no renaming and no new labels. - for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 19, 'num_sets': 18, 'density': 0.20175438596491227, 'sets': [{'id': 1, 'elements': [1, 7, 11, 12, 17]}, {'id': 2, 'elements': [2, 5, 6, 19]}, {'id': 3, 'elements': [8, 9, 16]}, {'id': 4, 'elements': [1, 4, 7, 14]}, {'id': 5, 'elements': [2, 6, 8, 10, 19]}, {'id': 6, 'elements': [2, 5, 6, 10, 16, 19]}, {'id': 7, 'elements': [1, 4, 7, 17]}, {'id': 8, 'elements': [6, 8, 10, 11, 15, 16]}, {'id': 9, 'elements': [8, 19]}, {'id': 10, 'elements': [1, 8, 15, 17]}, {'id': 11, 'elements': [1, 7, 12]}, {'id': 12, 'elements': [13, 16, 18]}, {'id': 13, 'elements': [1, 7]}, {'id': 14, 'elements': [6, 8, 15]}, {'id': 15, 'elements': [3, 8, 9, 13]}, {'id': 16, 'elements': [1, 7, 15, 17]}, {'id': 17, 'elements': [3, 8, 13]}, {'id': 18, 'elements': [2, 5, 6, 10]}], 'graph': {'num_nodes': 19, 'edges': [{'u': 15, 'v': 8}, {'u': 15, 'v': 11}, {'u': 18, 'v': 13}, {'u': 18, 'v': 16}, {'u': 4, 'v': 7}, {'u': 9, 'v': 3}, {'u': 17, 'v': 1}, {'u': 17, 'v': 11}, {'u': 12, 'v': 1}, {'u': 14, 'v': 7}, {'u': 19, 'v': 5}, {'u': 19, 'v': 10}, {'u': 1, 'v': 7}, {'u': 16, 'v': 3}, {'u': 16, 'v': 8}, {'u': 5, 'v': 2}, {'u': 5, 'v': 6}, {'u': 10, 'v': 6}, {'u': 8, 'v': 6}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0014.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0014.png'}","[1, 4, 6, 10, 12, 15]",6.0,"{'num_elements': 19, 'num_sets': 18, 'sets': [{'id': 'S1', 'elements': [1, 7, 11, 12, 17]}, {'id': 'S2', 'elements': [2, 5, 6, 19]}, {'id': 'S3', 'elements': [8, 9, 16]}, {'id': 'S4', 'elements': [1, 4, 7, 14]}, {'id': 'S5', 'elements': [2, 6, 8, 10, 19]}, {'id': 'S6', 'elements': [2, 5, 6, 10, 16, 19]}, {'id': 'S7', 'elements': [1, 4, 7, 17]}, {'id': 'S8', 'elements': [6, 8, 10, 11, 15, 16]}, {'id': 'S9', 'elements': [8, 19]}, {'id': 'S10', 'elements': [1, 8, 15, 17]}, {'id': 'S11', 'elements': [1, 7, 12]}, {'id': 'S12', 'elements': [13, 16, 18]}, {'id': 'S13', 'elements': [1, 7]}, {'id': 'S14', 'elements': [6, 8, 15]}, {'id': 'S15', 'elements': [3, 8, 9, 13]}, {'id': 'S16', 'elements': [1, 7, 15, 17]}, {'id': 'S17', 'elements': [3, 8, 13]}, {'id': 'S18', 'elements': [2, 5, 6, 10]}]}","['S1', 'S4', 'S6', 'S10', 'S12', 'S15']",15,json,1 SCP,SCP,"Someone in charge of building security explained the setup over coffee: cameras need to be positioned so all corridors are covered, and the kicker is to do it with the fewest cameras possible. The task is picking which sites to use so every hallway gets covered at least once; the way to tell if it’s good is to total the cameras used — lower totals are better. Every corridor must be included in that coverage, and putting cameras that only duplicate existing coverage is wasteful. Details about the corridors and camera choices follow below. # total_corridors=19 # total_camera_sites=19 camera_site_id,covered_corridors S1,2 8 S2,1 6 9 11 15 S3,3 4 5 10 13 16 17 S4,4 10 12 16 17 S5,3 5 11 13 14 17 S6,2 6 19 S7,3 7 10 16 S8,1 8 9 S9,2 8 9 S10,3 4 7 14 S11,2 5 11 15 16 S12,10 12 S13,3 13 14 S14,3 5 7 10 13 14 16 S15,1 2 15 17 S16,3 4 5 7 11 12 14 16 17 S17,4 5 11 15 16 17 S18,6 18 S19,18 19 Oh, and just so everything stays neat, I like to get the final pick in a tiny JSON sketch — super simple and easy to read. Something like this will do: { ""solution"": [""set_id"", ...] } Here ""solution"" is the list of camera sites you’re choosing (each entry is the id of a site to place a camera). Think of it like filling out a short form: put each site identifier in that array, and that’s your answer. This is just the shape I’m expecting, not the actual selection. Please be careful to use the exact identifiers from the instance input — don’t rename anything or invent new labels. - for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 19, 'num_sets': 19, 'density': 0.22714681440443213, 'sets': [{'id': 1, 'elements': [2, 8]}, {'id': 2, 'elements': [1, 6, 9, 11, 15]}, {'id': 3, 'elements': [3, 4, 5, 10, 13, 16, 17]}, {'id': 4, 'elements': [4, 10, 12, 16, 17]}, {'id': 5, 'elements': [3, 5, 11, 13, 14, 17]}, {'id': 6, 'elements': [2, 6, 19]}, {'id': 7, 'elements': [3, 7, 10, 16]}, {'id': 8, 'elements': [1, 8, 9]}, {'id': 9, 'elements': [2, 8, 9]}, {'id': 10, 'elements': [3, 4, 7, 14]}, {'id': 11, 'elements': [2, 5, 11, 15, 16]}, {'id': 12, 'elements': [10, 12]}, {'id': 13, 'elements': [3, 13, 14]}, {'id': 14, 'elements': [3, 5, 7, 10, 13, 14, 16]}, {'id': 15, 'elements': [1, 2, 15, 17]}, {'id': 16, 'elements': [3, 4, 5, 7, 11, 12, 14, 16, 17]}, {'id': 17, 'elements': [4, 5, 11, 15, 16, 17]}, {'id': 18, 'elements': [6, 18]}, {'id': 19, 'elements': [18, 19]}], 'graph': {'num_nodes': 19, 'edges': [{'u': 5, 'v': 14}, {'u': 5, 'v': 17}, {'u': 4, 'v': 10}, {'u': 4, 'v': 12}, {'u': 4, 'v': 16}, {'u': 17, 'v': 11}, {'u': 17, 'v': 16}, {'u': 19, 'v': 18}, {'u': 13, 'v': 14}, {'u': 9, 'v': 8}, {'u': 11, 'v': 15}, {'u': 7, 'v': 3}, {'u': 8, 'v': 2}, {'u': 2, 'v': 1}, {'u': 2, 'v': 15}, {'u': 10, 'v': 3}, {'u': 18, 'v': 6}, {'u': 16, 'v': 3}, {'u': 1, 'v': 6}, {'u': 3, 'v': 14}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0015.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0015.png'}","[2, 9, 14, 16, 19]",5.0,"{'num_elements': 19, 'num_sets': 19, 'sets': [{'id': 'S1', 'elements': [2, 8]}, {'id': 'S2', 'elements': [1, 6, 9, 11, 15]}, {'id': 'S3', 'elements': [3, 4, 5, 10, 13, 16, 17]}, {'id': 'S4', 'elements': [4, 10, 12, 16, 17]}, {'id': 'S5', 'elements': [3, 5, 11, 13, 14, 17]}, {'id': 'S6', 'elements': [2, 6, 19]}, {'id': 'S7', 'elements': [3, 7, 10, 16]}, {'id': 'S8', 'elements': [1, 8, 9]}, {'id': 'S9', 'elements': [2, 8, 9]}, {'id': 'S10', 'elements': [3, 4, 7, 14]}, {'id': 'S11', 'elements': [2, 5, 11, 15, 16]}, {'id': 'S12', 'elements': [10, 12]}, {'id': 'S13', 'elements': [3, 13, 14]}, {'id': 'S14', 'elements': [3, 5, 7, 10, 13, 14, 16]}, {'id': 'S15', 'elements': [1, 2, 15, 17]}, {'id': 'S16', 'elements': [3, 4, 5, 7, 11, 12, 14, 16, 17]}, {'id': 'S17', 'elements': [4, 5, 11, 15, 16, 17]}, {'id': 'S18', 'elements': [6, 18]}, {'id': 'S19', 'elements': [18, 19]}]}","['S2', 'S9', 'S14', 'S16', 'S19']",16,csv,1 SCP,SCP,"Many people prefer a clean brochure with just a few distinct tours, so the operator must choose which built routes to include so that every monument and viewpoint is covered. The choice comes down to which combination of routes reaches every spot while keeping the number of different routes offered to a minimum. To judge any selection, simply count the distinct routes it contains — every point needs to be on at least one route, and duplicates don’t reduce that total. The concrete list of sights and possible routes is given below. # total_points_of_interest=19 # available_route_count=19 route_id,route_covered_sights S1,A O Q S2,E I K Q S3,R S S4,E G J L P S5,B D E L Q S6,F G H J K Q S7,D G H I S8,G H I M N Q S9,H I K M S10,B D F I J K M S11,B G I K S12,B E L S13,I J M S14,G H I N S15,O P S16,A D G O P R S17,A B C D E F H L O P Q R S S18,D G P Q S19,C Q S If you want to hand me the chosen routes in a tidy, machine-friendly way, just send a little JSON snippet like this: { ""solution"": [""route_id"", ...] } Think of it like a simple form: ""solution"" is the list of route identifiers you want in the brochure, and each item in the array is one route. This block is just a sketch of the expected shape, not the actual answer — replace the placeholder entries with the real route IDs from the instance. Please use the identifiers exactly as they appear in the instance input — no renaming and no invented labels. - for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”"".","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 19, 'num_sets': 19, 'density': 0.24376731301939059, 'sets': [{'id': 1, 'elements': [1, 15, 17]}, {'id': 2, 'elements': [5, 9, 11, 17]}, {'id': 3, 'elements': [18, 19]}, {'id': 4, 'elements': [5, 7, 10, 12, 16]}, {'id': 5, 'elements': [2, 4, 5, 12, 17]}, {'id': 6, 'elements': [6, 7, 8, 10, 11, 17]}, {'id': 7, 'elements': [4, 7, 8, 9]}, {'id': 8, 'elements': [7, 8, 9, 13, 14, 17]}, {'id': 9, 'elements': [8, 9, 11, 13]}, {'id': 10, 'elements': [2, 4, 6, 9, 10, 11, 13]}, {'id': 11, 'elements': [2, 7, 9, 11]}, {'id': 12, 'elements': [2, 5, 12]}, {'id': 13, 'elements': [9, 10, 13]}, {'id': 14, 'elements': [7, 8, 9, 14]}, {'id': 15, 'elements': [15, 16]}, {'id': 16, 'elements': [1, 4, 7, 15, 16, 18]}, {'id': 17, 'elements': [1, 2, 3, 4, 5, 6, 8, 12, 15, 16, 17, 18, 19]}, {'id': 18, 'elements': [4, 7, 16, 17]}, {'id': 19, 'elements': [3, 17, 19]}], 'graph': {'num_nodes': 19, 'edges': [{'u': 15, 'v': 16}, {'u': 16, 'v': 1}, {'u': 16, 'v': 17}, {'u': 17, 'v': 4}, {'u': 17, 'v': 7}, {'u': 17, 'v': 18}, {'u': 18, 'v': 3}, {'u': 18, 'v': 19}, {'u': 19, 'v': 3}, {'u': 6, 'v': 7}, {'u': 6, 'v': 11}, {'u': 7, 'v': 8}, {'u': 8, 'v': 9}, {'u': 8, 'v': 14}, {'u': 9, 'v': 10}, {'u': 9, 'v': 13}, {'u': 10, 'v': 2}, {'u': 10, 'v': 11}, {'u': 4, 'v': 2}, {'u': 4, 'v': 5}, {'u': 4, 'v': 12}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0016.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0016.png'}","[8, 10, 17]",3.0,"{'num_elements': 19, 'num_sets': 19, 'sets': [{'id': 'S1', 'elements': ['A', 'O', 'Q']}, {'id': 'S2', 'elements': ['E', 'I', 'K', 'Q']}, {'id': 'S3', 'elements': ['R', 'S']}, {'id': 'S4', 'elements': ['E', 'G', 'J', 'L', 'P']}, {'id': 'S5', 'elements': ['B', 'D', 'E', 'L', 'Q']}, {'id': 'S6', 'elements': ['F', 'G', 'H', 'J', 'K', 'Q']}, {'id': 'S7', 'elements': ['D', 'G', 'H', 'I']}, {'id': 'S8', 'elements': ['G', 'H', 'I', 'M', 'N', 'Q']}, {'id': 'S9', 'elements': ['H', 'I', 'K', 'M']}, {'id': 'S10', 'elements': ['B', 'D', 'F', 'I', 'J', 'K', 'M']}, {'id': 'S11', 'elements': ['B', 'G', 'I', 'K']}, {'id': 'S12', 'elements': ['B', 'E', 'L']}, {'id': 'S13', 'elements': ['I', 'J', 'M']}, {'id': 'S14', 'elements': ['G', 'H', 'I', 'N']}, {'id': 'S15', 'elements': ['O', 'P']}, {'id': 'S16', 'elements': ['A', 'D', 'G', 'O', 'P', 'R']}, {'id': 'S17', 'elements': ['A', 'B', 'C', 'D', 'E', 'F', 'H', 'L', 'O', 'P', 'Q', 'R', 'S']}, {'id': 'S18', 'elements': ['D', 'G', 'P', 'Q']}, {'id': 'S19', 'elements': ['C', 'Q', 'S']}]}","['S8', 'S10', 'S17']",17,csv,names SCP,SCP,"Recently the backup team faced a cleanup: dozens of essential files and a list of possible storage sites, and the mission was to pick a small set of sites that together hold every critical file. They measure a good solution by simply counting how many sites are used (fewer sites means a better solution), and they must make sure every file appears in at least one chosen site; duplicating the same site is pointless. The precise setup appears below. { ""total_critical_files"": 20, ""available_storage_sites"": 19, ""sets"": [ { ""storage_site_id"": ""S1"", ""files_in_site"": [ ""A"", ""G"", ""J"", ""Q"", ""S"", ""T"" ] }, { ""storage_site_id"": ""S2"", ""files_in_site"": [ ""B"", ""H"", ""I"", ""J"", ""T"" ] }, { ""storage_site_id"": ""S3"", ""files_in_site"": [ ""C"", ""H"", ""J"", ""N"" ] }, { ""storage_site_id"": ""S4"", ""files_in_site"": [ ""D"", ""E"", ""S"" ] }, { ""storage_site_id"": ""S5"", ""files_in_site"": [ ""L"", ""S"" ] }, { ""storage_site_id"": ""S6"", ""files_in_site"": [ ""A"", ""G"", ""K"", ""Q"", ""R"" ] }, { ""storage_site_id"": ""S7"", ""files_in_site"": [ ""B"", ""H"", ""M"", ""N"", ""O"", ""T"" ] }, { ""storage_site_id"": ""S8"", ""files_in_site"": [ ""B"", ""F"", ""J"", ""T"" ] }, { ""storage_site_id"": ""S9"", ""files_in_site"": [ ""A"", ""B"", ""C"", ""E"", ""G"", ""H"", ""I"", ""K"", ""L"", ""M"", ""N"", ""T"" ] }, { ""storage_site_id"": ""S10"", ""files_in_site"": [ ""A"", ""G"", ""J"", ""K"" ] }, { ""storage_site_id"": ""S11"", ""files_in_site"": [ ""L"", ""P"", ""R"", ""S"" ] }, { ""storage_site_id"": ""S12"", ""files_in_site"": [ ""J"", ""N"" ] }, { ""storage_site_id"": ""S13"", ""files_in_site"": [ ""A"", ""C"", ""J"", ""O"", ""S"", ""T"" ] }, { ""storage_site_id"": ""S14"", ""files_in_site"": [ ""H"", ""T"" ] }, { ""storage_site_id"": ""S15"", ""files_in_site"": [ ""G"", ""L"", ""R"", ""S"" ] }, { ""storage_site_id"": ""S16"", ""files_in_site"": [ ""A"", ""Q"", ""R"" ] }, { ""storage_site_id"": ""S17"", ""files_in_site"": [ ""A"", ""G"", ""L"", ""P"", ""Q"", ""R"" ] }, { ""storage_site_id"": ""S18"", ""files_in_site"": [ ""D"", ""L"", ""P"", ""T"" ] }, { ""storage_site_id"": ""S19"", ""files_in_site"": [ ""H"", ""I"", ""J"", ""N"", ""O"", ""S"", ""T"" ] } ] } When you report back, just drop the chosen sites into a tiny JSON snippet so it's easy to read and parse. Something like this will do: { ""solution"": [""site_id"", ...] } Here ""solution"" is where you list the sites you chose — one identifier per entry — and the ellipsis just means you can include as many as needed. Think of it like a simple form: the array is the list of storage sites to use. This is only the expected shape of the answer, not the actual picks. Quick reminder: use the identifiers exactly as they appear in the instance input — do not rename them or invent new labels. Valid identifiers look like plain numbers such as ""1"" or ""23"", single capital letters like ""A"" or ""B"", or a capital letter followed by digits like ""A1"" or ""X7"".","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 20, 'num_sets': 19, 'density': 0.23421052631578948, 'sets': [{'id': 1, 'elements': [1, 7, 10, 17, 19, 20]}, {'id': 2, 'elements': [2, 8, 9, 10, 20]}, {'id': 3, 'elements': [3, 8, 10, 14]}, {'id': 4, 'elements': [4, 5, 19]}, {'id': 5, 'elements': [12, 19]}, {'id': 6, 'elements': [1, 7, 11, 17, 18]}, {'id': 7, 'elements': [2, 8, 13, 14, 15, 20]}, {'id': 8, 'elements': [2, 6, 10, 20]}, {'id': 9, 'elements': [1, 2, 3, 5, 7, 8, 9, 11, 12, 13, 14, 20]}, {'id': 10, 'elements': [1, 7, 10, 11]}, {'id': 11, 'elements': [12, 16, 18, 19]}, {'id': 12, 'elements': [10, 14]}, {'id': 13, 'elements': [1, 3, 10, 15, 19, 20]}, {'id': 14, 'elements': [8, 20]}, {'id': 15, 'elements': [7, 12, 18, 19]}, {'id': 16, 'elements': [1, 17, 18]}, {'id': 17, 'elements': [1, 7, 12, 16, 17, 18]}, {'id': 18, 'elements': [4, 12, 16, 20]}, {'id': 19, 'elements': [8, 9, 10, 14, 15, 19, 20]}], 'graph': {'num_nodes': 20, 'edges': [{'u': 19, 'v': 5}, {'u': 19, 'v': 10}, {'u': 19, 'v': 12}, {'u': 5, 'v': 4}, {'u': 10, 'v': 1}, {'u': 10, 'v': 14}, {'u': 10, 'v': 20}, {'u': 6, 'v': 9}, {'u': 11, 'v': 1}, {'u': 9, 'v': 20}, {'u': 2, 'v': 15}, {'u': 2, 'v': 20}, {'u': 3, 'v': 14}, {'u': 18, 'v': 7}, {'u': 18, 'v': 16}, {'u': 15, 'v': 8}, {'u': 1, 'v': 7}, {'u': 20, 'v': 8}, {'u': 16, 'v': 12}, {'u': 13, 'v': 14}, {'u': 8, 'v': 14}, {'u': 17, 'v': 7}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0017.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0017.png'}","[8, 9, 13, 17, 18]",5.0,"{'num_elements': 20, 'num_sets': 19, 'sets': [{'id': 'S1', 'elements': ['A', 'G', 'J', 'Q', 'S', 'T']}, {'id': 'S2', 'elements': ['B', 'H', 'I', 'J', 'T']}, {'id': 'S3', 'elements': ['C', 'H', 'J', 'N']}, {'id': 'S4', 'elements': ['D', 'E', 'S']}, {'id': 'S5', 'elements': ['L', 'S']}, {'id': 'S6', 'elements': ['A', 'G', 'K', 'Q', 'R']}, {'id': 'S7', 'elements': ['B', 'H', 'M', 'N', 'O', 'T']}, {'id': 'S8', 'elements': ['B', 'F', 'J', 'T']}, {'id': 'S9', 'elements': ['A', 'B', 'C', 'E', 'G', 'H', 'I', 'K', 'L', 'M', 'N', 'T']}, {'id': 'S10', 'elements': ['A', 'G', 'J', 'K']}, {'id': 'S11', 'elements': ['L', 'P', 'R', 'S']}, {'id': 'S12', 'elements': ['J', 'N']}, {'id': 'S13', 'elements': ['A', 'C', 'J', 'O', 'S', 'T']}, {'id': 'S14', 'elements': ['H', 'T']}, {'id': 'S15', 'elements': ['G', 'L', 'R', 'S']}, {'id': 'S16', 'elements': ['A', 'Q', 'R']}, {'id': 'S17', 'elements': ['A', 'G', 'L', 'P', 'Q', 'R']}, {'id': 'S18', 'elements': ['D', 'L', 'P', 'T']}, {'id': 'S19', 'elements': ['H', 'I', 'J', 'N', 'O', 'S', 'T']}]}","['S8', 'S9', 'S13', 'S17', 'S18']",18,json,names SCP,SCP,"Someone on the team needs to build a compact freelance lineup that still handles every language pairing requested by projects. The choice is which freelancers to invite onto the roster so that each required language combination is represented at least once, and the cleaner solution is the one with the least people added. In practice this means making sure every pairing is assigned, tallying up the selected freelancers to see how compact the roster is, and avoiding hires that merely duplicate coverage without covering anything new. The exact list of requirements and freelancers will be shown below. There are 20 required language combinations and 19 available freelancers. Freelancer S1 covers A J Q. Freelancer S2 covers B K S. Freelancer S3 covers C D G M Q. Freelancer S4 covers D M O Q T. Freelancer S5 covers E H R. Freelancer S6 covers P S T. Freelancer S7 covers C M. Freelancer S8 covers E H N O R T. Freelancer S9 covers A I J Q. Freelancer S10 covers A I Q. Freelancer S11 covers B D O P S T. Freelancer S12 covers F L P. Freelancer S13 covers C D M. Freelancer S14 covers N O. Freelancer S15 covers E H O. Freelancer S16 covers F K L P. Freelancer S17 covers A C D I J T. Freelancer S18 covers O R. Freelancer S19 covers C D H K N O Q S T. The goal is to cover all 20 pairings with as few hires as possible. Oh, and to keep things machine- and people-friendly, please return the chosen roster in this little JSON shape: { ""solution"": [""freelancer_id"", ...] } Think of it like a simple form: ""solution"" is the list (array) of the freelancer IDs you’re inviting onto the roster. The placeholder freelancer_id is where each exact ID from the instance goes. This JSON is just the expected shape — not the actual answer — so replace the placeholder(s) with the real IDs when you submit. Please make sure to use the identifiers exactly as they appear in the instance input — no renaming and no new labels. - for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 20, 'num_sets': 19, 'density': 0.19736842105263158, 'sets': [{'id': 1, 'elements': [1, 10, 17]}, {'id': 2, 'elements': [2, 11, 19]}, {'id': 3, 'elements': [3, 4, 7, 13, 17]}, {'id': 4, 'elements': [4, 13, 15, 17, 20]}, {'id': 5, 'elements': [5, 8, 18]}, {'id': 6, 'elements': [16, 19, 20]}, {'id': 7, 'elements': [3, 13]}, {'id': 8, 'elements': [5, 8, 14, 15, 18, 20]}, {'id': 9, 'elements': [1, 9, 10, 17]}, {'id': 10, 'elements': [1, 9, 17]}, {'id': 11, 'elements': [2, 4, 15, 16, 19, 20]}, {'id': 12, 'elements': [6, 12, 16]}, {'id': 13, 'elements': [3, 4, 13]}, {'id': 14, 'elements': [14, 15]}, {'id': 15, 'elements': [5, 8, 15]}, {'id': 16, 'elements': [6, 11, 12, 16]}, {'id': 17, 'elements': [1, 3, 4, 9, 10, 20]}, {'id': 18, 'elements': [15, 18]}, {'id': 19, 'elements': [3, 4, 8, 11, 14, 15, 17, 19, 20]}], 'graph': {'num_nodes': 20, 'edges': [{'u': 19, 'v': 2}, {'u': 19, 'v': 11}, {'u': 6, 'v': 11}, {'u': 6, 'v': 16}, {'u': 4, 'v': 3}, {'u': 4, 'v': 17}, {'u': 4, 'v': 20}, {'u': 14, 'v': 15}, {'u': 16, 'v': 12}, {'u': 13, 'v': 3}, {'u': 13, 'v': 7}, {'u': 15, 'v': 8}, {'u': 15, 'v': 20}, {'u': 5, 'v': 8}, {'u': 17, 'v': 9}, {'u': 10, 'v': 9}, {'u': 8, 'v': 18}, {'u': 20, 'v': 11}, {'u': 9, 'v': 1}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0018.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0018.png'}","[3, 8, 11, 16, 17]",5.0,"{'num_elements': 20, 'num_sets': 19, 'sets': [{'id': 'S1', 'elements': ['A', 'J', 'Q']}, {'id': 'S2', 'elements': ['B', 'K', 'S']}, {'id': 'S3', 'elements': ['C', 'D', 'G', 'M', 'Q']}, {'id': 'S4', 'elements': ['D', 'M', 'O', 'Q', 'T']}, {'id': 'S5', 'elements': ['E', 'H', 'R']}, {'id': 'S6', 'elements': ['P', 'S', 'T']}, {'id': 'S7', 'elements': ['C', 'M']}, {'id': 'S8', 'elements': ['E', 'H', 'N', 'O', 'R', 'T']}, {'id': 'S9', 'elements': ['A', 'I', 'J', 'Q']}, {'id': 'S10', 'elements': ['A', 'I', 'Q']}, {'id': 'S11', 'elements': ['B', 'D', 'O', 'P', 'S', 'T']}, {'id': 'S12', 'elements': ['F', 'L', 'P']}, {'id': 'S13', 'elements': ['C', 'D', 'M']}, {'id': 'S14', 'elements': ['N', 'O']}, {'id': 'S15', 'elements': ['E', 'H', 'O']}, {'id': 'S16', 'elements': ['F', 'K', 'L', 'P']}, {'id': 'S17', 'elements': ['A', 'C', 'D', 'I', 'J', 'T']}, {'id': 'S18', 'elements': ['O', 'R']}, {'id': 'S19', 'elements': ['C', 'D', 'H', 'K', 'N', 'O', 'Q', 'S', 'T']}]}","['S3', 'S8', 'S11', 'S16', 'S17']",19,nl,names SCP,SCP,"Recently the department decided it would be handy to have a minimal textbook set for the term, so the coordinator’s challenge became: choose the smallest possible collection of books that together contain every topic from the syllabus. The choice to make is which specific textbooks to pick; a preferable choice is the one that covers every topic but uses the fewest titles. The way to compare choices is by counting the selected textbooks, and no topic should be left out even if some will appear in more than one chosen book. The exact list of topics and book candidates appears below. There are 23 distinct syllabus topics and 21 textbook candidates listed below. Textbook S1 covers topics 0 6 7 13. Textbook S2 covers topics 2 5 7 11 13 17 18 20. Textbook S3 covers topics 3 13. Textbook S4 covers topics 0 7 8 13 19 21. Textbook S5 covers topics 2 5 20. Textbook S6 covers topics 0 6 16. Textbook S7 covers topics 2 4 7 8 13 14 17. Textbook S8 covers topics 7 19. Textbook S9 covers topics 9 14 16 21. Textbook S10 covers topics 1 2 10 11 13 18. Textbook S11 covers topics 5 10 11 13 20. Textbook S12 covers topics 3 12 13 17. Textbook S13 covers topics 4 7 10 11 12 13 17. Textbook S14 covers topics 0 6 14 16 21. Textbook S15 covers topics 6 14 15 16 19 21. Textbook S16 covers topics 2 7 12 13 17. Textbook S17 covers topics 1 2. Textbook S18 covers topics 4 15 16 19 21 22. Textbook S19 covers topics 2 5. Textbook S20 covers topics 4 9 14 15 16 19 21 22. Textbook S21 covers topics 4 19 21 22. The coordinator should select the fewest textbooks that together cover all 23 topics. If you want to hand me the picks in a simple, machine-friendly way, you can stick to a tiny JSON sketch like this: { ""solution"": [""book_id"", ...] } Think of ""solution"" as the list of chosen textbooks, and put each chosen book's identifier inside that array. The ""book_id"" entry is just a placeholder showing the kind of ID you'll use — it's not an actual book title. This JSON is just the expected shape of the reply, not the real answer itself. Please use the exact identifiers from the instance input — don't rename them or invent new ones. Valid identifiers look like plain numbers such as ""1"" or ""23"", single capital letters like ""A"" or ""B"", or a capital letter followed by digits like ""A1"" or ""X7"".","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 23, 'num_sets': 21, 'density': 0.20496894409937888, 'sets': [{'id': 1, 'elements': [1, 7, 8, 14]}, {'id': 2, 'elements': [3, 6, 8, 12, 14, 18, 19, 21]}, {'id': 3, 'elements': [4, 14]}, {'id': 4, 'elements': [1, 8, 9, 14, 20, 22]}, {'id': 5, 'elements': [3, 6, 21]}, {'id': 6, 'elements': [1, 7, 17]}, {'id': 7, 'elements': [3, 5, 8, 9, 14, 15, 18]}, {'id': 8, 'elements': [8, 20]}, {'id': 9, 'elements': [10, 15, 17, 22]}, {'id': 10, 'elements': [2, 3, 11, 12, 14, 19]}, {'id': 11, 'elements': [6, 11, 12, 14, 21]}, {'id': 12, 'elements': [4, 13, 14, 18]}, {'id': 13, 'elements': [5, 8, 11, 12, 13, 14, 18]}, {'id': 14, 'elements': [1, 7, 15, 17, 22]}, {'id': 15, 'elements': [7, 15, 16, 17, 20, 22]}, {'id': 16, 'elements': [3, 8, 13, 14, 18]}, {'id': 17, 'elements': [2, 3]}, {'id': 18, 'elements': [5, 16, 17, 20, 22, 23]}, {'id': 19, 'elements': [3, 6]}, {'id': 20, 'elements': [5, 10, 15, 16, 17, 20, 22, 23]}, {'id': 21, 'elements': [5, 20, 22, 23]}], 'graph': {'num_nodes': 23, 'edges': [{'u': 22, 'v': 16}, {'u': 22, 'v': 17}, {'u': 22, 'v': 20}, {'u': 18, 'v': 4}, {'u': 18, 'v': 13}, {'u': 18, 'v': 14}, {'u': 19, 'v': 2}, {'u': 19, 'v': 11}, {'u': 7, 'v': 15}, {'u': 14, 'v': 3}, {'u': 14, 'v': 8}, {'u': 15, 'v': 1}, {'u': 15, 'v': 17}, {'u': 23, 'v': 20}, {'u': 6, 'v': 12}, {'u': 9, 'v': 5}, {'u': 20, 'v': 5}, {'u': 17, 'v': 10}, {'u': 11, 'v': 3}, {'u': 12, 'v': 3}, {'u': 12, 'v': 21}, {'u': 1, 'v': 8}, {'u': 5, 'v': 8}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0019.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0019.png'}","[4, 10, 11, 12, 14, 20]",6.0,"{'num_elements': 23, 'num_sets': 21, 'sets': [{'id': 'S1', 'elements': [0, 6, 7, 13]}, {'id': 'S2', 'elements': [2, 5, 7, 11, 13, 17, 18, 20]}, {'id': 'S3', 'elements': [3, 13]}, {'id': 'S4', 'elements': [0, 7, 8, 13, 19, 21]}, {'id': 'S5', 'elements': [2, 5, 20]}, {'id': 'S6', 'elements': [0, 6, 16]}, {'id': 'S7', 'elements': [2, 4, 7, 8, 13, 14, 17]}, {'id': 'S8', 'elements': [7, 19]}, {'id': 'S9', 'elements': [9, 14, 16, 21]}, {'id': 'S10', 'elements': [1, 2, 10, 11, 13, 18]}, {'id': 'S11', 'elements': [5, 10, 11, 13, 20]}, {'id': 'S12', 'elements': [3, 12, 13, 17]}, {'id': 'S13', 'elements': [4, 7, 10, 11, 12, 13, 17]}, {'id': 'S14', 'elements': [0, 6, 14, 16, 21]}, {'id': 'S15', 'elements': [6, 14, 15, 16, 19, 21]}, {'id': 'S16', 'elements': [2, 7, 12, 13, 17]}, {'id': 'S17', 'elements': [1, 2]}, {'id': 'S18', 'elements': [4, 15, 16, 19, 21, 22]}, {'id': 'S19', 'elements': [2, 5]}, {'id': 'S20', 'elements': [4, 9, 14, 15, 16, 19, 21, 22]}, {'id': 'S21', 'elements': [4, 19, 21, 22]}]}","['S4', 'S10', 'S11', 'S12', 'S14', 'S20']",20,nl,0 SCP,SCP,"I’m putting together a conference and have a stack of vendor packages to choose from—each one covers a few of the services we need like catering, AV, and signage. The job is to pick as few of those packages as possible so every required service shows up in at least one selected bundle; the way to judge a plan is simply by counting how many packages were picked (fewer is better) while making sure nothing important is missing, and avoiding needless overlap where two packages both do the same thing. The concrete package and service details are listed below. # total_services_required=23 # total_packages_available=23 package_id,services_in_package S1,2 4 7 11 15 18 20 23 S2,1 2 8 21 S3,5 10 13 14 22 S4,1 4 6 9 12 13 15 16 17 S5,3 14 16 S6,4 5 6 15 16 17 18 19 23 S7,1 7 8 21 23 S8,7 8 20 S9,10 12 14 S10,3 9 10 12 22 23 S11,1 2 7 11 15 20 S12,3 4 9 10 12 13 14 16 S13,5 10 12 13 16 S14,3 5 6 9 12 15 16 23 S15,1 6 11 14 15 17 18 S16,5 6 14 16 17 19 S17,1 4 6 15 16 17 18 19 S18,1 6 11 15 18 20 S19,4 6 17 19 S20,7 8 9 11 15 20 23 S21,2 8 21 S22,3 10 22 S23,1 4 6 10 12 14 15 20 23 If you want to hand back the chosen packages in a neat way, just use this little JSON layout so it's easy for everyone (and whatever script is checking things) to read: { ""solution"": [""package_id"", ...] } Think of ""solution"" as a simple list of the package IDs you pick — one string per package, just the exact labels from the package list. This block is just a sketch of the shape I need, not your final answer: replace ""package_id"" and the ... with the real IDs you select. Please make sure to use the identifiers exactly as they appear in the instance input — don’t rename them or invent new labels. - for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 23, 'num_sets': 23, 'density': 0.2551984877126654, 'sets': [{'id': 1, 'elements': [2, 4, 7, 11, 15, 18, 20, 23]}, {'id': 2, 'elements': [1, 2, 8, 21]}, {'id': 3, 'elements': [5, 10, 13, 14, 22]}, {'id': 4, 'elements': [1, 4, 6, 9, 12, 13, 15, 16, 17]}, {'id': 5, 'elements': [3, 14, 16]}, {'id': 6, 'elements': [4, 5, 6, 15, 16, 17, 18, 19, 23]}, {'id': 7, 'elements': [1, 7, 8, 21, 23]}, {'id': 8, 'elements': [7, 8, 20]}, {'id': 9, 'elements': [10, 12, 14]}, {'id': 10, 'elements': [3, 9, 10, 12, 22, 23]}, {'id': 11, 'elements': [1, 2, 7, 11, 15, 20]}, {'id': 12, 'elements': [3, 4, 9, 10, 12, 13, 14, 16]}, {'id': 13, 'elements': [5, 10, 12, 13, 16]}, {'id': 14, 'elements': [3, 5, 6, 9, 12, 15, 16, 23]}, {'id': 15, 'elements': [1, 6, 11, 14, 15, 17, 18]}, {'id': 16, 'elements': [5, 6, 14, 16, 17, 19]}, {'id': 17, 'elements': [1, 4, 6, 15, 16, 17, 18, 19]}, {'id': 18, 'elements': [1, 6, 11, 15, 18, 20]}, {'id': 19, 'elements': [4, 6, 17, 19]}, {'id': 20, 'elements': [7, 8, 9, 11, 15, 20, 23]}, {'id': 21, 'elements': [2, 8, 21]}, {'id': 22, 'elements': [3, 10, 22]}, {'id': 23, 'elements': [1, 4, 6, 10, 12, 14, 15, 20, 23]}], 'graph': {'num_nodes': 23, 'edges': [{'u': 2, 'v': 7}, {'u': 2, 'v': 11}, {'u': 3, 'v': 10}, {'u': 3, 'v': 12}, {'u': 3, 'v': 13}, {'u': 19, 'v': 6}, {'u': 5, 'v': 13}, {'u': 5, 'v': 16}, {'u': 6, 'v': 4}, {'u': 6, 'v': 16}, {'u': 6, 'v': 17}, {'u': 7, 'v': 8}, {'u': 7, 'v': 20}, {'u': 7, 'v': 21}, {'u': 22, 'v': 10}, {'u': 23, 'v': 4}, {'u': 23, 'v': 9}, {'u': 23, 'v': 20}, {'u': 9, 'v': 10}, {'u': 9, 'v': 12}, {'u': 13, 'v': 14}, {'u': 14, 'v': 4}, {'u': 14, 'v': 12}, {'u': 14, 'v': 16}, {'u': 15, 'v': 1}, {'u': 15, 'v': 4}, {'u': 15, 'v': 17}, {'u': 11, 'v': 1}, {'u': 17, 'v': 18}, {'u': 18, 'v': 1}, {'u': 20, 'v': 1}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0020.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0020.png'}","[1, 2, 3, 10, 16]",5.0,"{'num_elements': 23, 'num_sets': 23, 'sets': [{'id': 'S1', 'elements': [2, 4, 7, 11, 15, 18, 20, 23]}, {'id': 'S2', 'elements': [1, 2, 8, 21]}, {'id': 'S3', 'elements': [5, 10, 13, 14, 22]}, {'id': 'S4', 'elements': [1, 4, 6, 9, 12, 13, 15, 16, 17]}, {'id': 'S5', 'elements': [3, 14, 16]}, {'id': 'S6', 'elements': [4, 5, 6, 15, 16, 17, 18, 19, 23]}, {'id': 'S7', 'elements': [1, 7, 8, 21, 23]}, {'id': 'S8', 'elements': [7, 8, 20]}, {'id': 'S9', 'elements': [10, 12, 14]}, {'id': 'S10', 'elements': [3, 9, 10, 12, 22, 23]}, {'id': 'S11', 'elements': [1, 2, 7, 11, 15, 20]}, {'id': 'S12', 'elements': [3, 4, 9, 10, 12, 13, 14, 16]}, {'id': 'S13', 'elements': [5, 10, 12, 13, 16]}, {'id': 'S14', 'elements': [3, 5, 6, 9, 12, 15, 16, 23]}, {'id': 'S15', 'elements': [1, 6, 11, 14, 15, 17, 18]}, {'id': 'S16', 'elements': [5, 6, 14, 16, 17, 19]}, {'id': 'S17', 'elements': [1, 4, 6, 15, 16, 17, 18, 19]}, {'id': 'S18', 'elements': [1, 6, 11, 15, 18, 20]}, {'id': 'S19', 'elements': [4, 6, 17, 19]}, {'id': 'S20', 'elements': [7, 8, 9, 11, 15, 20, 23]}, {'id': 'S21', 'elements': [2, 8, 21]}, {'id': 'S22', 'elements': [3, 10, 22]}, {'id': 'S23', 'elements': [1, 4, 6, 10, 12, 14, 15, 20, 23]}]}","['S1', 'S2', 'S3', 'S10', 'S16']",21,csv,1 SCP,SCP,"Many people would just grab every toolkit and hope for the best, but here the plan is smarter: pick the least number of kits such that for each repair there’s at least one selected kit with the necessary tools. That means making sure no chore is overlooked and avoiding redundant kit choices, and you judge options by counting the kits — the lower the count that still covers all chores, the better. The exact jobs and what’s in each kit are shown below. # total_repair_tasks=19 # total_available_toolkits=17 toolkit_id,handled_tasks S1,0 9 11 S2,1 3 15 18 S3,4 7 14 S4,1 2 11 S5,2 4 18 S6,5 9 11 S7,7 8 10 16 17 S8,2 3 6 7 10 11 16 18 S9,6 10 13 17 S10,0 5 11 18 S11,6 7 8 10 12 13 16 18 S12,0 2 3 5 9 11 18 S13,12 16 S14,8 13 17 S15,7 10 S16,13 16 17 S17,0 1 3 7 9 10 11 Also, if you want the answer in a tidy, machine-friendly shape, just hand it back like this: { ""solution"": [""kit_id"", ...] } This just means: ""solution"" is the list of chosen kits, and each item in the array is a placeholder for a kit identifier from the instance (replace the placeholder with the actual IDs when you reply). The JSON above is only a sketch of the expected shape — not the final selection. Please use the exact identifiers from the instance input — do not rename them or introduce new labels. - for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 19, 'num_sets': 17, 'density': 0.22291021671826625, 'sets': [{'id': 1, 'elements': [1, 10, 12]}, {'id': 2, 'elements': [2, 4, 16, 19]}, {'id': 3, 'elements': [5, 8, 15]}, {'id': 4, 'elements': [2, 3, 12]}, {'id': 5, 'elements': [3, 5, 19]}, {'id': 6, 'elements': [6, 10, 12]}, {'id': 7, 'elements': [8, 9, 11, 17, 18]}, {'id': 8, 'elements': [3, 4, 7, 8, 11, 12, 17, 19]}, {'id': 9, 'elements': [7, 11, 14, 18]}, {'id': 10, 'elements': [1, 6, 12, 19]}, {'id': 11, 'elements': [7, 8, 9, 11, 13, 14, 17, 19]}, {'id': 12, 'elements': [1, 3, 4, 6, 10, 12, 19]}, {'id': 13, 'elements': [13, 17]}, {'id': 14, 'elements': [9, 14, 18]}, {'id': 15, 'elements': [8, 11]}, {'id': 16, 'elements': [14, 17, 18]}, {'id': 17, 'elements': [1, 2, 4, 8, 10, 11, 12]}], 'graph': {'num_nodes': 19, 'edges': [{'u': 2, 'v': 4}, {'u': 2, 'v': 16}, {'u': 10, 'v': 6}, {'u': 10, 'v': 12}, {'u': 13, 'v': 17}, {'u': 14, 'v': 17}, {'u': 14, 'v': 18}, {'u': 17, 'v': 11}, {'u': 18, 'v': 9}, {'u': 19, 'v': 3}, {'u': 19, 'v': 4}, {'u': 19, 'v': 8}, {'u': 19, 'v': 12}, {'u': 5, 'v': 3}, {'u': 5, 'v': 15}, {'u': 9, 'v': 7}, {'u': 11, 'v': 7}, {'u': 11, 'v': 8}, {'u': 12, 'v': 1}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0021.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0021.png'}","[2, 3, 11, 12, 16]",5.0,"{'num_elements': 19, 'num_sets': 17, 'sets': [{'id': 'S1', 'elements': [0, 9, 11]}, {'id': 'S2', 'elements': [1, 3, 15, 18]}, {'id': 'S3', 'elements': [4, 7, 14]}, {'id': 'S4', 'elements': [1, 2, 11]}, {'id': 'S5', 'elements': [2, 4, 18]}, {'id': 'S6', 'elements': [5, 9, 11]}, {'id': 'S7', 'elements': [7, 8, 10, 16, 17]}, {'id': 'S8', 'elements': [2, 3, 6, 7, 10, 11, 16, 18]}, {'id': 'S9', 'elements': [6, 10, 13, 17]}, {'id': 'S10', 'elements': [0, 5, 11, 18]}, {'id': 'S11', 'elements': [6, 7, 8, 10, 12, 13, 16, 18]}, {'id': 'S12', 'elements': [0, 2, 3, 5, 9, 11, 18]}, {'id': 'S13', 'elements': [12, 16]}, {'id': 'S14', 'elements': [8, 13, 17]}, {'id': 'S15', 'elements': [7, 10]}, {'id': 'S16', 'elements': [13, 16, 17]}, {'id': 'S17', 'elements': [0, 1, 3, 7, 9, 10, 11]}]}","['S2', 'S3', 'S11', 'S12', 'S16']",22,csv,0 SCP,SCP,"Many people imagine ordering ingredients one-by-one, but here the chef has to work with pre-packed bundles and decide which ones to use so every menu item’s ingredients are available. Better choices cover all required ingredients while using the least number of bundles possible. To compare choices, just count the number of bundles included in each plan — fewer is better. Every ingredient must appear in at least one selected bundle, and selecting the same bundle twice is redundant. The concrete bundle details follow below. There are 20 distinct ingredients to cover and 17 available bundles: Bundle S1 supplies the ingredients: F H L. Bundle S2 supplies the ingredients: B D J O. Bundle S3 supplies the ingredients: C H Q. Bundle S4 supplies the ingredients: G H I K O Q R. Bundle S5 supplies the ingredients: E G K L P R S. Bundle S6 supplies the ingredients: A C E H L Q. Bundle S7 supplies the ingredients: D I N. Bundle S8 supplies the ingredients: E J O. Bundle S9 supplies the ingredients: G J. Bundle S10 supplies the ingredients: A E F Q R. Bundle S11 supplies the ingredients: B D I M N. Bundle S12 supplies the ingredients: E I M N O R. Bundle S13 supplies the ingredients: E O Q R S T. Bundle S14 supplies the ingredients: G P R S. Bundle S15 supplies the ingredients: A F H L O Q. Bundle S16 supplies the ingredients: A E F G L P Q R S. Bundle S17 supplies the ingredients: K O P R S. Pick bundles so all 20 ingredients are covered while using as few of the 17 bundles as possible. Oh, and when you send your pick, please follow this little JSON shape so it's easy to check: { ""solution"": [""set_id"", ...] } ""solution"" should be a list of the bundle IDs you want to use — one ID per chosen bundle. Think of it like filling in a short form: put each bundle identifier from the instance inside that array. This block is just a sketch of the expected shape, not the actual answer. Please use the identifiers exactly as they appear in the instance input — no renaming and no new labels. Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 20, 'num_sets': 17, 'density': 0.24705882352941178, 'sets': [{'id': 1, 'elements': [6, 8, 12]}, {'id': 2, 'elements': [2, 4, 10, 15]}, {'id': 3, 'elements': [3, 8, 17]}, {'id': 4, 'elements': [7, 8, 9, 11, 15, 17, 18]}, {'id': 5, 'elements': [5, 7, 11, 12, 16, 18, 19]}, {'id': 6, 'elements': [1, 3, 5, 8, 12, 17]}, {'id': 7, 'elements': [4, 9, 14]}, {'id': 8, 'elements': [5, 10, 15]}, {'id': 9, 'elements': [7, 10]}, {'id': 10, 'elements': [1, 5, 6, 17, 18]}, {'id': 11, 'elements': [2, 4, 9, 13, 14]}, {'id': 12, 'elements': [5, 9, 13, 14, 15, 18]}, {'id': 13, 'elements': [5, 15, 17, 18, 19, 20]}, {'id': 14, 'elements': [7, 16, 18, 19]}, {'id': 15, 'elements': [1, 6, 8, 12, 15, 17]}, {'id': 16, 'elements': [1, 5, 6, 7, 12, 16, 17, 18, 19]}, {'id': 17, 'elements': [11, 15, 16, 18, 19]}], 'graph': {'num_nodes': 20, 'edges': [{'u': 16, 'v': 7}, {'u': 10, 'v': 2}, {'u': 10, 'v': 15}, {'u': 11, 'v': 15}, {'u': 11, 'v': 19}, {'u': 11, 'v': 20}, {'u': 14, 'v': 5}, {'u': 14, 'v': 9}, {'u': 5, 'v': 15}, {'u': 5, 'v': 17}, {'u': 5, 'v': 18}, {'u': 2, 'v': 4}, {'u': 1, 'v': 8}, {'u': 1, 'v': 12}, {'u': 7, 'v': 18}, {'u': 7, 'v': 19}, {'u': 6, 'v': 12}, {'u': 3, 'v': 8}, {'u': 12, 'v': 17}, {'u': 12, 'v': 18}, {'u': 8, 'v': 17}, {'u': 13, 'v': 4}, {'u': 13, 'v': 9}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0022.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0022.png'}","[5, 6, 9, 11, 13, 16]",6.0,"{'num_elements': 20, 'num_sets': 17, 'sets': [{'id': 'S1', 'elements': ['F', 'H', 'L']}, {'id': 'S2', 'elements': ['B', 'D', 'J', 'O']}, {'id': 'S3', 'elements': ['C', 'H', 'Q']}, {'id': 'S4', 'elements': ['G', 'H', 'I', 'K', 'O', 'Q', 'R']}, {'id': 'S5', 'elements': ['E', 'G', 'K', 'L', 'P', 'R', 'S']}, {'id': 'S6', 'elements': ['A', 'C', 'E', 'H', 'L', 'Q']}, {'id': 'S7', 'elements': ['D', 'I', 'N']}, {'id': 'S8', 'elements': ['E', 'J', 'O']}, {'id': 'S9', 'elements': ['G', 'J']}, {'id': 'S10', 'elements': ['A', 'E', 'F', 'Q', 'R']}, {'id': 'S11', 'elements': ['B', 'D', 'I', 'M', 'N']}, {'id': 'S12', 'elements': ['E', 'I', 'M', 'N', 'O', 'R']}, {'id': 'S13', 'elements': ['E', 'O', 'Q', 'R', 'S', 'T']}, {'id': 'S14', 'elements': ['G', 'P', 'R', 'S']}, {'id': 'S15', 'elements': ['A', 'F', 'H', 'L', 'O', 'Q']}, {'id': 'S16', 'elements': ['A', 'E', 'F', 'G', 'L', 'P', 'Q', 'R', 'S']}, {'id': 'S17', 'elements': ['K', 'O', 'P', 'R', 'S']}]}","['S5', 'S6', 'S9', 'S11', 'S13', 'S16']",23,nl,names SCP,SCP,"At the library, the plan is to assemble a few themed boxes to represent all the subjects in the reading program, and the aim is to do that with as few boxes as possible. The question is which boxes to choose; evaluate each option by how many boxes are selected — the ideal choice uses the smallest number while still including every subject at least once. Nothing can be left unrepresented, and unnecessary duplicate coverage is to be avoided. The specific box contents appear below. - **total_subjects**: 24 - **total_boxes_available**: 22 | box_id | subjects_covered | |---|---| | S1 | 3 6 7 9 11 19 22 | | S2 | 1 3 4 13 | | S3 | 2 4 8 13 17 21 | | S4 | 0 3 4 8 9 11 13 17 22 | | S5 | 1 3 11 13 17 | | S6 | 10 15 18 21 23 | | S7 | 0 6 7 9 11 | | S8 | 0 6 7 9 11 14 | | S9 | 2 3 8 12 13 21 22 | | S10 | 0 3 6 7 9 11 14 22 | | S11 | 10 23 | | S12 | 0 3 4 6 7 9 11 17 18 19 22 | | S13 | 1 2 4 8 13 | | S14 | 7 14 20 | | S15 | 5 12 21 | | S16 | 0 16 19 | | S17 | 2 3 4 11 18 21 22 | | S18 | 17 22 23 | | S19 | 9 11 | | S20 | 7 9 | | S21 | 2 5 8 15 17 21 | | S22 | 0 3 8 9 11 17 18 22 | Oh, and when you reply with your pick of boxes, toss it into a little JSON snippet like this so it's tidy and easy to check: { ""solution"": [""box_id"", ...] } This just means ""solution"" should be a list of the themed box identifiers you choose. The ""box_id"" bit is just a placeholder showing the format — replace each placeholder with the actual box identifier from the instance. Think of it like filling out a short form: the key ""solution"" holds the chosen box labels. This JSON is only a sketch of the expected shape, not the actual answer — you'll fill in the real identifiers from the instance. Make sure all identifiers are used exactly as they appear in the instance input — no renaming and no new labels. Valid identifiers look like: - plain numbers such as “1” or “23” - single capital letters like “A” or “B” - a capital letter followed by digits like “A1” or “X7”","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 24, 'num_sets': 22, 'density': 0.2215909090909091, 'sets': [{'id': 1, 'elements': [4, 7, 8, 10, 12, 20, 23]}, {'id': 2, 'elements': [2, 4, 5, 14]}, {'id': 3, 'elements': [3, 5, 9, 14, 18, 22]}, {'id': 4, 'elements': [1, 4, 5, 9, 10, 12, 14, 18, 23]}, {'id': 5, 'elements': [2, 4, 12, 14, 18]}, {'id': 6, 'elements': [11, 16, 19, 22, 24]}, {'id': 7, 'elements': [1, 7, 8, 10, 12]}, {'id': 8, 'elements': [1, 7, 8, 10, 12, 15]}, {'id': 9, 'elements': [3, 4, 9, 13, 14, 22, 23]}, {'id': 10, 'elements': [1, 4, 7, 8, 10, 12, 15, 23]}, {'id': 11, 'elements': [11, 24]}, {'id': 12, 'elements': [1, 4, 5, 7, 8, 10, 12, 18, 19, 20, 23]}, {'id': 13, 'elements': [2, 3, 5, 9, 14]}, {'id': 14, 'elements': [8, 15, 21]}, {'id': 15, 'elements': [6, 13, 22]}, {'id': 16, 'elements': [1, 17, 20]}, {'id': 17, 'elements': [3, 4, 5, 12, 19, 22, 23]}, {'id': 18, 'elements': [18, 23, 24]}, {'id': 19, 'elements': [10, 12]}, {'id': 20, 'elements': [8, 10]}, {'id': 21, 'elements': [3, 6, 9, 16, 18, 22]}, {'id': 22, 'elements': [1, 4, 9, 10, 12, 18, 19, 23]}], 'graph': {'num_nodes': 24, 'edges': [{'u': 17, 'v': 20}, {'u': 21, 'v': 8}, {'u': 13, 'v': 22}, {'u': 14, 'v': 3}, {'u': 14, 'v': 5}, {'u': 24, 'v': 6}, {'u': 24, 'v': 19}, {'u': 16, 'v': 6}, {'u': 16, 'v': 22}, {'u': 10, 'v': 1}, {'u': 10, 'v': 7}, {'u': 10, 'v': 8}, {'u': 10, 'v': 12}, {'u': 11, 'v': 6}, {'u': 3, 'v': 9}, {'u': 23, 'v': 12}, {'u': 23, 'v': 18}, {'u': 23, 'v': 19}, {'u': 15, 'v': 8}, {'u': 1, 'v': 12}, {'u': 1, 'v': 20}, {'u': 4, 'v': 5}, {'u': 4, 'v': 12}, {'u': 4, 'v': 18}, {'u': 5, 'v': 2}, {'u': 18, 'v': 9}, {'u': 9, 'v': 22}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0023.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0023.png'}","[6, 12, 13, 14, 15, 16]",6.0,"{'num_elements': 24, 'num_sets': 22, 'sets': [{'id': 'S1', 'elements': [3, 6, 7, 9, 11, 19, 22]}, {'id': 'S2', 'elements': [1, 3, 4, 13]}, {'id': 'S3', 'elements': [2, 4, 8, 13, 17, 21]}, {'id': 'S4', 'elements': [0, 3, 4, 8, 9, 11, 13, 17, 22]}, {'id': 'S5', 'elements': [1, 3, 11, 13, 17]}, {'id': 'S6', 'elements': [10, 15, 18, 21, 23]}, {'id': 'S7', 'elements': [0, 6, 7, 9, 11]}, {'id': 'S8', 'elements': [0, 6, 7, 9, 11, 14]}, {'id': 'S9', 'elements': [2, 3, 8, 12, 13, 21, 22]}, {'id': 'S10', 'elements': [0, 3, 6, 7, 9, 11, 14, 22]}, {'id': 'S11', 'elements': [10, 23]}, {'id': 'S12', 'elements': [0, 3, 4, 6, 7, 9, 11, 17, 18, 19, 22]}, {'id': 'S13', 'elements': [1, 2, 4, 8, 13]}, {'id': 'S14', 'elements': [7, 14, 20]}, {'id': 'S15', 'elements': [5, 12, 21]}, {'id': 'S16', 'elements': [0, 16, 19]}, {'id': 'S17', 'elements': [2, 3, 4, 11, 18, 21, 22]}, {'id': 'S18', 'elements': [17, 22, 23]}, {'id': 'S19', 'elements': [9, 11]}, {'id': 'S20', 'elements': [7, 9]}, {'id': 'S21', 'elements': [2, 5, 8, 15, 17, 21]}, {'id': 'S22', 'elements': [0, 3, 8, 9, 11, 17, 18, 22]}]}","['S6', 'S12', 'S13', 'S14', 'S15', 'S16']",24,markdown_table,0 SCP,SCP,"There’s a backlog of features and a stack of candidate libraries on the table; the role here is to assemble a compact toolkit. The rule is simple: make sure each required feature is handled by at least one library, and try to keep the toolkit minimal — the way to check this is to count the libraries you included (lower counts are better). Nothing from the must-have list can be skipped, and picking libraries that duplicate the same features doesn’t give any extra credit. Concrete details follow below. { ""num_required_features"": 24, ""num_candidate_libraries"": 22, ""sets"": [ { ""library_id"": ""S1"", ""features_provided"": [ 1, 19 ] }, { ""library_id"": ""S2"", ""features_provided"": [ 2, 3 ] }, { ""library_id"": ""S3"", ""features_provided"": [ 2, 3, 4, 6 ] }, { ""library_id"": ""S4"", ""features_provided"": [ 2, 3, 6, 17, 20 ] }, { ""library_id"": ""S5"", ""features_provided"": [ 3, 4, 5, 20 ] }, { ""library_id"": ""S6"", ""features_provided"": [ 3, 4, 5, 6, 15, 17 ] }, { ""library_id"": ""S7"", ""features_provided"": [ 7, 14, 15, 17, 21, 22 ] }, { ""library_id"": ""S8"", ""features_provided"": [ 8, 16, 23 ] }, { ""library_id"": ""S9"", ""features_provided"": [ 11, 16, 21, 23 ] }, { ""library_id"": ""S10"", ""features_provided"": [ 10, 11, 12, 16, 23, 24 ] }, { ""library_id"": ""S11"", ""features_provided"": [ 11, 12, 16, 24 ] }, { ""library_id"": ""S12"", ""features_provided"": [ 1, 6, 13, 15, 18, 19 ] }, { ""library_id"": ""S13"", ""features_provided"": [ 7, 17, 19 ] }, { ""library_id"": ""S14"", ""features_provided"": [ 6, 7, 13, 14, 15, 22 ] }, { ""library_id"": ""S15"", ""features_provided"": [ 8, 9, 11, 12, 16, 23, 24 ] }, { ""library_id"": ""S16"", ""features_provided"": [ 4, 14, 15, 19 ] }, { ""library_id"": ""S17"", ""features_provided"": [ 1, 13, 18, 19 ] }, { ""library_id"": ""S18"", ""features_provided"": [ 1, 14, 17 ] }, { ""library_id"": ""S19"", ""features_provided"": [ 4, 5, 20 ] }, { ""library_id"": ""S20"", ""features_provided"": [ 7, 9, 21, 22 ] }, { ""library_id"": ""S21"", ""features_provided"": [ 7, 10, 15, 21, 22 ] }, { ""library_id"": ""S22"", ""features_provided"": [ 8, 10, 16, 23 ] } ] } Oh, and one more practical thing — when you reply, please follow a tiny output shape so I can parse it easily. Something like this will do: { ""solution"": [""lib_id"", ...] } This is just a sketch of the shape I expect: ""solution"" holds the list of libraries you picked (each entry should be the exact identifier from the instance). Think of it like a simple form: put the chosen library IDs in that array, and you’re done — don’t worry about extra fields or explainers in the JSON itself. Quick reminder: use the identifiers exactly as they appear in the instance input — no renaming and no inventing new labels. - for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 24, 'num_sets': 22, 'density': 0.17992424242424243, 'sets': [{'id': 1, 'elements': [1, 19]}, {'id': 2, 'elements': [2, 3]}, {'id': 3, 'elements': [2, 3, 4, 6]}, {'id': 4, 'elements': [2, 3, 6, 17, 20]}, {'id': 5, 'elements': [3, 4, 5, 20]}, {'id': 6, 'elements': [3, 4, 5, 6, 15, 17]}, {'id': 7, 'elements': [7, 14, 15, 17, 21, 22]}, {'id': 8, 'elements': [8, 16, 23]}, {'id': 9, 'elements': [11, 16, 21, 23]}, {'id': 10, 'elements': [10, 11, 12, 16, 23, 24]}, {'id': 11, 'elements': [11, 12, 16, 24]}, {'id': 12, 'elements': [1, 6, 13, 15, 18, 19]}, {'id': 13, 'elements': [7, 17, 19]}, {'id': 14, 'elements': [6, 7, 13, 14, 15, 22]}, {'id': 15, 'elements': [8, 9, 11, 12, 16, 23, 24]}, {'id': 16, 'elements': [4, 14, 15, 19]}, {'id': 17, 'elements': [1, 13, 18, 19]}, {'id': 18, 'elements': [1, 14, 17]}, {'id': 19, 'elements': [4, 5, 20]}, {'id': 20, 'elements': [7, 9, 21, 22]}, {'id': 21, 'elements': [7, 10, 15, 21, 22]}, {'id': 22, 'elements': [8, 10, 16, 23]}], 'graph': {'num_nodes': 24, 'edges': [{'u': 17, 'v': 6}, {'u': 17, 'v': 13}, {'u': 17, 'v': 15}, {'u': 18, 'v': 19}, {'u': 19, 'v': 1}, {'u': 19, 'v': 13}, {'u': 8, 'v': 23}, {'u': 13, 'v': 14}, {'u': 14, 'v': 15}, {'u': 15, 'v': 7}, {'u': 16, 'v': 10}, {'u': 16, 'v': 11}, {'u': 16, 'v': 23}, {'u': 20, 'v': 5}, {'u': 10, 'v': 9}, {'u': 10, 'v': 21}, {'u': 11, 'v': 12}, {'u': 11, 'v': 24}, {'u': 2, 'v': 3}, {'u': 3, 'v': 4}, {'u': 5, 'v': 4}, {'u': 4, 'v': 6}, {'u': 21, 'v': 22}, {'u': 22, 'v': 7}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0024.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0024.png'}","[4, 6, 7, 10, 12, 15]",6.0,"{'num_elements': 24, 'num_sets': 22, 'sets': [{'id': 'S1', 'elements': [1, 19]}, {'id': 'S2', 'elements': [2, 3]}, {'id': 'S3', 'elements': [2, 3, 4, 6]}, {'id': 'S4', 'elements': [2, 3, 6, 17, 20]}, {'id': 'S5', 'elements': [3, 4, 5, 20]}, {'id': 'S6', 'elements': [3, 4, 5, 6, 15, 17]}, {'id': 'S7', 'elements': [7, 14, 15, 17, 21, 22]}, {'id': 'S8', 'elements': [8, 16, 23]}, {'id': 'S9', 'elements': [11, 16, 21, 23]}, {'id': 'S10', 'elements': [10, 11, 12, 16, 23, 24]}, {'id': 'S11', 'elements': [11, 12, 16, 24]}, {'id': 'S12', 'elements': [1, 6, 13, 15, 18, 19]}, {'id': 'S13', 'elements': [7, 17, 19]}, {'id': 'S14', 'elements': [6, 7, 13, 14, 15, 22]}, {'id': 'S15', 'elements': [8, 9, 11, 12, 16, 23, 24]}, {'id': 'S16', 'elements': [4, 14, 15, 19]}, {'id': 'S17', 'elements': [1, 13, 18, 19]}, {'id': 'S18', 'elements': [1, 14, 17]}, {'id': 'S19', 'elements': [4, 5, 20]}, {'id': 'S20', 'elements': [7, 9, 21, 22]}, {'id': 'S21', 'elements': [7, 10, 15, 21, 22]}, {'id': 'S22', 'elements': [8, 10, 16, 23]}]}","['S4', 'S6', 'S7', 'S10', 'S12', 'S15']",25,json,1 SCP,SCP,"Many people on the team want a tight, focused exhibit, so the task became: choose a small number of display modules so that every required historical theme is represented at least once. Here’s the setup: there’s a catalog of modules, each touching several themes, and the choice is which modules to pick so the entire theme list is covered. A cleaner solution uses fewer modules — just tally the chosen modules to see how compact the plan is. It’s essential that no theme is left out; duplicate coverage is allowed but makes the plan less compact. The specific modules and themes are listed below. { ""num_themes"": 24, ""num_modules"": 23, ""sets"": [ { ""module_id"": ""S1"", ""themes"": [ ""A"", ""B"", ""E"", ""X"" ] }, { ""module_id"": ""S2"", ""themes"": [ ""B"", ""C"", ""D"", ""E"", ""N"", ""X"" ] }, { ""module_id"": ""S3"", ""themes"": [ ""A"", ""B"", ""C"", ""N"", ""O"", ""Q"" ] }, { ""module_id"": ""S4"", ""themes"": [ ""B"", ""D"", ""L"", ""M"", ""W"", ""X"" ] }, { ""module_id"": ""S5"", ""themes"": [ ""B"", ""C"", ""D"", ""W"" ] }, { ""module_id"": ""S6"", ""themes"": [ ""F"", ""I"", ""J"", ""K"", ""T"", ""V"" ] }, { ""module_id"": ""S7"", ""themes"": [ ""F"", ""G"", ""V"" ] }, { ""module_id"": ""S8"", ""themes"": [ ""F"", ""P"", ""S"" ] }, { ""module_id"": ""S9"", ""themes"": [ ""G"", ""I"", ""J"", ""O"", ""S"", ""V"" ] }, { ""module_id"": ""S10"", ""themes"": [ ""F"", ""I"", ""N"", ""O"" ] }, { ""module_id"": ""S11"", ""themes"": [ ""H"", ""K"", ""S"" ] }, { ""module_id"": ""S12"", ""themes"": [ ""D"", ""L"", ""M"" ] }, { ""module_id"": ""S13"", ""themes"": [ ""D"", ""E"", ""L"", ""X"" ] }, { ""module_id"": ""S14"", ""themes"": [ ""B"", ""J"", ""N"", ""O"", ""Q"", ""R"" ] }, { ""module_id"": ""S15"", ""themes"": [ ""I"", ""J"", ""O"" ] }, { ""module_id"": ""S16"", ""themes"": [ ""H"", ""P"" ] }, { ""module_id"": ""S17"", ""themes"": [ ""N"", ""Q"", ""R"" ] }, { ""module_id"": ""S18"", ""themes"": [ ""G"", ""H"", ""I"", ""K"", ""P"", ""V"" ] }, { ""module_id"": ""S19"", ""themes"": [ ""F"", ""U"", ""V"" ] }, { ""module_id"": ""S20"", ""themes"": [ ""F"", ""U"" ] }, { ""module_id"": ""S21"", ""themes"": [ ""F"", ""I"", ""S"", ""U"", ""V"" ] }, { ""module_id"": ""S22"", ""themes"": [ ""B"", ""W"", ""X"" ] }, { ""module_id"": ""S23"", ""themes"": [ ""B"", ""D"", ""E"", ""M"", ""X"" ] } ] } Also, when you send the actual selection back, tuck it into this simple JSON shape so it's easy to read and parse: { ""solution"": [""module_id"", ...] } Think of it like a little form: ""solution"" is the list of chosen display modules, and each ""module_id"" is a placeholder for one module from the catalog (one entry per chosen module). This block is just a sketch of the shape I expect, not the final answer itself. Please make sure to use the identifiers exactly as they appear in the instance input — no renaming and no new labels. - for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”."" Thanks — drop the list in that format when you're ready and I'll check the coverage.","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 24, 'num_sets': 23, 'density': 0.17391304347826086, 'sets': [{'id': 1, 'elements': [1, 2, 5, 24]}, {'id': 2, 'elements': [2, 3, 4, 5, 14, 24]}, {'id': 3, 'elements': [1, 2, 3, 14, 15, 17]}, {'id': 4, 'elements': [2, 4, 12, 13, 23, 24]}, {'id': 5, 'elements': [2, 3, 4, 23]}, {'id': 6, 'elements': [6, 9, 10, 11, 20, 22]}, {'id': 7, 'elements': [6, 7, 22]}, {'id': 8, 'elements': [6, 16, 19]}, {'id': 9, 'elements': [7, 9, 10, 15, 19, 22]}, {'id': 10, 'elements': [6, 9, 14, 15]}, {'id': 11, 'elements': [8, 11, 19]}, {'id': 12, 'elements': [4, 12, 13]}, {'id': 13, 'elements': [4, 5, 12, 24]}, {'id': 14, 'elements': [2, 10, 14, 15, 17, 18]}, {'id': 15, 'elements': [9, 10, 15]}, {'id': 16, 'elements': [8, 16]}, {'id': 17, 'elements': [14, 17, 18]}, {'id': 18, 'elements': [7, 8, 9, 11, 16, 22]}, {'id': 19, 'elements': [6, 21, 22]}, {'id': 20, 'elements': [6, 21]}, {'id': 21, 'elements': [6, 9, 19, 21, 22]}, {'id': 22, 'elements': [2, 23, 24]}, {'id': 23, 'elements': [2, 4, 5, 13, 24]}], 'graph': {'num_nodes': 24, 'edges': [{'u': 11, 'v': 19}, {'u': 14, 'v': 3}, {'u': 14, 'v': 15}, {'u': 14, 'v': 17}, {'u': 15, 'v': 10}, {'u': 6, 'v': 7}, {'u': 6, 'v': 9}, {'u': 6, 'v': 19}, {'u': 6, 'v': 22}, {'u': 17, 'v': 18}, {'u': 16, 'v': 8}, {'u': 9, 'v': 10}, {'u': 19, 'v': 8}, {'u': 22, 'v': 20}, {'u': 22, 'v': 21}, {'u': 12, 'v': 13}, {'u': 13, 'v': 4}, {'u': 2, 'v': 1}, {'u': 2, 'v': 3}, {'u': 2, 'v': 5}, {'u': 4, 'v': 5}, {'u': 4, 'v': 24}, {'u': 5, 'v': 24}, {'u': 23, 'v': 1}, {'u': 23, 'v': 24}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0025.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0025.png'}","[1, 2, 4, 6, 14, 18, 21]",7.0,"{'num_elements': 24, 'num_sets': 23, 'sets': [{'id': 'S1', 'elements': ['A', 'B', 'E', 'X']}, {'id': 'S2', 'elements': ['B', 'C', 'D', 'E', 'N', 'X']}, {'id': 'S3', 'elements': ['A', 'B', 'C', 'N', 'O', 'Q']}, {'id': 'S4', 'elements': ['B', 'D', 'L', 'M', 'W', 'X']}, {'id': 'S5', 'elements': ['B', 'C', 'D', 'W']}, {'id': 'S6', 'elements': ['F', 'I', 'J', 'K', 'T', 'V']}, {'id': 'S7', 'elements': ['F', 'G', 'V']}, {'id': 'S8', 'elements': ['F', 'P', 'S']}, {'id': 'S9', 'elements': ['G', 'I', 'J', 'O', 'S', 'V']}, {'id': 'S10', 'elements': ['F', 'I', 'N', 'O']}, {'id': 'S11', 'elements': ['H', 'K', 'S']}, {'id': 'S12', 'elements': ['D', 'L', 'M']}, {'id': 'S13', 'elements': ['D', 'E', 'L', 'X']}, {'id': 'S14', 'elements': ['B', 'J', 'N', 'O', 'Q', 'R']}, {'id': 'S15', 'elements': ['I', 'J', 'O']}, {'id': 'S16', 'elements': ['H', 'P']}, {'id': 'S17', 'elements': ['N', 'Q', 'R']}, {'id': 'S18', 'elements': ['G', 'H', 'I', 'K', 'P', 'V']}, {'id': 'S19', 'elements': ['F', 'U', 'V']}, {'id': 'S20', 'elements': ['F', 'U']}, {'id': 'S21', 'elements': ['F', 'I', 'S', 'U', 'V']}, {'id': 'S22', 'elements': ['B', 'W', 'X']}, {'id': 'S23', 'elements': ['B', 'D', 'E', 'M', 'X']}]}","['S1', 'S2', 'S4', 'S6', 'S14', 'S18', 'S21']",26,json,names SCP,SCP,"There’s a storm aftermath with limited transport, and each crate on the truck contains different combinations of emergency supplies. The task is to pick the minimum number of crates that together include every essential thing the people need; choices that cover everything while using fewer crates are preferable. The score for any selection is simply how many crates were taken, and nothing essential can be left out (having the same item in multiple crates is allowed but wastes capacity). The concrete crate contents and the list of needs follow below. There are 23 distinct essential needs to cover and 23 crates available on the truck. Crate S1 contains 0 7 9 20. Crate S2 contains 0 1 7 9 12 20. Crate S3 contains 2 4 6 8 14 18. Crate S4 contains 3 10 19. Crate S5 contains 2 3 4 10 14 18 19. Crate S6 contains 5 8 11 21 22. Crate S7 contains 2 6 18. Crate S8 contains 0 1 11. Crate S9 contains 5 7 11 15 16 22. Crate S10 contains 1 9. Crate S11 contains 3 4 10. Crate S12 contains 1 7 8 12 16. Crate S13 contains 7 11 12. Crate S14 contains 5 13 21. Crate S15 contains 2 4 18. Crate S16 contains 2 8 22. Crate S17 contains 16 22. Crate S18 contains 1 17. Crate S19 contains 2 4 18 19 22. Crate S20 contains 3 4 18 19. Crate S21 contains 0 1 7 20. Crate S22 contains 5 8 21. Crate S23 contains 2 11 15 16 18 22. The aim is to select the minimum number of crates that together cover all 23 needs; fewer crates are preferable. Oh, and when you send your pick, please use this simple JSON layout so it's easy to read: { ""solution"": [""crate_id"", ...] } This just means ""solution"" holds a list of crate identifiers — one string per crate you choose. Think of it like filling out a short form: put each crate's label in the array. The snippet above is just a sketch of the shape I need, not your final answer. All identifiers must be used exactly as they appear in the instance input — no renaming and no new labels. For example: Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 23, 'num_sets': 23, 'density': 0.1720226843100189, 'sets': [{'id': 1, 'elements': [1, 8, 10, 21]}, {'id': 2, 'elements': [1, 2, 8, 10, 13, 21]}, {'id': 3, 'elements': [3, 5, 7, 9, 15, 19]}, {'id': 4, 'elements': [4, 11, 20]}, {'id': 5, 'elements': [3, 4, 5, 11, 15, 19, 20]}, {'id': 6, 'elements': [6, 9, 12, 22, 23]}, {'id': 7, 'elements': [3, 7, 19]}, {'id': 8, 'elements': [1, 2, 12]}, {'id': 9, 'elements': [6, 8, 12, 16, 17, 23]}, {'id': 10, 'elements': [2, 10]}, {'id': 11, 'elements': [4, 5, 11]}, {'id': 12, 'elements': [2, 8, 9, 13, 17]}, {'id': 13, 'elements': [8, 12, 13]}, {'id': 14, 'elements': [6, 14, 22]}, {'id': 15, 'elements': [3, 5, 19]}, {'id': 16, 'elements': [3, 9, 23]}, {'id': 17, 'elements': [17, 23]}, {'id': 18, 'elements': [2, 18]}, {'id': 19, 'elements': [3, 5, 19, 20, 23]}, {'id': 20, 'elements': [4, 5, 19, 20]}, {'id': 21, 'elements': [1, 2, 8, 21]}, {'id': 22, 'elements': [6, 9, 22]}, {'id': 23, 'elements': [3, 12, 16, 17, 19, 23]}], 'graph': {'num_nodes': 23, 'edges': [{'u': 18, 'v': 1}, {'u': 11, 'v': 4}, {'u': 11, 'v': 20}, {'u': 4, 'v': 5}, {'u': 3, 'v': 7}, {'u': 3, 'v': 19}, {'u': 3, 'v': 23}, {'u': 19, 'v': 5}, {'u': 19, 'v': 15}, {'u': 9, 'v': 6}, {'u': 9, 'v': 12}, {'u': 9, 'v': 17}, {'u': 9, 'v': 23}, {'u': 12, 'v': 8}, {'u': 1, 'v': 2}, {'u': 1, 'v': 10}, {'u': 16, 'v': 23}, {'u': 13, 'v': 8}, {'u': 6, 'v': 14}, {'u': 6, 'v': 22}, {'u': 5, 'v': 20}, {'u': 8, 'v': 2}, {'u': 2, 'v': 21}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0026.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0026.png'}","[2, 3, 5, 14, 18, 23]",6.0,"{'num_elements': 23, 'num_sets': 23, 'sets': [{'id': 'S1', 'elements': [0, 7, 9, 20]}, {'id': 'S2', 'elements': [0, 1, 7, 9, 12, 20]}, {'id': 'S3', 'elements': [2, 4, 6, 8, 14, 18]}, {'id': 'S4', 'elements': [3, 10, 19]}, {'id': 'S5', 'elements': [2, 3, 4, 10, 14, 18, 19]}, {'id': 'S6', 'elements': [5, 8, 11, 21, 22]}, {'id': 'S7', 'elements': [2, 6, 18]}, {'id': 'S8', 'elements': [0, 1, 11]}, {'id': 'S9', 'elements': [5, 7, 11, 15, 16, 22]}, {'id': 'S10', 'elements': [1, 9]}, {'id': 'S11', 'elements': [3, 4, 10]}, {'id': 'S12', 'elements': [1, 7, 8, 12, 16]}, {'id': 'S13', 'elements': [7, 11, 12]}, {'id': 'S14', 'elements': [5, 13, 21]}, {'id': 'S15', 'elements': [2, 4, 18]}, {'id': 'S16', 'elements': [2, 8, 22]}, {'id': 'S17', 'elements': [16, 22]}, {'id': 'S18', 'elements': [1, 17]}, {'id': 'S19', 'elements': [2, 4, 18, 19, 22]}, {'id': 'S20', 'elements': [3, 4, 18, 19]}, {'id': 'S21', 'elements': [0, 1, 7, 20]}, {'id': 'S22', 'elements': [5, 8, 21]}, {'id': 'S23', 'elements': [2, 11, 15, 16, 18, 22]}]}","['S2', 'S3', 'S5', 'S14', 'S18', 'S23']",27,nl,0 SCP,SCP,"We’ve got a skills checklist and a catalog of training classes, and the HR job is to combine classes so every skill is addressed. The idea is to use as few different courses as will still touch every competency — measure that by tallying how many courses were picked, with a smaller tally being preferable. Every competency must appear in at least one chosen course, and choosing duplicates or extra classes that don’t add new coverage isn’t useful. The concrete course and competency lists are listed below. We have 22 competencies to cover and 21 courses available. Course S1 covers competencies 0 1. Course S2 covers competencies 0 1 16. Course S3 covers competencies 2 3 9 13. Course S4 covers competencies 3 8 14 17. Course S5 covers competencies 4 11 18 20. Course S6 covers competencies 3 5 10 12 19. Course S7 covers competencies 6 7 9 13 16 21. Course S8 covers competencies 6 7 13 21. Course S9 covers competencies 3 8 12 14. Course S10 covers competencies 2 9 13 14 16. Course S11 covers competencies 10 19. Course S12 covers competencies 4 17 18 20. Course S13 covers competencies 5 8 10 12 19. Course S14 covers competencies 0 2 6 7 13. Course S15 covers competencies 2 3 8 9 14 17. Course S16 covers competencies 11 15 20. Course S17 covers competencies 0 1 9 13 16. Course S18 covers competencies 3 8 11 14 15. Course S19 covers competencies 4 11 15 20. Course S20 covers competencies 3 15 17 18 20. Course S21 covers competencies 6 7 21. We should pick as few courses as will cover all 22 competencies. When you send back the final pick, it helps if you use a tiny JSON snippet like this so it's easy to read and plug into the next step. { ""solution"": [""course_id"", ...] } This just means ""solution"" is a list (an array) of the course identifiers you picked — one string per chosen course. ""course_id"" in the example is a placeholder; replace each placeholder with the actual labels from the instance. The JSON above is just the expected shape, not the actual answer. Important: use the exact course identifiers from the instance input — no renaming, and don’t invent new labels. Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 22, 'num_sets': 21, 'density': 0.19047619047619047, 'sets': [{'id': 1, 'elements': [1, 2]}, {'id': 2, 'elements': [1, 2, 17]}, {'id': 3, 'elements': [3, 4, 10, 14]}, {'id': 4, 'elements': [4, 9, 15, 18]}, {'id': 5, 'elements': [5, 12, 19, 21]}, {'id': 6, 'elements': [4, 6, 11, 13, 20]}, {'id': 7, 'elements': [7, 8, 10, 14, 17, 22]}, {'id': 8, 'elements': [7, 8, 14, 22]}, {'id': 9, 'elements': [4, 9, 13, 15]}, {'id': 10, 'elements': [3, 10, 14, 15, 17]}, {'id': 11, 'elements': [11, 20]}, {'id': 12, 'elements': [5, 18, 19, 21]}, {'id': 13, 'elements': [6, 9, 11, 13, 20]}, {'id': 14, 'elements': [1, 3, 7, 8, 14]}, {'id': 15, 'elements': [3, 4, 9, 10, 15, 18]}, {'id': 16, 'elements': [12, 16, 21]}, {'id': 17, 'elements': [1, 2, 10, 14, 17]}, {'id': 18, 'elements': [4, 9, 12, 15, 16]}, {'id': 19, 'elements': [5, 12, 16, 21]}, {'id': 20, 'elements': [4, 16, 18, 19, 21]}, {'id': 21, 'elements': [7, 8, 22]}], 'graph': {'num_nodes': 22, 'edges': [{'u': 6, 'v': 9}, {'u': 6, 'v': 13}, {'u': 7, 'v': 8}, {'u': 7, 'v': 14}, {'u': 8, 'v': 22}, {'u': 19, 'v': 5}, {'u': 19, 'v': 16}, {'u': 4, 'v': 9}, {'u': 4, 'v': 15}, {'u': 4, 'v': 18}, {'u': 14, 'v': 10}, {'u': 14, 'v': 17}, {'u': 1, 'v': 2}, {'u': 1, 'v': 17}, {'u': 15, 'v': 3}, {'u': 18, 'v': 21}, {'u': 3, 'v': 10}, {'u': 11, 'v': 13}, {'u': 12, 'v': 5}, {'u': 12, 'v': 21}, {'u': 13, 'v': 20}, {'u': 21, 'v': 16}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0027.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0027.png'}","[5, 6, 7, 15, 17, 19]",6.0,"{'num_elements': 22, 'num_sets': 21, 'sets': [{'id': 'S1', 'elements': [0, 1]}, {'id': 'S2', 'elements': [0, 1, 16]}, {'id': 'S3', 'elements': [2, 3, 9, 13]}, {'id': 'S4', 'elements': [3, 8, 14, 17]}, {'id': 'S5', 'elements': [4, 11, 18, 20]}, {'id': 'S6', 'elements': [3, 5, 10, 12, 19]}, {'id': 'S7', 'elements': [6, 7, 9, 13, 16, 21]}, {'id': 'S8', 'elements': [6, 7, 13, 21]}, {'id': 'S9', 'elements': [3, 8, 12, 14]}, {'id': 'S10', 'elements': [2, 9, 13, 14, 16]}, {'id': 'S11', 'elements': [10, 19]}, {'id': 'S12', 'elements': [4, 17, 18, 20]}, {'id': 'S13', 'elements': [5, 8, 10, 12, 19]}, {'id': 'S14', 'elements': [0, 2, 6, 7, 13]}, {'id': 'S15', 'elements': [2, 3, 8, 9, 14, 17]}, {'id': 'S16', 'elements': [11, 15, 20]}, {'id': 'S17', 'elements': [0, 1, 9, 13, 16]}, {'id': 'S18', 'elements': [3, 8, 11, 14, 15]}, {'id': 'S19', 'elements': [4, 11, 15, 20]}, {'id': 'S20', 'elements': [3, 15, 17, 18, 20]}, {'id': 'S21', 'elements': [6, 7, 21]}]}","['S5', 'S6', 'S7', 'S15', 'S17', 'S19']",28,nl,0 SCP,SCP,"We’re working on thinning down the city’s bus schedule: choose a small set of routes that still make sure every neighborhood sees a bus. The point is to decide which routes to keep; a plan is judged by how many routes it keeps, so tally the chosen lines and aim for the lowest total. It’s important that every neighborhood is covered by at least one of the chosen routes and that each chosen route is only counted once, so no area gets skipped and repeats don’t improve the plan. The exact map and list of routes are shown below. # num_neighborhoods=20 # num_routes_available=20 route_id,neighborhoods_served S1,0 1 2 5 15 S2,0 1 2 15 16 S3,2 13 14 15 S4,0 3 4 5 8 S5,4 5 8 9 16 S6,0 1 3 4 5 14 15 16 S7,6 7 8 9 10 19 S8,4 7 9 S9,4 6 8 9 10 S10,4 6 7 12 19 S11,3 6 8 9 10 11 12 17 18 19 S12,10 11 16 19 S13,9 10 16 19 S14,2 13 15 S15,2 5 13 14 16 S16,1 2 3 5 10 14 15 16 17 S17,1 4 5 9 10 12 14 15 17 19 S18,3 10 16 S19,10 12 18 19 S20,6 9 10 12 16 18 19 Also, when you send your proposed trimming plan back, please stick to this little JSON layout so it's easy to read and check: { ""solution"": [""route_id"", ...] } This just means ""solution"" should be a list of route identifiers you want to keep — one entry per chosen route. Think of it like filling out a short form: put each route's exact ID in the list (and don't repeat the same route twice). The block above is just the expected shape of the reply, not the actual answer — it's a sketch to follow. Please use the route IDs exactly as they appear in the instance input — don't rename them or invent new ones. - for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 20, 'num_sets': 20, 'density': 0.275, 'sets': [{'id': 1, 'elements': [1, 2, 3, 6, 16]}, {'id': 2, 'elements': [1, 2, 3, 16, 17]}, {'id': 3, 'elements': [3, 14, 15, 16]}, {'id': 4, 'elements': [1, 4, 5, 6, 9]}, {'id': 5, 'elements': [5, 6, 9, 10, 17]}, {'id': 6, 'elements': [1, 2, 4, 5, 6, 15, 16, 17]}, {'id': 7, 'elements': [7, 8, 9, 10, 11, 20]}, {'id': 8, 'elements': [5, 8, 10]}, {'id': 9, 'elements': [5, 7, 9, 10, 11]}, {'id': 10, 'elements': [5, 7, 8, 13, 20]}, {'id': 11, 'elements': [4, 7, 9, 10, 11, 12, 13, 18, 19, 20]}, {'id': 12, 'elements': [11, 12, 17, 20]}, {'id': 13, 'elements': [10, 11, 17, 20]}, {'id': 14, 'elements': [3, 14, 16]}, {'id': 15, 'elements': [3, 6, 14, 15, 17]}, {'id': 16, 'elements': [2, 3, 4, 6, 11, 15, 16, 17, 18]}, {'id': 17, 'elements': [2, 5, 6, 10, 11, 13, 15, 16, 18, 20]}, {'id': 18, 'elements': [4, 11, 17]}, {'id': 19, 'elements': [11, 13, 19, 20]}, {'id': 20, 'elements': [7, 10, 11, 13, 17, 19, 20]}], 'graph': {'num_nodes': 20, 'edges': [{'u': 1, 'v': 2}, {'u': 1, 'v': 6}, {'u': 2, 'v': 3}, {'u': 2, 'v': 16}, {'u': 3, 'v': 15}, {'u': 20, 'v': 7}, {'u': 20, 'v': 11}, {'u': 20, 'v': 19}, {'u': 7, 'v': 8}, {'u': 7, 'v': 10}, {'u': 8, 'v': 9}, {'u': 9, 'v': 5}, {'u': 9, 'v': 10}, {'u': 10, 'v': 11}, {'u': 19, 'v': 13}, {'u': 11, 'v': 12}, {'u': 11, 'v': 13}, {'u': 11, 'v': 17}, {'u': 14, 'v': 15}, {'u': 4, 'v': 5}, {'u': 4, 'v': 6}, {'u': 4, 'v': 17}, {'u': 16, 'v': 6}, {'u': 16, 'v': 15}, {'u': 16, 'v': 17}, {'u': 17, 'v': 18}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0028.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0028.png'}","[6, 7, 11, 15]",4.0,"{'num_elements': 20, 'num_sets': 20, 'sets': [{'id': 'S1', 'elements': [0, 1, 2, 5, 15]}, {'id': 'S2', 'elements': [0, 1, 2, 15, 16]}, {'id': 'S3', 'elements': [2, 13, 14, 15]}, {'id': 'S4', 'elements': [0, 3, 4, 5, 8]}, {'id': 'S5', 'elements': [4, 5, 8, 9, 16]}, {'id': 'S6', 'elements': [0, 1, 3, 4, 5, 14, 15, 16]}, {'id': 'S7', 'elements': [6, 7, 8, 9, 10, 19]}, {'id': 'S8', 'elements': [4, 7, 9]}, {'id': 'S9', 'elements': [4, 6, 8, 9, 10]}, {'id': 'S10', 'elements': [4, 6, 7, 12, 19]}, {'id': 'S11', 'elements': [3, 6, 8, 9, 10, 11, 12, 17, 18, 19]}, {'id': 'S12', 'elements': [10, 11, 16, 19]}, {'id': 'S13', 'elements': [9, 10, 16, 19]}, {'id': 'S14', 'elements': [2, 13, 15]}, {'id': 'S15', 'elements': [2, 5, 13, 14, 16]}, {'id': 'S16', 'elements': [1, 2, 3, 5, 10, 14, 15, 16, 17]}, {'id': 'S17', 'elements': [1, 4, 5, 9, 10, 12, 14, 15, 17, 19]}, {'id': 'S18', 'elements': [3, 10, 16]}, {'id': 'S19', 'elements': [10, 12, 18, 19]}, {'id': 'S20', 'elements': [6, 9, 10, 12, 16, 18, 19]}]}","['S6', 'S7', 'S11', 'S15']",29,csv,0 SCP,SCP,"Many people who run small online shops face the same question: which product bundles should be featured so every customer preference category is met? The decision is picking which bundles to show, and the nicer outcome is the one that meets all the preference categories while using the least number of bundles. Practically, that’s checked by counting chosen bundles — the lower the count, the better — and ensuring every preference category is represented at least once; repeating identical bundles doesn’t help. The detailed bundle and preference information is provided below. { ""total_preferences"": 23, ""available_bundles_count"": 22, ""sets"": [ { ""bundle_id"": ""S1"", ""covered_preferences"": [ 1, 12, 16 ] }, { ""bundle_id"": ""S2"", ""covered_preferences"": [ 2, 3, 6, 14, 15, 18, 19 ] }, { ""bundle_id"": ""S3"", ""covered_preferences"": [ 14, 15, 18 ] }, { ""bundle_id"": ""S4"", ""covered_preferences"": [ 4, 5, 21 ] }, { ""bundle_id"": ""S5"", ""covered_preferences"": [ 4, 5, 8, 9, 10, 15, 17, 21, 22, 23 ] }, { ""bundle_id"": ""S6"", ""covered_preferences"": [ 2, 5, 6, 8, 21 ] }, { ""bundle_id"": ""S7"", ""covered_preferences"": [ 7, 13, 17 ] }, { ""bundle_id"": ""S8"", ""covered_preferences"": [ 5, 8, 10, 11, 21, 22 ] }, { ""bundle_id"": ""S9"", ""covered_preferences"": [ 5, 9, 22, 23 ] }, { ""bundle_id"": ""S10"", ""covered_preferences"": [ 5, 8, 11 ] }, { ""bundle_id"": ""S11"", ""covered_preferences"": [ 1, 3, 12, 16 ] }, { ""bundle_id"": ""S12"", ""covered_preferences"": [ 13, 20 ] }, { ""bundle_id"": ""S13"", ""covered_preferences"": [ 2, 3, 14, 15, 18 ] }, { ""bundle_id"": ""S14"", ""covered_preferences"": [ 2, 3, 4, 17, 18 ] }, { ""bundle_id"": ""S15"", ""covered_preferences"": [ 1, 3, 12, 16, 18 ] }, { ""bundle_id"": ""S16"", ""covered_preferences"": [ 1, 4, 5, 17, 20, 21 ] }, { ""bundle_id"": ""S17"", ""covered_preferences"": [ 2, 14, 16, 19, 21 ] }, { ""bundle_id"": ""S18"", ""covered_preferences"": [ 2, 6, 18 ] }, { ""bundle_id"": ""S19"", ""covered_preferences"": [ 1, 12, 13, 17, 20, 21 ] }, { ""bundle_id"": ""S20"", ""covered_preferences"": [ 4, 6, 8, 15, 17, 18, 21 ] }, { ""bundle_id"": ""S21"", ""covered_preferences"": [ 5, 6, 8, 9, 21, 22, 23 ] }, { ""bundle_id"": ""S22"", ""covered_preferences"": [ 5, 9, 23 ] } ] } Oh, and when you’re ready to send back which bundles to feature, just use this simple JSON shape so I can read it easily: { ""solution"": [""set_id"", ...] } Pretty straightforward: ""solution"" is an array where you list the chosen bundle ids (one id per bundle). Think of it like filling in a short form — replace ""set_id"" with the actual ids from the input, keep each id as-is, and don’t repeat the same id twice. This JSON is just a sketch of the shape I expect, not the final answer itself. Please make sure all identifiers are used exactly as they appear in the instance input — no renaming and no new labels. - for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 23, 'num_sets': 22, 'density': 0.2075098814229249, 'sets': [{'id': 1, 'elements': [1, 12, 16]}, {'id': 2, 'elements': [2, 3, 6, 14, 15, 18, 19]}, {'id': 3, 'elements': [14, 15, 18]}, {'id': 4, 'elements': [4, 5, 21]}, {'id': 5, 'elements': [4, 5, 8, 9, 10, 15, 17, 21, 22, 23]}, {'id': 6, 'elements': [2, 5, 6, 8, 21]}, {'id': 7, 'elements': [7, 13, 17]}, {'id': 8, 'elements': [5, 8, 10, 11, 21, 22]}, {'id': 9, 'elements': [5, 9, 22, 23]}, {'id': 10, 'elements': [5, 8, 11]}, {'id': 11, 'elements': [1, 3, 12, 16]}, {'id': 12, 'elements': [13, 20]}, {'id': 13, 'elements': [2, 3, 14, 15, 18]}, {'id': 14, 'elements': [2, 3, 4, 17, 18]}, {'id': 15, 'elements': [1, 3, 12, 16, 18]}, {'id': 16, 'elements': [1, 4, 5, 17, 20, 21]}, {'id': 17, 'elements': [2, 14, 16, 19, 21]}, {'id': 18, 'elements': [2, 6, 18]}, {'id': 19, 'elements': [1, 12, 13, 17, 20, 21]}, {'id': 20, 'elements': [4, 6, 8, 15, 17, 18, 21]}, {'id': 21, 'elements': [5, 6, 8, 9, 21, 22, 23]}, {'id': 22, 'elements': [5, 9, 23]}], 'graph': {'num_nodes': 23, 'edges': [{'u': 12, 'v': 1}, {'u': 12, 'v': 16}, {'u': 13, 'v': 7}, {'u': 23, 'v': 22}, {'u': 4, 'v': 21}, {'u': 5, 'v': 6}, {'u': 5, 'v': 8}, {'u': 5, 'v': 21}, {'u': 5, 'v': 22}, {'u': 6, 'v': 19}, {'u': 2, 'v': 18}, {'u': 2, 'v': 19}, {'u': 3, 'v': 16}, {'u': 3, 'v': 18}, {'u': 7, 'v': 20}, {'u': 14, 'v': 18}, {'u': 17, 'v': 20}, {'u': 17, 'v': 21}, {'u': 18, 'v': 15}, {'u': 8, 'v': 10}, {'u': 9, 'v': 22}, {'u': 20, 'v': 1}, {'u': 21, 'v': 15}, {'u': 10, 'v': 11}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0029.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0029.png'}","[2, 5, 7, 8, 15, 16]",6.0,"{'num_elements': 23, 'num_sets': 22, 'sets': [{'id': 'S1', 'elements': [1, 12, 16]}, {'id': 'S2', 'elements': [2, 3, 6, 14, 15, 18, 19]}, {'id': 'S3', 'elements': [14, 15, 18]}, {'id': 'S4', 'elements': [4, 5, 21]}, {'id': 'S5', 'elements': [4, 5, 8, 9, 10, 15, 17, 21, 22, 23]}, {'id': 'S6', 'elements': [2, 5, 6, 8, 21]}, {'id': 'S7', 'elements': [7, 13, 17]}, {'id': 'S8', 'elements': [5, 8, 10, 11, 21, 22]}, {'id': 'S9', 'elements': [5, 9, 22, 23]}, {'id': 'S10', 'elements': [5, 8, 11]}, {'id': 'S11', 'elements': [1, 3, 12, 16]}, {'id': 'S12', 'elements': [13, 20]}, {'id': 'S13', 'elements': [2, 3, 14, 15, 18]}, {'id': 'S14', 'elements': [2, 3, 4, 17, 18]}, {'id': 'S15', 'elements': [1, 3, 12, 16, 18]}, {'id': 'S16', 'elements': [1, 4, 5, 17, 20, 21]}, {'id': 'S17', 'elements': [2, 14, 16, 19, 21]}, {'id': 'S18', 'elements': [2, 6, 18]}, {'id': 'S19', 'elements': [1, 12, 13, 17, 20, 21]}, {'id': 'S20', 'elements': [4, 6, 8, 15, 17, 18, 21]}, {'id': 'S21', 'elements': [5, 6, 8, 9, 21, 22, 23]}, {'id': 'S22', 'elements': [5, 9, 23]}]}","['S2', 'S5', 'S7', 'S8', 'S15', 'S16']",30,json,1 SCP,SCP,"Someone on the production crew has to build the cast list so that each character can be portrayed by someone on staff, but with as few hires as possible. The decision is which actors to pick; a superior decision is the one that achieves full coverage of the script with the smallest number of people. Measure how good a choice is by adding up the number of actors hired — lower is preferred — while ensuring every role has at least one capable actor and avoiding needless extras. The detailed role-and-actor options are shown below. - **num_roles**: 21 - **num_actor_candidates**: 20 | actor_id | roles_actor_can_play | |---|---| | S1 | 1 10 11 12 | | S2 | 13 21 | | S3 | 6 9 19 | | S4 | 1 10 | | S5 | 1 5 12 | | S6 | 14 17 | | S7 | 8 18 | | S8 | 8 15 16 | | S9 | 15 20 | | S10 | 1 4 5 10 19 21 | | S11 | 1 2 11 12 | | S12 | 5 10 11 20 21 | | S13 | 1 11 13 | | S14 | 3 6 14 19 | | S15 | 8 9 15 16 18 19 | | S16 | 8 15 18 | | S17 | 7 8 16 | | S18 | 9 14 15 20 | | S19 | 3 9 12 19 | | S20 | 2 10 12 13 20 21 | If you want to hand me the final cast choice, you can just drop it in as a tiny JSON object like this: { ""solution"": [""actor_id"", ...] } Here ""solution"" is the list of actor identifiers you're hiring — think of each entry as the exact name/ID from the cast options. This is just a template showing the shape I expect, not the actual cast list; replace the placeholder entries with the real IDs from the instance input. All identifiers must be used exactly as they appear in the instance input — no renaming and no new labels. Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 21, 'num_sets': 20, 'density': 0.16904761904761906, 'sets': [{'id': 1, 'elements': [1, 10, 11, 12]}, {'id': 2, 'elements': [13, 21]}, {'id': 3, 'elements': [6, 9, 19]}, {'id': 4, 'elements': [1, 10]}, {'id': 5, 'elements': [1, 5, 12]}, {'id': 6, 'elements': [14, 17]}, {'id': 7, 'elements': [8, 18]}, {'id': 8, 'elements': [8, 15, 16]}, {'id': 9, 'elements': [15, 20]}, {'id': 10, 'elements': [1, 4, 5, 10, 19, 21]}, {'id': 11, 'elements': [1, 2, 11, 12]}, {'id': 12, 'elements': [5, 10, 11, 20, 21]}, {'id': 13, 'elements': [1, 11, 13]}, {'id': 14, 'elements': [3, 6, 14, 19]}, {'id': 15, 'elements': [8, 9, 15, 16, 18, 19]}, {'id': 16, 'elements': [8, 15, 18]}, {'id': 17, 'elements': [7, 8, 16]}, {'id': 18, 'elements': [9, 14, 15, 20]}, {'id': 19, 'elements': [3, 9, 12, 19]}, {'id': 20, 'elements': [2, 10, 12, 13, 20, 21]}], 'graph': {'num_nodes': 21, 'edges': [{'u': 15, 'v': 9}, {'u': 15, 'v': 18}, {'u': 16, 'v': 18}, {'u': 17, 'v': 6}, {'u': 13, 'v': 2}, {'u': 13, 'v': 11}, {'u': 7, 'v': 8}, {'u': 8, 'v': 18}, {'u': 9, 'v': 19}, {'u': 21, 'v': 2}, {'u': 21, 'v': 10}, {'u': 19, 'v': 3}, {'u': 19, 'v': 20}, {'u': 20, 'v': 10}, {'u': 11, 'v': 1}, {'u': 12, 'v': 1}, {'u': 12, 'v': 4}, {'u': 12, 'v': 5}, {'u': 12, 'v': 10}, {'u': 14, 'v': 3}, {'u': 14, 'v': 6}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0030.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0030.png'}","[6, 10, 13, 14, 15, 17, 20]",7.0,"{'num_elements': 21, 'num_sets': 20, 'sets': [{'id': 'S1', 'elements': [1, 10, 11, 12]}, {'id': 'S2', 'elements': [13, 21]}, {'id': 'S3', 'elements': [6, 9, 19]}, {'id': 'S4', 'elements': [1, 10]}, {'id': 'S5', 'elements': [1, 5, 12]}, {'id': 'S6', 'elements': [14, 17]}, {'id': 'S7', 'elements': [8, 18]}, {'id': 'S8', 'elements': [8, 15, 16]}, {'id': 'S9', 'elements': [15, 20]}, {'id': 'S10', 'elements': [1, 4, 5, 10, 19, 21]}, {'id': 'S11', 'elements': [1, 2, 11, 12]}, {'id': 'S12', 'elements': [5, 10, 11, 20, 21]}, {'id': 'S13', 'elements': [1, 11, 13]}, {'id': 'S14', 'elements': [3, 6, 14, 19]}, {'id': 'S15', 'elements': [8, 9, 15, 16, 18, 19]}, {'id': 'S16', 'elements': [8, 15, 18]}, {'id': 'S17', 'elements': [7, 8, 16]}, {'id': 'S18', 'elements': [9, 14, 15, 20]}, {'id': 'S19', 'elements': [3, 9, 12, 19]}, {'id': 'S20', 'elements': [2, 10, 12, 13, 20, 21]}]}","['S6', 'S10', 'S13', 'S14', 'S15', 'S17', 'S20']",31,markdown_table,1 SCP,SCP,"Many people in the lab study different things, so the coordinator needs to subscribe to a compact set of journals that together cover every topic; the better subscription plan is simply the one with the smaller total number of journals (just count them), and every topic must be present in at least one of the chosen journals — redundant overlap won’t reduce that total. The concrete details will be shown below. - **num_research_topics**: 25 - **num_journals_available**: 23 | journal_id | topics_covered | |---|---| | S1 | 0 1 3 4 17 | | S2 | 1 4 5 | | S3 | 2 6 8 18 | | S4 | 0 3 17 19 21 22 24 | | S5 | 0 4 5 8 10 14 | | S6 | 0 5 8 | | S7 | 6 10 | | S8 | 8 11 12 14 16 17 | | S9 | 2 5 7 8 11 14 17 | | S10 | 5 9 14 17 22 24 | | S11 | 2 4 6 10 14 | | S12 | 7 8 11 14 | | S13 | 12 14 16 | | S14 | 4 8 9 10 14 | | S15 | 13 15 20 24 | | S16 | 7 12 16 | | S17 | 0 8 9 14 17 19 21 22 | | S18 | 2 8 10 | | S19 | 3 19 21 | | S20 | 13 23 | | S21 | 3 17 19 21 22 | | S22 | 3 9 17 19 | | S23 | 3 5 9 13 22 24 | Oh, and when you send the picked journals back, just use this simple JSON layout so it's easy to parse: { ""solution"": [""journal_id"", ...] } Here ""solution"" is the list of journals you choose for the subscription plan; each item is a journal identifier (keep it as the exact identifier from the instance). Think of this block like a little form: the array holds the labels of the journals you want. This is only a sketch of the expected shape, not the actual answer — fill it with the real identifiers from the problem. Please make sure to use the identifiers exactly as they appear in the input — no renaming and no new labels. - for example: Valid identifiers look like plain numbers such as ""1"" or ""23"", single capital letters like ""A"" or ""B"", or a capital letter followed by digits like ""A1"" or ""X7"".","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 25, 'num_sets': 23, 'density': 0.1808695652173913, 'sets': [{'id': 1, 'elements': [1, 2, 4, 5, 18]}, {'id': 2, 'elements': [2, 5, 6]}, {'id': 3, 'elements': [3, 7, 9, 19]}, {'id': 4, 'elements': [1, 4, 18, 20, 22, 23, 25]}, {'id': 5, 'elements': [1, 5, 6, 9, 11, 15]}, {'id': 6, 'elements': [1, 6, 9]}, {'id': 7, 'elements': [7, 11]}, {'id': 8, 'elements': [9, 12, 13, 15, 17, 18]}, {'id': 9, 'elements': [3, 6, 8, 9, 12, 15, 18]}, {'id': 10, 'elements': [6, 10, 15, 18, 23, 25]}, {'id': 11, 'elements': [3, 5, 7, 11, 15]}, {'id': 12, 'elements': [8, 9, 12, 15]}, {'id': 13, 'elements': [13, 15, 17]}, {'id': 14, 'elements': [5, 9, 10, 11, 15]}, {'id': 15, 'elements': [14, 16, 21, 25]}, {'id': 16, 'elements': [8, 13, 17]}, {'id': 17, 'elements': [1, 9, 10, 15, 18, 20, 22, 23]}, {'id': 18, 'elements': [3, 9, 11]}, {'id': 19, 'elements': [4, 20, 22]}, {'id': 20, 'elements': [14, 24]}, {'id': 21, 'elements': [4, 18, 20, 22, 23]}, {'id': 22, 'elements': [4, 10, 18, 20]}, {'id': 23, 'elements': [4, 6, 10, 14, 23, 25]}], 'graph': {'num_nodes': 25, 'edges': [{'u': 21, 'v': 14}, {'u': 11, 'v': 3}, {'u': 11, 'v': 9}, {'u': 11, 'v': 19}, {'u': 17, 'v': 13}, {'u': 6, 'v': 1}, {'u': 6, 'v': 2}, {'u': 6, 'v': 5}, {'u': 16, 'v': 14}, {'u': 16, 'v': 25}, {'u': 7, 'v': 3}, {'u': 1, 'v': 10}, {'u': 1, 'v': 25}, {'u': 8, 'v': 13}, {'u': 8, 'v': 15}, {'u': 9, 'v': 5}, {'u': 9, 'v': 15}, {'u': 15, 'v': 12}, {'u': 15, 'v': 18}, {'u': 18, 'v': 10}, {'u': 18, 'v': 23}, {'u': 4, 'v': 23}, {'u': 4, 'v': 25}, {'u': 22, 'v': 23}, {'u': 23, 'v': 20}, {'u': 24, 'v': 14}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0031.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0031.png'}","[1, 3, 8, 9, 14, 15, 17, 20]",8.0,"{'num_elements': 25, 'num_sets': 23, 'sets': [{'id': 'S1', 'elements': [0, 1, 3, 4, 17]}, {'id': 'S2', 'elements': [1, 4, 5]}, {'id': 'S3', 'elements': [2, 6, 8, 18]}, {'id': 'S4', 'elements': [0, 3, 17, 19, 21, 22, 24]}, {'id': 'S5', 'elements': [0, 4, 5, 8, 10, 14]}, {'id': 'S6', 'elements': [0, 5, 8]}, {'id': 'S7', 'elements': [6, 10]}, {'id': 'S8', 'elements': [8, 11, 12, 14, 16, 17]}, {'id': 'S9', 'elements': [2, 5, 7, 8, 11, 14, 17]}, {'id': 'S10', 'elements': [5, 9, 14, 17, 22, 24]}, {'id': 'S11', 'elements': [2, 4, 6, 10, 14]}, {'id': 'S12', 'elements': [7, 8, 11, 14]}, {'id': 'S13', 'elements': [12, 14, 16]}, {'id': 'S14', 'elements': [4, 8, 9, 10, 14]}, {'id': 'S15', 'elements': [13, 15, 20, 24]}, {'id': 'S16', 'elements': [7, 12, 16]}, {'id': 'S17', 'elements': [0, 8, 9, 14, 17, 19, 21, 22]}, {'id': 'S18', 'elements': [2, 8, 10]}, {'id': 'S19', 'elements': [3, 19, 21]}, {'id': 'S20', 'elements': [13, 23]}, {'id': 'S21', 'elements': [3, 17, 19, 21, 22]}, {'id': 'S22', 'elements': [3, 9, 17, 19]}, {'id': 'S23', 'elements': [3, 5, 9, 13, 22, 24]}]}","['S1', 'S3', 'S8', 'S9', 'S14', 'S15', 'S17', 'S20']",32,markdown_table,0 SCP,SCP,"There’s a park with a bunch of zones and a toolbox of sensors that each watch certain areas; the manager’s job is to pick just enough of those sensors so that every single zone gets watched by at least one chosen unit. A plan is better when it uses fewer sensors, confirmed simply by tallying the devices picked. No zone can be left out, and extra overlaps aren’t helpful unless they fill uncovered spots. Concrete details follow below. Concrete details follow below: there are 24 sensors and 25 zones. Sensor S1 watches zones 4 5 12. Sensor S2 watches zones 1 11 18 20 21. Sensor S3 watches zones 3 8 18. Sensor S4 watches zones 0 4. Sensor S5 watches zones 5 13 20. Sensor S6 watches zones 6 16 22. Sensor S7 watches zones 11 17. Sensor S8 watches zones 8 18. Sensor S9 watches zones 10 14 24. Sensor S10 watches zones 9 20 24. Sensor S11 watches zones 1 11 13 17 21. Sensor S12 watches zones 5 12 20. Sensor S13 watches zones 1 11 13 16 20. Sensor S14 watches zones 5 13 14 20. Sensor S15 watches zones 6 16 20 22. Sensor S16 watches zones 5 6 13 14 15 20 23. Sensor S17 watches zones 7 11 17 18 21. Sensor S18 watches zones 1 11 17 18 21. Sensor S19 watches zones 11 19 21. Sensor S20 watches zones 1 5 10 13 14 15 16. Sensor S21 watches zones 17 18 19 21. Sensor S22 watches zones 6 15. Sensor S23 watches zones 6 15 16 22. Sensor S24 watches zones 2 10 24. The manager must cover all 25 zones while minimizing the count of chosen sensors from the 24 available. Also, when you send back the plan, just drop it into a tiny JSON snippet so it's easy to read and parse. Something like this will do: { ""solution"": [""sensor_id"", ...] } Here ""solution"" is the list of chosen sensors (one entry per sensor). Think of it like a little form: put each sensor's exact label in that array and you're done. This is just the expected shape of the reply, not the actual answer — fill it with the real identifiers from the instance when you submit. Please use the identifiers exactly as they appear in the instance input — do not rename them or invent new labels. - for example: ""Valid identifiers look like plain numbers such as ""1"" or ""23"", single capital letters like ""A"" or ""B"", or a capital letter followed by digits like ""A1"" or ""X7"".""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 25, 'num_sets': 24, 'density': 0.15, 'sets': [{'id': 1, 'elements': [5, 6, 13]}, {'id': 2, 'elements': [2, 12, 19, 21, 22]}, {'id': 3, 'elements': [4, 9, 19]}, {'id': 4, 'elements': [1, 5]}, {'id': 5, 'elements': [6, 14, 21]}, {'id': 6, 'elements': [7, 17, 23]}, {'id': 7, 'elements': [12, 18]}, {'id': 8, 'elements': [9, 19]}, {'id': 9, 'elements': [11, 15, 25]}, {'id': 10, 'elements': [10, 21, 25]}, {'id': 11, 'elements': [2, 12, 14, 18, 22]}, {'id': 12, 'elements': [6, 13, 21]}, {'id': 13, 'elements': [2, 12, 14, 17, 21]}, {'id': 14, 'elements': [6, 14, 15, 21]}, {'id': 15, 'elements': [7, 17, 21, 23]}, {'id': 16, 'elements': [6, 7, 14, 15, 16, 21, 24]}, {'id': 17, 'elements': [8, 12, 18, 19, 22]}, {'id': 18, 'elements': [2, 12, 18, 19, 22]}, {'id': 19, 'elements': [12, 20, 22]}, {'id': 20, 'elements': [2, 6, 11, 14, 15, 16, 17]}, {'id': 21, 'elements': [18, 19, 20, 22]}, {'id': 22, 'elements': [7, 16]}, {'id': 23, 'elements': [7, 16, 17, 23]}, {'id': 24, 'elements': [3, 11, 25]}], 'graph': {'num_nodes': 25, 'edges': [{'u': 12, 'v': 2}, {'u': 12, 'v': 18}, {'u': 12, 'v': 19}, {'u': 12, 'v': 22}, {'u': 20, 'v': 22}, {'u': 21, 'v': 6}, {'u': 21, 'v': 14}, {'u': 21, 'v': 15}, {'u': 21, 'v': 17}, {'u': 25, 'v': 3}, {'u': 25, 'v': 11}, {'u': 5, 'v': 13}, {'u': 14, 'v': 2}, {'u': 13, 'v': 1}, {'u': 13, 'v': 6}, {'u': 10, 'v': 11}, {'u': 4, 'v': 9}, {'u': 15, 'v': 11}, {'u': 16, 'v': 7}, {'u': 16, 'v': 17}, {'u': 16, 'v': 23}, {'u': 16, 'v': 24}, {'u': 18, 'v': 8}, {'u': 19, 'v': 9}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0032.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0032.png'}","[2, 3, 4, 6, 10, 12, 16, 17, 21, 24]",10.0,"{'num_elements': 25, 'num_sets': 24, 'sets': [{'id': 'S1', 'elements': [4, 5, 12]}, {'id': 'S2', 'elements': [1, 11, 18, 20, 21]}, {'id': 'S3', 'elements': [3, 8, 18]}, {'id': 'S4', 'elements': [0, 4]}, {'id': 'S5', 'elements': [5, 13, 20]}, {'id': 'S6', 'elements': [6, 16, 22]}, {'id': 'S7', 'elements': [11, 17]}, {'id': 'S8', 'elements': [8, 18]}, {'id': 'S9', 'elements': [10, 14, 24]}, {'id': 'S10', 'elements': [9, 20, 24]}, {'id': 'S11', 'elements': [1, 11, 13, 17, 21]}, {'id': 'S12', 'elements': [5, 12, 20]}, {'id': 'S13', 'elements': [1, 11, 13, 16, 20]}, {'id': 'S14', 'elements': [5, 13, 14, 20]}, {'id': 'S15', 'elements': [6, 16, 20, 22]}, {'id': 'S16', 'elements': [5, 6, 13, 14, 15, 20, 23]}, {'id': 'S17', 'elements': [7, 11, 17, 18, 21]}, {'id': 'S18', 'elements': [1, 11, 17, 18, 21]}, {'id': 'S19', 'elements': [11, 19, 21]}, {'id': 'S20', 'elements': [1, 5, 10, 13, 14, 15, 16]}, {'id': 'S21', 'elements': [17, 18, 19, 21]}, {'id': 'S22', 'elements': [6, 15]}, {'id': 'S23', 'elements': [6, 15, 16, 22]}, {'id': 'S24', 'elements': [2, 10, 24]}]}","['S2', 'S3', 'S4', 'S6', 'S10', 'S12', 'S16', 'S17', 'S21', 'S24']",33,nl,0 SCP,SCP,"Recently the department decided to streamline assessment materials: each question bank covers several learning objectives, and the assignment is to choose the smallest handful of banks that together cover every objective. The decision is which handful to use, and the quality of a choice is judged by how small that handful is — tally the number of banks chosen to compare options. Make sure every objective is covered by at least one chosen bank; overlaps don’t harm coverage but don’t reduce the tally either. The specific instance details are shown below. # total_objectives=19 # total_banks=19 bank_id,objectives_in_bank S1,0 1 3 15 S2,0 1 S3,8 17 18 S4,0 1 3 13 15 S5,4 14 S6,5 7 11 12 17 18 S7,6 11 S8,7 12 17 S9,9 16 18 S10,8 9 16 S11,10 12 S12,5 10 11 S13,10 11 12 S14,4 5 14 17 18 S15,14 15 17 S16,3 13 14 15 17 S17,8 9 16 18 S18,5 7 8 14 15 17 18 S19,2 5 17 18 Also, when you send back which banks you picked, keep it simple and use this little JSON layout — just a casual form so it's easy to parse. { ""solution"": [""bank_id"", ...] } This just means ""solution"" should be an array listing the banks you choose. The placeholder ""bank_id"" stands in for whatever actual bank identifiers appear in the instance; replace those placeholders with the real IDs when you give the answer. Think of this JSON as a sketch of the shape I want, not the final content. Make sure every identifier you use matches the instance input exactly — no renaming and no made-up labels. - for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 19, 'num_sets': 19, 'density': 0.19113573407202217, 'sets': [{'id': 1, 'elements': [1, 2, 4, 16]}, {'id': 2, 'elements': [1, 2]}, {'id': 3, 'elements': [9, 18, 19]}, {'id': 4, 'elements': [1, 2, 4, 14, 16]}, {'id': 5, 'elements': [5, 15]}, {'id': 6, 'elements': [6, 8, 12, 13, 18, 19]}, {'id': 7, 'elements': [7, 12]}, {'id': 8, 'elements': [8, 13, 18]}, {'id': 9, 'elements': [10, 17, 19]}, {'id': 10, 'elements': [9, 10, 17]}, {'id': 11, 'elements': [11, 13]}, {'id': 12, 'elements': [6, 11, 12]}, {'id': 13, 'elements': [11, 12, 13]}, {'id': 14, 'elements': [5, 6, 15, 18, 19]}, {'id': 15, 'elements': [15, 16, 18]}, {'id': 16, 'elements': [4, 14, 15, 16, 18]}, {'id': 17, 'elements': [9, 10, 17, 19]}, {'id': 18, 'elements': [6, 8, 9, 15, 16, 18, 19]}, {'id': 19, 'elements': [3, 6, 18, 19]}], 'graph': {'num_nodes': 19, 'edges': [{'u': 1, 'v': 2}, {'u': 1, 'v': 4}, {'u': 3, 'v': 19}, {'u': 4, 'v': 16}, {'u': 5, 'v': 15}, {'u': 14, 'v': 15}, {'u': 14, 'v': 16}, {'u': 14, 'v': 18}, {'u': 19, 'v': 9}, {'u': 19, 'v': 18}, {'u': 12, 'v': 11}, {'u': 12, 'v': 13}, {'u': 6, 'v': 8}, {'u': 6, 'v': 13}, {'u': 6, 'v': 18}, {'u': 13, 'v': 7}, {'u': 9, 'v': 10}, {'u': 9, 'v': 17}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0033.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0033.png'}","[4, 5, 7, 10, 13, 18, 19]",7.0,"{'num_elements': 19, 'num_sets': 19, 'sets': [{'id': 'S1', 'elements': [0, 1, 3, 15]}, {'id': 'S2', 'elements': [0, 1]}, {'id': 'S3', 'elements': [8, 17, 18]}, {'id': 'S4', 'elements': [0, 1, 3, 13, 15]}, {'id': 'S5', 'elements': [4, 14]}, {'id': 'S6', 'elements': [5, 7, 11, 12, 17, 18]}, {'id': 'S7', 'elements': [6, 11]}, {'id': 'S8', 'elements': [7, 12, 17]}, {'id': 'S9', 'elements': [9, 16, 18]}, {'id': 'S10', 'elements': [8, 9, 16]}, {'id': 'S11', 'elements': [10, 12]}, {'id': 'S12', 'elements': [5, 10, 11]}, {'id': 'S13', 'elements': [10, 11, 12]}, {'id': 'S14', 'elements': [4, 5, 14, 17, 18]}, {'id': 'S15', 'elements': [14, 15, 17]}, {'id': 'S16', 'elements': [3, 13, 14, 15, 17]}, {'id': 'S17', 'elements': [8, 9, 16, 18]}, {'id': 'S18', 'elements': [5, 7, 8, 14, 15, 17, 18]}, {'id': 'S19', 'elements': [2, 5, 17, 18]}]}","['S4', 'S5', 'S7', 'S10', 'S13', 'S18', 'S19']",34,csv,0 SCP,SCP,"Recently the warehouse team had to revamp how containers are used: there are many item categories and a number of container types, and the job was to pick a compact set of containers that will accommodate every category. The choice is judged by how few different container types are chosen — success is a lower tally of distinct types — while guaranteeing every single item category fits into at least one of the chosen containers; nothing can be left out, and counting duplicates doesn’t help. The exact options and categories are listed below. - **num_item_categories**: 25 - **num_container_types**: 24 | container_type_id | covered_item_categories | |---|---| | S1 | 1 9 19 | | S2 | 2 3 4 6 22 24 | | S3 | 2 4 11 22 23 | | S4 | 4 6 18 23 | | S5 | 5 23 | | S6 | 2 4 6 7 13 14 24 | | S7 | 6 7 10 13 14 17 24 25 | | S8 | 8 11 19 21 | | S9 | 1 14 19 20 23 24 | | S10 | 7 10 12 13 17 24 25 | | S11 | 8 14 15 19 21 23 | | S12 | 10 12 | | S13 | 6 10 12 14 16 24 | | S14 | 3 7 9 11 13 14 23 24 | | S15 | 13 16 17 24 | | S16 | 10 12 13 17 24 | | S17 | 2 4 6 | | S18 | 1 8 9 11 14 20 | | S19 | 1 9 19 20 | | S20 | 1 5 8 9 11 20 21 23 | | S21 | 3 22 | | S22 | 3 5 11 15 23 | | S23 | 6 7 9 13 14 25 | | S24 | 7 10 25 | Also, when you send me the final selection, please use this little JSON layout so it’s easy to read and plug into the system: { ""solution"": [""container_id"", ...] } Here ""solution"" is just the list of container types you’re picking — each item in the array should be the exact id of a chosen container type from the instance. Think of it like filling out a short form: drop the container ids into the array. This JSON is only a sketch of the expected shape, not the actual answer. Please make sure to use the identifiers exactly as they appear in the instance input — no renaming and no new labels. - for example: ""Valid identifiers look like plain numbers such as ""1"" or ""23"", single capital letters like ""A"" or ""B"", or a capital letter followed by digits like ""A1"" or ""X7""."" That’s it — just paste the chosen ids into the array and we’ll be good to go.","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 25, 'num_sets': 24, 'density': 0.2, 'sets': [{'id': 1, 'elements': [1, 9, 19]}, {'id': 2, 'elements': [2, 3, 4, 6, 22, 24]}, {'id': 3, 'elements': [2, 4, 11, 22, 23]}, {'id': 4, 'elements': [4, 6, 18, 23]}, {'id': 5, 'elements': [5, 23]}, {'id': 6, 'elements': [2, 4, 6, 7, 13, 14, 24]}, {'id': 7, 'elements': [6, 7, 10, 13, 14, 17, 24, 25]}, {'id': 8, 'elements': [8, 11, 19, 21]}, {'id': 9, 'elements': [1, 14, 19, 20, 23, 24]}, {'id': 10, 'elements': [7, 10, 12, 13, 17, 24, 25]}, {'id': 11, 'elements': [8, 14, 15, 19, 21, 23]}, {'id': 12, 'elements': [10, 12]}, {'id': 13, 'elements': [6, 10, 12, 14, 16, 24]}, {'id': 14, 'elements': [3, 7, 9, 11, 13, 14, 23, 24]}, {'id': 15, 'elements': [13, 16, 17, 24]}, {'id': 16, 'elements': [10, 12, 13, 17, 24]}, {'id': 17, 'elements': [2, 4, 6]}, {'id': 18, 'elements': [1, 8, 9, 11, 14, 20]}, {'id': 19, 'elements': [1, 9, 19, 20]}, {'id': 20, 'elements': [1, 5, 8, 9, 11, 20, 21, 23]}, {'id': 21, 'elements': [3, 22]}, {'id': 22, 'elements': [3, 5, 11, 15, 23]}, {'id': 23, 'elements': [6, 7, 9, 13, 14, 25]}, {'id': 24, 'elements': [7, 10, 25]}], 'graph': {'num_nodes': 25, 'edges': [{'u': 17, 'v': 10}, {'u': 17, 'v': 12}, {'u': 17, 'v': 13}, {'u': 9, 'v': 14}, {'u': 9, 'v': 19}, {'u': 22, 'v': 4}, {'u': 23, 'v': 3}, {'u': 23, 'v': 11}, {'u': 23, 'v': 14}, {'u': 3, 'v': 4}, {'u': 18, 'v': 2}, {'u': 24, 'v': 6}, {'u': 24, 'v': 7}, {'u': 24, 'v': 13}, {'u': 24, 'v': 14}, {'u': 11, 'v': 5}, {'u': 11, 'v': 15}, {'u': 11, 'v': 21}, {'u': 8, 'v': 21}, {'u': 19, 'v': 1}, {'u': 19, 'v': 20}, {'u': 19, 'v': 21}, {'u': 6, 'v': 2}, {'u': 2, 'v': 4}, {'u': 10, 'v': 7}, {'u': 25, 'v': 7}, {'u': 16, 'v': 13}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0034.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0034.png'}","[2, 4, 10, 11, 15, 20]",6.0,"{'num_elements': 25, 'num_sets': 24, 'sets': [{'id': 'S1', 'elements': [1, 9, 19]}, {'id': 'S2', 'elements': [2, 3, 4, 6, 22, 24]}, {'id': 'S3', 'elements': [2, 4, 11, 22, 23]}, {'id': 'S4', 'elements': [4, 6, 18, 23]}, {'id': 'S5', 'elements': [5, 23]}, {'id': 'S6', 'elements': [2, 4, 6, 7, 13, 14, 24]}, {'id': 'S7', 'elements': [6, 7, 10, 13, 14, 17, 24, 25]}, {'id': 'S8', 'elements': [8, 11, 19, 21]}, {'id': 'S9', 'elements': [1, 14, 19, 20, 23, 24]}, {'id': 'S10', 'elements': [7, 10, 12, 13, 17, 24, 25]}, {'id': 'S11', 'elements': [8, 14, 15, 19, 21, 23]}, {'id': 'S12', 'elements': [10, 12]}, {'id': 'S13', 'elements': [6, 10, 12, 14, 16, 24]}, {'id': 'S14', 'elements': [3, 7, 9, 11, 13, 14, 23, 24]}, {'id': 'S15', 'elements': [13, 16, 17, 24]}, {'id': 'S16', 'elements': [10, 12, 13, 17, 24]}, {'id': 'S17', 'elements': [2, 4, 6]}, {'id': 'S18', 'elements': [1, 8, 9, 11, 14, 20]}, {'id': 'S19', 'elements': [1, 9, 19, 20]}, {'id': 'S20', 'elements': [1, 5, 8, 9, 11, 20, 21, 23]}, {'id': 'S21', 'elements': [3, 22]}, {'id': 'S22', 'elements': [3, 5, 11, 15, 23]}, {'id': 'S23', 'elements': [6, 7, 9, 13, 14, 25]}, {'id': 'S24', 'elements': [7, 10, 25]}]}","['S2', 'S4', 'S10', 'S11', 'S15', 'S20']",35,markdown_table,1 SCP,SCP,"Recently the park committee realized they don’t need a huge crew — just a carefully chosen group of volunteers so every task-skill is accounted for. The smartest picks are the fewest volunteers whose combined abilities cover everything on the checklist; you can tell by tallying how many volunteers were selected. Nothing on the skill checklist can be skipped, and though a skill can show up more than once, duplicates don’t reduce the team size. The concrete lineup and skills are shown below. There are 20 distinct task-skills to cover and 19 volunteers available. Volunteer S1 offers skills A B P T. Volunteer S2 offers skills A B F L T. Volunteer S3 offers skills I K Q. Volunteer S4 offers skills D F G I J S. Volunteer S5 offers skills E I M S. Volunteer S6 offers skills D F G H L T. Volunteer S7 offers skills D G J. Volunteer S8 offers skills F K O. Volunteer S9 offers skills D I J M S. Volunteer S10 offers skills F J N T. Volunteer S11 offers skills C D I K Q S. Volunteer S12 offers skills B F R T. Volunteer S13 offers skills E I M. Volunteer S14 offers skills F H N O T. Volunteer S15 offers skills H I K N O. Volunteer S16 offers skills A B T. Volunteer S17 offers skills R T. Volunteer S18 offers skills D E I K M S. Volunteer S19 offers skills A B J L N P R. Tally selected volunteers to confirm the smallest team covers all 20 skills. Oh, and when you send the picked team back, please use this simple JSON shape so it’s easy to read by whatever’s checking it: { ""solution"": [""volunteer_id"", ...] } Here ""solution"" is just the list of volunteer IDs you picked to cover all the tasks — think of it as the names on the sign-up sheet. This is only a sketch of the shape I want, not the actual answer; replace the placeholder(s) with the real IDs from the instance. Please use the identifiers exactly as they appear in the instance input — don’t rename them or invent new labels. - for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 20, 'num_sets': 19, 'density': 0.22105263157894736, 'sets': [{'id': 1, 'elements': [1, 2, 16, 20]}, {'id': 2, 'elements': [1, 2, 6, 12, 20]}, {'id': 3, 'elements': [9, 11, 17]}, {'id': 4, 'elements': [4, 6, 7, 9, 10, 19]}, {'id': 5, 'elements': [5, 9, 13, 19]}, {'id': 6, 'elements': [4, 6, 7, 8, 12, 20]}, {'id': 7, 'elements': [4, 7, 10]}, {'id': 8, 'elements': [6, 11, 15]}, {'id': 9, 'elements': [4, 9, 10, 13, 19]}, {'id': 10, 'elements': [6, 10, 14, 20]}, {'id': 11, 'elements': [3, 4, 9, 11, 17, 19]}, {'id': 12, 'elements': [2, 6, 18, 20]}, {'id': 13, 'elements': [5, 9, 13]}, {'id': 14, 'elements': [6, 8, 14, 15, 20]}, {'id': 15, 'elements': [8, 9, 11, 14, 15]}, {'id': 16, 'elements': [1, 2, 20]}, {'id': 17, 'elements': [18, 20]}, {'id': 18, 'elements': [4, 5, 9, 11, 13, 19]}, {'id': 19, 'elements': [1, 2, 10, 12, 14, 16, 18]}], 'graph': {'num_nodes': 20, 'edges': [{'u': 20, 'v': 2}, {'u': 20, 'v': 6}, {'u': 20, 'v': 12}, {'u': 5, 'v': 13}, {'u': 5, 'v': 19}, {'u': 15, 'v': 8}, {'u': 15, 'v': 11}, {'u': 18, 'v': 12}, {'u': 17, 'v': 3}, {'u': 13, 'v': 19}, {'u': 9, 'v': 4}, {'u': 9, 'v': 11}, {'u': 9, 'v': 19}, {'u': 1, 'v': 2}, {'u': 14, 'v': 6}, {'u': 14, 'v': 8}, {'u': 2, 'v': 16}, {'u': 4, 'v': 10}, {'u': 7, 'v': 10}, {'u': 10, 'v': 6}, {'u': 11, 'v': 3}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0035.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0035.png'}","[6, 11, 13, 14, 19]",5.0,"{'num_elements': 20, 'num_sets': 19, 'sets': [{'id': 'S1', 'elements': ['A', 'B', 'P', 'T']}, {'id': 'S2', 'elements': ['A', 'B', 'F', 'L', 'T']}, {'id': 'S3', 'elements': ['I', 'K', 'Q']}, {'id': 'S4', 'elements': ['D', 'F', 'G', 'I', 'J', 'S']}, {'id': 'S5', 'elements': ['E', 'I', 'M', 'S']}, {'id': 'S6', 'elements': ['D', 'F', 'G', 'H', 'L', 'T']}, {'id': 'S7', 'elements': ['D', 'G', 'J']}, {'id': 'S8', 'elements': ['F', 'K', 'O']}, {'id': 'S9', 'elements': ['D', 'I', 'J', 'M', 'S']}, {'id': 'S10', 'elements': ['F', 'J', 'N', 'T']}, {'id': 'S11', 'elements': ['C', 'D', 'I', 'K', 'Q', 'S']}, {'id': 'S12', 'elements': ['B', 'F', 'R', 'T']}, {'id': 'S13', 'elements': ['E', 'I', 'M']}, {'id': 'S14', 'elements': ['F', 'H', 'N', 'O', 'T']}, {'id': 'S15', 'elements': ['H', 'I', 'K', 'N', 'O']}, {'id': 'S16', 'elements': ['A', 'B', 'T']}, {'id': 'S17', 'elements': ['R', 'T']}, {'id': 'S18', 'elements': ['D', 'E', 'I', 'K', 'M', 'S']}, {'id': 'S19', 'elements': ['A', 'B', 'J', 'L', 'N', 'P', 'R']}]}","['S6', 'S11', 'S13', 'S14', 'S19']",36,nl,names SCP,SCP,"We’ve got a pile of master and sub-keys and a lineup of servers, printers, and appliances; someone needs to decide which keys to keep in the secure drawer. The aim is to keep the smallest possible set of keys that still lets at least one chosen key open every single system. Plans are judged by counting how many keys they include — fewer keys is better — while making sure no system is left unreachable and avoiding unnecessary duplicate coverage. The concrete details are listed below. { ""num_systems"": 24, ""num_keys_available"": 23, ""sets"": [ { ""key_id"": ""S1"", ""accessible_systems"": [ 9, 14, 15, 16, 20 ] }, { ""key_id"": ""S2"", ""accessible_systems"": [ 6, 10, 17, 19, 20, 23 ] }, { ""key_id"": ""S3"", ""accessible_systems"": [ 3, 13 ] }, { ""key_id"": ""S4"", ""accessible_systems"": [ 2, 4, 11, 12, 17 ] }, { ""key_id"": ""S5"", ""accessible_systems"": [ 5, 7, 10, 17 ] }, { ""key_id"": ""S6"", ""accessible_systems"": [ 17, 24 ] }, { ""key_id"": ""S7"", ""accessible_systems"": [ 5, 10 ] }, { ""key_id"": ""S8"", ""accessible_systems"": [ 4, 8, 11 ] }, { ""key_id"": ""S9"", ""accessible_systems"": [ 1, 9, 21, 22 ] }, { ""key_id"": ""S10"", ""accessible_systems"": [ 2, 4, 10, 12 ] }, { ""key_id"": ""S11"", ""accessible_systems"": [ 4, 18 ] }, { ""key_id"": ""S12"", ""accessible_systems"": [ 2, 3, 4, 12, 13, 17 ] }, { ""key_id"": ""S13"", ""accessible_systems"": [ 1, 14, 16 ] }, { ""key_id"": ""S14"", ""accessible_systems"": [ 1, 14, 15, 16 ] }, { ""key_id"": ""S15"", ""accessible_systems"": [ 1, 9, 14, 15, 16, 20, 22 ] }, { ""key_id"": ""S16"", ""accessible_systems"": [ 3, 4, 5, 6, 10, 11, 12, 18, 23 ] }, { ""key_id"": ""S17"", ""accessible_systems"": [ 4, 11, 17, 18 ] }, { ""key_id"": ""S18"", ""accessible_systems"": [ 2, 6, 19, 20 ] }, { ""key_id"": ""S19"", ""accessible_systems"": [ 6, 9, 16, 19, 20 ] }, { ""key_id"": ""S20"", ""accessible_systems"": [ 21, 22 ] }, { ""key_id"": ""S21"", ""accessible_systems"": [ 9, 21, 22 ] }, { ""key_id"": ""S22"", ""accessible_systems"": [ 2, 23 ] }, { ""key_id"": ""S23"", ""accessible_systems"": [ 6, 16, 20, 24 ] } ] } Oh — and when you send back the plan, stick to a tiny JSON outline like this so it's easy to read and automatic tools can pick it up: { ""solution"": [""key_id"", ...] } ""solution"" is the list of keys you'll keep in the secure drawer; each ""key_id"" is just a placeholder for one of the actual key identifiers from the instance. This is only a sketch of the shape I want, not the filled-in answer. All identifiers must be used exactly as they appear in the instance input — no renaming and no new labels. - for example: ""Valid identifiers look like plain numbers such as ""1"" or ""23"", single capital letters like ""A"" or ""B"", or a capital letter followed by digits like ""A1"" or ""X7"".""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 24, 'num_sets': 23, 'density': 0.16666666666666666, 'sets': [{'id': 1, 'elements': [9, 14, 15, 16, 20]}, {'id': 2, 'elements': [6, 10, 17, 19, 20, 23]}, {'id': 3, 'elements': [3, 13]}, {'id': 4, 'elements': [2, 4, 11, 12, 17]}, {'id': 5, 'elements': [5, 7, 10, 17]}, {'id': 6, 'elements': [17, 24]}, {'id': 7, 'elements': [5, 10]}, {'id': 8, 'elements': [4, 8, 11]}, {'id': 9, 'elements': [1, 9, 21, 22]}, {'id': 10, 'elements': [2, 4, 10, 12]}, {'id': 11, 'elements': [4, 18]}, {'id': 12, 'elements': [2, 3, 4, 12, 13, 17]}, {'id': 13, 'elements': [1, 14, 16]}, {'id': 14, 'elements': [1, 14, 15, 16]}, {'id': 15, 'elements': [1, 9, 14, 15, 16, 20, 22]}, {'id': 16, 'elements': [3, 4, 5, 6, 10, 11, 12, 18, 23]}, {'id': 17, 'elements': [4, 11, 17, 18]}, {'id': 18, 'elements': [2, 6, 19, 20]}, {'id': 19, 'elements': [6, 9, 16, 19, 20]}, {'id': 20, 'elements': [21, 22]}, {'id': 21, 'elements': [9, 21, 22]}, {'id': 22, 'elements': [2, 23]}, {'id': 23, 'elements': [6, 16, 20, 24]}], 'graph': {'num_nodes': 24, 'edges': [{'u': 22, 'v': 9}, {'u': 5, 'v': 7}, {'u': 5, 'v': 10}, {'u': 24, 'v': 20}, {'u': 3, 'v': 12}, {'u': 3, 'v': 13}, {'u': 17, 'v': 2}, {'u': 17, 'v': 4}, {'u': 17, 'v': 10}, {'u': 17, 'v': 12}, {'u': 6, 'v': 2}, {'u': 6, 'v': 19}, {'u': 6, 'v': 20}, {'u': 4, 'v': 11}, {'u': 4, 'v': 18}, {'u': 11, 'v': 8}, {'u': 20, 'v': 16}, {'u': 15, 'v': 1}, {'u': 16, 'v': 1}, {'u': 16, 'v': 9}, {'u': 9, 'v': 21}, {'u': 23, 'v': 2}, {'u': 14, 'v': 1}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0036.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0036.png'}","[5, 8, 9, 12, 15, 16, 19, 23]",8.0,"{'num_elements': 24, 'num_sets': 23, 'sets': [{'id': 'S1', 'elements': [9, 14, 15, 16, 20]}, {'id': 'S2', 'elements': [6, 10, 17, 19, 20, 23]}, {'id': 'S3', 'elements': [3, 13]}, {'id': 'S4', 'elements': [2, 4, 11, 12, 17]}, {'id': 'S5', 'elements': [5, 7, 10, 17]}, {'id': 'S6', 'elements': [17, 24]}, {'id': 'S7', 'elements': [5, 10]}, {'id': 'S8', 'elements': [4, 8, 11]}, {'id': 'S9', 'elements': [1, 9, 21, 22]}, {'id': 'S10', 'elements': [2, 4, 10, 12]}, {'id': 'S11', 'elements': [4, 18]}, {'id': 'S12', 'elements': [2, 3, 4, 12, 13, 17]}, {'id': 'S13', 'elements': [1, 14, 16]}, {'id': 'S14', 'elements': [1, 14, 15, 16]}, {'id': 'S15', 'elements': [1, 9, 14, 15, 16, 20, 22]}, {'id': 'S16', 'elements': [3, 4, 5, 6, 10, 11, 12, 18, 23]}, {'id': 'S17', 'elements': [4, 11, 17, 18]}, {'id': 'S18', 'elements': [2, 6, 19, 20]}, {'id': 'S19', 'elements': [6, 9, 16, 19, 20]}, {'id': 'S20', 'elements': [21, 22]}, {'id': 'S21', 'elements': [9, 21, 22]}, {'id': 'S22', 'elements': [2, 23]}, {'id': 'S23', 'elements': [6, 16, 20, 24]}]}","['S5', 'S8', 'S9', 'S12', 'S15', 'S16', 'S19', 'S23']",37,json,1 SCP,SCP,"Many people on the gardening committee prefer tidy beds, so the gardener’s brief was simple: use the smallest number of plant varieties that still entice every target pollinator species. A plan is better when it contains fewer distinct varieties; you measure that by tallying the varieties selected. It’s mandatory that each pollinator on the list finds at least one attractive plant among the picks, and duplicates don’t add anything useful. The specific lists are shown below. - **num_pollinators**: 22 - **num_varieties_available**: 21 | plant_variety_id | attractive_pollinators | |---|---| | S1 | 0 5 12 | | S2 | 1 18 | | S3 | 2 3 4 15 20 21 | | S4 | 2 8 9 11 15 19 | | S5 | 2 4 9 21 | | S6 | 5 9 12 15 | | S7 | 6 11 | | S8 | 7 14 16 17 | | S9 | 3 8 9 10 11 18 19 | | S10 | 2 3 4 8 9 15 19 21 | | S11 | 6 8 11 18 | | S12 | 1 3 6 10 17 18 | | S13 | 0 5 15 | | S14 | 7 13 14 16 | | S15 | 0 5 9 12 15 | | S16 | 7 8 14 | | S17 | 3 7 8 11 13 14 16 17 | | S18 | 1 10 11 18 | | S19 | 8 19 | | S20 | 2 20 21 | | S21 | 2 4 | If you want to hand me the final picks in a tidy way, just use a tiny JSON snippet like this — nothing fancy, just a list of the variety identifiers you choose. { ""solution"": [""variety_id"", ...] } ""solution"" is simply the list of plant varieties to plant (one entry per variety). Treat each array item as the exact identifier for a variety from the instance input — this JSON is just a sketch of the shape I expect, not the actual answer. Please be sure to use the identifiers exactly as they appear in the input — no renaming and no new labels. - for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 22, 'num_sets': 21, 'density': 0.19480519480519481, 'sets': [{'id': 1, 'elements': [1, 6, 13]}, {'id': 2, 'elements': [2, 19]}, {'id': 3, 'elements': [3, 4, 5, 16, 21, 22]}, {'id': 4, 'elements': [3, 9, 10, 12, 16, 20]}, {'id': 5, 'elements': [3, 5, 10, 22]}, {'id': 6, 'elements': [6, 10, 13, 16]}, {'id': 7, 'elements': [7, 12]}, {'id': 8, 'elements': [8, 15, 17, 18]}, {'id': 9, 'elements': [4, 9, 10, 11, 12, 19, 20]}, {'id': 10, 'elements': [3, 4, 5, 9, 10, 16, 20, 22]}, {'id': 11, 'elements': [7, 9, 12, 19]}, {'id': 12, 'elements': [2, 4, 7, 11, 18, 19]}, {'id': 13, 'elements': [1, 6, 16]}, {'id': 14, 'elements': [8, 14, 15, 17]}, {'id': 15, 'elements': [1, 6, 10, 13, 16]}, {'id': 16, 'elements': [8, 9, 15]}, {'id': 17, 'elements': [4, 8, 9, 12, 14, 15, 17, 18]}, {'id': 18, 'elements': [2, 11, 12, 19]}, {'id': 19, 'elements': [9, 20]}, {'id': 20, 'elements': [3, 21, 22]}, {'id': 21, 'elements': [3, 5]}], 'graph': {'num_nodes': 22, 'edges': [{'u': 13, 'v': 6}, {'u': 8, 'v': 17}, {'u': 9, 'v': 4}, {'u': 9, 'v': 12}, {'u': 9, 'v': 18}, {'u': 3, 'v': 5}, {'u': 3, 'v': 10}, {'u': 3, 'v': 22}, {'u': 4, 'v': 10}, {'u': 4, 'v': 20}, {'u': 15, 'v': 17}, {'u': 16, 'v': 6}, {'u': 16, 'v': 10}, {'u': 11, 'v': 7}, {'u': 11, 'v': 12}, {'u': 17, 'v': 14}, {'u': 17, 'v': 18}, {'u': 19, 'v': 2}, {'u': 19, 'v': 12}, {'u': 22, 'v': 21}, {'u': 1, 'v': 6}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0037.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0037.png'}","[3, 10, 12, 15, 17]",5.0,"{'num_elements': 22, 'num_sets': 21, 'sets': [{'id': 'S1', 'elements': [0, 5, 12]}, {'id': 'S2', 'elements': [1, 18]}, {'id': 'S3', 'elements': [2, 3, 4, 15, 20, 21]}, {'id': 'S4', 'elements': [2, 8, 9, 11, 15, 19]}, {'id': 'S5', 'elements': [2, 4, 9, 21]}, {'id': 'S6', 'elements': [5, 9, 12, 15]}, {'id': 'S7', 'elements': [6, 11]}, {'id': 'S8', 'elements': [7, 14, 16, 17]}, {'id': 'S9', 'elements': [3, 8, 9, 10, 11, 18, 19]}, {'id': 'S10', 'elements': [2, 3, 4, 8, 9, 15, 19, 21]}, {'id': 'S11', 'elements': [6, 8, 11, 18]}, {'id': 'S12', 'elements': [1, 3, 6, 10, 17, 18]}, {'id': 'S13', 'elements': [0, 5, 15]}, {'id': 'S14', 'elements': [7, 13, 14, 16]}, {'id': 'S15', 'elements': [0, 5, 9, 12, 15]}, {'id': 'S16', 'elements': [7, 8, 14]}, {'id': 'S17', 'elements': [3, 7, 8, 11, 13, 14, 16, 17]}, {'id': 'S18', 'elements': [1, 10, 11, 18]}, {'id': 'S19', 'elements': [8, 19]}, {'id': 'S20', 'elements': [2, 20, 21]}, {'id': 'S21', 'elements': [2, 4]}]}","['S3', 'S10', 'S12', 'S15', 'S17']",38,markdown_table,0 SCP,SCP,"We were prepping the house for a deep-clean weekend and needed to decide which cleaning kits to put in each area so every room had cleaning supplies on hand. The idea was to keep the number of distinct kits to a minimum (just count the kits chosen) while ensuring every room shows up in at least one kit’s coverage and nothing gets left out or redundantly repeated. The concrete details will be shown below. We listed 20 available kits and 21 rooms below. Kit S1 covers 1 2 5 9 16. Kit S2 covers 9 18. Kit S3 covers 10 11 13 19 20. Kit S4 covers 1 5 16 18. Kit S5 covers 6 21. Kit S6 covers 7 14 17. Kit S7 covers 6 8 15 20 21. Kit S8 covers 1 2 3 9 11 18. Kit S9 covers 10 12 14 19. Kit S10 covers 1 2 4 9 11 13 18 19. Kit S11 covers 10 17. Kit S12 covers 11 13 19 20. Kit S13 covers 7 12 14. Kit S14 covers 8 13. Kit S15 covers 5 18. Kit S16 covers 7 12. Kit S17 covers 1 2 4 9 11 18. Kit S18 covers 4 10 11 13 19. Kit S19 covers 4 8 13 15 20. Kit S20 covers 8 15 21. We'll try to pick as few kits as possible so all 21 rooms are covered. Also, when you send back which kits you're actually choosing, please use this simple JSON shape so it's easy to read and plug into the checklist: { ""solution"": [""kit_id"", ...] } Pretty straightforward: ""solution"" is the list of kit identifiers you'll pick to place around the house, and ""kit_id"" is just a placeholder for each kit's identifier (like the label the instance uses). This is just a sketch of the shape I want — not the final answer. Please make sure to use the exact identifiers from the instance input — no renaming and no new labels. Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 21, 'num_sets': 20, 'density': 0.18571428571428572, 'sets': [{'id': 1, 'elements': [1, 2, 5, 9, 16]}, {'id': 2, 'elements': [9, 18]}, {'id': 3, 'elements': [10, 11, 13, 19, 20]}, {'id': 4, 'elements': [1, 5, 16, 18]}, {'id': 5, 'elements': [6, 21]}, {'id': 6, 'elements': [7, 14, 17]}, {'id': 7, 'elements': [6, 8, 15, 20, 21]}, {'id': 8, 'elements': [1, 2, 3, 9, 11, 18]}, {'id': 9, 'elements': [10, 12, 14, 19]}, {'id': 10, 'elements': [1, 2, 4, 9, 11, 13, 18, 19]}, {'id': 11, 'elements': [10, 17]}, {'id': 12, 'elements': [11, 13, 19, 20]}, {'id': 13, 'elements': [7, 12, 14]}, {'id': 14, 'elements': [8, 13]}, {'id': 15, 'elements': [5, 18]}, {'id': 16, 'elements': [7, 12]}, {'id': 17, 'elements': [1, 2, 4, 9, 11, 18]}, {'id': 18, 'elements': [4, 10, 11, 13, 19]}, {'id': 19, 'elements': [4, 8, 13, 15, 20]}, {'id': 20, 'elements': [8, 15, 21]}], 'graph': {'num_nodes': 21, 'edges': [{'u': 20, 'v': 13}, {'u': 20, 'v': 15}, {'u': 9, 'v': 3}, {'u': 9, 'v': 18}, {'u': 1, 'v': 5}, {'u': 1, 'v': 16}, {'u': 1, 'v': 18}, {'u': 2, 'v': 18}, {'u': 14, 'v': 7}, {'u': 14, 'v': 17}, {'u': 8, 'v': 6}, {'u': 8, 'v': 15}, {'u': 8, 'v': 21}, {'u': 18, 'v': 11}, {'u': 12, 'v': 17}, {'u': 13, 'v': 4}, {'u': 10, 'v': 17}, {'u': 10, 'v': 19}, {'u': 4, 'v': 11}, {'u': 4, 'v': 19}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0038.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0038.png'}","[1, 6, 7, 8, 13, 18]",6.0,"{'num_elements': 21, 'num_sets': 20, 'sets': [{'id': 'S1', 'elements': [1, 2, 5, 9, 16]}, {'id': 'S2', 'elements': [9, 18]}, {'id': 'S3', 'elements': [10, 11, 13, 19, 20]}, {'id': 'S4', 'elements': [1, 5, 16, 18]}, {'id': 'S5', 'elements': [6, 21]}, {'id': 'S6', 'elements': [7, 14, 17]}, {'id': 'S7', 'elements': [6, 8, 15, 20, 21]}, {'id': 'S8', 'elements': [1, 2, 3, 9, 11, 18]}, {'id': 'S9', 'elements': [10, 12, 14, 19]}, {'id': 'S10', 'elements': [1, 2, 4, 9, 11, 13, 18, 19]}, {'id': 'S11', 'elements': [10, 17]}, {'id': 'S12', 'elements': [11, 13, 19, 20]}, {'id': 'S13', 'elements': [7, 12, 14]}, {'id': 'S14', 'elements': [8, 13]}, {'id': 'S15', 'elements': [5, 18]}, {'id': 'S16', 'elements': [7, 12]}, {'id': 'S17', 'elements': [1, 2, 4, 9, 11, 18]}, {'id': 'S18', 'elements': [4, 10, 11, 13, 19]}, {'id': 'S19', 'elements': [4, 8, 13, 15, 20]}, {'id': 'S20', 'elements': [8, 15, 21]}]}","['S1', 'S6', 'S7', 'S8', 'S13', 'S18']",39,nl,1 SCP,SCP,"Recently the school decided to streamline extracurriculars: the teacher’s job is to pick a minimal set of clubs so every student sees at least one of their interests on the schedule. The success check is straightforward — add up how many clubs were picked; fewer clubs means a tighter plan — and be careful not to leave anyone without a match or to add clubs only for duplicate coverage. The detailed list of students and club choices follows below. { ""total_students_to_cover"": 20, ""total_clubs_available"": 18, ""sets"": [ { ""club_id"": ""S1"", ""students_interested"": [ ""A"", ""G"", ""K"", ""L"", ""M"" ] }, { ""club_id"": ""S2"", ""students_interested"": [ ""B"", ""C"", ""J"", ""K"" ] }, { ""club_id"": ""S3"", ""students_interested"": [ ""B"", ""C"", ""K"" ] }, { ""club_id"": ""S4"", ""students_interested"": [ ""D"", ""F"", ""J"", ""K"", ""L"", ""N"", ""O"", ""S"" ] }, { ""club_id"": ""S5"", ""students_interested"": [ ""E"", ""T"" ] }, { ""club_id"": ""S6"", ""students_interested"": [ ""D"", ""F"", ""N"", ""R"" ] }, { ""club_id"": ""S7"", ""students_interested"": [ ""G"", ""I"", ""L"" ] }, { ""club_id"": ""S8"", ""students_interested"": [ ""H"", ""Q"" ] }, { ""club_id"": ""S9"", ""students_interested"": [ ""D"", ""G"", ""H"", ""I"", ""Q"", ""S"" ] }, { ""club_id"": ""S10"", ""students_interested"": [ ""B"", ""C"", ""D"", ""J"", ""K"" ] }, { ""club_id"": ""S11"", ""students_interested"": [ ""A"", ""C"", ""D"", ""J"", ""K"", ""L"", ""M"", ""N"", ""S"" ] }, { ""club_id"": ""S12"", ""students_interested"": [ ""A"", ""G"", ""J"", ""K"", ""L"", ""M"" ] }, { ""club_id"": ""S13"", ""students_interested"": [ ""A"", ""M"" ] }, { ""club_id"": ""S14"", ""students_interested"": [ ""D"", ""F"", ""K"", ""N"" ] }, { ""club_id"": ""S15"", ""students_interested"": [ ""D"", ""F"", ""N"", ""O"" ] }, { ""club_id"": ""S16"", ""students_interested"": [ ""F"", ""R"" ] }, { ""club_id"": ""S17"", ""students_interested"": [ ""H"", ""I"", ""K"", ""N"", ""P"", ""Q"", ""S"" ] }, { ""club_id"": ""S18"", ""students_interested"": [ ""D"", ""E"", ""I"", ""T"" ] } ] } Also, when you send back the picks, please stick to this simple JSON shape — just a friendly way for me to read the list: { ""solution"": [""club_id"", ...] } ""solution"" is where you list the clubs the teacher should pick; the entries like ""club_id"" are just placeholders for the actual club identifiers from the instance (so replace them with the real IDs, not new labels). This block is only a sketch of the expected shape, not the actual answer itself — think of it like a little form you fill out. Make sure to use the identifiers exactly as they appear in the instance input — no renaming and no inventing new labels. Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 20, 'num_sets': 18, 'density': 0.2222222222222222, 'sets': [{'id': 1, 'elements': [1, 7, 11, 12, 13]}, {'id': 2, 'elements': [2, 3, 10, 11]}, {'id': 3, 'elements': [2, 3, 11]}, {'id': 4, 'elements': [4, 6, 10, 11, 12, 14, 15, 19]}, {'id': 5, 'elements': [5, 20]}, {'id': 6, 'elements': [4, 6, 14, 18]}, {'id': 7, 'elements': [7, 9, 12]}, {'id': 8, 'elements': [8, 17]}, {'id': 9, 'elements': [4, 7, 8, 9, 17, 19]}, {'id': 10, 'elements': [2, 3, 4, 10, 11]}, {'id': 11, 'elements': [1, 3, 4, 10, 11, 12, 13, 14, 19]}, {'id': 12, 'elements': [1, 7, 10, 11, 12, 13]}, {'id': 13, 'elements': [1, 13]}, {'id': 14, 'elements': [4, 6, 11, 14]}, {'id': 15, 'elements': [4, 6, 14, 15]}, {'id': 16, 'elements': [6, 18]}, {'id': 17, 'elements': [8, 9, 11, 14, 16, 17, 19]}, {'id': 18, 'elements': [4, 5, 9, 20]}], 'graph': {'num_nodes': 20, 'edges': [{'u': 2, 'v': 10}, {'u': 3, 'v': 10}, {'u': 4, 'v': 11}, {'u': 4, 'v': 14}, {'u': 4, 'v': 19}, {'u': 5, 'v': 20}, {'u': 19, 'v': 9}, {'u': 19, 'v': 20}, {'u': 20, 'v': 16}, {'u': 17, 'v': 9}, {'u': 6, 'v': 14}, {'u': 6, 'v': 18}, {'u': 10, 'v': 11}, {'u': 11, 'v': 12}, {'u': 12, 'v': 1}, {'u': 12, 'v': 13}, {'u': 1, 'v': 7}, {'u': 7, 'v': 8}, {'u': 8, 'v': 9}, {'u': 14, 'v': 15}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0039.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0039.png'}","[4, 6, 10, 12, 17, 18]",6.0,"{'num_elements': 20, 'num_sets': 18, 'sets': [{'id': 'S1', 'elements': ['A', 'G', 'K', 'L', 'M']}, {'id': 'S2', 'elements': ['B', 'C', 'J', 'K']}, {'id': 'S3', 'elements': ['B', 'C', 'K']}, {'id': 'S4', 'elements': ['D', 'F', 'J', 'K', 'L', 'N', 'O', 'S']}, {'id': 'S5', 'elements': ['E', 'T']}, {'id': 'S6', 'elements': ['D', 'F', 'N', 'R']}, {'id': 'S7', 'elements': ['G', 'I', 'L']}, {'id': 'S8', 'elements': ['H', 'Q']}, {'id': 'S9', 'elements': ['D', 'G', 'H', 'I', 'Q', 'S']}, {'id': 'S10', 'elements': ['B', 'C', 'D', 'J', 'K']}, {'id': 'S11', 'elements': ['A', 'C', 'D', 'J', 'K', 'L', 'M', 'N', 'S']}, {'id': 'S12', 'elements': ['A', 'G', 'J', 'K', 'L', 'M']}, {'id': 'S13', 'elements': ['A', 'M']}, {'id': 'S14', 'elements': ['D', 'F', 'K', 'N']}, {'id': 'S15', 'elements': ['D', 'F', 'N', 'O']}, {'id': 'S16', 'elements': ['F', 'R']}, {'id': 'S17', 'elements': ['H', 'I', 'K', 'N', 'P', 'Q', 'S']}, {'id': 'S18', 'elements': ['D', 'E', 'I', 'T']}]}","['S4', 'S6', 'S10', 'S12', 'S17', 'S18']",40,json,names SCP,SCP,"We’ve got a storefront full of different display units and a bunch of product categories that need shelf space; the task is to choose only the stands that together show every category. The measure of success is straightforward: add up the stands picked and try to keep that total as low as possible, as long as every category appears at least once. Every category must be represented among the selected stands, and picking extra stands that don’t add new categories is wasteful. The concrete details — which stands have which categories — are given below. We have 20 display stands and 20 product categories to cover: Stand S1 showcases 0 2 7. Stand S2 showcases 1 12. Stand S3 showcases 0 1 3 7 10 12. Stand S4 showcases 0 1 2 4 7. Stand S5 showcases 3 4 12. Stand S6 showcases 5 6 11. Stand S7 showcases 5 6 8 11 12. Stand S8 showcases 0 3 7 9 10 14. Stand S9 showcases 6 8 12. Stand S10 showcases 2 7 10 13 14 15. Stand S11 showcases 7 9 10 16 17 19. Stand S12 showcases 3 5 11 12. Stand S13 showcases 1 2 3 6 12. Stand S14 showcases 9 14 15. Stand S15 showcases 7 9 13. Stand S16 showcases 9 13 14 15. Stand S17 showcases 7 10 16. Stand S18 showcases 16 17. Stand S19 showcases 16 18 19. Stand S20 showcases 10 18. We should choose the fewest stands that together cover all 20 categories. Also, when you send back the chosen stands, please use a tiny JSON object in this shape so it’s easy to check and parse: { ""solution"": [""stand_id""] } Think of ""solution"" as the list of stand IDs you pick to cover every product category — each entry is one stand’s identifier. This JSON is just a sketch of the expected shape, not the actual answer, so fill the array with the exact stand IDs from the instance when you submit. Please use the identifiers exactly as they appear in the instance input — no renaming, no made-up labels. - for example: ""1"", ""23"", ""A"", ""B"", ""A1"", ""X7""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 20, 'num_sets': 20, 'density': 0.1925, 'sets': [{'id': 1, 'elements': [1, 3, 8]}, {'id': 2, 'elements': [2, 13]}, {'id': 3, 'elements': [1, 2, 4, 8, 11, 13]}, {'id': 4, 'elements': [1, 2, 3, 5, 8]}, {'id': 5, 'elements': [4, 5, 13]}, {'id': 6, 'elements': [6, 7, 12]}, {'id': 7, 'elements': [6, 7, 9, 12, 13]}, {'id': 8, 'elements': [1, 4, 8, 10, 11, 15]}, {'id': 9, 'elements': [7, 9, 13]}, {'id': 10, 'elements': [3, 8, 11, 14, 15, 16]}, {'id': 11, 'elements': [8, 10, 11, 17, 18, 20]}, {'id': 12, 'elements': [4, 6, 12, 13]}, {'id': 13, 'elements': [2, 3, 4, 7, 13]}, {'id': 14, 'elements': [10, 15, 16]}, {'id': 15, 'elements': [8, 10, 14]}, {'id': 16, 'elements': [10, 14, 15, 16]}, {'id': 17, 'elements': [8, 11, 17]}, {'id': 18, 'elements': [17, 18]}, {'id': 19, 'elements': [17, 19, 20]}, {'id': 20, 'elements': [11, 19]}], 'graph': {'num_nodes': 20, 'edges': [{'u': 10, 'v': 8}, {'u': 10, 'v': 15}, {'u': 11, 'v': 8}, {'u': 11, 'v': 17}, {'u': 11, 'v': 19}, {'u': 12, 'v': 7}, {'u': 12, 'v': 9}, {'u': 12, 'v': 13}, {'u': 13, 'v': 4}, {'u': 13, 'v': 5}, {'u': 19, 'v': 20}, {'u': 3, 'v': 1}, {'u': 3, 'v': 4}, {'u': 3, 'v': 8}, {'u': 15, 'v': 14}, {'u': 15, 'v': 16}, {'u': 17, 'v': 18}, {'u': 4, 'v': 2}, {'u': 6, 'v': 7}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0040.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0040.png'}","[4, 5, 7, 10, 11, 19]",6.0,"{'num_elements': 20, 'num_sets': 20, 'sets': [{'id': 'S1', 'elements': [0, 2, 7]}, {'id': 'S2', 'elements': [1, 12]}, {'id': 'S3', 'elements': [0, 1, 3, 7, 10, 12]}, {'id': 'S4', 'elements': [0, 1, 2, 4, 7]}, {'id': 'S5', 'elements': [3, 4, 12]}, {'id': 'S6', 'elements': [5, 6, 11]}, {'id': 'S7', 'elements': [5, 6, 8, 11, 12]}, {'id': 'S8', 'elements': [0, 3, 7, 9, 10, 14]}, {'id': 'S9', 'elements': [6, 8, 12]}, {'id': 'S10', 'elements': [2, 7, 10, 13, 14, 15]}, {'id': 'S11', 'elements': [7, 9, 10, 16, 17, 19]}, {'id': 'S12', 'elements': [3, 5, 11, 12]}, {'id': 'S13', 'elements': [1, 2, 3, 6, 12]}, {'id': 'S14', 'elements': [9, 14, 15]}, {'id': 'S15', 'elements': [7, 9, 13]}, {'id': 'S16', 'elements': [9, 13, 14, 15]}, {'id': 'S17', 'elements': [7, 10, 16]}, {'id': 'S18', 'elements': [16, 17]}, {'id': 'S19', 'elements': [16, 18, 19]}, {'id': 'S20', 'elements': [10, 18]}]}","['S4', 'S5', 'S7', 'S10', 'S11', 'S19']",41,nl,0 SCP,SCP,"There’s a charity brunch coming up and the challenge is selecting caterers so every dietary request is met without hiring a bunch of them. The goal is simple: keep the number of caterers as small as possible (count them up to see how many), but only if every dietary need shows up in the menus of the caterers that are actually hired. Every requirement needs at least one match among the chosen vendors, and leaving anything out is not allowed — the full list of needs and what each caterer offers appears below. { ""num_dietary_requirements"": 25, ""num_caterers_available"": 25, ""sets"": [ { ""caterer_id"": ""S1"", ""offered_requirements"": [ 1, 12, 15, 16 ] }, { ""caterer_id"": ""S2"", ""offered_requirements"": [ 2, 6, 10, 11, 12, 18, 21, 25 ] }, { ""caterer_id"": ""S3"", ""offered_requirements"": [ 3, 4, 6, 8, 19 ] }, { ""caterer_id"": ""S4"", ""offered_requirements"": [ 3, 6, 19, 21 ] }, { ""caterer_id"": ""S5"", ""offered_requirements"": [ 5, 9, 23 ] }, { ""caterer_id"": ""S6"", ""offered_requirements"": [ 2, 3, 4, 21 ] }, { ""caterer_id"": ""S7"", ""offered_requirements"": [ 7, 17, 20 ] }, { ""caterer_id"": ""S8"", ""offered_requirements"": [ 3, 8, 19 ] }, { ""caterer_id"": ""S9"", ""offered_requirements"": [ 5, 12, 14, 16, 23, 24, 25 ] }, { ""caterer_id"": ""S10"", ""offered_requirements"": [ 2, 10, 11 ] }, { ""caterer_id"": ""S11"", ""offered_requirements"": [ 2, 11 ] }, { ""caterer_id"": ""S12"", ""offered_requirements"": [ 1, 2, 5, 9, 14, 16, 23, 25 ] }, { ""caterer_id"": ""S13"", ""offered_requirements"": [ 12, 14, 24 ] }, { ""caterer_id"": ""S14"", ""offered_requirements"": [ 13, 14, 16, 23, 24 ] }, { ""caterer_id"": ""S15"", ""offered_requirements"": [ 1, 12 ] }, { ""caterer_id"": ""S16"", ""offered_requirements"": [ 9, 12, 14, 15, 16 ] }, { ""caterer_id"": ""S17"", ""offered_requirements"": [ 7, 17, 22 ] }, { ""caterer_id"": ""S18"", ""offered_requirements"": [ 22, 25 ] }, { ""caterer_id"": ""S19"", ""offered_requirements"": [ 4, 8, 19 ] }, { ""caterer_id"": ""S20"", ""offered_requirements"": [ 18, 20, 22, 25 ] }, { ""caterer_id"": ""S21"", ""offered_requirements"": [ 2, 4, 10 ] }, { ""caterer_id"": ""S22"", ""offered_requirements"": [ 7, 17, 20, 22 ] }, { ""caterer_id"": ""S23"", ""offered_requirements"": [ 5, 9, 12, 14, 23, 24 ] }, { ""caterer_id"": ""S24"", ""offered_requirements"": [ 9, 12, 13, 14, 23 ] }, { ""caterer_id"": ""S25"", ""offered_requirements"": [ 2, 9, 12, 14, 16, 18, 20, 21 ] } ] } If you want to hand me the picks in a simple, machine-friendly way, just follow this little JSON layout — nothing fancy, just a list of the caterers you picked. { ""solution"": [""caterer_id"", ...] } Think of ""solution"" as the form field that holds the chosen caterer IDs. Each entry in the array should be one of the caterer identifiers from the instance (so I know exactly who you hired). This JSON is just a sketch of the shape I expect, not the actual answer — fill in the real IDs when you're ready. Please use the identifiers exactly as they appear in the instance input — no renaming and no new labels. - for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 25, 'num_sets': 25, 'density': 0.1712, 'sets': [{'id': 1, 'elements': [1, 12, 15, 16]}, {'id': 2, 'elements': [2, 6, 10, 11, 12, 18, 21, 25]}, {'id': 3, 'elements': [3, 4, 6, 8, 19]}, {'id': 4, 'elements': [3, 6, 19, 21]}, {'id': 5, 'elements': [5, 9, 23]}, {'id': 6, 'elements': [2, 3, 4, 21]}, {'id': 7, 'elements': [7, 17, 20]}, {'id': 8, 'elements': [3, 8, 19]}, {'id': 9, 'elements': [5, 12, 14, 16, 23, 24, 25]}, {'id': 10, 'elements': [2, 10, 11]}, {'id': 11, 'elements': [2, 11]}, {'id': 12, 'elements': [1, 2, 5, 9, 14, 16, 23, 25]}, {'id': 13, 'elements': [12, 14, 24]}, {'id': 14, 'elements': [13, 14, 16, 23, 24]}, {'id': 15, 'elements': [1, 12]}, {'id': 16, 'elements': [9, 12, 14, 15, 16]}, {'id': 17, 'elements': [7, 17, 22]}, {'id': 18, 'elements': [22, 25]}, {'id': 19, 'elements': [4, 8, 19]}, {'id': 20, 'elements': [18, 20, 22, 25]}, {'id': 21, 'elements': [2, 4, 10]}, {'id': 22, 'elements': [7, 17, 20, 22]}, {'id': 23, 'elements': [5, 9, 12, 14, 23, 24]}, {'id': 24, 'elements': [9, 12, 13, 14, 23]}, {'id': 25, 'elements': [2, 9, 12, 14, 16, 18, 20, 21]}], 'graph': {'num_nodes': 25, 'edges': [{'u': 1, 'v': 16}, {'u': 7, 'v': 17}, {'u': 7, 'v': 22}, {'u': 2, 'v': 10}, {'u': 2, 'v': 21}, {'u': 2, 'v': 25}, {'u': 16, 'v': 12}, {'u': 16, 'v': 15}, {'u': 8, 'v': 19}, {'u': 5, 'v': 9}, {'u': 22, 'v': 20}, {'u': 9, 'v': 12}, {'u': 9, 'v': 23}, {'u': 18, 'v': 20}, {'u': 18, 'v': 25}, {'u': 3, 'v': 4}, {'u': 3, 'v': 19}, {'u': 6, 'v': 4}, {'u': 6, 'v': 21}, {'u': 23, 'v': 24}, {'u': 11, 'v': 10}, {'u': 12, 'v': 14}, {'u': 12, 'v': 25}, {'u': 13, 'v': 14}, {'u': 14, 'v': 24}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0041.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0041.png'}","[1, 2, 3, 14, 22, 23]",6.0,"{'num_elements': 25, 'num_sets': 25, 'sets': [{'id': 'S1', 'elements': [1, 12, 15, 16]}, {'id': 'S2', 'elements': [2, 6, 10, 11, 12, 18, 21, 25]}, {'id': 'S3', 'elements': [3, 4, 6, 8, 19]}, {'id': 'S4', 'elements': [3, 6, 19, 21]}, {'id': 'S5', 'elements': [5, 9, 23]}, {'id': 'S6', 'elements': [2, 3, 4, 21]}, {'id': 'S7', 'elements': [7, 17, 20]}, {'id': 'S8', 'elements': [3, 8, 19]}, {'id': 'S9', 'elements': [5, 12, 14, 16, 23, 24, 25]}, {'id': 'S10', 'elements': [2, 10, 11]}, {'id': 'S11', 'elements': [2, 11]}, {'id': 'S12', 'elements': [1, 2, 5, 9, 14, 16, 23, 25]}, {'id': 'S13', 'elements': [12, 14, 24]}, {'id': 'S14', 'elements': [13, 14, 16, 23, 24]}, {'id': 'S15', 'elements': [1, 12]}, {'id': 'S16', 'elements': [9, 12, 14, 15, 16]}, {'id': 'S17', 'elements': [7, 17, 22]}, {'id': 'S18', 'elements': [22, 25]}, {'id': 'S19', 'elements': [4, 8, 19]}, {'id': 'S20', 'elements': [18, 20, 22, 25]}, {'id': 'S21', 'elements': [2, 4, 10]}, {'id': 'S22', 'elements': [7, 17, 20, 22]}, {'id': 'S23', 'elements': [5, 9, 12, 14, 23, 24]}, {'id': 'S24', 'elements': [9, 12, 13, 14, 23]}, {'id': 'S25', 'elements': [2, 9, 12, 14, 16, 18, 20, 21]}]}","['S1', 'S2', 'S3', 'S14', 'S22', 'S23']",42,json,1 SCP,SCP,"Recently the maintenance supervisor was asked to cut costs by trimming outside contractors, but without sacrificing repair coverage. The task is to pick a minimal number of contractor teams such that, between them, they can fix every machine type on site. The way to tell which selection is preferred is straightforward: count how many teams are hired — the smaller that number, the better — while ensuring every machine type is covered at least once and not paying for extra teams that add no new capabilities. The specific instance details are below. { ""total_machine_types"": 21, ""total_contractor_teams"": 20, ""sets"": [ { ""contractor_team_id"": ""S1"", ""machine_types_covered"": [ 1, 4, 6, 9, 21 ] }, { ""contractor_team_id"": ""S2"", ""machine_types_covered"": [ 2, 9, 13, 16, 18 ] }, { ""contractor_team_id"": ""S3"", ""machine_types_covered"": [ 3, 16, 19, 20 ] }, { ""contractor_team_id"": ""S4"", ""machine_types_covered"": [ 1, 4, 9 ] }, { ""contractor_team_id"": ""S5"", ""machine_types_covered"": [ 2, 5, 13, 16, 21 ] }, { ""contractor_team_id"": ""S6"", ""machine_types_covered"": [ 6, 14 ] }, { ""contractor_team_id"": ""S7"", ""machine_types_covered"": [ 13, 18 ] }, { ""contractor_team_id"": ""S8"", ""machine_types_covered"": [ 1, 2, 4, 6, 12, 14, 17, 21 ] }, { ""contractor_team_id"": ""S9"", ""machine_types_covered"": [ 7, 8, 10, 13, 18 ] }, { ""contractor_team_id"": ""S10"", ""machine_types_covered"": [ 11, 18 ] }, { ""contractor_team_id"": ""S11"", ""machine_types_covered"": [ 9, 14, 17 ] }, { ""contractor_team_id"": ""S12"", ""machine_types_covered"": [ 5, 8, 21 ] }, { ""contractor_team_id"": ""S13"", ""machine_types_covered"": [ 6, 9, 12, 14, 17, 20 ] }, { ""contractor_team_id"": ""S14"", ""machine_types_covered"": [ 7, 10, 18 ] }, { ""contractor_team_id"": ""S15"", ""machine_types_covered"": [ 2, 3, 5, 16 ] }, { ""contractor_team_id"": ""S16"", ""machine_types_covered"": [ 9, 12, 17, 19, 20 ] }, { ""contractor_team_id"": ""S17"", ""machine_types_covered"": [ 7, 8, 10, 11, 15, 18 ] }, { ""contractor_team_id"": ""S18"", ""machine_types_covered"": [ 3, 16, 17, 19, 20 ] }, { ""contractor_team_id"": ""S19"", ""machine_types_covered"": [ 3, 16, 17, 19 ] }, { ""contractor_team_id"": ""S20"", ""machine_types_covered"": [ 6, 9, 13, 14 ] } ] } When you're ready, just send the result in a tiny JSON like this so it's easy to parse: { ""solution"": [""team_id"", ...] } ""solution"" is the list of contractor team IDs you want to hire — one entry per hired team. The ""team_id"" string is just a placeholder showing the format (each item should be the exact ID for a team). This JSON is only a sketch of the shape I expect, not the actual answer. Please use the identifiers exactly as they appear in the instance input — no renaming and no new labels. - for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 21, 'num_sets': 20, 'density': 0.2, 'sets': [{'id': 1, 'elements': [1, 4, 6, 9, 21]}, {'id': 2, 'elements': [2, 9, 13, 16, 18]}, {'id': 3, 'elements': [3, 16, 19, 20]}, {'id': 4, 'elements': [1, 4, 9]}, {'id': 5, 'elements': [2, 5, 13, 16, 21]}, {'id': 6, 'elements': [6, 14]}, {'id': 7, 'elements': [13, 18]}, {'id': 8, 'elements': [1, 2, 4, 6, 12, 14, 17, 21]}, {'id': 9, 'elements': [7, 8, 10, 13, 18]}, {'id': 10, 'elements': [11, 18]}, {'id': 11, 'elements': [9, 14, 17]}, {'id': 12, 'elements': [5, 8, 21]}, {'id': 13, 'elements': [6, 9, 12, 14, 17, 20]}, {'id': 14, 'elements': [7, 10, 18]}, {'id': 15, 'elements': [2, 3, 5, 16]}, {'id': 16, 'elements': [9, 12, 17, 19, 20]}, {'id': 17, 'elements': [7, 8, 10, 11, 15, 18]}, {'id': 18, 'elements': [3, 16, 17, 19, 20]}, {'id': 19, 'elements': [3, 16, 17, 19]}, {'id': 20, 'elements': [6, 9, 13, 14]}], 'graph': {'num_nodes': 21, 'edges': [{'u': 6, 'v': 9}, {'u': 21, 'v': 2}, {'u': 21, 'v': 9}, {'u': 11, 'v': 8}, {'u': 12, 'v': 14}, {'u': 10, 'v': 7}, {'u': 10, 'v': 15}, {'u': 10, 'v': 18}, {'u': 19, 'v': 3}, {'u': 19, 'v': 16}, {'u': 19, 'v': 20}, {'u': 4, 'v': 1}, {'u': 2, 'v': 5}, {'u': 2, 'v': 13}, {'u': 5, 'v': 16}, {'u': 8, 'v': 18}, {'u': 20, 'v': 17}, {'u': 1, 'v': 9}, {'u': 17, 'v': 14}, {'u': 18, 'v': 13}, {'u': 9, 'v': 14}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0042.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0042.png'}","[8, 15, 17, 18, 20]",5.0,"{'num_elements': 21, 'num_sets': 20, 'sets': [{'id': 'S1', 'elements': [1, 4, 6, 9, 21]}, {'id': 'S2', 'elements': [2, 9, 13, 16, 18]}, {'id': 'S3', 'elements': [3, 16, 19, 20]}, {'id': 'S4', 'elements': [1, 4, 9]}, {'id': 'S5', 'elements': [2, 5, 13, 16, 21]}, {'id': 'S6', 'elements': [6, 14]}, {'id': 'S7', 'elements': [13, 18]}, {'id': 'S8', 'elements': [1, 2, 4, 6, 12, 14, 17, 21]}, {'id': 'S9', 'elements': [7, 8, 10, 13, 18]}, {'id': 'S10', 'elements': [11, 18]}, {'id': 'S11', 'elements': [9, 14, 17]}, {'id': 'S12', 'elements': [5, 8, 21]}, {'id': 'S13', 'elements': [6, 9, 12, 14, 17, 20]}, {'id': 'S14', 'elements': [7, 10, 18]}, {'id': 'S15', 'elements': [2, 3, 5, 16]}, {'id': 'S16', 'elements': [9, 12, 17, 19, 20]}, {'id': 'S17', 'elements': [7, 8, 10, 11, 15, 18]}, {'id': 'S18', 'elements': [3, 16, 17, 19, 20]}, {'id': 'S19', 'elements': [3, 16, 17, 19]}, {'id': 'S20', 'elements': [6, 9, 13, 14]}]}","['S8', 'S15', 'S17', 'S18', 'S20']",43,json,1 SCP,SCP,"Picture this — a campaign needs every audience slice to hear about it, and the goal is to assemble the tiniest group of influencers that together cover those slices. The choice is which influencers to invite on board; a better choice is the one that covers every slice but with fewer people. You judge plans by counting collaborators (the smaller the number, the nicer), and it’s crucial that every segment gets at least one touch and the same influencer isn’t double-counted. Concrete details will be shown below. - **total_audience_segments**: 19 - **total_influencers**: 19 | influencer_id | segments_reached | |---|---| | S1 | 0 9 10 | | S2 | 2 3 7 12 14 | | S3 | 1 2 3 6 18 | | S4 | 2 3 7 12 18 | | S5 | 0 4 11 | | S6 | 5 14 16 17 | | S7 | 2 8 13 14 15 16 17 | | S8 | 1 2 7 10 18 | | S9 | 6 8 9 13 16 | | S10 | 0 8 10 11 16 18 | | S11 | 0 4 8 9 10 11 15 18 | | S12 | 0 9 10 11 18 | | S13 | 1 2 3 12 | | S14 | 13 16 | | S15 | 1 2 6 7 16 | | S16 | 5 7 10 15 18 | | S17 | 8 9 14 16 | | S18 | 6 15 17 | | S19 | 0 2 3 7 9 10 11 15 18 | Also, when you hand me the final pick, please use this little JSON layout so everything is tidy and easy to read. { ""solution"": [""influencer_id"", ...] } Think of it like a simple form: put the IDs of the influencers you want into the solution list. The JSON above is just a sketch of the shape I expect, not the actual answer—replace the placeholder(s) with the real IDs from the instance. All identifiers must be used exactly as they appear in the instance input — no renaming and no new labels. Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 19, 'num_sets': 19, 'density': 0.25761772853185594, 'sets': [{'id': 1, 'elements': [1, 10, 11]}, {'id': 2, 'elements': [3, 4, 8, 13, 15]}, {'id': 3, 'elements': [2, 3, 4, 7, 19]}, {'id': 4, 'elements': [3, 4, 8, 13, 19]}, {'id': 5, 'elements': [1, 5, 12]}, {'id': 6, 'elements': [6, 15, 17, 18]}, {'id': 7, 'elements': [3, 9, 14, 15, 16, 17, 18]}, {'id': 8, 'elements': [2, 3, 8, 11, 19]}, {'id': 9, 'elements': [7, 9, 10, 14, 17]}, {'id': 10, 'elements': [1, 9, 11, 12, 17, 19]}, {'id': 11, 'elements': [1, 5, 9, 10, 11, 12, 16, 19]}, {'id': 12, 'elements': [1, 10, 11, 12, 19]}, {'id': 13, 'elements': [2, 3, 4, 13]}, {'id': 14, 'elements': [14, 17]}, {'id': 15, 'elements': [2, 3, 7, 8, 17]}, {'id': 16, 'elements': [6, 8, 11, 16, 19]}, {'id': 17, 'elements': [9, 10, 15, 17]}, {'id': 18, 'elements': [7, 16, 18]}, {'id': 19, 'elements': [1, 3, 4, 8, 10, 11, 12, 16, 19]}], 'graph': {'num_nodes': 19, 'edges': [{'u': 5, 'v': 12}, {'u': 19, 'v': 8}, {'u': 19, 'v': 11}, {'u': 19, 'v': 16}, {'u': 6, 'v': 7}, {'u': 6, 'v': 16}, {'u': 6, 'v': 18}, {'u': 7, 'v': 15}, {'u': 7, 'v': 17}, {'u': 13, 'v': 2}, {'u': 15, 'v': 3}, {'u': 10, 'v': 9}, {'u': 10, 'v': 11}, {'u': 11, 'v': 1}, {'u': 11, 'v': 12}, {'u': 12, 'v': 1}, {'u': 3, 'v': 2}, {'u': 3, 'v': 8}, {'u': 14, 'v': 17}, {'u': 8, 'v': 4}, {'u': 9, 'v': 17}, {'u': 4, 'v': 2}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0043.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0043.png'}","[7, 11, 13, 16, 18]",5.0,"{'num_elements': 19, 'num_sets': 19, 'sets': [{'id': 'S1', 'elements': [0, 9, 10]}, {'id': 'S2', 'elements': [2, 3, 7, 12, 14]}, {'id': 'S3', 'elements': [1, 2, 3, 6, 18]}, {'id': 'S4', 'elements': [2, 3, 7, 12, 18]}, {'id': 'S5', 'elements': [0, 4, 11]}, {'id': 'S6', 'elements': [5, 14, 16, 17]}, {'id': 'S7', 'elements': [2, 8, 13, 14, 15, 16, 17]}, {'id': 'S8', 'elements': [1, 2, 7, 10, 18]}, {'id': 'S9', 'elements': [6, 8, 9, 13, 16]}, {'id': 'S10', 'elements': [0, 8, 10, 11, 16, 18]}, {'id': 'S11', 'elements': [0, 4, 8, 9, 10, 11, 15, 18]}, {'id': 'S12', 'elements': [0, 9, 10, 11, 18]}, {'id': 'S13', 'elements': [1, 2, 3, 12]}, {'id': 'S14', 'elements': [13, 16]}, {'id': 'S15', 'elements': [1, 2, 6, 7, 16]}, {'id': 'S16', 'elements': [5, 7, 10, 15, 18]}, {'id': 'S17', 'elements': [8, 9, 14, 16]}, {'id': 'S18', 'elements': [6, 15, 17]}, {'id': 'S19', 'elements': [0, 2, 3, 7, 9, 10, 11, 15, 18]}]}","['S7', 'S11', 'S13', 'S16', 'S18']",44,markdown_table,0 SCP,SCP,"Recently the hospital asked the nursing lead to simplify supplies: choose as small a set of care kits as possible so every ward’s clinical items are included somewhere. The job is to decide which kits to stock — the quality of a plan is measured by how many kits it uses, so count them and aim low. Every ward must be covered by at least one of the selected kits, and avoid stocking redundant duplicates. The full lists and specifics are shown below. - **total_wards**: 19 - **total_kits**: 19 | kit_id | wards_covered | |---|---| | S1 | B D I O P | | S2 | A B Q S | | S3 | D I K | | S4 | A C D J K L O P Q | | S5 | L M R | | S6 | J N O | | S7 | E G M O | | S8 | E G H | | S9 | I K | | S10 | D J L N O R | | S11 | C D I K | | S12 | D E G J L O | | S13 | E G H N R | | S14 | J M N O R | | S15 | A D F G I L N O | | S16 | P Q | | S17 | A D Q | | S18 | E R | | S19 | B Q | Oh, and one more thing — when you send back your chosen kits, please put them into this simple JSON shape so it's easy to parse: { ""solution"": [""kit_id"", ...] } Just so it's clear: ""solution"" is the list of care kits you'll pick to cover every ward. Each item in that array should be the identifier for a kit (the placeholder ""kit_id"" above is just an example). This JSON is only a sketch of the shape I expect, not your final answer — replace the placeholder entries with the actual kit IDs from the instance. Please make sure to use the identifiers exactly as they appear in the instance input — no renaming and no extra labels. For example: ""Valid identifiers look like plain numbers such as ""1"" or ""23"", single capital letters like ""A"" or ""B"", or a capital letter followed by digits like ""A1"" or ""X7"".""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 19, 'num_sets': 19, 'density': 0.2188365650969529, 'sets': [{'id': 1, 'elements': [2, 4, 9, 15, 16]}, {'id': 2, 'elements': [1, 2, 17, 19]}, {'id': 3, 'elements': [4, 9, 11]}, {'id': 4, 'elements': [1, 3, 4, 10, 11, 12, 15, 16, 17]}, {'id': 5, 'elements': [12, 13, 18]}, {'id': 6, 'elements': [10, 14, 15]}, {'id': 7, 'elements': [5, 7, 13, 15]}, {'id': 8, 'elements': [5, 7, 8]}, {'id': 9, 'elements': [9, 11]}, {'id': 10, 'elements': [4, 10, 12, 14, 15, 18]}, {'id': 11, 'elements': [3, 4, 9, 11]}, {'id': 12, 'elements': [4, 5, 7, 10, 12, 15]}, {'id': 13, 'elements': [5, 7, 8, 14, 18]}, {'id': 14, 'elements': [10, 13, 14, 15, 18]}, {'id': 15, 'elements': [1, 4, 6, 7, 9, 12, 14, 15]}, {'id': 16, 'elements': [16, 17]}, {'id': 17, 'elements': [1, 4, 17]}, {'id': 18, 'elements': [5, 18]}, {'id': 19, 'elements': [2, 17]}], 'graph': {'num_nodes': 19, 'edges': [{'u': 3, 'v': 9}, {'u': 11, 'v': 9}, {'u': 10, 'v': 6}, {'u': 10, 'v': 14}, {'u': 10, 'v': 15}, {'u': 14, 'v': 18}, {'u': 16, 'v': 1}, {'u': 5, 'v': 7}, {'u': 5, 'v': 8}, {'u': 5, 'v': 13}, {'u': 15, 'v': 4}, {'u': 15, 'v': 12}, {'u': 12, 'v': 7}, {'u': 9, 'v': 4}, {'u': 2, 'v': 17}, {'u': 18, 'v': 13}, {'u': 19, 'v': 17}, {'u': 1, 'v': 4}, {'u': 1, 'v': 17}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0044.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0044.png'}","[2, 4, 13, 14, 15]",5.0,"{'num_elements': 19, 'num_sets': 19, 'sets': [{'id': 'S1', 'elements': ['B', 'D', 'I', 'O', 'P']}, {'id': 'S2', 'elements': ['A', 'B', 'Q', 'S']}, {'id': 'S3', 'elements': ['D', 'I', 'K']}, {'id': 'S4', 'elements': ['A', 'C', 'D', 'J', 'K', 'L', 'O', 'P', 'Q']}, {'id': 'S5', 'elements': ['L', 'M', 'R']}, {'id': 'S6', 'elements': ['J', 'N', 'O']}, {'id': 'S7', 'elements': ['E', 'G', 'M', 'O']}, {'id': 'S8', 'elements': ['E', 'G', 'H']}, {'id': 'S9', 'elements': ['I', 'K']}, {'id': 'S10', 'elements': ['D', 'J', 'L', 'N', 'O', 'R']}, {'id': 'S11', 'elements': ['C', 'D', 'I', 'K']}, {'id': 'S12', 'elements': ['D', 'E', 'G', 'J', 'L', 'O']}, {'id': 'S13', 'elements': ['E', 'G', 'H', 'N', 'R']}, {'id': 'S14', 'elements': ['J', 'M', 'N', 'O', 'R']}, {'id': 'S15', 'elements': ['A', 'D', 'F', 'G', 'I', 'L', 'N', 'O']}, {'id': 'S16', 'elements': ['P', 'Q']}, {'id': 'S17', 'elements': ['A', 'D', 'Q']}, {'id': 'S18', 'elements': ['E', 'R']}, {'id': 'S19', 'elements': ['B', 'Q']}]}","['S2', 'S4', 'S13', 'S14', 'S15']",45,markdown_table,names SCP,SCP,"Out at the depot the plan is to switch on a small set of chargers so that every vehicle type can plug in at one of the switched-on spots. The better plan is the one that covers all vehicle types while turning on fewer spots — you can measure that by counting enabled locations. Nothing can be left uncovered, and enabling a location twice doesn’t change the tally. The specific details are given below. { ""total_vehicle_types"": 22, ""available_locations_count"": 20, ""sets"": [ { ""location_id"": ""S1"", ""supported_vehicle_types"": [ ""C"", ""J"", ""N"", ""R"", ""T"", ""U"" ] }, { ""location_id"": ""S2"", ""supported_vehicle_types"": [ ""B"", ""C"", ""D"", ""O"", ""T"" ] }, { ""location_id"": ""S3"", ""supported_vehicle_types"": [ ""A"", ""B"", ""C"", ""G"", ""J"", ""N"", ""R"", ""S"", ""T"" ] }, { ""location_id"": ""S4"", ""supported_vehicle_types"": [ ""D"", ""O"", ""T"" ] }, { ""location_id"": ""S5"", ""supported_vehicle_types"": [ ""E"", ""I"", ""L"" ] }, { ""location_id"": ""S6"", ""supported_vehicle_types"": [ ""B"", ""F"", ""O"", ""T"" ] }, { ""location_id"": ""S7"", ""supported_vehicle_types"": [ ""B"", ""C"", ""G"", ""L"", ""O"", ""R"", ""T"" ] }, { ""location_id"": ""S8"", ""supported_vehicle_types"": [ ""F"", ""H"", ""P"" ] }, { ""location_id"": ""S9"", ""supported_vehicle_types"": [ ""E"", ""I"", ""L"", ""Q"" ] }, { ""location_id"": ""S10"", ""supported_vehicle_types"": [ ""A"", ""C"", ""J"", ""N"", ""U"" ] }, { ""location_id"": ""S11"", ""supported_vehicle_types"": [ ""E"", ""G"", ""I"", ""L"", ""S"" ] }, { ""location_id"": ""S12"", ""supported_vehicle_types"": [ ""E"", ""M"" ] }, { ""location_id"": ""S13"", ""supported_vehicle_types"": [ ""C"", ""J"" ] }, { ""location_id"": ""S14"", ""supported_vehicle_types"": [ ""F"", ""O"", ""T"" ] }, { ""location_id"": ""S15"", ""supported_vehicle_types"": [ ""H"", ""P"" ] }, { ""location_id"": ""S16"", ""supported_vehicle_types"": [ ""E"", ""G"", ""I"", ""L"", ""Q"", ""R"", ""V"" ] }, { ""location_id"": ""S17"", ""supported_vehicle_types"": [ ""A"", ""C"", ""G"", ""K"", ""Q"", ""R"", ""T"" ] }, { ""location_id"": ""S18"", ""supported_vehicle_types"": [ ""C"", ""K"", ""L"" ] }, { ""location_id"": ""S19"", ""supported_vehicle_types"": [ ""A"", ""B"", ""C"", ""D"", ""F"", ""G"", ""L"", ""R"", ""T"" ] }, { ""location_id"": ""S20"", ""supported_vehicle_types"": [ ""I"", ""Q"" ] } ] } When you're ready, just hand me the plan in a tiny JSON snippet like this — it's an easy way to keep the answer structured and readable: { ""solution"": [""spot_id"", ...] } This says: ""solution"" should be an array listing the spots you'll enable (the placeholder spot_id just stands in for whatever spot identifiers your instance uses). It's just the shape I expect, not the actual answer — fill in the real IDs from the problem when you submit the solution. All identifiers must be used exactly as they appear in the instance input — no renaming and no new labels. - Valid identifiers look like plain numbers such as ""1"" or ""23"", single capital letters like ""A"" or ""B"", or a capital letter followed by digits like ""A1"" or ""X7"".","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 22, 'num_sets': 20, 'density': 0.20681818181818182, 'sets': [{'id': 1, 'elements': [3, 10, 14, 18, 20, 21]}, {'id': 2, 'elements': [2, 3, 4, 15, 20]}, {'id': 3, 'elements': [1, 2, 3, 7, 10, 14, 18, 19, 20]}, {'id': 4, 'elements': [4, 15, 20]}, {'id': 5, 'elements': [5, 9, 12]}, {'id': 6, 'elements': [2, 6, 15, 20]}, {'id': 7, 'elements': [2, 3, 7, 12, 15, 18, 20]}, {'id': 8, 'elements': [6, 8, 16]}, {'id': 9, 'elements': [5, 9, 12, 17]}, {'id': 10, 'elements': [1, 3, 10, 14, 21]}, {'id': 11, 'elements': [5, 7, 9, 12, 19]}, {'id': 12, 'elements': [5, 13]}, {'id': 13, 'elements': [3, 10]}, {'id': 14, 'elements': [6, 15, 20]}, {'id': 15, 'elements': [8, 16]}, {'id': 16, 'elements': [5, 7, 9, 12, 17, 18, 22]}, {'id': 17, 'elements': [1, 3, 7, 11, 17, 18, 20]}, {'id': 18, 'elements': [3, 11, 12]}, {'id': 19, 'elements': [1, 2, 3, 4, 6, 7, 12, 18, 20]}, {'id': 20, 'elements': [9, 17]}], 'graph': {'num_nodes': 22, 'edges': [{'u': 20, 'v': 2}, {'u': 20, 'v': 3}, {'u': 20, 'v': 7}, {'u': 7, 'v': 4}, {'u': 7, 'v': 12}, {'u': 8, 'v': 6}, {'u': 12, 'v': 17}, {'u': 12, 'v': 18}, {'u': 18, 'v': 3}, {'u': 18, 'v': 19}, {'u': 14, 'v': 1}, {'u': 13, 'v': 5}, {'u': 11, 'v': 19}, {'u': 9, 'v': 17}, {'u': 9, 'v': 22}, {'u': 5, 'v': 17}, {'u': 6, 'v': 2}, {'u': 6, 'v': 16}, {'u': 10, 'v': 1}, {'u': 10, 'v': 21}, {'u': 1, 'v': 3}, {'u': 4, 'v': 15}, {'u': 2, 'v': 15}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0045.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0045.png'}","[2, 3, 8, 10, 12, 16, 17]",7.0,"{'num_elements': 22, 'num_sets': 20, 'sets': [{'id': 'S1', 'elements': ['C', 'J', 'N', 'R', 'T', 'U']}, {'id': 'S2', 'elements': ['B', 'C', 'D', 'O', 'T']}, {'id': 'S3', 'elements': ['A', 'B', 'C', 'G', 'J', 'N', 'R', 'S', 'T']}, {'id': 'S4', 'elements': ['D', 'O', 'T']}, {'id': 'S5', 'elements': ['E', 'I', 'L']}, {'id': 'S6', 'elements': ['B', 'F', 'O', 'T']}, {'id': 'S7', 'elements': ['B', 'C', 'G', 'L', 'O', 'R', 'T']}, {'id': 'S8', 'elements': ['F', 'H', 'P']}, {'id': 'S9', 'elements': ['E', 'I', 'L', 'Q']}, {'id': 'S10', 'elements': ['A', 'C', 'J', 'N', 'U']}, {'id': 'S11', 'elements': ['E', 'G', 'I', 'L', 'S']}, {'id': 'S12', 'elements': ['E', 'M']}, {'id': 'S13', 'elements': ['C', 'J']}, {'id': 'S14', 'elements': ['F', 'O', 'T']}, {'id': 'S15', 'elements': ['H', 'P']}, {'id': 'S16', 'elements': ['E', 'G', 'I', 'L', 'Q', 'R', 'V']}, {'id': 'S17', 'elements': ['A', 'C', 'G', 'K', 'Q', 'R', 'T']}, {'id': 'S18', 'elements': ['C', 'K', 'L']}, {'id': 'S19', 'elements': ['A', 'B', 'C', 'D', 'F', 'G', 'L', 'R', 'T']}, {'id': 'S20', 'elements': ['I', 'Q']}]}","['S2', 'S3', 'S8', 'S10', 'S12', 'S16', 'S17']",46,json,names SCP,SCP,"Many people on the library staff are helping prepare reading kits for partners, and the challenge is to combine books into as few kits as possible while still covering every important genre. The way to know if the plan is good is to count how many kits will be sent—fewer kits means a better pick of combinations. It’s required that each important genre appears in at least one kit; duplicating genres across kits is allowed but discouraged because it inflates the kit total. The exact lists of genres and books can be found below. { ""total_genres"": 21, ""total_candidate_bundles"": 19, ""sets"": [ { ""bundle_id"": ""S1"", ""bundle_genre_ids"": [ 1, 6, 8, 10 ] }, { ""bundle_id"": ""S2"", ""bundle_genre_ids"": [ 8, 9, 11, 13, 18 ] }, { ""bundle_id"": ""S3"", ""bundle_genre_ids"": [ 11, 13 ] }, { ""bundle_id"": ""S4"", ""bundle_genre_ids"": [ 11, 13, 16, 19 ] }, { ""bundle_id"": ""S5"", ""bundle_genre_ids"": [ 2, 5, 13, 20 ] }, { ""bundle_id"": ""S6"", ""bundle_genre_ids"": [ 1, 6, 10, 13, 17 ] }, { ""bundle_id"": ""S7"", ""bundle_genre_ids"": [ 3, 7, 21 ] }, { ""bundle_id"": ""S8"", ""bundle_genre_ids"": [ 1, 2, 8, 17, 18 ] }, { ""bundle_id"": ""S9"", ""bundle_genre_ids"": [ 2, 12, 14 ] }, { ""bundle_id"": ""S10"", ""bundle_genre_ids"": [ 1, 6, 10 ] }, { ""bundle_id"": ""S11"", ""bundle_genre_ids"": [ 2, 11, 15, 18, 21 ] }, { ""bundle_id"": ""S12"", ""bundle_genre_ids"": [ 2, 3, 4, 5, 8, 11, 20 ] }, { ""bundle_id"": ""S13"", ""bundle_genre_ids"": [ 3, 11 ] }, { ""bundle_id"": ""S14"", ""bundle_genre_ids"": [ 4, 16, 18, 19 ] }, { ""bundle_id"": ""S15"", ""bundle_genre_ids"": [ 1, 6, 17 ] }, { ""bundle_id"": ""S16"", ""bundle_genre_ids"": [ 2, 3, 4, 8, 11, 19 ] }, { ""bundle_id"": ""S17"", ""bundle_genre_ids"": [ 4, 19 ] }, { ""bundle_id"": ""S18"", ""bundle_genre_ids"": [ 5, 12, 13 ] }, { ""bundle_id"": ""S19"", ""bundle_genre_ids"": [ 3, 7, 11, 15 ] } ] } Also, when you're ready to tell me which kits to send, toss them into this little JSON shape so it's easy to parse: { ""solution"": [""kit_id"", ...] } Think of ""solution"" as just a list of the kit identifiers you picked — those are the actual kit labels from the instance (the placeholders here like ""kit_id"" just show the shape). This is just a sketch of the format I need, not the real answer. Quick reminder: use the identifiers exactly as they appear in the instance input — don't rename them or invent new labels. For example: - Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 21, 'num_sets': 19, 'density': 0.18546365914786966, 'sets': [{'id': 1, 'elements': [1, 6, 8, 10]}, {'id': 2, 'elements': [8, 9, 11, 13, 18]}, {'id': 3, 'elements': [11, 13]}, {'id': 4, 'elements': [11, 13, 16, 19]}, {'id': 5, 'elements': [2, 5, 13, 20]}, {'id': 6, 'elements': [1, 6, 10, 13, 17]}, {'id': 7, 'elements': [3, 7, 21]}, {'id': 8, 'elements': [1, 2, 8, 17, 18]}, {'id': 9, 'elements': [2, 12, 14]}, {'id': 10, 'elements': [1, 6, 10]}, {'id': 11, 'elements': [2, 11, 15, 18, 21]}, {'id': 12, 'elements': [2, 3, 4, 5, 8, 11, 20]}, {'id': 13, 'elements': [3, 11]}, {'id': 14, 'elements': [4, 16, 18, 19]}, {'id': 15, 'elements': [1, 6, 17]}, {'id': 16, 'elements': [2, 3, 4, 8, 11, 19]}, {'id': 17, 'elements': [4, 19]}, {'id': 18, 'elements': [5, 12, 13]}, {'id': 19, 'elements': [3, 7, 11, 15]}], 'graph': {'num_nodes': 21, 'edges': [{'u': 9, 'v': 14}, {'u': 9, 'v': 20}, {'u': 16, 'v': 4}, {'u': 3, 'v': 11}, {'u': 3, 'v': 15}, {'u': 3, 'v': 21}, {'u': 2, 'v': 5}, {'u': 2, 'v': 13}, {'u': 2, 'v': 20}, {'u': 4, 'v': 18}, {'u': 4, 'v': 19}, {'u': 12, 'v': 20}, {'u': 21, 'v': 7}, {'u': 1, 'v': 6}, {'u': 1, 'v': 10}, {'u': 6, 'v': 8}, {'u': 6, 'v': 17}, {'u': 11, 'v': 13}, {'u': 11, 'v': 18}, {'u': 18, 'v': 13}, {'u': 8, 'v': 13}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0046.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0046.png'}","[2, 6, 9, 11, 12, 14, 19]",7.0,"{'num_elements': 21, 'num_sets': 19, 'sets': [{'id': 'S1', 'elements': [1, 6, 8, 10]}, {'id': 'S2', 'elements': [8, 9, 11, 13, 18]}, {'id': 'S3', 'elements': [11, 13]}, {'id': 'S4', 'elements': [11, 13, 16, 19]}, {'id': 'S5', 'elements': [2, 5, 13, 20]}, {'id': 'S6', 'elements': [1, 6, 10, 13, 17]}, {'id': 'S7', 'elements': [3, 7, 21]}, {'id': 'S8', 'elements': [1, 2, 8, 17, 18]}, {'id': 'S9', 'elements': [2, 12, 14]}, {'id': 'S10', 'elements': [1, 6, 10]}, {'id': 'S11', 'elements': [2, 11, 15, 18, 21]}, {'id': 'S12', 'elements': [2, 3, 4, 5, 8, 11, 20]}, {'id': 'S13', 'elements': [3, 11]}, {'id': 'S14', 'elements': [4, 16, 18, 19]}, {'id': 'S15', 'elements': [1, 6, 17]}, {'id': 'S16', 'elements': [2, 3, 4, 8, 11, 19]}, {'id': 'S17', 'elements': [4, 19]}, {'id': 'S18', 'elements': [5, 12, 13]}, {'id': 'S19', 'elements': [3, 7, 11, 15]}]}","['S2', 'S6', 'S9', 'S11', 'S12', 'S14', 'S19']",47,json,1 SCP,SCP,"There’s a new shift in the control room and the main concern is arranging camera clusters around the building so no corner goes dark. The decision is simply which clusters to switch on; a plan is better if it gets every blind spot under surveillance while using the least number of clusters — just tally the clusters chosen to see which plan is smaller, and make sure nothing gets missed or redundantly watched. The specific cluster choices and coverage map appear below. # total_blind_spots=23 # total_clusters=22 cluster_id,covered_blind_spots S1,B G K Q S2,C E J M P S T U V S3,D L S4,C D E L M N S5,F M S6,G K Q S7,H I T W S8,H I R T U V W S9,C F J M N P S10,B K T S11,D I L O U V S12,C E J M S S13,C D E J S V S14,L R U S15,C J Q T W S16,B G Q V W S17,D I L O R S18,A F J M N P S S19,A I K P Q S T U V W S20,C D I L T U V W S21,C I L Q S V W S22,O Q U Oh, and when you send the final plan, just use this simple JSON layout so it's easy to parse: { ""solution"": [""cluster_id"", ...] } This shows that ""solution"" should be a list of the cluster identifiers you want to switch on — basically the set of camera clusters that cover every blind spot. Treat it like a little checklist: put each cluster ID in the array. The block above is just the sketch of the shape I expect, not the actual answer. Please make sure every identifier you use matches the instance input exactly — no renaming or inventing new labels. - for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 23, 'num_sets': 22, 'density': 0.22924901185770752, 'sets': [{'id': 1, 'elements': [2, 7, 11, 17]}, {'id': 2, 'elements': [3, 5, 10, 13, 16, 19, 20, 21, 22]}, {'id': 3, 'elements': [4, 12]}, {'id': 4, 'elements': [3, 4, 5, 12, 13, 14]}, {'id': 5, 'elements': [6, 13]}, {'id': 6, 'elements': [7, 11, 17]}, {'id': 7, 'elements': [8, 9, 20, 23]}, {'id': 8, 'elements': [8, 9, 18, 20, 21, 22, 23]}, {'id': 9, 'elements': [3, 6, 10, 13, 14, 16]}, {'id': 10, 'elements': [2, 11, 20]}, {'id': 11, 'elements': [4, 9, 12, 15, 21, 22]}, {'id': 12, 'elements': [3, 5, 10, 13, 19]}, {'id': 13, 'elements': [3, 4, 5, 10, 19, 22]}, {'id': 14, 'elements': [12, 18, 21]}, {'id': 15, 'elements': [3, 10, 17, 20, 23]}, {'id': 16, 'elements': [2, 7, 17, 22, 23]}, {'id': 17, 'elements': [4, 9, 12, 15, 18]}, {'id': 18, 'elements': [1, 6, 10, 13, 14, 16, 19]}, {'id': 19, 'elements': [1, 9, 11, 16, 17, 19, 20, 21, 22, 23]}, {'id': 20, 'elements': [3, 4, 9, 12, 20, 21, 22, 23]}, {'id': 21, 'elements': [3, 9, 12, 17, 19, 22, 23]}, {'id': 22, 'elements': [15, 17, 21]}], 'graph': {'num_nodes': 23, 'edges': [{'u': 3, 'v': 14}, {'u': 3, 'v': 19}, {'u': 3, 'v': 22}, {'u': 21, 'v': 9}, {'u': 21, 'v': 12}, {'u': 21, 'v': 22}, {'u': 4, 'v': 5}, {'u': 4, 'v': 12}, {'u': 14, 'v': 5}, {'u': 14, 'v': 13}, {'u': 1, 'v': 16}, {'u': 2, 'v': 11}, {'u': 12, 'v': 18}, {'u': 8, 'v': 23}, {'u': 10, 'v': 6}, {'u': 10, 'v': 13}, {'u': 10, 'v': 19}, {'u': 11, 'v': 7}, {'u': 11, 'v': 17}, {'u': 19, 'v': 16}, {'u': 9, 'v': 15}, {'u': 9, 'v': 23}, {'u': 22, 'v': 20}, {'u': 23, 'v': 20}, {'u': 20, 'v': 16}, {'u': 20, 'v': 17}, {'u': 18, 'v': 15}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0047.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0047.png'}","[1, 4, 8, 17, 18]",5.0,"{'num_elements': 23, 'num_sets': 22, 'sets': [{'id': 'S1', 'elements': ['B', 'G', 'K', 'Q']}, {'id': 'S2', 'elements': ['C', 'E', 'J', 'M', 'P', 'S', 'T', 'U', 'V']}, {'id': 'S3', 'elements': ['D', 'L']}, {'id': 'S4', 'elements': ['C', 'D', 'E', 'L', 'M', 'N']}, {'id': 'S5', 'elements': ['F', 'M']}, {'id': 'S6', 'elements': ['G', 'K', 'Q']}, {'id': 'S7', 'elements': ['H', 'I', 'T', 'W']}, {'id': 'S8', 'elements': ['H', 'I', 'R', 'T', 'U', 'V', 'W']}, {'id': 'S9', 'elements': ['C', 'F', 'J', 'M', 'N', 'P']}, {'id': 'S10', 'elements': ['B', 'K', 'T']}, {'id': 'S11', 'elements': ['D', 'I', 'L', 'O', 'U', 'V']}, {'id': 'S12', 'elements': ['C', 'E', 'J', 'M', 'S']}, {'id': 'S13', 'elements': ['C', 'D', 'E', 'J', 'S', 'V']}, {'id': 'S14', 'elements': ['L', 'R', 'U']}, {'id': 'S15', 'elements': ['C', 'J', 'Q', 'T', 'W']}, {'id': 'S16', 'elements': ['B', 'G', 'Q', 'V', 'W']}, {'id': 'S17', 'elements': ['D', 'I', 'L', 'O', 'R']}, {'id': 'S18', 'elements': ['A', 'F', 'J', 'M', 'N', 'P', 'S']}, {'id': 'S19', 'elements': ['A', 'I', 'K', 'P', 'Q', 'S', 'T', 'U', 'V', 'W']}, {'id': 'S20', 'elements': ['C', 'D', 'I', 'L', 'T', 'U', 'V', 'W']}, {'id': 'S21', 'elements': ['C', 'I', 'L', 'Q', 'S', 'V', 'W']}, {'id': 'S22', 'elements': ['O', 'Q', 'U']}]}","['S1', 'S4', 'S8', 'S17', 'S18']",48,csv,names SCP,SCP,"I’m the QA lead juggling a long list of product features and a stack of test suites; the job is to pick the fewest test suites possible so every feature gets at least one hit. The choice is which suites to run, and a better choice is simply the one that uses fewer runs while still touching every feature — count the number of suites selected to see how good a plan is. Nothing can be left untested, and while overlapping coverage can happen, rerunning suites that only duplicate work is wasteful. The concrete details of the features and suites are shown below. # total_features=21 # total_test_suites=21 suite_id,covered_features S1,A D K R S S2,C G N Q S3,B H Q S4,A D G K S5,B C F O Q U S6,E F J N O Q S7,B I J N O S8,C H M Q U S9,D G I P S10,F G J O R S S11,D K S12,S T S13,C H M U S14,B G O P S15,G J O S S16,B D G I K N P S17,B C E F Q U S18,A K R S S19,A J L N S S20,J L R S T S21,E F H M Oh, and when you give the final plan, please use this tiny JSON shape so it's easy to read and plug into the tracker: { ""solution"": [""suite_id"", ...] } Pretty simple: ""solution"" is the list of test suites you choose to run. The placeholder ""suite_id"" just shows where each suite identifier goes — replace those with the actual suite names from the instance. This block is only a sketch of the expected shape, not the actual answer. Please be sure to use the identifiers exactly as they appear in the instance input — no renaming and no new labels. Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 21, 'num_sets': 21, 'density': 0.21541950113378686, 'sets': [{'id': 1, 'elements': [1, 4, 11, 18, 19]}, {'id': 2, 'elements': [3, 7, 14, 17]}, {'id': 3, 'elements': [2, 8, 17]}, {'id': 4, 'elements': [1, 4, 7, 11]}, {'id': 5, 'elements': [2, 3, 6, 15, 17, 21]}, {'id': 6, 'elements': [5, 6, 10, 14, 15, 17]}, {'id': 7, 'elements': [2, 9, 10, 14, 15]}, {'id': 8, 'elements': [3, 8, 13, 17, 21]}, {'id': 9, 'elements': [4, 7, 9, 16]}, {'id': 10, 'elements': [6, 7, 10, 15, 18, 19]}, {'id': 11, 'elements': [4, 11]}, {'id': 12, 'elements': [19, 20]}, {'id': 13, 'elements': [3, 8, 13, 21]}, {'id': 14, 'elements': [2, 7, 15, 16]}, {'id': 15, 'elements': [7, 10, 15, 19]}, {'id': 16, 'elements': [2, 4, 7, 9, 11, 14, 16]}, {'id': 17, 'elements': [2, 3, 5, 6, 17, 21]}, {'id': 18, 'elements': [1, 11, 18, 19]}, {'id': 19, 'elements': [1, 10, 12, 14, 19]}, {'id': 20, 'elements': [10, 12, 18, 19, 20]}, {'id': 21, 'elements': [5, 6, 8, 13]}], 'graph': {'num_nodes': 21, 'edges': [{'u': 3, 'v': 8}, {'u': 3, 'v': 17}, {'u': 21, 'v': 5}, {'u': 21, 'v': 13}, {'u': 19, 'v': 10}, {'u': 19, 'v': 18}, {'u': 19, 'v': 20}, {'u': 12, 'v': 20}, {'u': 17, 'v': 2}, {'u': 17, 'v': 5}, {'u': 7, 'v': 2}, {'u': 7, 'v': 14}, {'u': 7, 'v': 16}, {'u': 8, 'v': 13}, {'u': 9, 'v': 16}, {'u': 1, 'v': 11}, {'u': 1, 'v': 18}, {'u': 4, 'v': 11}, {'u': 4, 'v': 16}, {'u': 5, 'v': 6}, {'u': 15, 'v': 6}, {'u': 15, 'v': 10}, {'u': 15, 'v': 14}, {'u': 14, 'v': 10}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0048.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0048.png'}","[1, 5, 16, 20, 21]",5.0,"{'num_elements': 21, 'num_sets': 21, 'sets': [{'id': 'S1', 'elements': ['A', 'D', 'K', 'R', 'S']}, {'id': 'S2', 'elements': ['C', 'G', 'N', 'Q']}, {'id': 'S3', 'elements': ['B', 'H', 'Q']}, {'id': 'S4', 'elements': ['A', 'D', 'G', 'K']}, {'id': 'S5', 'elements': ['B', 'C', 'F', 'O', 'Q', 'U']}, {'id': 'S6', 'elements': ['E', 'F', 'J', 'N', 'O', 'Q']}, {'id': 'S7', 'elements': ['B', 'I', 'J', 'N', 'O']}, {'id': 'S8', 'elements': ['C', 'H', 'M', 'Q', 'U']}, {'id': 'S9', 'elements': ['D', 'G', 'I', 'P']}, {'id': 'S10', 'elements': ['F', 'G', 'J', 'O', 'R', 'S']}, {'id': 'S11', 'elements': ['D', 'K']}, {'id': 'S12', 'elements': ['S', 'T']}, {'id': 'S13', 'elements': ['C', 'H', 'M', 'U']}, {'id': 'S14', 'elements': ['B', 'G', 'O', 'P']}, {'id': 'S15', 'elements': ['G', 'J', 'O', 'S']}, {'id': 'S16', 'elements': ['B', 'D', 'G', 'I', 'K', 'N', 'P']}, {'id': 'S17', 'elements': ['B', 'C', 'E', 'F', 'Q', 'U']}, {'id': 'S18', 'elements': ['A', 'K', 'R', 'S']}, {'id': 'S19', 'elements': ['A', 'J', 'L', 'N', 'S']}, {'id': 'S20', 'elements': ['J', 'L', 'R', 'S', 'T']}, {'id': 'S21', 'elements': ['E', 'F', 'H', 'M']}]}","['S1', 'S5', 'S16', 'S20', 'S21']",49,csv,names SCP,SCP,"We’ve got a shoot with a long list of scene types and a bunch of possible venues, and now it’s time to decide which venues to lock in. The goal is to cover all the scene needs using as few venues as possible — compare options by counting how many venues are chosen, with smaller counts favored — and make sure every required setting is present in at least one booked place; skipping any required setting isn’t allowed and overlapping locations that don’t add new settings just cost extra. The concrete details of scenes and candidate locations appear below. - **num_scene_types**: 19 - **num_candidate_venues**: 18 | venue_id | available_scene_types | |---|---| | S1 | B F G O P Q R S | | S2 | A B F H I Q | | S3 | C K N | | S4 | D M O R | | S5 | E J L N S | | S6 | A B I Q | | S7 | G I N S | | S8 | A B F G H I O | | S9 | E J L S | | S10 | C K L N | | S11 | C E K L N S | | S12 | D O R | | S13 | E J | | S14 | A D G I M O P R | | S15 | A D M O | | S16 | A B F | | S17 | D M O P R | | S18 | A G J L N | Also, when you give your final picks, toss them into a tiny JSON snippet like this so everything’s clear and machine-friendly: { ""solution"": [""venue_id"", ...] } ""solution"" is just the list of venue identifiers you plan to book — one identifier per chosen venue. Think of it like filling out a short form: put the exact venue IDs in that array. This is only a template of the shape I want, not the actual answer. All identifiers must be used exactly as they appear in the instance input — no renaming and no new labels. For example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 19, 'num_sets': 18, 'density': 0.24853801169590642, 'sets': [{'id': 1, 'elements': [2, 6, 7, 15, 16, 17, 18, 19]}, {'id': 2, 'elements': [1, 2, 6, 8, 9, 17]}, {'id': 3, 'elements': [3, 11, 14]}, {'id': 4, 'elements': [4, 13, 15, 18]}, {'id': 5, 'elements': [5, 10, 12, 14, 19]}, {'id': 6, 'elements': [1, 2, 9, 17]}, {'id': 7, 'elements': [7, 9, 14, 19]}, {'id': 8, 'elements': [1, 2, 6, 7, 8, 9, 15]}, {'id': 9, 'elements': [5, 10, 12, 19]}, {'id': 10, 'elements': [3, 11, 12, 14]}, {'id': 11, 'elements': [3, 5, 11, 12, 14, 19]}, {'id': 12, 'elements': [4, 15, 18]}, {'id': 13, 'elements': [5, 10]}, {'id': 14, 'elements': [1, 4, 7, 9, 13, 15, 16, 18]}, {'id': 15, 'elements': [1, 4, 13, 15]}, {'id': 16, 'elements': [1, 2, 6]}, {'id': 17, 'elements': [4, 13, 15, 16, 18]}, {'id': 18, 'elements': [1, 7, 10, 12, 14]}], 'graph': {'num_nodes': 19, 'edges': [{'u': 19, 'v': 7}, {'u': 19, 'v': 14}, {'u': 14, 'v': 5}, {'u': 14, 'v': 10}, {'u': 14, 'v': 12}, {'u': 13, 'v': 4}, {'u': 13, 'v': 16}, {'u': 1, 'v': 7}, {'u': 1, 'v': 9}, {'u': 1, 'v': 15}, {'u': 11, 'v': 12}, {'u': 6, 'v': 9}, {'u': 16, 'v': 15}, {'u': 18, 'v': 4}, {'u': 18, 'v': 15}, {'u': 17, 'v': 9}, {'u': 8, 'v': 2}, {'u': 9, 'v': 2}, {'u': 3, 'v': 12}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0049.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0049.png'}","[2, 11, 14, 18]",4.0,"{'num_elements': 19, 'num_sets': 18, 'sets': [{'id': 'S1', 'elements': ['B', 'F', 'G', 'O', 'P', 'Q', 'R', 'S']}, {'id': 'S2', 'elements': ['A', 'B', 'F', 'H', 'I', 'Q']}, {'id': 'S3', 'elements': ['C', 'K', 'N']}, {'id': 'S4', 'elements': ['D', 'M', 'O', 'R']}, {'id': 'S5', 'elements': ['E', 'J', 'L', 'N', 'S']}, {'id': 'S6', 'elements': ['A', 'B', 'I', 'Q']}, {'id': 'S7', 'elements': ['G', 'I', 'N', 'S']}, {'id': 'S8', 'elements': ['A', 'B', 'F', 'G', 'H', 'I', 'O']}, {'id': 'S9', 'elements': ['E', 'J', 'L', 'S']}, {'id': 'S10', 'elements': ['C', 'K', 'L', 'N']}, {'id': 'S11', 'elements': ['C', 'E', 'K', 'L', 'N', 'S']}, {'id': 'S12', 'elements': ['D', 'O', 'R']}, {'id': 'S13', 'elements': ['E', 'J']}, {'id': 'S14', 'elements': ['A', 'D', 'G', 'I', 'M', 'O', 'P', 'R']}, {'id': 'S15', 'elements': ['A', 'D', 'M', 'O']}, {'id': 'S16', 'elements': ['A', 'B', 'F']}, {'id': 'S17', 'elements': ['D', 'M', 'O', 'P', 'R']}, {'id': 'S18', 'elements': ['A', 'G', 'J', 'L', 'N']}]}","['S2', 'S11', 'S14', 'S18']",50,markdown_table,names