File size: 205,739 Bytes
aff484f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 | 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.
There are 18 rooms and 16 candidate detector installations listed below:
Candidate S1 covers rooms 16 17.
Candidate S2 covers rooms 1 4 7 8 11.
Candidate S3 covers rooms 2 14 15.
Candidate S4 covers rooms 2 3 5 7 11 14.
Candidate S5 covers rooms 1 4 7 9 11.
Candidate S6 covers rooms 3 5 6 7 11.
Candidate S7 covers rooms 0 5 6 13 16.
Candidate S8 covers rooms 1 3 4 5 7 8 11.
Candidate S9 covers rooms 7 8.
Candidate S10 covers rooms 7 9.
Candidate S11 covers rooms 10 14.
Candidate S12 covers rooms 1 2 4 5 15 16.
Candidate S13 covers rooms 5 6 12 16.
Candidate S14 covers rooms 2 3.
Candidate S15 covers rooms 3 11 15.
Candidate S16 covers rooms 6 13 17.
Aim to cover all 18 rooms using as few of the 16 options as possible.
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': 18, 'num_sets': 16, 'density': 0.2152777777777778, 'sets': [{'id': 1, 'elements': [17, 18]}, {'id': 2, 'elements': [2, 5, 8, 9, 12]}, {'id': 3, 'elements': [3, 15, 16]}, {'id': 4, 'elements': [3, 4, 6, 8, 12, 15]}, {'id': 5, 'elements': [2, 5, 8, 10, 12]}, {'id': 6, 'elements': [4, 6, 7, 8, 12]}, {'id': 7, 'elements': [1, 6, 7, 14, 17]}, {'id': 8, 'elements': [2, 4, 5, 6, 8, 9, 12]}, {'id': 9, 'elements': [8, 9]}, {'id': 10, 'elements': [8, 10]}, {'id': 11, 'elements': [11, 15]}, {'id': 12, 'elements': [2, 3, 5, 6, 16, 17]}, {'id': 13, 'elements': [6, 7, 13, 17]}, {'id': 14, 'elements': [3, 4]}, {'id': 15, 'elements': [4, 12, 16]}, {'id': 16, 'elements': [7, 14, 18]}], 'graph': {'num_nodes': 18, 'edges': [{'u': 6, 'v': 12}, {'u': 6, 'v': 17}, {'u': 12, 'v': 4}, {'u': 12, 'v': 8}, {'u': 4, 'v': 3}, {'u': 4, 'v': 16}, {'u': 5, 'v': 8}, {'u': 5, 'v': 10}, {'u': 18, 'v': 7}, {'u': 18, 'v': 14}, {'u': 8, 'v': 2}, {'u': 17, 'v': 7}, {'u': 17, 'v': 13}, {'u': 11, 'v': 3}, {'u': 1, 'v': 7}, {'u': 9, 'v': 2}, {'u': 3, 'v': 15}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0000.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0000.png'}","[5, 7, 8, 11, 12, 13, 16]",7.0,"{'num_elements': 18, 'num_sets': 16, 'sets': [{'id': 'S1', 'elements': [16, 17]}, {'id': 'S2', 'elements': [1, 4, 7, 8, 11]}, {'id': 'S3', 'elements': [2, 14, 15]}, {'id': 'S4', 'elements': [2, 3, 5, 7, 11, 14]}, {'id': 'S5', 'elements': [1, 4, 7, 9, 11]}, {'id': 'S6', 'elements': [3, 5, 6, 7, 11]}, {'id': 'S7', 'elements': [0, 5, 6, 13, 16]}, {'id': 'S8', 'elements': [1, 3, 4, 5, 7, 8, 11]}, {'id': 'S9', 'elements': [7, 8]}, {'id': 'S10', 'elements': [7, 9]}, {'id': 'S11', 'elements': [10, 14]}, {'id': 'S12', 'elements': [1, 2, 4, 5, 15, 16]}, {'id': 'S13', 'elements': [5, 6, 12, 16]}, {'id': 'S14', 'elements': [2, 3]}, {'id': 'S15', 'elements': [3, 11, 15]}, {'id': 'S16', 'elements': [6, 13, 17]}]}","['S5', 'S7', 'S8', 'S11', 'S12', 'S13', 'S16']",1,nl,0
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=13
# total_performer_options=13
performer_id,genres_covered
S1,1 5 8
S2,2 9
S3,3 7 11
S4,2 6 9 11 12 13
S5,1 5
S6,2 4 6 8 10 11 13
S7,3 6 7 10 11
S8,1 2 5 6 8 12 13
S9,2 4 9 12
S10,6 10 11
S11,4 6 7 10 11 13
S12,2 8 12
S13,4 5 6 11 13
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': 13, 'num_sets': 13, 'density': 0.33136094674556216, 'sets': [{'id': 1, 'elements': [1, 5, 8]}, {'id': 2, 'elements': [2, 9]}, {'id': 3, 'elements': [3, 7, 11]}, {'id': 4, 'elements': [2, 6, 9, 11, 12, 13]}, {'id': 5, 'elements': [1, 5]}, {'id': 6, 'elements': [2, 4, 6, 8, 10, 11, 13]}, {'id': 7, 'elements': [3, 6, 7, 10, 11]}, {'id': 8, 'elements': [1, 2, 5, 6, 8, 12, 13]}, {'id': 9, 'elements': [2, 4, 9, 12]}, {'id': 10, 'elements': [6, 10, 11]}, {'id': 11, 'elements': [4, 6, 7, 10, 11, 13]}, {'id': 12, 'elements': [2, 8, 12]}, {'id': 13, 'elements': [4, 5, 6, 11, 13]}], 'graph': {'num_nodes': 13, 'edges': [{'u': 9, 'v': 2}, {'u': 2, 'v': 4}, {'u': 2, 'v': 12}, {'u': 8, 'v': 5}, {'u': 8, 'v': 12}, {'u': 8, 'v': 13}, {'u': 13, 'v': 6}, {'u': 3, 'v': 7}, {'u': 6, 'v': 4}, {'u': 6, 'v': 11}, {'u': 10, 'v': 11}, {'u': 11, 'v': 7}, {'u': 1, 'v': 5}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0001.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0001.png'}","[7, 8, 9]",3.0,"{'num_elements': 13, 'num_sets': 13, 'sets': [{'id': 'S1', 'elements': [1, 5, 8]}, {'id': 'S2', 'elements': [2, 9]}, {'id': 'S3', 'elements': [3, 7, 11]}, {'id': 'S4', 'elements': [2, 6, 9, 11, 12, 13]}, {'id': 'S5', 'elements': [1, 5]}, {'id': 'S6', 'elements': [2, 4, 6, 8, 10, 11, 13]}, {'id': 'S7', 'elements': [3, 6, 7, 10, 11]}, {'id': 'S8', 'elements': [1, 2, 5, 6, 8, 12, 13]}, {'id': 'S9', 'elements': [2, 4, 9, 12]}, {'id': 'S10', 'elements': [6, 10, 11]}, {'id': 'S11', 'elements': [4, 6, 7, 10, 11, 13]}, {'id': 'S12', 'elements': [2, 8, 12]}, {'id': 'S13', 'elements': [4, 5, 6, 11, 13]}]}","['S7', 'S8', 'S9']",2,csv,1
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=13
# total_available_titles=13
title_id,covered_topics
S1,2 5 8
S2,1 2
S3,4 7
S4,3 4 7 9 10
S5,1 2 5 6 8 11
S6,1 6 8 12
S7,3 4 9
S8,1 5 6 8 9 10
S9,3 7 8
S10,4 8 9 10 11
S11,8 10 11
S12,6 12 13
S13,5 6 13
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': 13, 'num_sets': 13, 'density': 0.28402366863905326, 'sets': [{'id': 1, 'elements': [2, 5, 8]}, {'id': 2, 'elements': [1, 2]}, {'id': 3, 'elements': [4, 7]}, {'id': 4, 'elements': [3, 4, 7, 9, 10]}, {'id': 5, 'elements': [1, 2, 5, 6, 8, 11]}, {'id': 6, 'elements': [1, 6, 8, 12]}, {'id': 7, 'elements': [3, 4, 9]}, {'id': 8, 'elements': [1, 5, 6, 8, 9, 10]}, {'id': 9, 'elements': [3, 7, 8]}, {'id': 10, 'elements': [4, 8, 9, 10, 11]}, {'id': 11, 'elements': [8, 10, 11]}, {'id': 12, 'elements': [6, 12, 13]}, {'id': 13, 'elements': [5, 6, 13]}], 'graph': {'num_nodes': 13, 'edges': [{'u': 8, 'v': 5}, {'u': 8, 'v': 10}, {'u': 8, 'v': 11}, {'u': 9, 'v': 4}, {'u': 9, 'v': 10}, {'u': 1, 'v': 2}, {'u': 1, 'v': 5}, {'u': 3, 'v': 4}, {'u': 4, 'v': 7}, {'u': 5, 'v': 6}, {'u': 6, 'v': 13}, {'u': 13, 'v': 12}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0002.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0002.png'}","[4, 5, 12]",3.0,"{'num_elements': 13, 'num_sets': 13, 'sets': [{'id': 'S1', 'elements': [2, 5, 8]}, {'id': 'S2', 'elements': [1, 2]}, {'id': 'S3', 'elements': [4, 7]}, {'id': 'S4', 'elements': [3, 4, 7, 9, 10]}, {'id': 'S5', 'elements': [1, 2, 5, 6, 8, 11]}, {'id': 'S6', 'elements': [1, 6, 8, 12]}, {'id': 'S7', 'elements': [3, 4, 9]}, {'id': 'S8', 'elements': [1, 5, 6, 8, 9, 10]}, {'id': 'S9', 'elements': [3, 7, 8]}, {'id': 'S10', 'elements': [4, 8, 9, 10, 11]}, {'id': 'S11', 'elements': [8, 10, 11]}, {'id': 'S12', 'elements': [6, 12, 13]}, {'id': 'S13', 'elements': [5, 6, 13]}]}","['S4', 'S5', 'S12']",3,csv,1
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.
There are 18 modules to choose from and 18 distinct features that must be lit.
Module S1 enables 1 3 13.
Module S2 enables 2 5 9 10 11 16 17.
Module S3 enables 1 3 6 8 9 12 13.
Module S4 enables 4 7 11 12 14 15 17.
Module S5 enables 2 5 9 10 13 16.
Module S6 enables 5 6 8 11 12 16 18.
Module S7 enables 11 14 17.
Module S8 enables 3 6 12 15.
Module S9 enables 2 5 9 13 16.
Module S10 enables 10 17 18.
Module S11 enables 4 6 7 8 12 14 16 17.
Module S12 enables 3 4 6 8 11 14 15 18.
Module S13 enables 1 3 8 9 13.
Module S14 enables 4 7 10 11 12 15.
Module S15 enables 4 8 12 14 15.
Module S16 enables 2 6 8 9 11 16 17 18.
Module S17 enables 2 4 7 10 14 16 18.
Module S18 enables 12 18.
Pick the smallest number of modules that together light all 18 features.
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': 18, 'num_sets': 18, 'density': 0.3117283950617284, 'sets': [{'id': 1, 'elements': [1, 3, 13]}, {'id': 2, 'elements': [2, 5, 9, 10, 11, 16, 17]}, {'id': 3, 'elements': [1, 3, 6, 8, 9, 12, 13]}, {'id': 4, 'elements': [4, 7, 11, 12, 14, 15, 17]}, {'id': 5, 'elements': [2, 5, 9, 10, 13, 16]}, {'id': 6, 'elements': [5, 6, 8, 11, 12, 16, 18]}, {'id': 7, 'elements': [11, 14, 17]}, {'id': 8, 'elements': [3, 6, 12, 15]}, {'id': 9, 'elements': [2, 5, 9, 13, 16]}, {'id': 10, 'elements': [10, 17, 18]}, {'id': 11, 'elements': [4, 6, 7, 8, 12, 14, 16, 17]}, {'id': 12, 'elements': [3, 4, 6, 8, 11, 14, 15, 18]}, {'id': 13, 'elements': [1, 3, 8, 9, 13]}, {'id': 14, 'elements': [4, 7, 10, 11, 12, 15]}, {'id': 15, 'elements': [4, 8, 12, 14, 15]}, {'id': 16, 'elements': [2, 6, 8, 9, 11, 16, 17, 18]}, {'id': 17, 'elements': [2, 4, 7, 10, 14, 16, 18]}, {'id': 18, 'elements': [12, 18]}], 'graph': {'num_nodes': 18, 'edges': [{'u': 8, 'v': 3}, {'u': 8, 'v': 6}, {'u': 8, 'v': 12}, {'u': 15, 'v': 4}, {'u': 15, 'v': 12}, {'u': 16, 'v': 5}, {'u': 16, 'v': 6}, {'u': 16, 'v': 18}, {'u': 5, 'v': 2}, {'u': 5, 'v': 9}, {'u': 6, 'v': 11}, {'u': 3, 'v': 1}, {'u': 3, 'v': 13}, {'u': 2, 'v': 10}, {'u': 2, 'v': 18}, {'u': 11, 'v': 12}, {'u': 11, 'v': 14}, {'u': 11, 'v': 18}, {'u': 10, 'v': 17}, {'u': 13, 'v': 9}, {'u': 17, 'v': 14}, {'u': 17, 'v': 18}, {'u': 4, 'v': 14}, {'u': 14, 'v': 7}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0003.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0003.png'}","[2, 3, 4, 6]",4.0,"{'num_elements': 18, 'num_sets': 18, 'sets': [{'id': 'S1', 'elements': [1, 3, 13]}, {'id': 'S2', 'elements': [2, 5, 9, 10, 11, 16, 17]}, {'id': 'S3', 'elements': [1, 3, 6, 8, 9, 12, 13]}, {'id': 'S4', 'elements': [4, 7, 11, 12, 14, 15, 17]}, {'id': 'S5', 'elements': [2, 5, 9, 10, 13, 16]}, {'id': 'S6', 'elements': [5, 6, 8, 11, 12, 16, 18]}, {'id': 'S7', 'elements': [11, 14, 17]}, {'id': 'S8', 'elements': [3, 6, 12, 15]}, {'id': 'S9', 'elements': [2, 5, 9, 13, 16]}, {'id': 'S10', 'elements': [10, 17, 18]}, {'id': 'S11', 'elements': [4, 6, 7, 8, 12, 14, 16, 17]}, {'id': 'S12', 'elements': [3, 4, 6, 8, 11, 14, 15, 18]}, {'id': 'S13', 'elements': [1, 3, 8, 9, 13]}, {'id': 'S14', 'elements': [4, 7, 10, 11, 12, 15]}, {'id': 'S15', 'elements': [4, 8, 12, 14, 15]}, {'id': 'S16', 'elements': [2, 6, 8, 9, 11, 16, 17, 18]}, {'id': 'S17', 'elements': [2, 4, 7, 10, 14, 16, 18]}, {'id': 'S18', 'elements': [12, 18]}]}","['S2', 'S3', 'S4', 'S6']",4,nl,1
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.
{
""total_topics"": 15,
""available_leaders"": 14,
""sets"": [
{
""leader_id"": ""S1"",
""topics_covered"": [
0,
3,
8
]
},
{
""leader_id"": ""S2"",
""topics_covered"": [
1,
3,
4,
8,
9,
13
]
},
{
""leader_id"": ""S3"",
""topics_covered"": [
2,
3,
10
]
},
{
""leader_id"": ""S4"",
""topics_covered"": [
2,
4,
6,
8,
9,
10
]
},
{
""leader_id"": ""S5"",
""topics_covered"": [
2,
3,
4,
6,
8,
10
]
},
{
""leader_id"": ""S6"",
""topics_covered"": [
3,
5,
6,
7,
12
]
},
{
""leader_id"": ""S7"",
""topics_covered"": [
1,
3,
4,
5,
7,
11
]
},
{
""leader_id"": ""S8"",
""topics_covered"": [
3,
5,
6,
7
]
},
{
""leader_id"": ""S9"",
""topics_covered"": [
0,
1,
3,
6
]
},
{
""leader_id"": ""S10"",
""topics_covered"": [
2,
3
]
},
{
""leader_id"": ""S11"",
""topics_covered"": [
6,
14
]
},
{
""leader_id"": ""S12"",
""topics_covered"": [
5,
11,
14
]
},
{
""leader_id"": ""S13"",
""topics_covered"": [
1,
9,
13
]
},
{
""leader_id"": ""S14"",
""topics_covered"": [
5,
11,
12,
14
]
}
]
}
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': 15, 'num_sets': 14, 'density': 0.2714285714285714, 'sets': [{'id': 1, 'elements': [1, 4, 9]}, {'id': 2, 'elements': [2, 4, 5, 9, 10, 14]}, {'id': 3, 'elements': [3, 4, 11]}, {'id': 4, 'elements': [3, 5, 7, 9, 10, 11]}, {'id': 5, 'elements': [3, 4, 5, 7, 9, 11]}, {'id': 6, 'elements': [4, 6, 7, 8, 13]}, {'id': 7, 'elements': [2, 4, 5, 6, 8, 12]}, {'id': 8, 'elements': [4, 6, 7, 8]}, {'id': 9, 'elements': [1, 2, 4, 7]}, {'id': 10, 'elements': [3, 4]}, {'id': 11, 'elements': [7, 15]}, {'id': 12, 'elements': [6, 12, 15]}, {'id': 13, 'elements': [2, 10, 14]}, {'id': 14, 'elements': [6, 12, 13, 15]}], 'graph': {'num_nodes': 15, 'edges': [{'u': 12, 'v': 6}, {'u': 12, 'v': 13}, {'u': 12, 'v': 15}, {'u': 3, 'v': 5}, {'u': 1, 'v': 9}, {'u': 9, 'v': 4}, {'u': 6, 'v': 7}, {'u': 7, 'v': 4}, {'u': 7, 'v': 8}, {'u': 5, 'v': 4}, {'u': 5, 'v': 11}, {'u': 2, 'v': 4}, {'u': 2, 'v': 10}, {'u': 10, 'v': 14}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0004.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0004.png'}","[2, 5, 6, 9, 14]",5.0,"{'num_elements': 15, 'num_sets': 14, 'sets': [{'id': 'S1', 'elements': [0, 3, 8]}, {'id': 'S2', 'elements': [1, 3, 4, 8, 9, 13]}, {'id': 'S3', 'elements': [2, 3, 10]}, {'id': 'S4', 'elements': [2, 4, 6, 8, 9, 10]}, {'id': 'S5', 'elements': [2, 3, 4, 6, 8, 10]}, {'id': 'S6', 'elements': [3, 5, 6, 7, 12]}, {'id': 'S7', 'elements': [1, 3, 4, 5, 7, 11]}, {'id': 'S8', 'elements': [3, 5, 6, 7]}, {'id': 'S9', 'elements': [0, 1, 3, 6]}, {'id': 'S10', 'elements': [2, 3]}, {'id': 'S11', 'elements': [6, 14]}, {'id': 'S12', 'elements': [5, 11, 14]}, {'id': 'S13', 'elements': [1, 9, 13]}, {'id': 'S14', 'elements': [5, 11, 12, 14]}]}","['S2', 'S5', 'S6', 'S9', 'S14']",5,json,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.
There were 13 channels available and 14 target segments to reach.
Channel S1 reached segments A E F K.
Channel S2 reached segments A B C E H M.
Channel S3 reached segments A B C.
Channel S4 reached segments A B C E.
Channel S5 reached segments A B F N.
Channel S6 reached segments B D G I K.
Channel S7 reached segments G K.
Channel S8 reached segments D J L.
Channel S9 reached segments D G I L.
Channel S10 reached segments B I K.
Channel S11 reached segments I J L.
Channel S12 reached segments B F M N.
Channel S13 reached segments F M N.
The objective was to cover all 14 segments using as few channels as possible.
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': 14, 'num_sets': 13, 'density': 0.26373626373626374, 'sets': [{'id': 1, 'elements': [1, 5, 6, 11]}, {'id': 2, 'elements': [1, 2, 3, 5, 8, 13]}, {'id': 3, 'elements': [1, 2, 3]}, {'id': 4, 'elements': [1, 2, 3, 5]}, {'id': 5, 'elements': [1, 2, 6, 14]}, {'id': 6, 'elements': [2, 4, 7, 9, 11]}, {'id': 7, 'elements': [7, 11]}, {'id': 8, 'elements': [4, 10, 12]}, {'id': 9, 'elements': [4, 7, 9, 12]}, {'id': 10, 'elements': [2, 9, 11]}, {'id': 11, 'elements': [9, 10, 12]}, {'id': 12, 'elements': [2, 6, 13, 14]}, {'id': 13, 'elements': [6, 13, 14]}], 'graph': {'num_nodes': 14, 'edges': [{'u': 2, 'v': 1}, {'u': 2, 'v': 6}, {'u': 2, 'v': 11}, {'u': 3, 'v': 1}, {'u': 5, 'v': 1}, {'u': 12, 'v': 10}, {'u': 4, 'v': 9}, {'u': 9, 'v': 7}, {'u': 9, 'v': 10}, {'u': 13, 'v': 6}, {'u': 13, 'v': 14}, {'u': 7, 'v': 11}, {'u': 8, 'v': 11}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0005.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0005.png'}","[2, 6, 11, 12]",4.0,"{'num_elements': 14, 'num_sets': 13, 'sets': [{'id': 'S1', 'elements': ['A', 'E', 'F', 'K']}, {'id': 'S2', 'elements': ['A', 'B', 'C', 'E', 'H', 'M']}, {'id': 'S3', 'elements': ['A', 'B', 'C']}, {'id': 'S4', 'elements': ['A', 'B', 'C', 'E']}, {'id': 'S5', 'elements': ['A', 'B', 'F', 'N']}, {'id': 'S6', 'elements': ['B', 'D', 'G', 'I', 'K']}, {'id': 'S7', 'elements': ['G', 'K']}, {'id': 'S8', 'elements': ['D', 'J', 'L']}, {'id': 'S9', 'elements': ['D', 'G', 'I', 'L']}, {'id': 'S10', 'elements': ['B', 'I', 'K']}, {'id': 'S11', 'elements': ['I', 'J', 'L']}, {'id': 'S12', 'elements': ['B', 'F', 'M', 'N']}, {'id': 'S13', 'elements': ['F', 'M', 'N']}]}","['S2', 'S6', 'S11', 'S12']",6,nl,names
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"": 14,
""total_available_chargers"": 14,
""sets"": [
{
""charger_id"": ""S1"",
""supported_device_types"": [
1,
5,
10,
13
]
},
{
""charger_id"": ""S2"",
""supported_device_types"": [
2,
7,
11,
12,
14
]
},
{
""charger_id"": ""S3"",
""supported_device_types"": [
3,
13
]
},
{
""charger_id"": ""S4"",
""supported_device_types"": [
4,
14
]
},
{
""charger_id"": ""S5"",
""supported_device_types"": [
1,
5,
8,
10,
13,
14
]
},
{
""charger_id"": ""S6"",
""supported_device_types"": [
2,
6,
7,
11,
14
]
},
{
""charger_id"": ""S7"",
""supported_device_types"": [
6,
7,
14
]
},
{
""charger_id"": ""S8"",
""supported_device_types"": [
3,
5,
10,
13,
14
]
},
{
""charger_id"": ""S9"",
""supported_device_types"": [
4,
9,
12
]
},
{
""charger_id"": ""S10"",
""supported_device_types"": [
1,
2,
5,
8,
10,
12,
13,
14
]
},
{
""charger_id"": ""S11"",
""supported_device_types"": [
2,
6
]
},
{
""charger_id"": ""S12"",
""supported_device_types"": [
2,
9,
10,
12,
14
]
},
{
""charger_id"": ""S13"",
""supported_device_types"": [
1,
3,
8,
10
]
},
{
""charger_id"": ""S14"",
""supported_device_types"": [
2,
4,
6,
7,
8,
10,
12,
14
]
}
]
}
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': 14, 'num_sets': 14, 'density': 0.3163265306122449, 'sets': [{'id': 1, 'elements': [1, 5, 10, 13]}, {'id': 2, 'elements': [2, 7, 11, 12, 14]}, {'id': 3, 'elements': [3, 13]}, {'id': 4, 'elements': [4, 14]}, {'id': 5, 'elements': [1, 5, 8, 10, 13, 14]}, {'id': 6, 'elements': [2, 6, 7, 11, 14]}, {'id': 7, 'elements': [6, 7, 14]}, {'id': 8, 'elements': [3, 5, 10, 13, 14]}, {'id': 9, 'elements': [4, 9, 12]}, {'id': 10, 'elements': [1, 2, 5, 8, 10, 12, 13, 14]}, {'id': 11, 'elements': [2, 6]}, {'id': 12, 'elements': [2, 9, 10, 12, 14]}, {'id': 13, 'elements': [1, 3, 8, 10]}, {'id': 14, 'elements': [2, 4, 6, 7, 8, 10, 12, 14]}], 'graph': {'num_nodes': 14, 'edges': [{'u': 4, 'v': 9}, {'u': 4, 'v': 12}, {'u': 1, 'v': 5}, {'u': 11, 'v': 6}, {'u': 14, 'v': 2}, {'u': 14, 'v': 10}, {'u': 14, 'v': 12}, {'u': 5, 'v': 10}, {'u': 5, 'v': 13}, {'u': 3, 'v': 8}, {'u': 13, 'v': 8}, {'u': 7, 'v': 2}, {'u': 10, 'v': 8}, {'u': 2, 'v': 6}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0006.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0006.png'}","[6, 9, 10, 13]",4.0,"{'num_elements': 14, 'num_sets': 14, 'sets': [{'id': 'S1', 'elements': [1, 5, 10, 13]}, {'id': 'S2', 'elements': [2, 7, 11, 12, 14]}, {'id': 'S3', 'elements': [3, 13]}, {'id': 'S4', 'elements': [4, 14]}, {'id': 'S5', 'elements': [1, 5, 8, 10, 13, 14]}, {'id': 'S6', 'elements': [2, 6, 7, 11, 14]}, {'id': 'S7', 'elements': [6, 7, 14]}, {'id': 'S8', 'elements': [3, 5, 10, 13, 14]}, {'id': 'S9', 'elements': [4, 9, 12]}, {'id': 'S10', 'elements': [1, 2, 5, 8, 10, 12, 13, 14]}, {'id': 'S11', 'elements': [2, 6]}, {'id': 'S12', 'elements': [2, 9, 10, 12, 14]}, {'id': 'S13', 'elements': [1, 3, 8, 10]}, {'id': 'S14', 'elements': [2, 4, 6, 7, 8, 10, 12, 14]}]}","['S6', 'S9', 'S10', 'S13']",7,json,1
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"": 14,
""total_available_volunteers"": 12,
""sets"": [
{
""volunteer_id"": ""S1"",
""covered_roles"": [
""B"",
""D"",
""F""
]
},
{
""volunteer_id"": ""S2"",
""covered_roles"": [
""C"",
""D"",
""E"",
""F"",
""G"",
""H""
]
},
{
""volunteer_id"": ""S3"",
""covered_roles"": [
""B"",
""C"",
""D"",
""F""
]
},
{
""volunteer_id"": ""S4"",
""covered_roles"": [
""C"",
""E"",
""H"",
""I""
]
},
{
""volunteer_id"": ""S5"",
""covered_roles"": [
""B"",
""C"",
""D"",
""G"",
""L""
]
},
{
""volunteer_id"": ""S6"",
""covered_roles"": [
""C"",
""L""
]
},
{
""volunteer_id"": ""S7"",
""covered_roles"": [
""A"",
""C"",
""E"",
""H"",
""I""
]
},
{
""volunteer_id"": ""S8"",
""covered_roles"": [
""E"",
""F"",
""H"",
""I""
]
},
{
""volunteer_id"": ""S9"",
""covered_roles"": [
""G"",
""J"",
""K"",
""L"",
""M""
]
},
{
""volunteer_id"": ""S10"",
""covered_roles"": [
""J"",
""K"",
""L""
]
},
{
""volunteer_id"": ""S11"",
""covered_roles"": [
""F"",
""G"",
""K"",
""M"",
""N""
]
},
{
""volunteer_id"": ""S12"",
""covered_roles"": [
""G"",
""J"",
""L""
]
}
]
}
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': 14, 'num_sets': 12, 'density': 0.2916666666666667, 'sets': [{'id': 1, 'elements': [2, 4, 6]}, {'id': 2, 'elements': [3, 4, 5, 6, 7, 8]}, {'id': 3, 'elements': [2, 3, 4, 6]}, {'id': 4, 'elements': [3, 5, 8, 9]}, {'id': 5, 'elements': [2, 3, 4, 7, 12]}, {'id': 6, 'elements': [3, 12]}, {'id': 7, 'elements': [1, 3, 5, 8, 9]}, {'id': 8, 'elements': [5, 6, 8, 9]}, {'id': 9, 'elements': [7, 10, 11, 12, 13]}, {'id': 10, 'elements': [10, 11, 12]}, {'id': 11, 'elements': [6, 7, 11, 13, 14]}, {'id': 12, 'elements': [7, 10, 12]}], 'graph': {'num_nodes': 14, 'edges': [{'u': 11, 'v': 10}, {'u': 12, 'v': 7}, {'u': 12, 'v': 10}, {'u': 12, 'v': 13}, {'u': 4, 'v': 2}, {'u': 4, 'v': 6}, {'u': 3, 'v': 6}, {'u': 3, 'v': 9}, {'u': 6, 'v': 7}, {'u': 13, 'v': 14}, {'u': 8, 'v': 1}, {'u': 8, 'v': 9}, {'u': 9, 'v': 5}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0007.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0007.png'}","[5, 7, 11, 12]",4.0,"{'num_elements': 14, 'num_sets': 12, 'sets': [{'id': 'S1', 'elements': ['B', 'D', 'F']}, {'id': 'S2', 'elements': ['C', 'D', 'E', 'F', 'G', 'H']}, {'id': 'S3', 'elements': ['B', 'C', 'D', 'F']}, {'id': 'S4', 'elements': ['C', 'E', 'H', 'I']}, {'id': 'S5', 'elements': ['B', 'C', 'D', 'G', 'L']}, {'id': 'S6', 'elements': ['C', 'L']}, {'id': 'S7', 'elements': ['A', 'C', 'E', 'H', 'I']}, {'id': 'S8', 'elements': ['E', 'F', 'H', 'I']}, {'id': 'S9', 'elements': ['G', 'J', 'K', 'L', 'M']}, {'id': 'S10', 'elements': ['J', 'K', 'L']}, {'id': 'S11', 'elements': ['F', 'G', 'K', 'M', 'N']}, {'id': 'S12', 'elements': ['G', 'J', 'L']}]}","['S5', 'S7', 'S11', 'S12']",8,json,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.
Available candidate dishes (18) to cover all 18 dietary preferences:
S1: covers 1 4 5 9 12 17.
S2: covers 10 18.
S3: covers 3 7 11.
S4: covers 1 4 15.
S5: covers 1 5 6 8 12 15.
S6: covers 5 16.
S7: covers 7 8 14.
S8: covers 5 12 18.
S9: covers 4 9 13.
S10: covers 2 8 10.
S11: covers 3 14.
S12: covers 1 5 7 8 14 17 18.
S13: covers 9 13 15.
S14: covers 3 11 12 14.
S15: covers 1 4 5 9 15.
S16: covers 6 16 17.
S17: covers 1 5 6 12 16 17.
S18: covers 8 12 18.
Choose the fewest dishes that still cover all 18 preferences.
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': 18, 'num_sets': 18, 'density': 0.20679012345679013, 'sets': [{'id': 1, 'elements': [1, 4, 5, 9, 12, 17]}, {'id': 2, 'elements': [10, 18]}, {'id': 3, 'elements': [3, 7, 11]}, {'id': 4, 'elements': [1, 4, 15]}, {'id': 5, 'elements': [1, 5, 6, 8, 12, 15]}, {'id': 6, 'elements': [5, 16]}, {'id': 7, 'elements': [7, 8, 14]}, {'id': 8, 'elements': [5, 12, 18]}, {'id': 9, 'elements': [4, 9, 13]}, {'id': 10, 'elements': [2, 8, 10]}, {'id': 11, 'elements': [3, 14]}, {'id': 12, 'elements': [1, 5, 7, 8, 14, 17, 18]}, {'id': 13, 'elements': [9, 13, 15]}, {'id': 14, 'elements': [3, 11, 12, 14]}, {'id': 15, 'elements': [1, 4, 5, 9, 15]}, {'id': 16, 'elements': [6, 16, 17]}, {'id': 17, 'elements': [1, 5, 6, 12, 16, 17]}, {'id': 18, 'elements': [8, 12, 18]}], 'graph': {'num_nodes': 18, 'edges': [{'u': 9, 'v': 13}, {'u': 9, 'v': 15}, {'u': 17, 'v': 5}, {'u': 17, 'v': 6}, {'u': 16, 'v': 6}, {'u': 1, 'v': 5}, {'u': 1, 'v': 15}, {'u': 15, 'v': 4}, {'u': 14, 'v': 3}, {'u': 14, 'v': 7}, {'u': 12, 'v': 5}, {'u': 12, 'v': 7}, {'u': 12, 'v': 8}, {'u': 8, 'v': 18}, {'u': 11, 'v': 3}, {'u': 18, 'v': 10}, {'u': 10, 'v': 2}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0008.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0008.png'}","[10, 12, 13, 14, 15, 17]",6.0,"{'num_elements': 18, 'num_sets': 18, 'sets': [{'id': 'S1', 'elements': [1, 4, 5, 9, 12, 17]}, {'id': 'S2', 'elements': [10, 18]}, {'id': 'S3', 'elements': [3, 7, 11]}, {'id': 'S4', 'elements': [1, 4, 15]}, {'id': 'S5', 'elements': [1, 5, 6, 8, 12, 15]}, {'id': 'S6', 'elements': [5, 16]}, {'id': 'S7', 'elements': [7, 8, 14]}, {'id': 'S8', 'elements': [5, 12, 18]}, {'id': 'S9', 'elements': [4, 9, 13]}, {'id': 'S10', 'elements': [2, 8, 10]}, {'id': 'S11', 'elements': [3, 14]}, {'id': 'S12', 'elements': [1, 5, 7, 8, 14, 17, 18]}, {'id': 'S13', 'elements': [9, 13, 15]}, {'id': 'S14', 'elements': [3, 11, 12, 14]}, {'id': 'S15', 'elements': [1, 4, 5, 9, 15]}, {'id': 'S16', 'elements': [6, 16, 17]}, {'id': 'S17', 'elements': [1, 5, 6, 12, 16, 17]}, {'id': 'S18', 'elements': [8, 12, 18]}]}","['S10', 'S12', 'S13', 'S14', 'S15', 'S17']",9,nl,1
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=13
# num_films_available=11
film_id,themes_covered
S1,0 3 6 9 10 12
S2,1 3
S3,2 3 5 6 7
S4,0 1 2 3 7 10 12
S5,6 9 10
S6,2 5 6 9
S7,2 3 9 10
S8,7 8 11
S9,1 2 3 4 5 6 7 9 10
S10,2 3 4 6 9 10 12
S11,0 3 4 10
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': 13, 'num_sets': 11, 'density': 0.3776223776223776, 'sets': [{'id': 1, 'elements': [1, 4, 7, 10, 11, 13]}, {'id': 2, 'elements': [2, 4]}, {'id': 3, 'elements': [3, 4, 6, 7, 8]}, {'id': 4, 'elements': [1, 2, 3, 4, 8, 11, 13]}, {'id': 5, 'elements': [7, 10, 11]}, {'id': 6, 'elements': [3, 6, 7, 10]}, {'id': 7, 'elements': [3, 4, 10, 11]}, {'id': 8, 'elements': [8, 9, 12]}, {'id': 9, 'elements': [2, 3, 4, 5, 6, 7, 8, 10, 11]}, {'id': 10, 'elements': [3, 4, 5, 7, 10, 11, 13]}, {'id': 11, 'elements': [1, 4, 5, 11]}], 'graph': {'num_nodes': 13, 'edges': [{'u': 4, 'v': 1}, {'u': 4, 'v': 2}, {'u': 4, 'v': 10}, {'u': 7, 'v': 3}, {'u': 7, 'v': 11}, {'u': 10, 'v': 3}, {'u': 10, 'v': 8}, {'u': 10, 'v': 11}, {'u': 5, 'v': 11}, {'u': 5, 'v': 13}, {'u': 9, 'v': 8}, {'u': 9, 'v': 12}, {'u': 3, 'v': 6}, {'u': 1, 'v': 11}, {'u': 1, 'v': 13}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0009.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0009.png'}","[1, 8, 9]",3.0,"{'num_elements': 13, 'num_sets': 11, 'sets': [{'id': 'S1', 'elements': [0, 3, 6, 9, 10, 12]}, {'id': 'S2', 'elements': [1, 3]}, {'id': 'S3', 'elements': [2, 3, 5, 6, 7]}, {'id': 'S4', 'elements': [0, 1, 2, 3, 7, 10, 12]}, {'id': 'S5', 'elements': [6, 9, 10]}, {'id': 'S6', 'elements': [2, 5, 6, 9]}, {'id': 'S7', 'elements': [2, 3, 9, 10]}, {'id': 'S8', 'elements': [7, 8, 11]}, {'id': 'S9', 'elements': [1, 2, 3, 4, 5, 6, 7, 9, 10]}, {'id': 'S10', 'elements': [2, 3, 4, 6, 9, 10, 12]}, {'id': 'S11', 'elements': [0, 3, 4, 10]}]}","['S1', 'S8', 'S9']",10,csv,0
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=18
# available_stops_count=18
stop_id,covered_blocks
S1,2 7 10 13
S2,1 2 6 9 10 14 15
S3,3 4 7 8 15 16 18
S4,3 4 5 11 16
S5,2 3 4 6 11 12 13
S6,6 13
S7,3 7 14 15
S8,3 7 8 15 17 18
S9,1 2 9
S10,1 2
S11,3 4 5 11 12 16
S12,5 6 11 12 13
S13,5 6 7 12
S14,2 7 14 15
S15,8 11 16 17 18
S16,3 4 11 15 16
S17,8 15 17
S18,3 18
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': 18, 'num_sets': 18, 'density': 0.25, 'sets': [{'id': 1, 'elements': [2, 7, 10, 13]}, {'id': 2, 'elements': [1, 2, 6, 9, 10, 14, 15]}, {'id': 3, 'elements': [3, 4, 7, 8, 15, 16, 18]}, {'id': 4, 'elements': [3, 4, 5, 11, 16]}, {'id': 5, 'elements': [2, 3, 4, 6, 11, 12, 13]}, {'id': 6, 'elements': [6, 13]}, {'id': 7, 'elements': [3, 7, 14, 15]}, {'id': 8, 'elements': [3, 7, 8, 15, 17, 18]}, {'id': 9, 'elements': [1, 2, 9]}, {'id': 10, 'elements': [1, 2]}, {'id': 11, 'elements': [3, 4, 5, 11, 12, 16]}, {'id': 12, 'elements': [5, 6, 11, 12, 13]}, {'id': 13, 'elements': [5, 6, 7, 12]}, {'id': 14, 'elements': [2, 7, 14, 15]}, {'id': 15, 'elements': [8, 11, 16, 17, 18]}, {'id': 16, 'elements': [3, 4, 11, 15, 16]}, {'id': 17, 'elements': [8, 15, 17]}, {'id': 18, 'elements': [3, 18]}], 'graph': {'num_nodes': 18, 'edges': [{'u': 3, 'v': 11}, {'u': 3, 'v': 15}, {'u': 3, 'v': 16}, {'u': 4, 'v': 11}, {'u': 4, 'v': 16}, {'u': 5, 'v': 11}, {'u': 5, 'v': 12}, {'u': 5, 'v': 13}, {'u': 6, 'v': 12}, {'u': 6, 'v': 13}, {'u': 15, 'v': 7}, {'u': 15, 'v': 8}, {'u': 15, 'v': 18}, {'u': 17, 'v': 8}, {'u': 9, 'v': 2}, {'u': 7, 'v': 2}, {'u': 7, 'v': 14}, {'u': 2, 'v': 1}, {'u': 2, 'v': 13}, {'u': 10, 'v': 1}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0010.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0010.png'}","[2, 3, 12, 15]",4.0,"{'num_elements': 18, 'num_sets': 18, 'sets': [{'id': 'S1', 'elements': [2, 7, 10, 13]}, {'id': 'S2', 'elements': [1, 2, 6, 9, 10, 14, 15]}, {'id': 'S3', 'elements': [3, 4, 7, 8, 15, 16, 18]}, {'id': 'S4', 'elements': [3, 4, 5, 11, 16]}, {'id': 'S5', 'elements': [2, 3, 4, 6, 11, 12, 13]}, {'id': 'S6', 'elements': [6, 13]}, {'id': 'S7', 'elements': [3, 7, 14, 15]}, {'id': 'S8', 'elements': [3, 7, 8, 15, 17, 18]}, {'id': 'S9', 'elements': [1, 2, 9]}, {'id': 'S10', 'elements': [1, 2]}, {'id': 'S11', 'elements': [3, 4, 5, 11, 12, 16]}, {'id': 'S12', 'elements': [5, 6, 11, 12, 13]}, {'id': 'S13', 'elements': [5, 6, 7, 12]}, {'id': 'S14', 'elements': [2, 7, 14, 15]}, {'id': 'S15', 'elements': [8, 11, 16, 17, 18]}, {'id': 'S16', 'elements': [3, 4, 11, 15, 16]}, {'id': 'S17', 'elements': [8, 15, 17]}, {'id': 'S18', 'elements': [3, 18]}]}","['S2', 'S3', 'S12', 'S15']",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.
# total_eras=18
# total_exhibits=16
exhibit_id,covered_eras
S1,G L
S2,C L
S3,B C D
S4,A D L
S5,E I O Q R
S6,I O Q R
S7,H O
S8,J K Q R
S9,E J K M Q R
S10,A B L R
S11,F K M Q
S12,N Q
S13,G H O P R
S14,G H P
S15,F G N R
S16,A G K L R
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': 18, 'num_sets': 16, 'density': 0.2013888888888889, 'sets': [{'id': 1, 'elements': [7, 12]}, {'id': 2, 'elements': [3, 12]}, {'id': 3, 'elements': [2, 3, 4]}, {'id': 4, 'elements': [1, 4, 12]}, {'id': 5, 'elements': [5, 9, 15, 17, 18]}, {'id': 6, 'elements': [9, 15, 17, 18]}, {'id': 7, 'elements': [8, 15]}, {'id': 8, 'elements': [10, 11, 17, 18]}, {'id': 9, 'elements': [5, 10, 11, 13, 17, 18]}, {'id': 10, 'elements': [1, 2, 12, 18]}, {'id': 11, 'elements': [6, 11, 13, 17]}, {'id': 12, 'elements': [14, 17]}, {'id': 13, 'elements': [7, 8, 15, 16, 18]}, {'id': 14, 'elements': [7, 8, 16]}, {'id': 15, 'elements': [6, 7, 14, 18]}, {'id': 16, 'elements': [1, 7, 11, 12, 18]}], 'graph': {'num_nodes': 18, 'edges': [{'u': 13, 'v': 6}, {'u': 13, 'v': 14}, {'u': 13, 'v': 17}, {'u': 12, 'v': 1}, {'u': 12, 'v': 3}, {'u': 12, 'v': 4}, {'u': 10, 'v': 11}, {'u': 16, 'v': 8}, {'u': 16, 'v': 15}, {'u': 7, 'v': 5}, {'u': 7, 'v': 15}, {'u': 7, 'v': 18}, {'u': 11, 'v': 17}, {'u': 11, 'v': 18}, {'u': 9, 'v': 5}, {'u': 17, 'v': 5}, {'u': 1, 'v': 18}, {'u': 2, 'v': 3}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0011.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0011.png'}","[3, 5, 9, 10, 13, 15]",6.0,"{'num_elements': 18, 'num_sets': 16, 'sets': [{'id': 'S1', 'elements': ['G', 'L']}, {'id': 'S2', 'elements': ['C', 'L']}, {'id': 'S3', 'elements': ['B', 'C', 'D']}, {'id': 'S4', 'elements': ['A', 'D', 'L']}, {'id': 'S5', 'elements': ['E', 'I', 'O', 'Q', 'R']}, {'id': 'S6', 'elements': ['I', 'O', 'Q', 'R']}, {'id': 'S7', 'elements': ['H', 'O']}, {'id': 'S8', 'elements': ['J', 'K', 'Q', 'R']}, {'id': 'S9', 'elements': ['E', 'J', 'K', 'M', 'Q', 'R']}, {'id': 'S10', 'elements': ['A', 'B', 'L', 'R']}, {'id': 'S11', 'elements': ['F', 'K', 'M', 'Q']}, {'id': 'S12', 'elements': ['N', 'Q']}, {'id': 'S13', 'elements': ['G', 'H', 'O', 'P', 'R']}, {'id': 'S14', 'elements': ['G', 'H', 'P']}, {'id': 'S15', 'elements': ['F', 'G', 'N', 'R']}, {'id': 'S16', 'elements': ['A', 'G', 'K', 'L', 'R']}]}","['S3', 'S5', 'S9', 'S10', 'S13', 'S15']",12,csv,names
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.
We need to cover 17 competencies using 17 session types from the catalogue.
We can offer session type S1, which covers 0 2 8 15.
We can offer session type S2, which covers 1 3 10 16.
We can offer session type S3, which covers 0 4 7 8 14 15.
We can offer session type S4, which covers 3 7 9 10 16.
We can offer session type S5, which covers 2 4 6.
We can offer session type S6, which covers 5 11 14.
We can offer session type S7, which covers 2 4 6 13.
We can offer session type S8, which covers 5 7 9 10 13 14.
We can offer session type S9, which covers 0 2 15.
We can offer session type S10, which covers 7 9 10 12.
We can offer session type S11, which covers 1 2 3 7 9 10 12 14.
We can offer session type S12, which covers 5 7 11 14.
We can offer session type S13, which covers 10 12.
We can offer session type S14, which covers 2 4 7 13 15.
We can offer session type S15, which covers 2 5 10.
We can offer session type S16, which covers 7 8 13 15.
We can offer session type S17, which covers 3 16.
Aim to pick the fewest session types so all 17 competencies are covered without needless duplication.
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': 17, 'num_sets': 17, 'density': 0.2422145328719723, 'sets': [{'id': 1, 'elements': [1, 3, 9, 16]}, {'id': 2, 'elements': [2, 4, 11, 17]}, {'id': 3, 'elements': [1, 5, 8, 9, 15, 16]}, {'id': 4, 'elements': [4, 8, 10, 11, 17]}, {'id': 5, 'elements': [3, 5, 7]}, {'id': 6, 'elements': [6, 12, 15]}, {'id': 7, 'elements': [3, 5, 7, 14]}, {'id': 8, 'elements': [6, 8, 10, 11, 14, 15]}, {'id': 9, 'elements': [1, 3, 16]}, {'id': 10, 'elements': [8, 10, 11, 13]}, {'id': 11, 'elements': [2, 3, 4, 8, 10, 11, 13, 15]}, {'id': 12, 'elements': [6, 8, 12, 15]}, {'id': 13, 'elements': [11, 13]}, {'id': 14, 'elements': [3, 5, 8, 14, 16]}, {'id': 15, 'elements': [3, 6, 11]}, {'id': 16, 'elements': [8, 9, 14, 16]}, {'id': 17, 'elements': [4, 17]}], 'graph': {'num_nodes': 17, 'edges': [{'u': 15, 'v': 6}, {'u': 15, 'v': 8}, {'u': 15, 'v': 12}, {'u': 14, 'v': 3}, {'u': 14, 'v': 5}, {'u': 14, 'v': 7}, {'u': 11, 'v': 4}, {'u': 11, 'v': 8}, {'u': 11, 'v': 10}, {'u': 9, 'v': 16}, {'u': 13, 'v': 10}, {'u': 3, 'v': 8}, {'u': 3, 'v': 16}, {'u': 4, 'v': 2}, {'u': 1, 'v': 16}, {'u': 17, 'v': 2}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0012.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0012.png'}","[3, 4, 7, 11, 12]",5.0,"{'num_elements': 17, 'num_sets': 17, 'sets': [{'id': 'S1', 'elements': [0, 2, 8, 15]}, {'id': 'S2', 'elements': [1, 3, 10, 16]}, {'id': 'S3', 'elements': [0, 4, 7, 8, 14, 15]}, {'id': 'S4', 'elements': [3, 7, 9, 10, 16]}, {'id': 'S5', 'elements': [2, 4, 6]}, {'id': 'S6', 'elements': [5, 11, 14]}, {'id': 'S7', 'elements': [2, 4, 6, 13]}, {'id': 'S8', 'elements': [5, 7, 9, 10, 13, 14]}, {'id': 'S9', 'elements': [0, 2, 15]}, {'id': 'S10', 'elements': [7, 9, 10, 12]}, {'id': 'S11', 'elements': [1, 2, 3, 7, 9, 10, 12, 14]}, {'id': 'S12', 'elements': [5, 7, 11, 14]}, {'id': 'S13', 'elements': [10, 12]}, {'id': 'S14', 'elements': [2, 4, 7, 13, 15]}, {'id': 'S15', 'elements': [2, 5, 10]}, {'id': 'S16', 'elements': [7, 8, 13, 15]}, {'id': 'S17', 'elements': [3, 16]}]}","['S3', 'S4', 'S7', 'S11', 'S12']",13,nl,0
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.
- **total_habitats**: 13
- **available_species_count**: 13
| species_id | habitats_covered |
|---|---|
| S1 | 5 10 |
| S2 | 2 3 8 11 |
| S3 | 1 2 8 9 11 12 |
| S4 | 1 3 |
| S5 | 5 10 11 12 |
| S6 | 4 5 9 |
| S7 | 6 7 12 |
| S8 | 6 7 9 12 |
| S9 | 1 2 8 |
| S10 | 0 1 2 3 4 5 6 7 8 10 11 12 |
| S11 | 0 4 5 9 10 |
| S12 | 1 2 3 4 |
| S13 | 2 4 7 9 |
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': 13, 'num_sets': 13, 'density': 0.33136094674556216, 'sets': [{'id': 1, 'elements': [6, 11]}, {'id': 2, 'elements': [3, 4, 9, 12]}, {'id': 3, 'elements': [2, 3, 9, 10, 12, 13]}, {'id': 4, 'elements': [2, 4]}, {'id': 5, 'elements': [6, 11, 12, 13]}, {'id': 6, 'elements': [5, 6, 10]}, {'id': 7, 'elements': [7, 8, 13]}, {'id': 8, 'elements': [7, 8, 10, 13]}, {'id': 9, 'elements': [2, 3, 9]}, {'id': 10, 'elements': [1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13]}, {'id': 11, 'elements': [1, 5, 6, 10, 11]}, {'id': 12, 'elements': [2, 3, 4, 5]}, {'id': 13, 'elements': [3, 5, 8, 10]}], 'graph': {'num_nodes': 13, 'edges': [{'u': 13, 'v': 7}, {'u': 13, 'v': 8}, {'u': 13, 'v': 10}, {'u': 2, 'v': 3}, {'u': 2, 'v': 12}, {'u': 3, 'v': 9}, {'u': 3, 'v': 10}, {'u': 6, 'v': 5}, {'u': 1, 'v': 5}, {'u': 12, 'v': 4}, {'u': 12, 'v': 10}, {'u': 5, 'v': 10}, {'u': 5, 'v': 11}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0013.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0013.png'}","[10, 13]",2.0,"{'num_elements': 13, 'num_sets': 13, 'sets': [{'id': 'S1', 'elements': [5, 10]}, {'id': 'S2', 'elements': [2, 3, 8, 11]}, {'id': 'S3', 'elements': [1, 2, 8, 9, 11, 12]}, {'id': 'S4', 'elements': [1, 3]}, {'id': 'S5', 'elements': [5, 10, 11, 12]}, {'id': 'S6', 'elements': [4, 5, 9]}, {'id': 'S7', 'elements': [6, 7, 12]}, {'id': 'S8', 'elements': [6, 7, 9, 12]}, {'id': 'S9', 'elements': [1, 2, 8]}, {'id': 'S10', 'elements': [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12]}, {'id': 'S11', 'elements': [0, 4, 5, 9, 10]}, {'id': 'S12', 'elements': [1, 2, 3, 4]}, {'id': 'S13', 'elements': [2, 4, 7, 9]}]}","['S10', 'S13']",14,markdown_table,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"": 17,
""num_songs_available"": 13,
""sets"": [
{
""song_id"": ""S1"",
""moods_covered"": [
1,
11
]
},
{
""song_id"": ""S2"",
""moods_covered"": [
3,
10,
11
]
},
{
""song_id"": ""S3"",
""moods_covered"": [
1,
2,
5,
8,
11
]
},
{
""song_id"": ""S4"",
""moods_covered"": [
4,
5,
9,
12
]
},
{
""song_id"": ""S5"",
""moods_covered"": [
6,
13,
16
]
},
{
""song_id"": ""S6"",
""moods_covered"": [
14,
15
]
},
{
""song_id"": ""S7"",
""moods_covered"": [
4,
6,
9,
12,
16,
17
]
},
{
""song_id"": ""S8"",
""moods_covered"": [
2,
3
]
},
{
""song_id"": ""S9"",
""moods_covered"": [
1,
2
]
},
{
""song_id"": ""S10"",
""moods_covered"": [
4,
9,
15,
16
]
},
{
""song_id"": ""S11"",
""moods_covered"": [
7,
12,
14,
15
]
},
{
""song_id"": ""S12"",
""moods_covered"": [
4,
12,
13
]
},
{
""song_id"": ""S13"",
""moods_covered"": [
6,
16
]
}
]
}
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': 17, 'num_sets': 13, 'density': 0.19004524886877827, 'sets': [{'id': 1, 'elements': [1, 11]}, {'id': 2, 'elements': [3, 10, 11]}, {'id': 3, 'elements': [1, 2, 5, 8, 11]}, {'id': 4, 'elements': [4, 5, 9, 12]}, {'id': 5, 'elements': [6, 13, 16]}, {'id': 6, 'elements': [14, 15]}, {'id': 7, 'elements': [4, 6, 9, 12, 16, 17]}, {'id': 8, 'elements': [2, 3]}, {'id': 9, 'elements': [1, 2]}, {'id': 10, 'elements': [4, 9, 15, 16]}, {'id': 11, 'elements': [7, 12, 14, 15]}, {'id': 12, 'elements': [4, 12, 13]}, {'id': 13, 'elements': [6, 16]}], 'graph': {'num_nodes': 17, 'edges': [{'u': 4, 'v': 5}, {'u': 4, 'v': 9}, {'u': 15, 'v': 12}, {'u': 15, 'v': 14}, {'u': 5, 'v': 8}, {'u': 6, 'v': 13}, {'u': 6, 'v': 16}, {'u': 14, 'v': 7}, {'u': 1, 'v': 11}, {'u': 11, 'v': 3}, {'u': 10, 'v': 2}, {'u': 12, 'v': 9}, {'u': 2, 'v': 3}, {'u': 3, 'v': 8}, {'u': 9, 'v': 16}, {'u': 16, 'v': 17}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0014.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0014.png'}","[2, 3, 7, 11, 12]",5.0,"{'num_elements': 17, 'num_sets': 13, 'sets': [{'id': 'S1', 'elements': [1, 11]}, {'id': 'S2', 'elements': [3, 10, 11]}, {'id': 'S3', 'elements': [1, 2, 5, 8, 11]}, {'id': 'S4', 'elements': [4, 5, 9, 12]}, {'id': 'S5', 'elements': [6, 13, 16]}, {'id': 'S6', 'elements': [14, 15]}, {'id': 'S7', 'elements': [4, 6, 9, 12, 16, 17]}, {'id': 'S8', 'elements': [2, 3]}, {'id': 'S9', 'elements': [1, 2]}, {'id': 'S10', 'elements': [4, 9, 15, 16]}, {'id': 'S11', 'elements': [7, 12, 14, 15]}, {'id': 'S12', 'elements': [4, 12, 13]}, {'id': 'S13', 'elements': [6, 16]}]}","['S2', 'S3', 'S7', 'S11', 'S12']",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**: 16
- **total_camera_sites**: 15
| camera_site_id | covered_corridors |
|---|---|
| S1 | 7 9 12 15 |
| S2 | 1 6 13 |
| S3 | 2 6 8 13 |
| S4 | 0 3 4 7 12 |
| S5 | 0 11 12 14 |
| S6 | 5 6 8 10 13 15 |
| S7 | 5 6 13 |
| S8 | 1 6 13 15 |
| S9 | 0 9 11 12 15 |
| S10 | 5 10 13 |
| S11 | 9 11 |
| S12 | 0 3 4 9 15 |
| S13 | 1 2 4 5 10 14 15 |
| S14 | 4 13 14 |
| S15 | 0 4 5 6 8 9 13 14 |
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': 16, 'num_sets': 15, 'density': 0.275, 'sets': [{'id': 1, 'elements': [8, 10, 13, 16]}, {'id': 2, 'elements': [2, 7, 14]}, {'id': 3, 'elements': [3, 7, 9, 14]}, {'id': 4, 'elements': [1, 4, 5, 8, 13]}, {'id': 5, 'elements': [1, 12, 13, 15]}, {'id': 6, 'elements': [6, 7, 9, 11, 14, 16]}, {'id': 7, 'elements': [6, 7, 14]}, {'id': 8, 'elements': [2, 7, 14, 16]}, {'id': 9, 'elements': [1, 10, 12, 13, 16]}, {'id': 10, 'elements': [6, 11, 14]}, {'id': 11, 'elements': [10, 12]}, {'id': 12, 'elements': [1, 4, 5, 10, 16]}, {'id': 13, 'elements': [2, 3, 5, 6, 11, 15, 16]}, {'id': 14, 'elements': [5, 14, 15]}, {'id': 15, 'elements': [1, 5, 6, 7, 9, 10, 14, 15]}], 'graph': {'num_nodes': 16, 'edges': [{'u': 6, 'v': 11}, {'u': 6, 'v': 14}, {'u': 13, 'v': 4}, {'u': 13, 'v': 5}, {'u': 2, 'v': 7}, {'u': 7, 'v': 9}, {'u': 7, 'v': 14}, {'u': 8, 'v': 1}, {'u': 3, 'v': 9}, {'u': 10, 'v': 5}, {'u': 10, 'v': 12}, {'u': 4, 'v': 1}, {'u': 5, 'v': 1}, {'u': 5, 'v': 16}, {'u': 15, 'v': 16}, {'u': 16, 'v': 14}, {'u': 9, 'v': 14}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0015.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0015.png'}","[4, 9, 13, 15]",4.0,"{'num_elements': 16, 'num_sets': 15, 'sets': [{'id': 'S1', 'elements': [7, 9, 12, 15]}, {'id': 'S2', 'elements': [1, 6, 13]}, {'id': 'S3', 'elements': [2, 6, 8, 13]}, {'id': 'S4', 'elements': [0, 3, 4, 7, 12]}, {'id': 'S5', 'elements': [0, 11, 12, 14]}, {'id': 'S6', 'elements': [5, 6, 8, 10, 13, 15]}, {'id': 'S7', 'elements': [5, 6, 13]}, {'id': 'S8', 'elements': [1, 6, 13, 15]}, {'id': 'S9', 'elements': [0, 9, 11, 12, 15]}, {'id': 'S10', 'elements': [5, 10, 13]}, {'id': 'S11', 'elements': [9, 11]}, {'id': 'S12', 'elements': [0, 3, 4, 9, 15]}, {'id': 'S13', 'elements': [1, 2, 4, 5, 10, 14, 15]}, {'id': 'S14', 'elements': [4, 13, 14]}, {'id': 'S15', 'elements': [0, 4, 5, 6, 8, 9, 13, 14]}]}","['S4', 'S9', 'S13', 'S15']",16,markdown_table,0
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.
There are 13 sights to cover and 13 pre-built routes available:
Route S1 visits 0 4 5.
Route S2 visits 1 2 7.
Route S3 visits 1 6 8 10.
Route S4 visits 4 11 12.
Route S5 visits 0 3 6 9 12.
Route S6 visits 0 9 11.
Route S7 visits 1 2 5 9 10.
Route S8 visits 1 2 6 7 8.
Route S9 visits 2 7.
Route S10 visits 4 6.
Route S11 visits 2 6 10.
Route S12 visits 0 3 4 5 11 12.
Route S13 visits 3 4 11.
The operator should choose the smallest number of distinct routes that together visit all 13 sights from the 13 options.
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': 13, 'num_sets': 13, 'density': 0.2781065088757396, 'sets': [{'id': 1, 'elements': [1, 5, 6]}, {'id': 2, 'elements': [2, 3, 8]}, {'id': 3, 'elements': [2, 7, 9, 11]}, {'id': 4, 'elements': [5, 12, 13]}, {'id': 5, 'elements': [1, 4, 7, 10, 13]}, {'id': 6, 'elements': [1, 10, 12]}, {'id': 7, 'elements': [2, 3, 6, 10, 11]}, {'id': 8, 'elements': [2, 3, 7, 8, 9]}, {'id': 9, 'elements': [3, 8]}, {'id': 10, 'elements': [5, 7]}, {'id': 11, 'elements': [3, 7, 11]}, {'id': 12, 'elements': [1, 4, 5, 6, 12, 13]}, {'id': 13, 'elements': [4, 5, 12]}], 'graph': {'num_nodes': 13, 'edges': [{'u': 8, 'v': 3}, {'u': 8, 'v': 9}, {'u': 3, 'v': 2}, {'u': 3, 'v': 7}, {'u': 4, 'v': 12}, {'u': 5, 'v': 1}, {'u': 5, 'v': 6}, {'u': 5, 'v': 12}, {'u': 6, 'v': 7}, {'u': 6, 'v': 10}, {'u': 7, 'v': 11}, {'u': 12, 'v': 13}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0016.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0016.png'}","[7, 8, 12]",3.0,"{'num_elements': 13, 'num_sets': 13, 'sets': [{'id': 'S1', 'elements': [0, 4, 5]}, {'id': 'S2', 'elements': [1, 2, 7]}, {'id': 'S3', 'elements': [1, 6, 8, 10]}, {'id': 'S4', 'elements': [4, 11, 12]}, {'id': 'S5', 'elements': [0, 3, 6, 9, 12]}, {'id': 'S6', 'elements': [0, 9, 11]}, {'id': 'S7', 'elements': [1, 2, 5, 9, 10]}, {'id': 'S8', 'elements': [1, 2, 6, 7, 8]}, {'id': 'S9', 'elements': [2, 7]}, {'id': 'S10', 'elements': [4, 6]}, {'id': 'S11', 'elements': [2, 6, 10]}, {'id': 'S12', 'elements': [0, 3, 4, 5, 11, 12]}, {'id': 'S13', 'elements': [3, 4, 11]}]}","['S7', 'S8', 'S12']",17,nl,0
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.
They recorded 13 distinct critical files and 13 available storage sites.
Storage site S1 contains the files A E.
Storage site S2 contains the files B J K M.
Storage site S3 contains the files A D E.
Storage site S4 contains the files D E F.
Storage site S5 contains the files C F L.
Storage site S6 contains the files C D E F I L.
Storage site S7 contains the files E F G H L.
Storage site S8 contains the files G H J K M.
Storage site S9 contains the files F J.
Storage site S10 contains the files B F G H I.
Storage site S11 contains the files B H J M.
Storage site S12 contains the files E F.
Storage site S13 contains the files H J K.
They aim to select as few storage sites as possible so every one of the 13 files is stored at least once.
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': 13, 'num_sets': 13, 'density': 0.2781065088757396, 'sets': [{'id': 1, 'elements': [1, 5]}, {'id': 2, 'elements': [2, 10, 11, 13]}, {'id': 3, 'elements': [1, 4, 5]}, {'id': 4, 'elements': [4, 5, 6]}, {'id': 5, 'elements': [3, 6, 12]}, {'id': 6, 'elements': [3, 4, 5, 6, 9, 12]}, {'id': 7, 'elements': [5, 6, 7, 8, 12]}, {'id': 8, 'elements': [7, 8, 10, 11, 13]}, {'id': 9, 'elements': [6, 10]}, {'id': 10, 'elements': [2, 6, 7, 8, 9]}, {'id': 11, 'elements': [2, 8, 10, 13]}, {'id': 12, 'elements': [5, 6]}, {'id': 13, 'elements': [8, 10, 11]}], 'graph': {'num_nodes': 13, 'edges': [{'u': 8, 'v': 2}, {'u': 8, 'v': 10}, {'u': 8, 'v': 11}, {'u': 8, 'v': 13}, {'u': 10, 'v': 7}, {'u': 9, 'v': 7}, {'u': 4, 'v': 5}, {'u': 7, 'v': 6}, {'u': 1, 'v': 3}, {'u': 13, 'v': 2}, {'u': 12, 'v': 6}, {'u': 5, 'v': 3}, {'u': 5, 'v': 6}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0017.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0017.png'}","[3, 6, 8, 10]",4.0,"{'num_elements': 13, 'num_sets': 13, 'sets': [{'id': 'S1', 'elements': ['A', 'E']}, {'id': 'S2', 'elements': ['B', 'J', 'K', 'M']}, {'id': 'S3', 'elements': ['A', 'D', 'E']}, {'id': 'S4', 'elements': ['D', 'E', 'F']}, {'id': 'S5', 'elements': ['C', 'F', 'L']}, {'id': 'S6', 'elements': ['C', 'D', 'E', 'F', 'I', 'L']}, {'id': 'S7', 'elements': ['E', 'F', 'G', 'H', 'L']}, {'id': 'S8', 'elements': ['G', 'H', 'J', 'K', 'M']}, {'id': 'S9', 'elements': ['F', 'J']}, {'id': 'S10', 'elements': ['B', 'F', 'G', 'H', 'I']}, {'id': 'S11', 'elements': ['B', 'H', 'J', 'M']}, {'id': 'S12', 'elements': ['E', 'F']}, {'id': 'S13', 'elements': ['H', 'J', 'K']}]}","['S3', 'S6', 'S8', 'S10']",18,nl,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.
{
""total_required_language_pairs"": 14,
""total_available_freelancers"": 11,
""sets"": [
{
""freelancer_id"": ""S1"",
""covered_language_pairs"": [
""A"",
""D"",
""J""
]
},
{
""freelancer_id"": ""S2"",
""covered_language_pairs"": [
""B"",
""D"",
""J"",
""K""
]
},
{
""freelancer_id"": ""S3"",
""covered_language_pairs"": [
""C"",
""G"",
""K""
]
},
{
""freelancer_id"": ""S4"",
""covered_language_pairs"": [
""A"",
""E"",
""F"",
""J"",
""K"",
""M"",
""N""
]
},
{
""freelancer_id"": ""S5"",
""covered_language_pairs"": [
""B"",
""D"",
""E"",
""F"",
""K"",
""N""
]
},
{
""freelancer_id"": ""S6"",
""covered_language_pairs"": [
""C"",
""G"",
""I"",
""K""
]
},
{
""freelancer_id"": ""S7"",
""covered_language_pairs"": [
""F"",
""H"",
""L"",
""N""
]
},
{
""freelancer_id"": ""S8"",
""covered_language_pairs"": [
""B"",
""C"",
""D"",
""F"",
""G"",
""I"",
""K"",
""L"",
""M""
]
},
{
""freelancer_id"": ""S9"",
""covered_language_pairs"": [
""H"",
""K"",
""L"",
""M"",
""N""
]
},
{
""freelancer_id"": ""S10"",
""covered_language_pairs"": [
""D"",
""I"",
""K"",
""N""
]
},
{
""freelancer_id"": ""S11"",
""covered_language_pairs"": [
""D"",
""E"",
""F"",
""H"",
""M""
]
}
]
}
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': 14, 'num_sets': 11, 'density': 0.35064935064935066, 'sets': [{'id': 1, 'elements': [1, 4, 10]}, {'id': 2, 'elements': [2, 4, 10, 11]}, {'id': 3, 'elements': [3, 7, 11]}, {'id': 4, 'elements': [1, 5, 6, 10, 11, 13, 14]}, {'id': 5, 'elements': [2, 4, 5, 6, 11, 14]}, {'id': 6, 'elements': [3, 7, 9, 11]}, {'id': 7, 'elements': [6, 8, 12, 14]}, {'id': 8, 'elements': [2, 3, 4, 6, 7, 9, 11, 12, 13]}, {'id': 9, 'elements': [8, 11, 12, 13, 14]}, {'id': 10, 'elements': [4, 9, 11, 14]}, {'id': 11, 'elements': [4, 5, 6, 8, 13]}], 'graph': {'num_nodes': 14, 'edges': [{'u': 3, 'v': 9}, {'u': 1, 'v': 2}, {'u': 10, 'v': 2}, {'u': 14, 'v': 6}, {'u': 14, 'v': 8}, {'u': 14, 'v': 12}, {'u': 11, 'v': 4}, {'u': 11, 'v': 9}, {'u': 11, 'v': 13}, {'u': 2, 'v': 4}, {'u': 6, 'v': 4}, {'u': 6, 'v': 5}, {'u': 7, 'v': 9}, {'u': 13, 'v': 12}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0018.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0018.png'}","[4, 8, 11]",3.0,"{'num_elements': 14, 'num_sets': 11, 'sets': [{'id': 'S1', 'elements': ['A', 'D', 'J']}, {'id': 'S2', 'elements': ['B', 'D', 'J', 'K']}, {'id': 'S3', 'elements': ['C', 'G', 'K']}, {'id': 'S4', 'elements': ['A', 'E', 'F', 'J', 'K', 'M', 'N']}, {'id': 'S5', 'elements': ['B', 'D', 'E', 'F', 'K', 'N']}, {'id': 'S6', 'elements': ['C', 'G', 'I', 'K']}, {'id': 'S7', 'elements': ['F', 'H', 'L', 'N']}, {'id': 'S8', 'elements': ['B', 'C', 'D', 'F', 'G', 'I', 'K', 'L', 'M']}, {'id': 'S9', 'elements': ['H', 'K', 'L', 'M', 'N']}, {'id': 'S10', 'elements': ['D', 'I', 'K', 'N']}, {'id': 'S11', 'elements': ['D', 'E', 'F', 'H', 'M']}]}","['S4', 'S8', 'S11']",19,json,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.
{
""total_syllabus_topics"": 14,
""total_textbook_options"": 14,
""sets"": [
{
""textbook_id"": ""S1"",
""topics_covered"": [
3,
4,
6,
7,
9,
11,
12
]
},
{
""textbook_id"": ""S2"",
""topics_covered"": [
5,
10,
13
]
},
{
""textbook_id"": ""S3"",
""topics_covered"": [
2,
4,
8,
9,
11,
13
]
},
{
""textbook_id"": ""S4"",
""topics_covered"": [
3,
4
]
},
{
""textbook_id"": ""S5"",
""topics_covered"": [
0,
2,
3,
7,
9
]
},
{
""textbook_id"": ""S6"",
""topics_covered"": [
1,
5,
13
]
},
{
""textbook_id"": ""S7"",
""topics_covered"": [
0,
4,
6,
9,
11
]
},
{
""textbook_id"": ""S8"",
""topics_covered"": [
0,
4,
8,
9
]
},
{
""textbook_id"": ""S9"",
""topics_covered"": [
2,
4,
7,
8,
11
]
},
{
""textbook_id"": ""S10"",
""topics_covered"": [
0,
2,
3,
6,
7,
8,
12
]
},
{
""textbook_id"": ""S11"",
""topics_covered"": [
1,
5,
8,
10,
11
]
},
{
""textbook_id"": ""S12"",
""topics_covered"": [
0,
2,
6,
8,
10,
13
]
},
{
""textbook_id"": ""S13"",
""topics_covered"": [
2,
3,
6,
9,
12,
13
]
},
{
""textbook_id"": ""S14"",
""topics_covered"": [
1,
2,
10,
11,
12
]
}
]
}
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': 14, 'num_sets': 14, 'density': 0.3520408163265306, 'sets': [{'id': 1, 'elements': [4, 5, 7, 8, 10, 12, 13]}, {'id': 2, 'elements': [6, 11, 14]}, {'id': 3, 'elements': [3, 5, 9, 10, 12, 14]}, {'id': 4, 'elements': [4, 5]}, {'id': 5, 'elements': [1, 3, 4, 8, 10]}, {'id': 6, 'elements': [2, 6, 14]}, {'id': 7, 'elements': [1, 5, 7, 10, 12]}, {'id': 8, 'elements': [1, 5, 9, 10]}, {'id': 9, 'elements': [3, 5, 8, 9, 12]}, {'id': 10, 'elements': [1, 3, 4, 7, 8, 9, 13]}, {'id': 11, 'elements': [2, 6, 9, 11, 12]}, {'id': 12, 'elements': [1, 3, 7, 9, 11, 14]}, {'id': 13, 'elements': [3, 4, 7, 10, 13, 14]}, {'id': 14, 'elements': [2, 3, 11, 12, 13]}], 'graph': {'num_nodes': 14, 'edges': [{'u': 7, 'v': 3}, {'u': 7, 'v': 10}, {'u': 7, 'v': 13}, {'u': 6, 'v': 11}, {'u': 1, 'v': 4}, {'u': 1, 'v': 10}, {'u': 1, 'v': 13}, {'u': 5, 'v': 8}, {'u': 5, 'v': 9}, {'u': 5, 'v': 10}, {'u': 8, 'v': 4}, {'u': 3, 'v': 9}, {'u': 3, 'v': 12}, {'u': 11, 'v': 2}, {'u': 11, 'v': 14}, {'u': 13, 'v': 12}, {'u': 14, 'v': 9}, {'u': 14, 'v': 12}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0019.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0019.png'}","[3, 10, 11]",3.0,"{'num_elements': 14, 'num_sets': 14, 'sets': [{'id': 'S1', 'elements': [3, 4, 6, 7, 9, 11, 12]}, {'id': 'S2', 'elements': [5, 10, 13]}, {'id': 'S3', 'elements': [2, 4, 8, 9, 11, 13]}, {'id': 'S4', 'elements': [3, 4]}, {'id': 'S5', 'elements': [0, 2, 3, 7, 9]}, {'id': 'S6', 'elements': [1, 5, 13]}, {'id': 'S7', 'elements': [0, 4, 6, 9, 11]}, {'id': 'S8', 'elements': [0, 4, 8, 9]}, {'id': 'S9', 'elements': [2, 4, 7, 8, 11]}, {'id': 'S10', 'elements': [0, 2, 3, 6, 7, 8, 12]}, {'id': 'S11', 'elements': [1, 5, 8, 10, 11]}, {'id': 'S12', 'elements': [0, 2, 6, 8, 10, 13]}, {'id': 'S13', 'elements': [2, 3, 6, 9, 12, 13]}, {'id': 'S14', 'elements': [1, 2, 10, 11, 12]}]}","['S3', 'S10', 'S11']",20,json,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.
Here are the 16 vendor packages covering the 17 required services:
Package S1 covers A H L P Q.
Package S2 covers B E N O.
Package S3 covers C D J K.
Package S4 covers C D M.
Package S5 covers B E H O P.
Package S6 covers F G Q.
Package S7 covers F G P Q.
Package S8 covers E H P Q.
Package S9 covers A L P.
Package S10 covers C D E J K.
Package S11 covers C D K M.
Package S12 covers A L.
Package S13 covers B D E H J N.
Package S14 covers E O.
Package S15 covers A G H I L P.
Package S16 covers A F.
I'll pick the fewest packages needed so all 17 services are covered.
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': 17, 'num_sets': 16, 'density': 0.22794117647058823, 'sets': [{'id': 1, 'elements': [1, 8, 12, 16, 17]}, {'id': 2, 'elements': [2, 5, 14, 15]}, {'id': 3, 'elements': [3, 4, 10, 11]}, {'id': 4, 'elements': [3, 4, 13]}, {'id': 5, 'elements': [2, 5, 8, 15, 16]}, {'id': 6, 'elements': [6, 7, 17]}, {'id': 7, 'elements': [6, 7, 16, 17]}, {'id': 8, 'elements': [5, 8, 16, 17]}, {'id': 9, 'elements': [1, 12, 16]}, {'id': 10, 'elements': [3, 4, 5, 10, 11]}, {'id': 11, 'elements': [3, 4, 11, 13]}, {'id': 12, 'elements': [1, 12]}, {'id': 13, 'elements': [2, 4, 5, 8, 10, 14]}, {'id': 14, 'elements': [5, 15]}, {'id': 15, 'elements': [1, 7, 8, 9, 12, 16]}, {'id': 16, 'elements': [1, 6]}], 'graph': {'num_nodes': 17, 'edges': [{'u': 6, 'v': 7}, {'u': 7, 'v': 17}, {'u': 16, 'v': 1}, {'u': 16, 'v': 8}, {'u': 16, 'v': 17}, {'u': 2, 'v': 5}, {'u': 2, 'v': 15}, {'u': 1, 'v': 9}, {'u': 1, 'v': 12}, {'u': 3, 'v': 4}, {'u': 14, 'v': 5}, {'u': 14, 'v': 10}, {'u': 5, 'v': 8}, {'u': 4, 'v': 10}, {'u': 4, 'v': 11}, {'u': 13, 'v': 11}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0020.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0020.png'}","[2, 6, 11, 13, 15]",5.0,"{'num_elements': 17, 'num_sets': 16, 'sets': [{'id': 'S1', 'elements': ['A', 'H', 'L', 'P', 'Q']}, {'id': 'S2', 'elements': ['B', 'E', 'N', 'O']}, {'id': 'S3', 'elements': ['C', 'D', 'J', 'K']}, {'id': 'S4', 'elements': ['C', 'D', 'M']}, {'id': 'S5', 'elements': ['B', 'E', 'H', 'O', 'P']}, {'id': 'S6', 'elements': ['F', 'G', 'Q']}, {'id': 'S7', 'elements': ['F', 'G', 'P', 'Q']}, {'id': 'S8', 'elements': ['E', 'H', 'P', 'Q']}, {'id': 'S9', 'elements': ['A', 'L', 'P']}, {'id': 'S10', 'elements': ['C', 'D', 'E', 'J', 'K']}, {'id': 'S11', 'elements': ['C', 'D', 'K', 'M']}, {'id': 'S12', 'elements': ['A', 'L']}, {'id': 'S13', 'elements': ['B', 'D', 'E', 'H', 'J', 'N']}, {'id': 'S14', 'elements': ['E', 'O']}, {'id': 'S15', 'elements': ['A', 'G', 'H', 'I', 'L', 'P']}, {'id': 'S16', 'elements': ['A', 'F']}]}","['S2', 'S6', 'S11', 'S13', 'S15']",21,nl,names
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"": 17,
""total_available_toolkits"": 17,
""sets"": [
{
""toolkit_id"": ""S1"",
""handled_tasks"": [
1,
10
]
},
{
""toolkit_id"": ""S2"",
""handled_tasks"": [
0,
2,
4,
5,
9,
11
]
},
{
""toolkit_id"": ""S3"",
""handled_tasks"": [
0,
1,
2,
7,
10,
12
]
},
{
""toolkit_id"": ""S4"",
""handled_tasks"": [
3,
7
]
},
{
""toolkit_id"": ""S5"",
""handled_tasks"": [
1,
3,
4,
8,
9,
11,
16
]
},
{
""toolkit_id"": ""S6"",
""handled_tasks"": [
1,
3,
4,
5,
9,
11,
14
]
},
{
""toolkit_id"": ""S7"",
""handled_tasks"": [
6,
14,
15
]
},
{
""toolkit_id"": ""S8"",
""handled_tasks"": [
2,
3,
6,
7,
15
]
},
{
""toolkit_id"": ""S9"",
""handled_tasks"": [
8,
11
]
},
{
""toolkit_id"": ""S10"",
""handled_tasks"": [
1,
4,
9,
11,
13
]
},
{
""toolkit_id"": ""S11"",
""handled_tasks"": [
0,
1,
2,
10,
12
]
},
{
""toolkit_id"": ""S12"",
""handled_tasks"": [
1,
4,
5,
9,
11
]
},
{
""toolkit_id"": ""S13"",
""handled_tasks"": [
7,
12,
15
]
},
{
""toolkit_id"": ""S14"",
""handled_tasks"": [
4,
13
]
},
{
""toolkit_id"": ""S15"",
""handled_tasks"": [
6,
7,
12,
14
]
},
{
""toolkit_id"": ""S16"",
""handled_tasks"": [
7,
14,
15
]
},
{
""toolkit_id"": ""S17"",
""handled_tasks"": [
3,
4,
5,
16
]
}
]
}
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': 17, 'num_sets': 17, 'density': 0.24567474048442905, 'sets': [{'id': 1, 'elements': [2, 11]}, {'id': 2, 'elements': [1, 3, 5, 6, 10, 12]}, {'id': 3, 'elements': [1, 2, 3, 8, 11, 13]}, {'id': 4, 'elements': [4, 8]}, {'id': 5, 'elements': [2, 4, 5, 9, 10, 12, 17]}, {'id': 6, 'elements': [2, 4, 5, 6, 10, 12, 15]}, {'id': 7, 'elements': [7, 15, 16]}, {'id': 8, 'elements': [3, 4, 7, 8, 16]}, {'id': 9, 'elements': [9, 12]}, {'id': 10, 'elements': [2, 5, 10, 12, 14]}, {'id': 11, 'elements': [1, 2, 3, 11, 13]}, {'id': 12, 'elements': [2, 5, 6, 10, 12]}, {'id': 13, 'elements': [8, 13, 16]}, {'id': 14, 'elements': [5, 14]}, {'id': 15, 'elements': [7, 8, 13, 15]}, {'id': 16, 'elements': [8, 15, 16]}, {'id': 17, 'elements': [4, 5, 6, 17]}], 'graph': {'num_nodes': 17, 'edges': [{'u': 5, 'v': 2}, {'u': 5, 'v': 6}, {'u': 5, 'v': 10}, {'u': 5, 'v': 12}, {'u': 6, 'v': 4}, {'u': 6, 'v': 17}, {'u': 12, 'v': 9}, {'u': 14, 'v': 10}, {'u': 8, 'v': 7}, {'u': 8, 'v': 13}, {'u': 8, 'v': 15}, {'u': 8, 'v': 16}, {'u': 2, 'v': 11}, {'u': 13, 'v': 3}, {'u': 3, 'v': 11}, {'u': 15, 'v': 4}, {'u': 11, 'v': 1}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0021.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0021.png'}","[3, 5, 6, 7, 10]",5.0,"{'num_elements': 17, 'num_sets': 17, 'sets': [{'id': 'S1', 'elements': [1, 10]}, {'id': 'S2', 'elements': [0, 2, 4, 5, 9, 11]}, {'id': 'S3', 'elements': [0, 1, 2, 7, 10, 12]}, {'id': 'S4', 'elements': [3, 7]}, {'id': 'S5', 'elements': [1, 3, 4, 8, 9, 11, 16]}, {'id': 'S6', 'elements': [1, 3, 4, 5, 9, 11, 14]}, {'id': 'S7', 'elements': [6, 14, 15]}, {'id': 'S8', 'elements': [2, 3, 6, 7, 15]}, {'id': 'S9', 'elements': [8, 11]}, {'id': 'S10', 'elements': [1, 4, 9, 11, 13]}, {'id': 'S11', 'elements': [0, 1, 2, 10, 12]}, {'id': 'S12', 'elements': [1, 4, 5, 9, 11]}, {'id': 'S13', 'elements': [7, 12, 15]}, {'id': 'S14', 'elements': [4, 13]}, {'id': 'S15', 'elements': [6, 7, 12, 14]}, {'id': 'S16', 'elements': [7, 14, 15]}, {'id': 'S17', 'elements': [3, 4, 5, 16]}]}","['S3', 'S5', 'S6', 'S7', 'S10']",22,json,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 13 distinct ingredients to cover and 12 available bundles:
Bundle S1 supplies the ingredients: 1 2 4 7 8 12.
Bundle S2 supplies the ingredients: 2 6 7 8 9.
Bundle S3 supplies the ingredients: 4 6 10.
Bundle S4 supplies the ingredients: 4 7 8 9 12.
Bundle S5 supplies the ingredients: 3 5 6 9 10 12.
Bundle S6 supplies the ingredients: 0 2 4 5 7 8.
Bundle S7 supplies the ingredients: 1 4 7 9.
Bundle S8 supplies the ingredients: 1 2 4 6 8 11.
Bundle S9 supplies the ingredients: 2 4 5 7 9 12.
Bundle S10 supplies the ingredients: 3 5 10 12.
Bundle S11 supplies the ingredients: 1 2 8 11.
Bundle S12 supplies the ingredients: 3 9 10 12.
Pick bundles so all 13 ingredients are covered while using as few of the 12 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': 13, 'num_sets': 12, 'density': 0.3782051282051282, 'sets': [{'id': 1, 'elements': [2, 3, 5, 8, 9, 13]}, {'id': 2, 'elements': [3, 7, 8, 9, 10]}, {'id': 3, 'elements': [5, 7, 11]}, {'id': 4, 'elements': [5, 8, 9, 10, 13]}, {'id': 5, 'elements': [4, 6, 7, 10, 11, 13]}, {'id': 6, 'elements': [1, 3, 5, 6, 8, 9]}, {'id': 7, 'elements': [2, 5, 8, 10]}, {'id': 8, 'elements': [2, 3, 5, 7, 9, 12]}, {'id': 9, 'elements': [3, 5, 6, 8, 10, 13]}, {'id': 10, 'elements': [4, 6, 11, 13]}, {'id': 11, 'elements': [2, 3, 9, 12]}, {'id': 12, 'elements': [4, 10, 11, 13]}], 'graph': {'num_nodes': 13, 'edges': [{'u': 13, 'v': 4}, {'u': 13, 'v': 5}, {'u': 13, 'v': 11}, {'u': 5, 'v': 2}, {'u': 5, 'v': 10}, {'u': 10, 'v': 7}, {'u': 10, 'v': 8}, {'u': 1, 'v': 6}, {'u': 4, 'v': 6}, {'u': 4, 'v': 11}, {'u': 7, 'v': 3}, {'u': 7, 'v': 6}, {'u': 12, 'v': 9}, {'u': 2, 'v': 8}, {'u': 2, 'v': 9}, {'u': 3, 'v': 8}, {'u': 3, 'v': 9}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0022.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0022.png'}","[5, 6, 8]",3.0,"{'num_elements': 13, 'num_sets': 12, 'sets': [{'id': 'S1', 'elements': [1, 2, 4, 7, 8, 12]}, {'id': 'S2', 'elements': [2, 6, 7, 8, 9]}, {'id': 'S3', 'elements': [4, 6, 10]}, {'id': 'S4', 'elements': [4, 7, 8, 9, 12]}, {'id': 'S5', 'elements': [3, 5, 6, 9, 10, 12]}, {'id': 'S6', 'elements': [0, 2, 4, 5, 7, 8]}, {'id': 'S7', 'elements': [1, 4, 7, 9]}, {'id': 'S8', 'elements': [1, 2, 4, 6, 8, 11]}, {'id': 'S9', 'elements': [2, 4, 5, 7, 9, 12]}, {'id': 'S10', 'elements': [3, 5, 10, 12]}, {'id': 'S11', 'elements': [1, 2, 8, 11]}, {'id': 'S12', 'elements': [3, 9, 10, 12]}]}","['S5', 'S6', 'S8']",23,nl,0
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=17
# total_boxes_available=15
box_id,subjects_covered
S1,1 8 9 16
S2,2 4 6 9 12 13
S3,3 8
S4,2 4 11
S5,2 6 17
S6,9 10 11 12
S7,5 8 9 13 15
S8,1 2 7 8 9 10 11 12 13 17
S9,7 9 11 12
S10,2 4 7 9 10 12 17
S11,4 7 9 10 11 12
S12,1 2 3 8 9 13 15 16
S13,2 14
S14,1 13
S15,2 9 14
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': 17, 'num_sets': 15, 'density': 0.27058823529411763, 'sets': [{'id': 1, 'elements': [1, 8, 9, 16]}, {'id': 2, 'elements': [2, 4, 6, 9, 12, 13]}, {'id': 3, 'elements': [3, 8]}, {'id': 4, 'elements': [2, 4, 11]}, {'id': 5, 'elements': [2, 6, 17]}, {'id': 6, 'elements': [9, 10, 11, 12]}, {'id': 7, 'elements': [5, 8, 9, 13, 15]}, {'id': 8, 'elements': [1, 2, 7, 8, 9, 10, 11, 12, 13, 17]}, {'id': 9, 'elements': [7, 9, 11, 12]}, {'id': 10, 'elements': [2, 4, 7, 9, 10, 12, 17]}, {'id': 11, 'elements': [4, 7, 9, 10, 11, 12]}, {'id': 12, 'elements': [1, 2, 3, 8, 9, 13, 15, 16]}, {'id': 13, 'elements': [2, 14]}, {'id': 14, 'elements': [1, 13]}, {'id': 15, 'elements': [2, 9, 14]}], 'graph': {'num_nodes': 17, 'edges': [{'u': 1, 'v': 13}, {'u': 1, 'v': 16}, {'u': 6, 'v': 17}, {'u': 7, 'v': 12}, {'u': 15, 'v': 8}, {'u': 4, 'v': 11}, {'u': 3, 'v': 5}, {'u': 3, 'v': 8}, {'u': 2, 'v': 9}, {'u': 2, 'v': 11}, {'u': 2, 'v': 17}, {'u': 11, 'v': 12}, {'u': 8, 'v': 13}, {'u': 12, 'v': 9}, {'u': 12, 'v': 10}, {'u': 9, 'v': 13}, {'u': 14, 'v': 17}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0023.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0023.png'}","[5, 7, 11, 12, 15]",5.0,"{'num_elements': 17, 'num_sets': 15, 'sets': [{'id': 'S1', 'elements': [1, 8, 9, 16]}, {'id': 'S2', 'elements': [2, 4, 6, 9, 12, 13]}, {'id': 'S3', 'elements': [3, 8]}, {'id': 'S4', 'elements': [2, 4, 11]}, {'id': 'S5', 'elements': [2, 6, 17]}, {'id': 'S6', 'elements': [9, 10, 11, 12]}, {'id': 'S7', 'elements': [5, 8, 9, 13, 15]}, {'id': 'S8', 'elements': [1, 2, 7, 8, 9, 10, 11, 12, 13, 17]}, {'id': 'S9', 'elements': [7, 9, 11, 12]}, {'id': 'S10', 'elements': [2, 4, 7, 9, 10, 12, 17]}, {'id': 'S11', 'elements': [4, 7, 9, 10, 11, 12]}, {'id': 'S12', 'elements': [1, 2, 3, 8, 9, 13, 15, 16]}, {'id': 'S13', 'elements': [2, 14]}, {'id': 'S14', 'elements': [1, 13]}, {'id': 'S15', 'elements': [2, 9, 14]}]}","['S5', 'S7', 'S11', 'S12', 'S15']",24,csv,1
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=14
# num_candidate_libraries=14
library_id,features_provided
S1,5 8 9
S2,1 11 12
S3,2 5 6 8 10
S4,2 3 11 13
S5,3 4 6 13
S6,0 2 5 8 10
S7,2 3 6 8 11
S8,2 6 7 8
S9,0 2 5 6 7 8 10 12
S10,0 5 9
S11,1 2 5 8 10 12
S12,1 2 3 10
S13,1 6 10
S14,3 4 13
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': 14, 'num_sets': 14, 'density': 0.30612244897959184, 'sets': [{'id': 1, 'elements': [6, 9, 10]}, {'id': 2, 'elements': [2, 12, 13]}, {'id': 3, 'elements': [3, 6, 7, 9, 11]}, {'id': 4, 'elements': [3, 4, 12, 14]}, {'id': 5, 'elements': [4, 5, 7, 14]}, {'id': 6, 'elements': [1, 3, 6, 9, 11]}, {'id': 7, 'elements': [3, 4, 7, 9, 12]}, {'id': 8, 'elements': [3, 7, 8, 9]}, {'id': 9, 'elements': [1, 3, 6, 7, 8, 9, 11, 13]}, {'id': 10, 'elements': [1, 6, 10]}, {'id': 11, 'elements': [2, 3, 6, 9, 11, 13]}, {'id': 12, 'elements': [2, 3, 4, 11]}, {'id': 13, 'elements': [2, 7, 11]}, {'id': 14, 'elements': [4, 5, 14]}], 'graph': {'num_nodes': 14, 'edges': [{'u': 5, 'v': 4}, {'u': 5, 'v': 14}, {'u': 7, 'v': 3}, {'u': 7, 'v': 4}, {'u': 7, 'v': 12}, {'u': 10, 'v': 1}, {'u': 3, 'v': 8}, {'u': 3, 'v': 9}, {'u': 9, 'v': 6}, {'u': 9, 'v': 11}, {'u': 13, 'v': 2}, {'u': 13, 'v': 11}, {'u': 13, 'v': 12}, {'u': 6, 'v': 1}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0024.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0024.png'}","[2, 5, 9, 10]",4.0,"{'num_elements': 14, 'num_sets': 14, 'sets': [{'id': 'S1', 'elements': [5, 8, 9]}, {'id': 'S2', 'elements': [1, 11, 12]}, {'id': 'S3', 'elements': [2, 5, 6, 8, 10]}, {'id': 'S4', 'elements': [2, 3, 11, 13]}, {'id': 'S5', 'elements': [3, 4, 6, 13]}, {'id': 'S6', 'elements': [0, 2, 5, 8, 10]}, {'id': 'S7', 'elements': [2, 3, 6, 8, 11]}, {'id': 'S8', 'elements': [2, 6, 7, 8]}, {'id': 'S9', 'elements': [0, 2, 5, 6, 7, 8, 10, 12]}, {'id': 'S10', 'elements': [0, 5, 9]}, {'id': 'S11', 'elements': [1, 2, 5, 8, 10, 12]}, {'id': 'S12', 'elements': [1, 2, 3, 10]}, {'id': 'S13', 'elements': [1, 6, 10]}, {'id': 'S14', 'elements': [3, 4, 13]}]}","['S2', 'S5', 'S9', 'S10']",25,csv,0
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**: 18
- **num_modules**: 16
| module_id | themes |
|---|---|
| S1 | F I J |
| S2 | B G K O R |
| S3 | C M Q |
| S4 | C D P |
| S5 | B K O Q |
| S6 | A D F J Q |
| S7 | B O |
| S8 | M Q |
| S9 | I N |
| S10 | I J |
| S11 | E K L O |
| S12 | C D H M Q |
| S13 | I J N |
| S14 | B D E G L O P |
| S15 | D E F M Q |
| S16 | B R |
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': 18, 'num_sets': 16, 'density': 0.19791666666666666, 'sets': [{'id': 1, 'elements': [6, 9, 10]}, {'id': 2, 'elements': [2, 7, 11, 15, 18]}, {'id': 3, 'elements': [3, 13, 17]}, {'id': 4, 'elements': [3, 4, 16]}, {'id': 5, 'elements': [2, 11, 15, 17]}, {'id': 6, 'elements': [1, 4, 6, 10, 17]}, {'id': 7, 'elements': [2, 15]}, {'id': 8, 'elements': [13, 17]}, {'id': 9, 'elements': [9, 14]}, {'id': 10, 'elements': [9, 10]}, {'id': 11, 'elements': [5, 11, 12, 15]}, {'id': 12, 'elements': [3, 4, 8, 13, 17]}, {'id': 13, 'elements': [9, 10, 14]}, {'id': 14, 'elements': [2, 4, 5, 7, 12, 15, 16]}, {'id': 15, 'elements': [4, 5, 6, 13, 17]}, {'id': 16, 'elements': [2, 18]}], 'graph': {'num_nodes': 18, 'edges': [{'u': 10, 'v': 1}, {'u': 10, 'v': 9}, {'u': 11, 'v': 12}, {'u': 11, 'v': 15}, {'u': 7, 'v': 2}, {'u': 8, 'v': 13}, {'u': 17, 'v': 3}, {'u': 17, 'v': 4}, {'u': 17, 'v': 13}, {'u': 14, 'v': 9}, {'u': 15, 'v': 2}, {'u': 15, 'v': 5}, {'u': 16, 'v': 5}, {'u': 2, 'v': 18}, {'u': 5, 'v': 4}, {'u': 1, 'v': 6}, {'u': 6, 'v': 4}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0025.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0025.png'}","[2, 6, 12, 13, 14]",5.0,"{'num_elements': 18, 'num_sets': 16, 'sets': [{'id': 'S1', 'elements': ['F', 'I', 'J']}, {'id': 'S2', 'elements': ['B', 'G', 'K', 'O', 'R']}, {'id': 'S3', 'elements': ['C', 'M', 'Q']}, {'id': 'S4', 'elements': ['C', 'D', 'P']}, {'id': 'S5', 'elements': ['B', 'K', 'O', 'Q']}, {'id': 'S6', 'elements': ['A', 'D', 'F', 'J', 'Q']}, {'id': 'S7', 'elements': ['B', 'O']}, {'id': 'S8', 'elements': ['M', 'Q']}, {'id': 'S9', 'elements': ['I', 'N']}, {'id': 'S10', 'elements': ['I', 'J']}, {'id': 'S11', 'elements': ['E', 'K', 'L', 'O']}, {'id': 'S12', 'elements': ['C', 'D', 'H', 'M', 'Q']}, {'id': 'S13', 'elements': ['I', 'J', 'N']}, {'id': 'S14', 'elements': ['B', 'D', 'E', 'G', 'L', 'O', 'P']}, {'id': 'S15', 'elements': ['D', 'E', 'F', 'M', 'Q']}, {'id': 'S16', 'elements': ['B', 'R']}]}","['S2', 'S6', 'S12', 'S13', 'S14']",26,markdown_table,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.
{
""total_essential_needs"": 18,
""total_crates_available"": 16,
""sets"": [
{
""crate_id"": ""S1"",
""crate_contents"": [
4,
8,
9,
11,
14,
15
]
},
{
""crate_id"": ""S2"",
""crate_contents"": [
1,
2,
3,
6,
7,
9,
10,
12,
15
]
},
{
""crate_id"": ""S3"",
""crate_contents"": [
2,
6
]
},
{
""crate_id"": ""S4"",
""crate_contents"": [
0,
5,
7,
8,
9,
12,
13,
15,
16,
17
]
},
{
""crate_id"": ""S5"",
""crate_contents"": [
2,
3,
6,
7,
10,
12,
13
]
},
{
""crate_id"": ""S6"",
""crate_contents"": [
0,
2,
5,
12,
13,
15,
17
]
},
{
""crate_id"": ""S7"",
""crate_contents"": [
1,
5,
8,
9,
11,
12,
14,
15,
16,
17
]
},
{
""crate_id"": ""S8"",
""crate_contents"": [
1,
2,
5,
8,
9,
10,
11,
12,
15
]
},
{
""crate_id"": ""S9"",
""crate_contents"": [
6,
10,
12,
13
]
},
{
""crate_id"": ""S10"",
""crate_contents"": [
1,
8,
11,
14
]
},
{
""crate_id"": ""S11"",
""crate_contents"": [
5,
7,
8,
9,
10
]
},
{
""crate_id"": ""S12"",
""crate_contents"": [
5,
7,
10,
13
]
},
{
""crate_id"": ""S13"",
""crate_contents"": [
1,
4,
8,
11,
14,
16,
17
]
},
{
""crate_id"": ""S14"",
""crate_contents"": [
0,
1,
5,
6,
7,
8,
9,
14,
15,
17
]
},
{
""crate_id"": ""S15"",
""crate_contents"": [
5,
8,
16,
17
]
},
{
""crate_id"": ""S16"",
""crate_contents"": [
0,
1,
7,
8,
14,
15,
16,
17
]
}
]
}
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': 18, 'num_sets': 16, 'density': 0.3680555555555556, 'sets': [{'id': 1, 'elements': [5, 9, 10, 12, 15, 16]}, {'id': 2, 'elements': [2, 3, 4, 7, 8, 10, 11, 13, 16]}, {'id': 3, 'elements': [3, 7]}, {'id': 4, 'elements': [1, 6, 8, 9, 10, 13, 14, 16, 17, 18]}, {'id': 5, 'elements': [3, 4, 7, 8, 11, 13, 14]}, {'id': 6, 'elements': [1, 3, 6, 13, 14, 16, 18]}, {'id': 7, 'elements': [2, 6, 9, 10, 12, 13, 15, 16, 17, 18]}, {'id': 8, 'elements': [2, 3, 6, 9, 10, 11, 12, 13, 16]}, {'id': 9, 'elements': [7, 11, 13, 14]}, {'id': 10, 'elements': [2, 9, 12, 15]}, {'id': 11, 'elements': [6, 8, 9, 10, 11]}, {'id': 12, 'elements': [6, 8, 11, 14]}, {'id': 13, 'elements': [2, 5, 9, 12, 15, 17, 18]}, {'id': 14, 'elements': [1, 2, 6, 7, 8, 9, 10, 15, 16, 18]}, {'id': 15, 'elements': [6, 9, 17, 18]}, {'id': 16, 'elements': [1, 2, 8, 9, 15, 16, 17, 18]}], 'graph': {'num_nodes': 18, 'edges': [{'u': 2, 'v': 9}, {'u': 2, 'v': 10}, {'u': 2, 'v': 12}, {'u': 3, 'v': 10}, {'u': 3, 'v': 11}, {'u': 3, 'v': 13}, {'u': 9, 'v': 15}, {'u': 9, 'v': 16}, {'u': 9, 'v': 18}, {'u': 10, 'v': 16}, {'u': 16, 'v': 6}, {'u': 16, 'v': 13}, {'u': 11, 'v': 4}, {'u': 11, 'v': 7}, {'u': 12, 'v': 5}, {'u': 12, 'v': 15}, {'u': 15, 'v': 17}, {'u': 13, 'v': 7}, {'u': 13, 'v': 8}, {'u': 18, 'v': 6}, {'u': 18, 'v': 17}, {'u': 1, 'v': 6}, {'u': 14, 'v': 7}, {'u': 14, 'v': 8}, {'u': 6, 'v': 8}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0026.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0026.png'}","[4, 5, 13]",3.0,"{'num_elements': 18, 'num_sets': 16, 'sets': [{'id': 'S1', 'elements': [4, 8, 9, 11, 14, 15]}, {'id': 'S2', 'elements': [1, 2, 3, 6, 7, 9, 10, 12, 15]}, {'id': 'S3', 'elements': [2, 6]}, {'id': 'S4', 'elements': [0, 5, 7, 8, 9, 12, 13, 15, 16, 17]}, {'id': 'S5', 'elements': [2, 3, 6, 7, 10, 12, 13]}, {'id': 'S6', 'elements': [0, 2, 5, 12, 13, 15, 17]}, {'id': 'S7', 'elements': [1, 5, 8, 9, 11, 12, 14, 15, 16, 17]}, {'id': 'S8', 'elements': [1, 2, 5, 8, 9, 10, 11, 12, 15]}, {'id': 'S9', 'elements': [6, 10, 12, 13]}, {'id': 'S10', 'elements': [1, 8, 11, 14]}, {'id': 'S11', 'elements': [5, 7, 8, 9, 10]}, {'id': 'S12', 'elements': [5, 7, 10, 13]}, {'id': 'S13', 'elements': [1, 4, 8, 11, 14, 16, 17]}, {'id': 'S14', 'elements': [0, 1, 5, 6, 7, 8, 9, 14, 15, 17]}, {'id': 'S15', 'elements': [5, 8, 16, 17]}, {'id': 'S16', 'elements': [0, 1, 7, 8, 14, 15, 16, 17]}]}","['S4', 'S5', 'S13']",27,json,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 18 competencies to cover and 15 courses available.
Course S1 covers competencies B I M P.
Course S2 covers competencies A D E K.
Course S3 covers competencies F G N.
Course S4 covers competencies D E F G I K L O.
Course S5 covers competencies H P.
Course S6 covers competencies F M N.
Course S7 covers competencies I J M N.
Course S8 covers competencies D E G K.
Course S9 covers competencies L O Q.
Course S10 covers competencies B H I J M N P.
Course S11 covers competencies G M N O.
Course S12 covers competencies C D G N.
Course S13 covers competencies B H M P.
Course S14 covers competencies G L O Q R.
Course S15 covers competencies C O Q.
We should pick as few courses as will cover all 18 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': 18, 'num_sets': 15, 'density': 0.22962962962962963, 'sets': [{'id': 1, 'elements': [2, 9, 13, 16]}, {'id': 2, 'elements': [1, 4, 5, 11]}, {'id': 3, 'elements': [6, 7, 14]}, {'id': 4, 'elements': [4, 5, 6, 7, 9, 11, 12, 15]}, {'id': 5, 'elements': [8, 16]}, {'id': 6, 'elements': [6, 13, 14]}, {'id': 7, 'elements': [9, 10, 13, 14]}, {'id': 8, 'elements': [4, 5, 7, 11]}, {'id': 9, 'elements': [12, 15, 17]}, {'id': 10, 'elements': [2, 8, 9, 10, 13, 14, 16]}, {'id': 11, 'elements': [7, 13, 14, 15]}, {'id': 12, 'elements': [3, 4, 7, 14]}, {'id': 13, 'elements': [2, 8, 13, 16]}, {'id': 14, 'elements': [7, 12, 15, 17, 18]}, {'id': 15, 'elements': [3, 15, 17]}], 'graph': {'num_nodes': 18, 'edges': [{'u': 17, 'v': 3}, {'u': 17, 'v': 15}, {'u': 17, 'v': 18}, {'u': 5, 'v': 1}, {'u': 5, 'v': 4}, {'u': 12, 'v': 15}, {'u': 13, 'v': 2}, {'u': 13, 'v': 9}, {'u': 8, 'v': 2}, {'u': 4, 'v': 7}, {'u': 4, 'v': 11}, {'u': 7, 'v': 14}, {'u': 7, 'v': 15}, {'u': 9, 'v': 10}, {'u': 9, 'v': 14}, {'u': 6, 'v': 14}, {'u': 16, 'v': 2}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0027.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0027.png'}","[2, 6, 10, 12, 14]",5.0,"{'num_elements': 18, 'num_sets': 15, 'sets': [{'id': 'S1', 'elements': ['B', 'I', 'M', 'P']}, {'id': 'S2', 'elements': ['A', 'D', 'E', 'K']}, {'id': 'S3', 'elements': ['F', 'G', 'N']}, {'id': 'S4', 'elements': ['D', 'E', 'F', 'G', 'I', 'K', 'L', 'O']}, {'id': 'S5', 'elements': ['H', 'P']}, {'id': 'S6', 'elements': ['F', 'M', 'N']}, {'id': 'S7', 'elements': ['I', 'J', 'M', 'N']}, {'id': 'S8', 'elements': ['D', 'E', 'G', 'K']}, {'id': 'S9', 'elements': ['L', 'O', 'Q']}, {'id': 'S10', 'elements': ['B', 'H', 'I', 'J', 'M', 'N', 'P']}, {'id': 'S11', 'elements': ['G', 'M', 'N', 'O']}, {'id': 'S12', 'elements': ['C', 'D', 'G', 'N']}, {'id': 'S13', 'elements': ['B', 'H', 'M', 'P']}, {'id': 'S14', 'elements': ['G', 'L', 'O', 'Q', 'R']}, {'id': 'S15', 'elements': ['C', 'O', 'Q']}]}","['S2', 'S6', 'S10', 'S12', 'S14']",28,nl,names
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**: 17
- **num_routes_available**: 17
| route_id | neighborhoods_served |
|---|---|
| S1 | 0 2 4 6 9 15 16 |
| S2 | 1 6 |
| S3 | 2 4 8 9 10 11 13 |
| S4 | 7 8 10 13 |
| S5 | 4 6 9 |
| S6 | 3 5 10 13 |
| S7 | 0 2 4 6 8 16 |
| S8 | 3 5 7 10 14 |
| S9 | 0 3 5 10 13 14 15 16 |
| S10 | 0 1 2 6 |
| S11 | 2 3 5 7 8 10 11 14 16 |
| S12 | 2 6 8 10 11 14 |
| S13 | 4 6 12 |
| S14 | 3 5 8 10 15 |
| S15 | 2 5 7 8 10 11 14 |
| S16 | 0 3 13 15 16 |
| S17 | 0 2 8 10 13 15 |
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': 17, 'num_sets': 17, 'density': 0.314878892733564, 'sets': [{'id': 1, 'elements': [1, 3, 5, 7, 10, 16, 17]}, {'id': 2, 'elements': [2, 7]}, {'id': 3, 'elements': [3, 5, 9, 10, 11, 12, 14]}, {'id': 4, 'elements': [8, 9, 11, 14]}, {'id': 5, 'elements': [5, 7, 10]}, {'id': 6, 'elements': [4, 6, 11, 14]}, {'id': 7, 'elements': [1, 3, 5, 7, 9, 17]}, {'id': 8, 'elements': [4, 6, 8, 11, 15]}, {'id': 9, 'elements': [1, 4, 6, 11, 14, 15, 16, 17]}, {'id': 10, 'elements': [1, 2, 3, 7]}, {'id': 11, 'elements': [3, 4, 6, 8, 9, 11, 12, 15, 17]}, {'id': 12, 'elements': [3, 7, 9, 11, 12, 15]}, {'id': 13, 'elements': [5, 7, 13]}, {'id': 14, 'elements': [4, 6, 9, 11, 16]}, {'id': 15, 'elements': [3, 6, 8, 9, 11, 12, 15]}, {'id': 16, 'elements': [1, 4, 14, 16, 17]}, {'id': 17, 'elements': [1, 3, 9, 11, 14, 16]}], 'graph': {'num_nodes': 17, 'edges': [{'u': 12, 'v': 3}, {'u': 12, 'v': 15}, {'u': 5, 'v': 7}, {'u': 5, 'v': 13}, {'u': 4, 'v': 6}, {'u': 4, 'v': 14}, {'u': 1, 'v': 7}, {'u': 1, 'v': 17}, {'u': 6, 'v': 8}, {'u': 6, 'v': 11}, {'u': 2, 'v': 10}, {'u': 11, 'v': 9}, {'u': 11, 'v': 15}, {'u': 14, 'v': 9}, {'u': 14, 'v': 16}, {'u': 9, 'v': 3}, {'u': 9, 'v': 17}, {'u': 3, 'v': 7}, {'u': 17, 'v': 16}, {'u': 7, 'v': 10}, {'u': 8, 'v': 15}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0028.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0028.png'}","[3, 9, 10, 11, 13]",5.0,"{'num_elements': 17, 'num_sets': 17, 'sets': [{'id': 'S1', 'elements': [0, 2, 4, 6, 9, 15, 16]}, {'id': 'S2', 'elements': [1, 6]}, {'id': 'S3', 'elements': [2, 4, 8, 9, 10, 11, 13]}, {'id': 'S4', 'elements': [7, 8, 10, 13]}, {'id': 'S5', 'elements': [4, 6, 9]}, {'id': 'S6', 'elements': [3, 5, 10, 13]}, {'id': 'S7', 'elements': [0, 2, 4, 6, 8, 16]}, {'id': 'S8', 'elements': [3, 5, 7, 10, 14]}, {'id': 'S9', 'elements': [0, 3, 5, 10, 13, 14, 15, 16]}, {'id': 'S10', 'elements': [0, 1, 2, 6]}, {'id': 'S11', 'elements': [2, 3, 5, 7, 8, 10, 11, 14, 16]}, {'id': 'S12', 'elements': [2, 6, 8, 10, 11, 14]}, {'id': 'S13', 'elements': [4, 6, 12]}, {'id': 'S14', 'elements': [3, 5, 8, 10, 15]}, {'id': 'S15', 'elements': [2, 5, 7, 8, 10, 11, 14]}, {'id': 'S16', 'elements': [0, 3, 13, 15, 16]}, {'id': 'S17', 'elements': [0, 2, 8, 10, 13, 15]}]}","['S3', 'S9', 'S10', 'S11', 'S13']",29,markdown_table,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"": 16,
""available_bundles_count"": 14,
""sets"": [
{
""bundle_id"": ""S1"",
""covered_preferences"": [
10,
15
]
},
{
""bundle_id"": ""S2"",
""covered_preferences"": [
2,
13,
14,
15,
16
]
},
{
""bundle_id"": ""S3"",
""covered_preferences"": [
3,
4,
13
]
},
{
""bundle_id"": ""S4"",
""covered_preferences"": [
3,
4,
11,
13
]
},
{
""bundle_id"": ""S5"",
""covered_preferences"": [
5,
6,
12,
13,
14
]
},
{
""bundle_id"": ""S6"",
""covered_preferences"": [
5,
6,
7,
12
]
},
{
""bundle_id"": ""S7"",
""covered_preferences"": [
8,
10,
15,
16
]
},
{
""bundle_id"": ""S8"",
""covered_preferences"": [
1,
8,
15,
16
]
},
{
""bundle_id"": ""S9"",
""covered_preferences"": [
3,
11,
12,
13
]
},
{
""bundle_id"": ""S10"",
""covered_preferences"": [
3,
4,
5,
6,
11,
12
]
},
{
""bundle_id"": ""S11"",
""covered_preferences"": [
2,
3,
7,
9,
12,
13,
14
]
},
{
""bundle_id"": ""S12"",
""covered_preferences"": [
12,
13,
14,
16
]
},
{
""bundle_id"": ""S13"",
""covered_preferences"": [
2,
8,
10,
15,
16
]
},
{
""bundle_id"": ""S14"",
""covered_preferences"": [
2,
8,
10,
14,
16
]
}
]
}
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': 16, 'num_sets': 14, 'density': 0.2767857142857143, 'sets': [{'id': 1, 'elements': [10, 15]}, {'id': 2, 'elements': [2, 13, 14, 15, 16]}, {'id': 3, 'elements': [3, 4, 13]}, {'id': 4, 'elements': [3, 4, 11, 13]}, {'id': 5, 'elements': [5, 6, 12, 13, 14]}, {'id': 6, 'elements': [5, 6, 7, 12]}, {'id': 7, 'elements': [8, 10, 15, 16]}, {'id': 8, 'elements': [1, 8, 15, 16]}, {'id': 9, 'elements': [3, 11, 12, 13]}, {'id': 10, 'elements': [3, 4, 5, 6, 11, 12]}, {'id': 11, 'elements': [2, 3, 7, 9, 12, 13, 14]}, {'id': 12, 'elements': [12, 13, 14, 16]}, {'id': 13, 'elements': [2, 8, 10, 15, 16]}, {'id': 14, 'elements': [2, 8, 10, 14, 16]}], 'graph': {'num_nodes': 16, 'edges': [{'u': 8, 'v': 15}, {'u': 2, 'v': 14}, {'u': 2, 'v': 16}, {'u': 14, 'v': 13}, {'u': 3, 'v': 12}, {'u': 13, 'v': 5}, {'u': 13, 'v': 6}, {'u': 13, 'v': 12}, {'u': 12, 'v': 4}, {'u': 12, 'v': 11}, {'u': 10, 'v': 1}, {'u': 10, 'v': 15}, {'u': 7, 'v': 6}, {'u': 15, 'v': 16}, {'u': 9, 'v': 5}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0029.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0029.png'}","[7, 8, 10, 11]",4.0,"{'num_elements': 16, 'num_sets': 14, 'sets': [{'id': 'S1', 'elements': [10, 15]}, {'id': 'S2', 'elements': [2, 13, 14, 15, 16]}, {'id': 'S3', 'elements': [3, 4, 13]}, {'id': 'S4', 'elements': [3, 4, 11, 13]}, {'id': 'S5', 'elements': [5, 6, 12, 13, 14]}, {'id': 'S6', 'elements': [5, 6, 7, 12]}, {'id': 'S7', 'elements': [8, 10, 15, 16]}, {'id': 'S8', 'elements': [1, 8, 15, 16]}, {'id': 'S9', 'elements': [3, 11, 12, 13]}, {'id': 'S10', 'elements': [3, 4, 5, 6, 11, 12]}, {'id': 'S11', 'elements': [2, 3, 7, 9, 12, 13, 14]}, {'id': 'S12', 'elements': [12, 13, 14, 16]}, {'id': 'S13', 'elements': [2, 8, 10, 15, 16]}, {'id': 'S14', 'elements': [2, 8, 10, 14, 16]}]}","['S7', 'S8', 'S10', 'S11']",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"": 14,
""num_actor_candidates"": 14,
""sets"": [
{
""actor_id"": ""S1"",
""roles_actor_can_play"": [
1,
2,
3,
9,
10,
13
]
},
{
""actor_id"": ""S2"",
""roles_actor_can_play"": [
0,
1,
2,
3,
12,
13
]
},
{
""actor_id"": ""S3"",
""roles_actor_can_play"": [
0,
1,
2,
5,
7,
13
]
},
{
""actor_id"": ""S4"",
""roles_actor_can_play"": [
0,
1,
2,
3,
5,
9,
12
]
},
{
""actor_id"": ""S5"",
""roles_actor_can_play"": [
5,
6
]
},
{
""actor_id"": ""S6"",
""roles_actor_can_play"": [
0,
4,
5,
7,
8,
10
]
},
{
""actor_id"": ""S7"",
""roles_actor_can_play"": [
0,
4,
5,
6,
7,
11
]
},
{
""actor_id"": ""S8"",
""roles_actor_can_play"": [
2,
4,
5,
6,
7,
8,
9
]
},
{
""actor_id"": ""S9"",
""roles_actor_can_play"": [
2,
5,
7
]
},
{
""actor_id"": ""S10"",
""roles_actor_can_play"": [
0,
3,
5,
7,
8,
9,
10
]
},
{
""actor_id"": ""S11"",
""roles_actor_can_play"": [
5,
9,
10
]
},
{
""actor_id"": ""S12"",
""roles_actor_can_play"": [
3,
7
]
},
{
""actor_id"": ""S13"",
""roles_actor_can_play"": [
1,
2,
5
]
},
{
""actor_id"": ""S14"",
""roles_actor_can_play"": [
0,
2,
3,
12,
13
]
}
]
}
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': 14, 'num_sets': 14, 'density': 0.3520408163265306, 'sets': [{'id': 1, 'elements': [2, 3, 4, 10, 11, 14]}, {'id': 2, 'elements': [1, 2, 3, 4, 13, 14]}, {'id': 3, 'elements': [1, 2, 3, 6, 8, 14]}, {'id': 4, 'elements': [1, 2, 3, 4, 6, 10, 13]}, {'id': 5, 'elements': [6, 7]}, {'id': 6, 'elements': [1, 5, 6, 8, 9, 11]}, {'id': 7, 'elements': [1, 5, 6, 7, 8, 12]}, {'id': 8, 'elements': [3, 5, 6, 7, 8, 9, 10]}, {'id': 9, 'elements': [3, 6, 8]}, {'id': 10, 'elements': [1, 4, 6, 8, 9, 10, 11]}, {'id': 11, 'elements': [6, 10, 11]}, {'id': 12, 'elements': [4, 8]}, {'id': 13, 'elements': [2, 3, 6]}, {'id': 14, 'elements': [1, 3, 4, 13, 14]}], 'graph': {'num_nodes': 14, 'edges': [{'u': 11, 'v': 10}, {'u': 9, 'v': 6}, {'u': 4, 'v': 1}, {'u': 4, 'v': 2}, {'u': 4, 'v': 3}, {'u': 4, 'v': 14}, {'u': 6, 'v': 3}, {'u': 6, 'v': 8}, {'u': 6, 'v': 10}, {'u': 3, 'v': 13}, {'u': 5, 'v': 8}, {'u': 12, 'v': 1}, {'u': 12, 'v': 7}, {'u': 13, 'v': 2}, {'u': 13, 'v': 14}, {'u': 14, 'v': 2}, {'u': 8, 'v': 7}, {'u': 1, 'v': 10}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0030.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0030.png'}","[2, 7, 10]",3.0,"{'num_elements': 14, 'num_sets': 14, 'sets': [{'id': 'S1', 'elements': [1, 2, 3, 9, 10, 13]}, {'id': 'S2', 'elements': [0, 1, 2, 3, 12, 13]}, {'id': 'S3', 'elements': [0, 1, 2, 5, 7, 13]}, {'id': 'S4', 'elements': [0, 1, 2, 3, 5, 9, 12]}, {'id': 'S5', 'elements': [5, 6]}, {'id': 'S6', 'elements': [0, 4, 5, 7, 8, 10]}, {'id': 'S7', 'elements': [0, 4, 5, 6, 7, 11]}, {'id': 'S8', 'elements': [2, 4, 5, 6, 7, 8, 9]}, {'id': 'S9', 'elements': [2, 5, 7]}, {'id': 'S10', 'elements': [0, 3, 5, 7, 8, 9, 10]}, {'id': 'S11', 'elements': [5, 9, 10]}, {'id': 'S12', 'elements': [3, 7]}, {'id': 'S13', 'elements': [1, 2, 5]}, {'id': 'S14', 'elements': [0, 2, 3, 12, 13]}]}","['S2', 'S7', 'S10']",31,json,0
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**: 16
- **num_journals_available**: 16
| journal_id | topics_covered |
|---|---|
| S1 | 1 11 |
| S2 | 2 4 14 |
| S3 | 5 6 13 |
| S4 | 1 2 7 11 13 14 16 |
| S5 | 3 6 12 13 14 |
| S6 | 3 6 14 |
| S7 | 1 4 7 8 11 13 |
| S8 | 4 7 14 |
| S9 | 5 14 |
| S10 | 4 10 11 12 13 |
| S11 | 7 10 13 15 |
| S12 | 2 3 4 10 11 12 13 16 |
| S13 | 3 4 5 10 11 13 15 |
| S14 | 2 5 8 9 13 14 16 |
| S15 | 7 13 15 |
| S16 | 2 4 12 14 16 |
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': 16, 'num_sets': 16, 'density': 0.28515625, 'sets': [{'id': 1, 'elements': [1, 11]}, {'id': 2, 'elements': [2, 4, 14]}, {'id': 3, 'elements': [5, 6, 13]}, {'id': 4, 'elements': [1, 2, 7, 11, 13, 14, 16]}, {'id': 5, 'elements': [3, 6, 12, 13, 14]}, {'id': 6, 'elements': [3, 6, 14]}, {'id': 7, 'elements': [1, 4, 7, 8, 11, 13]}, {'id': 8, 'elements': [4, 7, 14]}, {'id': 9, 'elements': [5, 14]}, {'id': 10, 'elements': [4, 10, 11, 12, 13]}, {'id': 11, 'elements': [7, 10, 13, 15]}, {'id': 12, 'elements': [2, 3, 4, 10, 11, 12, 13, 16]}, {'id': 13, 'elements': [3, 4, 5, 10, 11, 13, 15]}, {'id': 14, 'elements': [2, 5, 8, 9, 13, 14, 16]}, {'id': 15, 'elements': [7, 13, 15]}, {'id': 16, 'elements': [2, 4, 12, 14, 16]}], 'graph': {'num_nodes': 16, 'edges': [{'u': 2, 'v': 10}, {'u': 2, 'v': 12}, {'u': 13, 'v': 4}, {'u': 13, 'v': 7}, {'u': 13, 'v': 8}, {'u': 13, 'v': 14}, {'u': 14, 'v': 3}, {'u': 14, 'v': 5}, {'u': 14, 'v': 12}, {'u': 10, 'v': 4}, {'u': 16, 'v': 12}, {'u': 1, 'v': 11}, {'u': 11, 'v': 4}, {'u': 11, 'v': 7}, {'u': 15, 'v': 7}, {'u': 3, 'v': 6}, {'u': 4, 'v': 12}, {'u': 9, 'v': 5}, {'u': 5, 'v': 6}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0031.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0031.png'}","[5, 7, 13, 14]",4.0,"{'num_elements': 16, 'num_sets': 16, 'sets': [{'id': 'S1', 'elements': [1, 11]}, {'id': 'S2', 'elements': [2, 4, 14]}, {'id': 'S3', 'elements': [5, 6, 13]}, {'id': 'S4', 'elements': [1, 2, 7, 11, 13, 14, 16]}, {'id': 'S5', 'elements': [3, 6, 12, 13, 14]}, {'id': 'S6', 'elements': [3, 6, 14]}, {'id': 'S7', 'elements': [1, 4, 7, 8, 11, 13]}, {'id': 'S8', 'elements': [4, 7, 14]}, {'id': 'S9', 'elements': [5, 14]}, {'id': 'S10', 'elements': [4, 10, 11, 12, 13]}, {'id': 'S11', 'elements': [7, 10, 13, 15]}, {'id': 'S12', 'elements': [2, 3, 4, 10, 11, 12, 13, 16]}, {'id': 'S13', 'elements': [3, 4, 5, 10, 11, 13, 15]}, {'id': 'S14', 'elements': [2, 5, 8, 9, 13, 14, 16]}, {'id': 'S15', 'elements': [7, 13, 15]}, {'id': 'S16', 'elements': [2, 4, 12, 14, 16]}]}","['S5', 'S7', 'S13', 'S14']",32,markdown_table,1
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 17 sensors and 17 zones.
Sensor S1 watches zones 1 3 6 8 12 16 17.
Sensor S2 watches zones 2 3 6 8.
Sensor S3 watches zones 2 3 4 5 12 14 16.
Sensor S4 watches zones 1 2 3 4 6 12 16.
Sensor S5 watches zones 1 5.
Sensor S6 watches zones 1 2 6 8 14 17.
Sensor S7 watches zones 7 10 12 13.
Sensor S8 watches zones 2 6 8.
Sensor S9 watches zones 9 11 13 15.
Sensor S10 watches zones 7 10 11 12 13 15.
Sensor S11 watches zones 10 11.
Sensor S12 watches zones 1 3 4 7.
Sensor S13 watches zones 7 9 10 13.
Sensor S14 watches zones 3 12 14.
Sensor S15 watches zones 7 9 10 15.
Sensor S16 watches zones 1 2 3 4 5.
Sensor S17 watches zones 6 14 17.
The manager must cover all 17 zones while minimizing the count of chosen sensors from the 17 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': 17, 'num_sets': 17, 'density': 0.25951557093425603, 'sets': [{'id': 1, 'elements': [1, 3, 6, 8, 12, 16, 17]}, {'id': 2, 'elements': [2, 3, 6, 8]}, {'id': 3, 'elements': [2, 3, 4, 5, 12, 14, 16]}, {'id': 4, 'elements': [1, 2, 3, 4, 6, 12, 16]}, {'id': 5, 'elements': [1, 5]}, {'id': 6, 'elements': [1, 2, 6, 8, 14, 17]}, {'id': 7, 'elements': [7, 10, 12, 13]}, {'id': 8, 'elements': [2, 6, 8]}, {'id': 9, 'elements': [9, 11, 13, 15]}, {'id': 10, 'elements': [7, 10, 11, 12, 13, 15]}, {'id': 11, 'elements': [10, 11]}, {'id': 12, 'elements': [1, 3, 4, 7]}, {'id': 13, 'elements': [7, 9, 10, 13]}, {'id': 14, 'elements': [3, 12, 14]}, {'id': 15, 'elements': [7, 9, 10, 15]}, {'id': 16, 'elements': [1, 2, 3, 4, 5]}, {'id': 17, 'elements': [6, 14, 17]}], 'graph': {'num_nodes': 17, 'edges': [{'u': 5, 'v': 3}, {'u': 4, 'v': 1}, {'u': 4, 'v': 2}, {'u': 4, 'v': 6}, {'u': 4, 'v': 8}, {'u': 13, 'v': 9}, {'u': 13, 'v': 10}, {'u': 7, 'v': 10}, {'u': 7, 'v': 12}, {'u': 1, 'v': 3}, {'u': 1, 'v': 12}, {'u': 1, 'v': 14}, {'u': 6, 'v': 14}, {'u': 2, 'v': 16}, {'u': 17, 'v': 14}, {'u': 11, 'v': 15}, {'u': 3, 'v': 16}, {'u': 15, 'v': 9}, {'u': 15, 'v': 10}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0032.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0032.png'}","[3, 6, 10, 13]",4.0,"{'num_elements': 17, 'num_sets': 17, 'sets': [{'id': 'S1', 'elements': [1, 3, 6, 8, 12, 16, 17]}, {'id': 'S2', 'elements': [2, 3, 6, 8]}, {'id': 'S3', 'elements': [2, 3, 4, 5, 12, 14, 16]}, {'id': 'S4', 'elements': [1, 2, 3, 4, 6, 12, 16]}, {'id': 'S5', 'elements': [1, 5]}, {'id': 'S6', 'elements': [1, 2, 6, 8, 14, 17]}, {'id': 'S7', 'elements': [7, 10, 12, 13]}, {'id': 'S8', 'elements': [2, 6, 8]}, {'id': 'S9', 'elements': [9, 11, 13, 15]}, {'id': 'S10', 'elements': [7, 10, 11, 12, 13, 15]}, {'id': 'S11', 'elements': [10, 11]}, {'id': 'S12', 'elements': [1, 3, 4, 7]}, {'id': 'S13', 'elements': [7, 9, 10, 13]}, {'id': 'S14', 'elements': [3, 12, 14]}, {'id': 'S15', 'elements': [7, 9, 10, 15]}, {'id': 'S16', 'elements': [1, 2, 3, 4, 5]}, {'id': 'S17', 'elements': [6, 14, 17]}]}","['S3', 'S6', 'S10', 'S13']",33,nl,1
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"": 15,
""total_banks"": 13,
""sets"": [
{
""bank_id"": ""S1"",
""objectives_in_bank"": [
""C"",
""K"",
""M""
]
},
{
""bank_id"": ""S2"",
""objectives_in_bank"": [
""B"",
""I"",
""L"",
""M""
]
},
{
""bank_id"": ""S3"",
""objectives_in_bank"": [
""F"",
""I"",
""N"",
""O""
]
},
{
""bank_id"": ""S4"",
""objectives_in_bank"": [
""F"",
""L"",
""M"",
""N"",
""O""
]
},
{
""bank_id"": ""S5"",
""objectives_in_bank"": [
""G"",
""L""
]
},
{
""bank_id"": ""S6"",
""objectives_in_bank"": [
""B"",
""C"",
""F"",
""H""
]
},
{
""bank_id"": ""S7"",
""objectives_in_bank"": [
""A"",
""E"",
""F"",
""H"",
""I"",
""O""
]
},
{
""bank_id"": ""S8"",
""objectives_in_bank"": [
""I"",
""J""
]
},
{
""bank_id"": ""S9"",
""objectives_in_bank"": [
""B"",
""K"",
""M""
]
},
{
""bank_id"": ""S10"",
""objectives_in_bank"": [
""C"",
""H"",
""L"",
""M""
]
},
{
""bank_id"": ""S11"",
""objectives_in_bank"": [
""B"",
""C"",
""K""
]
},
{
""bank_id"": ""S12"",
""objectives_in_bank"": [
""A"",
""F"",
""I"",
""N""
]
},
{
""bank_id"": ""S13"",
""objectives_in_bank"": [
""D"",
""F"",
""I"",
""N""
]
}
]
}
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': 15, 'num_sets': 13, 'density': 0.24615384615384617, 'sets': [{'id': 1, 'elements': [3, 11, 13]}, {'id': 2, 'elements': [2, 9, 12, 13]}, {'id': 3, 'elements': [6, 9, 14, 15]}, {'id': 4, 'elements': [6, 12, 13, 14, 15]}, {'id': 5, 'elements': [7, 12]}, {'id': 6, 'elements': [2, 3, 6, 8]}, {'id': 7, 'elements': [1, 5, 6, 8, 9, 15]}, {'id': 8, 'elements': [9, 10]}, {'id': 9, 'elements': [2, 11, 13]}, {'id': 10, 'elements': [3, 8, 12, 13]}, {'id': 11, 'elements': [2, 3, 11]}, {'id': 12, 'elements': [1, 6, 9, 14]}, {'id': 13, 'elements': [4, 6, 9, 14]}], 'graph': {'num_nodes': 15, 'edges': [{'u': 8, 'v': 3}, {'u': 8, 'v': 6}, {'u': 8, 'v': 12}, {'u': 8, 'v': 13}, {'u': 12, 'v': 7}, {'u': 6, 'v': 3}, {'u': 6, 'v': 9}, {'u': 5, 'v': 15}, {'u': 2, 'v': 11}, {'u': 2, 'v': 13}, {'u': 14, 'v': 1}, {'u': 14, 'v': 9}, {'u': 13, 'v': 3}, {'u': 15, 'v': 9}, {'u': 9, 'v': 4}, {'u': 4, 'v': 10}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0033.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0033.png'}","[5, 7, 8, 9, 11, 13]",6.0,"{'num_elements': 15, 'num_sets': 13, 'sets': [{'id': 'S1', 'elements': ['C', 'K', 'M']}, {'id': 'S2', 'elements': ['B', 'I', 'L', 'M']}, {'id': 'S3', 'elements': ['F', 'I', 'N', 'O']}, {'id': 'S4', 'elements': ['F', 'L', 'M', 'N', 'O']}, {'id': 'S5', 'elements': ['G', 'L']}, {'id': 'S6', 'elements': ['B', 'C', 'F', 'H']}, {'id': 'S7', 'elements': ['A', 'E', 'F', 'H', 'I', 'O']}, {'id': 'S8', 'elements': ['I', 'J']}, {'id': 'S9', 'elements': ['B', 'K', 'M']}, {'id': 'S10', 'elements': ['C', 'H', 'L', 'M']}, {'id': 'S11', 'elements': ['B', 'C', 'K']}, {'id': 'S12', 'elements': ['A', 'F', 'I', 'N']}, {'id': 'S13', 'elements': ['D', 'F', 'I', 'N']}]}","['S5', 'S7', 'S8', 'S9', 'S11', 'S13']",34,json,names
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**: 13
- **num_container_types**: 12
| container_type_id | covered_item_categories |
|---|---|
| S1 | 4 9 |
| S2 | 1 10 |
| S3 | 3 6 7 10 12 |
| S4 | 2 3 9 |
| S5 | 5 8 9 |
| S6 | 4 12 |
| S7 | 2 6 |
| S8 | 7 9 |
| S9 | 2 4 5 6 8 12 |
| S10 | 0 3 4 7 9 |
| S11 | 1 10 11 |
| S12 | 2 5 6 |
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': 13, 'num_sets': 12, 'density': 0.24358974358974358, 'sets': [{'id': 1, 'elements': [5, 10]}, {'id': 2, 'elements': [2, 11]}, {'id': 3, 'elements': [4, 7, 8, 11, 13]}, {'id': 4, 'elements': [3, 4, 10]}, {'id': 5, 'elements': [6, 9, 10]}, {'id': 6, 'elements': [5, 13]}, {'id': 7, 'elements': [3, 7]}, {'id': 8, 'elements': [8, 10]}, {'id': 9, 'elements': [3, 5, 6, 7, 9, 13]}, {'id': 10, 'elements': [1, 4, 5, 8, 10]}, {'id': 11, 'elements': [2, 11, 12]}, {'id': 12, 'elements': [3, 6, 7]}], 'graph': {'num_nodes': 13, 'edges': [{'u': 9, 'v': 6}, {'u': 9, 'v': 13}, {'u': 13, 'v': 3}, {'u': 13, 'v': 7}, {'u': 10, 'v': 1}, {'u': 10, 'v': 8}, {'u': 5, 'v': 1}, {'u': 5, 'v': 6}, {'u': 3, 'v': 4}, {'u': 3, 'v': 12}, {'u': 4, 'v': 8}, {'u': 2, 'v': 11}, {'u': 11, 'v': 12}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0034.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0034.png'}","[9, 10, 11]",3.0,"{'num_elements': 13, 'num_sets': 12, 'sets': [{'id': 'S1', 'elements': [4, 9]}, {'id': 'S2', 'elements': [1, 10]}, {'id': 'S3', 'elements': [3, 6, 7, 10, 12]}, {'id': 'S4', 'elements': [2, 3, 9]}, {'id': 'S5', 'elements': [5, 8, 9]}, {'id': 'S6', 'elements': [4, 12]}, {'id': 'S7', 'elements': [2, 6]}, {'id': 'S8', 'elements': [7, 9]}, {'id': 'S9', 'elements': [2, 4, 5, 6, 8, 12]}, {'id': 'S10', 'elements': [0, 3, 4, 7, 9]}, {'id': 'S11', 'elements': [1, 10, 11]}, {'id': 'S12', 'elements': [2, 5, 6]}]}","['S9', 'S10', 'S11']",35,markdown_table,0
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.
- **total_skills_required**: 14
- **total_available_volunteers**: 12
| volunteer_id | volunteer_skills |
|---|---|
| S1 | A B J |
| S2 | A B D H L M |
| S3 | A C I J N |
| S4 | B H |
| S5 | F I |
| S6 | E F G I J |
| S7 | F G I |
| S8 | B D H M |
| S9 | A E F G I J |
| S10 | C D F G J N |
| S11 | G I K |
| S12 | J N |
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': 14, 'num_sets': 12, 'density': 0.27976190476190477, 'sets': [{'id': 1, 'elements': [1, 2, 10]}, {'id': 2, 'elements': [1, 2, 4, 8, 12, 13]}, {'id': 3, 'elements': [1, 3, 9, 10, 14]}, {'id': 4, 'elements': [2, 8]}, {'id': 5, 'elements': [6, 9]}, {'id': 6, 'elements': [5, 6, 7, 9, 10]}, {'id': 7, 'elements': [6, 7, 9]}, {'id': 8, 'elements': [2, 4, 8, 13]}, {'id': 9, 'elements': [1, 5, 6, 7, 9, 10]}, {'id': 10, 'elements': [3, 4, 6, 7, 10, 14]}, {'id': 11, 'elements': [7, 9, 11]}, {'id': 12, 'elements': [10, 14]}], 'graph': {'num_nodes': 14, 'edges': [{'u': 11, 'v': 7}, {'u': 10, 'v': 1}, {'u': 10, 'v': 3}, {'u': 10, 'v': 9}, {'u': 7, 'v': 9}, {'u': 1, 'v': 4}, {'u': 13, 'v': 8}, {'u': 3, 'v': 14}, {'u': 5, 'v': 6}, {'u': 2, 'v': 4}, {'u': 2, 'v': 8}, {'u': 2, 'v': 12}, {'u': 6, 'v': 9}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0035.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0035.png'}","[2, 6, 10, 11]",4.0,"{'num_elements': 14, 'num_sets': 12, 'sets': [{'id': 'S1', 'elements': ['A', 'B', 'J']}, {'id': 'S2', 'elements': ['A', 'B', 'D', 'H', 'L', 'M']}, {'id': 'S3', 'elements': ['A', 'C', 'I', 'J', 'N']}, {'id': 'S4', 'elements': ['B', 'H']}, {'id': 'S5', 'elements': ['F', 'I']}, {'id': 'S6', 'elements': ['E', 'F', 'G', 'I', 'J']}, {'id': 'S7', 'elements': ['F', 'G', 'I']}, {'id': 'S8', 'elements': ['B', 'D', 'H', 'M']}, {'id': 'S9', 'elements': ['A', 'E', 'F', 'G', 'I', 'J']}, {'id': 'S10', 'elements': ['C', 'D', 'F', 'G', 'J', 'N']}, {'id': 'S11', 'elements': ['G', 'I', 'K']}, {'id': 'S12', 'elements': ['J', 'N']}]}","['S2', 'S6', 'S10', 'S11']",36,markdown_table,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**: 18
- **num_keys_available**: 18
| key_id | accessible_systems |
|---|---|
| S1 | 1 4 7 8 10 11 14 16 |
| S2 | 1 2 4 7 10 16 17 |
| S3 | 4 18 |
| S4 | 1 2 4 5 8 9 10 13 14 16 18 |
| S5 | 5 6 9 |
| S6 | 6 16 17 |
| S7 | 1 2 7 11 |
| S8 | 1 4 9 11 13 14 15 16 18 |
| S9 | 5 8 9 10 16 18 |
| S10 | 1 4 10 16 17 |
| S11 | 1 2 8 11 14 |
| S12 | 3 12 18 |
| S13 | 8 13 14 15 |
| S14 | 1 4 7 13 14 15 16 |
| S15 | 4 8 13 |
| S16 | 1 2 4 6 8 17 |
| S17 | 2 6 7 9 10 16 |
| S18 | 4 8 9 12 18 |
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': 18, 'num_sets': 18, 'density': 0.2993827160493827, 'sets': [{'id': 1, 'elements': [1, 4, 7, 8, 10, 11, 14, 16]}, {'id': 2, 'elements': [1, 2, 4, 7, 10, 16, 17]}, {'id': 3, 'elements': [4, 18]}, {'id': 4, 'elements': [1, 2, 4, 5, 8, 9, 10, 13, 14, 16, 18]}, {'id': 5, 'elements': [5, 6, 9]}, {'id': 6, 'elements': [6, 16, 17]}, {'id': 7, 'elements': [1, 2, 7, 11]}, {'id': 8, 'elements': [1, 4, 9, 11, 13, 14, 15, 16, 18]}, {'id': 9, 'elements': [5, 8, 9, 10, 16, 18]}, {'id': 10, 'elements': [1, 4, 10, 16, 17]}, {'id': 11, 'elements': [1, 2, 8, 11, 14]}, {'id': 12, 'elements': [3, 12, 18]}, {'id': 13, 'elements': [8, 13, 14, 15]}, {'id': 14, 'elements': [1, 4, 7, 13, 14, 15, 16]}, {'id': 15, 'elements': [4, 8, 13]}, {'id': 16, 'elements': [1, 2, 4, 6, 8, 17]}, {'id': 17, 'elements': [2, 6, 7, 9, 10, 16]}, {'id': 18, 'elements': [4, 8, 9, 12, 18]}], 'graph': {'num_nodes': 18, 'edges': [{'u': 5, 'v': 6}, {'u': 5, 'v': 9}, {'u': 16, 'v': 1}, {'u': 16, 'v': 2}, {'u': 16, 'v': 4}, {'u': 16, 'v': 10}, {'u': 10, 'v': 6}, {'u': 10, 'v': 9}, {'u': 10, 'v': 17}, {'u': 2, 'v': 7}, {'u': 2, 'v': 17}, {'u': 15, 'v': 8}, {'u': 14, 'v': 1}, {'u': 14, 'v': 8}, {'u': 14, 'v': 11}, {'u': 13, 'v': 8}, {'u': 4, 'v': 8}, {'u': 4, 'v': 9}, {'u': 4, 'v': 18}, {'u': 1, 'v': 7}, {'u': 3, 'v': 12}, {'u': 3, 'v': 18}, {'u': 11, 'v': 7}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0036.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0036.png'}","[1, 4, 12, 14, 16]",5.0,"{'num_elements': 18, 'num_sets': 18, 'sets': [{'id': 'S1', 'elements': [1, 4, 7, 8, 10, 11, 14, 16]}, {'id': 'S2', 'elements': [1, 2, 4, 7, 10, 16, 17]}, {'id': 'S3', 'elements': [4, 18]}, {'id': 'S4', 'elements': [1, 2, 4, 5, 8, 9, 10, 13, 14, 16, 18]}, {'id': 'S5', 'elements': [5, 6, 9]}, {'id': 'S6', 'elements': [6, 16, 17]}, {'id': 'S7', 'elements': [1, 2, 7, 11]}, {'id': 'S8', 'elements': [1, 4, 9, 11, 13, 14, 15, 16, 18]}, {'id': 'S9', 'elements': [5, 8, 9, 10, 16, 18]}, {'id': 'S10', 'elements': [1, 4, 10, 16, 17]}, {'id': 'S11', 'elements': [1, 2, 8, 11, 14]}, {'id': 'S12', 'elements': [3, 12, 18]}, {'id': 'S13', 'elements': [8, 13, 14, 15]}, {'id': 'S14', 'elements': [1, 4, 7, 13, 14, 15, 16]}, {'id': 'S15', 'elements': [4, 8, 13]}, {'id': 'S16', 'elements': [1, 2, 4, 6, 8, 17]}, {'id': 'S17', 'elements': [2, 6, 7, 9, 10, 16]}, {'id': 'S18', 'elements': [4, 8, 9, 12, 18]}]}","['S1', 'S4', 'S12', 'S14', 'S16']",37,markdown_table,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.
There are 16 target pollinators to cover and 15 plant varieties listed.
Plant variety S1 attracts A E I J N.
Plant variety S2 attracts B C D K L N O.
Plant variety S3 attracts B D.
Plant variety S4 attracts B C L M O.
Plant variety S5 attracts E F K P.
Plant variety S6 attracts E F.
Plant variety S7 attracts G I N.
Plant variety S8 attracts H L O.
Plant variety S9 attracts G I J N.
Plant variety S10 attracts A J.
Plant variety S11 attracts A B D E K N O.
Plant variety S12 attracts B D H.
Plant variety S13 attracts B E G K N P.
Plant variety S14 attracts B C D H K L O.
Plant variety S15 attracts E F N P.
The gardener's brief remains to select the fewest varieties that together attract all 16 pollinators.
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': 16, 'num_sets': 15, 'density': 0.26666666666666666, 'sets': [{'id': 1, 'elements': [1, 5, 9, 10, 14]}, {'id': 2, 'elements': [2, 3, 4, 11, 12, 14, 15]}, {'id': 3, 'elements': [2, 4]}, {'id': 4, 'elements': [2, 3, 12, 13, 15]}, {'id': 5, 'elements': [5, 6, 11, 16]}, {'id': 6, 'elements': [5, 6]}, {'id': 7, 'elements': [7, 9, 14]}, {'id': 8, 'elements': [8, 12, 15]}, {'id': 9, 'elements': [7, 9, 10, 14]}, {'id': 10, 'elements': [1, 10]}, {'id': 11, 'elements': [1, 2, 4, 5, 11, 14, 15]}, {'id': 12, 'elements': [2, 4, 8]}, {'id': 13, 'elements': [2, 5, 7, 11, 14, 16]}, {'id': 14, 'elements': [2, 3, 4, 8, 11, 12, 15]}, {'id': 15, 'elements': [5, 6, 14, 16]}], 'graph': {'num_nodes': 16, 'edges': [{'u': 7, 'v': 1}, {'u': 2, 'v': 4}, {'u': 2, 'v': 11}, {'u': 2, 'v': 15}, {'u': 3, 'v': 4}, {'u': 3, 'v': 13}, {'u': 4, 'v': 15}, {'u': 9, 'v': 1}, {'u': 9, 'v': 10}, {'u': 14, 'v': 1}, {'u': 14, 'v': 5}, {'u': 14, 'v': 11}, {'u': 15, 'v': 12}, {'u': 12, 'v': 8}, {'u': 6, 'v': 16}, {'u': 5, 'v': 16}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0037.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0037.png'}","[1, 4, 5, 9, 14]",5.0,"{'num_elements': 16, 'num_sets': 15, 'sets': [{'id': 'S1', 'elements': ['A', 'E', 'I', 'J', 'N']}, {'id': 'S2', 'elements': ['B', 'C', 'D', 'K', 'L', 'N', 'O']}, {'id': 'S3', 'elements': ['B', 'D']}, {'id': 'S4', 'elements': ['B', 'C', 'L', 'M', 'O']}, {'id': 'S5', 'elements': ['E', 'F', 'K', 'P']}, {'id': 'S6', 'elements': ['E', 'F']}, {'id': 'S7', 'elements': ['G', 'I', 'N']}, {'id': 'S8', 'elements': ['H', 'L', 'O']}, {'id': 'S9', 'elements': ['G', 'I', 'J', 'N']}, {'id': 'S10', 'elements': ['A', 'J']}, {'id': 'S11', 'elements': ['A', 'B', 'D', 'E', 'K', 'N', 'O']}, {'id': 'S12', 'elements': ['B', 'D', 'H']}, {'id': 'S13', 'elements': ['B', 'E', 'G', 'K', 'N', 'P']}, {'id': 'S14', 'elements': ['B', 'C', 'D', 'H', 'K', 'L', 'O']}, {'id': 'S15', 'elements': ['E', 'F', 'N', 'P']}]}","['S1', 'S4', 'S5', 'S9', 'S14']",38,nl,names
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.
# total_rooms_to_cover=15
# total_kits_available=15
kit_id,kit_covers_rooms
S1,1 2 6
S2,1 2 11
S3,0 1 2 3 8 9 10
S4,2 3 4 9 12
S5,3 8 12
S6,5 7 10 12 14
S7,0 4 6 10 11 12 13 14
S8,5 7 8 9 10 12
S9,2 4 6 8 10 13
S10,0 2 3 6 7 9 11
S11,5 6 7 8 10 12
S12,0 2 9 11
S13,3 5 6 14
S14,4 8 13
S15,5 6 10 12
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': 15, 'num_sets': 15, 'density': 0.3288888888888889, 'sets': [{'id': 1, 'elements': [2, 3, 7]}, {'id': 2, 'elements': [2, 3, 12]}, {'id': 3, 'elements': [1, 2, 3, 4, 9, 10, 11]}, {'id': 4, 'elements': [3, 4, 5, 10, 13]}, {'id': 5, 'elements': [4, 9, 13]}, {'id': 6, 'elements': [6, 8, 11, 13, 15]}, {'id': 7, 'elements': [1, 5, 7, 11, 12, 13, 14, 15]}, {'id': 8, 'elements': [6, 8, 9, 10, 11, 13]}, {'id': 9, 'elements': [3, 5, 7, 9, 11, 14]}, {'id': 10, 'elements': [1, 3, 4, 7, 8, 10, 12]}, {'id': 11, 'elements': [6, 7, 8, 9, 11, 13]}, {'id': 12, 'elements': [1, 3, 10, 12]}, {'id': 13, 'elements': [4, 6, 7, 15]}, {'id': 14, 'elements': [5, 9, 14]}, {'id': 15, 'elements': [6, 7, 11, 13]}], 'graph': {'num_nodes': 15, 'edges': [{'u': 2, 'v': 1}, {'u': 2, 'v': 12}, {'u': 3, 'v': 1}, {'u': 3, 'v': 7}, {'u': 3, 'v': 10}, {'u': 3, 'v': 12}, {'u': 10, 'v': 4}, {'u': 14, 'v': 9}, {'u': 11, 'v': 7}, {'u': 11, 'v': 13}, {'u': 11, 'v': 15}, {'u': 6, 'v': 13}, {'u': 6, 'v': 15}, {'u': 13, 'v': 8}, {'u': 7, 'v': 9}, {'u': 8, 'v': 4}, {'u': 8, 'v': 5}, {'u': 5, 'v': 9}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0038.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0038.png'}","[3, 6, 7]",3.0,"{'num_elements': 15, 'num_sets': 15, 'sets': [{'id': 'S1', 'elements': [1, 2, 6]}, {'id': 'S2', 'elements': [1, 2, 11]}, {'id': 'S3', 'elements': [0, 1, 2, 3, 8, 9, 10]}, {'id': 'S4', 'elements': [2, 3, 4, 9, 12]}, {'id': 'S5', 'elements': [3, 8, 12]}, {'id': 'S6', 'elements': [5, 7, 10, 12, 14]}, {'id': 'S7', 'elements': [0, 4, 6, 10, 11, 12, 13, 14]}, {'id': 'S8', 'elements': [5, 7, 8, 9, 10, 12]}, {'id': 'S9', 'elements': [2, 4, 6, 8, 10, 13]}, {'id': 'S10', 'elements': [0, 2, 3, 6, 7, 9, 11]}, {'id': 'S11', 'elements': [5, 6, 7, 8, 10, 12]}, {'id': 'S12', 'elements': [0, 2, 9, 11]}, {'id': 'S13', 'elements': [3, 5, 6, 14]}, {'id': 'S14', 'elements': [4, 8, 13]}, {'id': 'S15', 'elements': [5, 6, 10, 12]}]}","['S3', 'S6', 'S7']",39,csv,0
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**: 15
- **total_clubs_available**: 15
| club_id | students_interested |
|---|---|
| S1 | 2 8 9 12 |
| S2 | 2 4 5 15 |
| S3 | 3 9 10 |
| S4 | 3 4 5 10 |
| S5 | 2 3 4 5 15 |
| S6 | 6 8 9 11 13 |
| S7 | 6 7 8 9 11 |
| S8 | 1 6 8 9 10 11 13 |
| S9 | 3 6 8 10 11 |
| S10 | 1 4 8 9 |
| S11 | 8 9 11 13 |
| S12 | 1 5 9 15 |
| S13 | 6 7 9 13 |
| S14 | 14 15 |
| S15 | 5 12 15 |
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': 15, 'num_sets': 15, 'density': 0.28, 'sets': [{'id': 1, 'elements': [2, 8, 9, 12]}, {'id': 2, 'elements': [2, 4, 5, 15]}, {'id': 3, 'elements': [3, 9, 10]}, {'id': 4, 'elements': [3, 4, 5, 10]}, {'id': 5, 'elements': [2, 3, 4, 5, 15]}, {'id': 6, 'elements': [6, 8, 9, 11, 13]}, {'id': 7, 'elements': [6, 7, 8, 9, 11]}, {'id': 8, 'elements': [1, 6, 8, 9, 10, 11, 13]}, {'id': 9, 'elements': [3, 6, 8, 10, 11]}, {'id': 10, 'elements': [1, 4, 8, 9]}, {'id': 11, 'elements': [8, 9, 11, 13]}, {'id': 12, 'elements': [1, 5, 9, 15]}, {'id': 13, 'elements': [6, 7, 9, 13]}, {'id': 14, 'elements': [14, 15]}, {'id': 15, 'elements': [5, 12, 15]}], 'graph': {'num_nodes': 15, 'edges': [{'u': 8, 'v': 6}, {'u': 8, 'v': 7}, {'u': 8, 'v': 9}, {'u': 8, 'v': 11}, {'u': 8, 'v': 13}, {'u': 1, 'v': 9}, {'u': 1, 'v': 12}, {'u': 4, 'v': 3}, {'u': 4, 'v': 5}, {'u': 3, 'v': 10}, {'u': 12, 'v': 2}, {'u': 9, 'v': 10}, {'u': 5, 'v': 2}, {'u': 2, 'v': 15}, {'u': 14, 'v': 15}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0039.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0039.png'}","[1, 5, 7, 8, 14]",5.0,"{'num_elements': 15, 'num_sets': 15, 'sets': [{'id': 'S1', 'elements': [2, 8, 9, 12]}, {'id': 'S2', 'elements': [2, 4, 5, 15]}, {'id': 'S3', 'elements': [3, 9, 10]}, {'id': 'S4', 'elements': [3, 4, 5, 10]}, {'id': 'S5', 'elements': [2, 3, 4, 5, 15]}, {'id': 'S6', 'elements': [6, 8, 9, 11, 13]}, {'id': 'S7', 'elements': [6, 7, 8, 9, 11]}, {'id': 'S8', 'elements': [1, 6, 8, 9, 10, 11, 13]}, {'id': 'S9', 'elements': [3, 6, 8, 10, 11]}, {'id': 'S10', 'elements': [1, 4, 8, 9]}, {'id': 'S11', 'elements': [8, 9, 11, 13]}, {'id': 'S12', 'elements': [1, 5, 9, 15]}, {'id': 'S13', 'elements': [6, 7, 9, 13]}, {'id': 'S14', 'elements': [14, 15]}, {'id': 'S15', 'elements': [5, 12, 15]}]}","['S1', 'S5', 'S7', 'S8', 'S14']",40,markdown_table,1
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 13 display stands and 14 product categories to cover:
Stand S1 showcases 0 11.
Stand S2 showcases 1 4.
Stand S3 showcases 2 4 12.
Stand S4 showcases 3 4 11 12.
Stand S5 showcases 2 3 4 12.
Stand S6 showcases 7 8 10.
Stand S7 showcases 8 10.
Stand S8 showcases 7 9 10.
Stand S9 showcases 6 10 11.
Stand S10 showcases 5 6 7 9 10 11 12 13.
Stand S11 showcases 0 3 8 10 11.
Stand S12 showcases 3 4 10 11 12 13.
Stand S13 showcases 10 11.
We should choose the fewest stands that together cover all 14 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': 14, 'num_sets': 13, 'density': 0.25824175824175827, 'sets': [{'id': 1, 'elements': [1, 12]}, {'id': 2, 'elements': [2, 5]}, {'id': 3, 'elements': [3, 5, 13]}, {'id': 4, 'elements': [4, 5, 12, 13]}, {'id': 5, 'elements': [3, 4, 5, 13]}, {'id': 6, 'elements': [8, 9, 11]}, {'id': 7, 'elements': [9, 11]}, {'id': 8, 'elements': [8, 10, 11]}, {'id': 9, 'elements': [7, 11, 12]}, {'id': 10, 'elements': [6, 7, 8, 10, 11, 12, 13, 14]}, {'id': 11, 'elements': [1, 4, 9, 11, 12]}, {'id': 12, 'elements': [4, 5, 11, 12, 13, 14]}, {'id': 13, 'elements': [11, 12]}], 'graph': {'num_nodes': 14, 'edges': [{'u': 8, 'v': 9}, {'u': 10, 'v': 7}, {'u': 10, 'v': 11}, {'u': 6, 'v': 9}, {'u': 2, 'v': 5}, {'u': 4, 'v': 3}, {'u': 4, 'v': 5}, {'u': 4, 'v': 13}, {'u': 1, 'v': 14}, {'u': 11, 'v': 9}, {'u': 11, 'v': 12}, {'u': 13, 'v': 12}, {'u': 12, 'v': 14}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0040.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0040.png'}","[2, 5, 10, 11]",4.0,"{'num_elements': 14, 'num_sets': 13, 'sets': [{'id': 'S1', 'elements': [0, 11]}, {'id': 'S2', 'elements': [1, 4]}, {'id': 'S3', 'elements': [2, 4, 12]}, {'id': 'S4', 'elements': [3, 4, 11, 12]}, {'id': 'S5', 'elements': [2, 3, 4, 12]}, {'id': 'S6', 'elements': [7, 8, 10]}, {'id': 'S7', 'elements': [8, 10]}, {'id': 'S8', 'elements': [7, 9, 10]}, {'id': 'S9', 'elements': [6, 10, 11]}, {'id': 'S10', 'elements': [5, 6, 7, 9, 10, 11, 12, 13]}, {'id': 'S11', 'elements': [0, 3, 8, 10, 11]}, {'id': 'S12', 'elements': [3, 4, 10, 11, 12, 13]}, {'id': 'S13', 'elements': [10, 11]}]}","['S2', 'S5', 'S10', 'S11']",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.
Below are 13 available caterers and the 13 dietary requirements they can cover.
Caterer S1 offers A C E I J M.
Caterer S2 offers A C E M.
Caterer S3 offers A B C E M.
Caterer S4 offers A D J L M.
Caterer S5 offers A B C E F G H I J M.
Caterer S6 offers A C E F G I.
Caterer S7 offers A E G H I.
Caterer S8 offers E H I.
Caterer S9 offers A B E F G H I J.
Caterer S10 offers A B D I L.
Caterer S11 offers B I J K M.
Caterer S12 offers D J K L.
Caterer S13 offers A B C D M.
Select a minimal set of caterers that together meet all 13 requirements.
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': 13, 'num_sets': 13, 'density': 0.42011834319526625, 'sets': [{'id': 1, 'elements': [1, 3, 5, 9, 10, 13]}, {'id': 2, 'elements': [1, 3, 5, 13]}, {'id': 3, 'elements': [1, 2, 3, 5, 13]}, {'id': 4, 'elements': [1, 4, 10, 12, 13]}, {'id': 5, 'elements': [1, 2, 3, 5, 6, 7, 8, 9, 10, 13]}, {'id': 6, 'elements': [1, 3, 5, 6, 7, 9]}, {'id': 7, 'elements': [1, 5, 7, 8, 9]}, {'id': 8, 'elements': [5, 8, 9]}, {'id': 9, 'elements': [1, 2, 5, 6, 7, 8, 9, 10]}, {'id': 10, 'elements': [1, 2, 4, 9, 12]}, {'id': 11, 'elements': [2, 9, 10, 11, 13]}, {'id': 12, 'elements': [4, 10, 11, 12]}, {'id': 13, 'elements': [1, 2, 3, 4, 13]}], 'graph': {'num_nodes': 13, 'edges': [{'u': 8, 'v': 7}, {'u': 8, 'v': 9}, {'u': 9, 'v': 5}, {'u': 9, 'v': 10}, {'u': 10, 'v': 2}, {'u': 10, 'v': 11}, {'u': 11, 'v': 4}, {'u': 11, 'v': 12}, {'u': 5, 'v': 1}, {'u': 5, 'v': 6}, {'u': 5, 'v': 7}, {'u': 6, 'v': 3}, {'u': 13, 'v': 1}, {'u': 13, 'v': 4}, {'u': 1, 'v': 2}, {'u': 1, 'v': 3}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0041.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0041.png'}","[5, 12]",2.0,"{'num_elements': 13, 'num_sets': 13, 'sets': [{'id': 'S1', 'elements': ['A', 'C', 'E', 'I', 'J', 'M']}, {'id': 'S2', 'elements': ['A', 'C', 'E', 'M']}, {'id': 'S3', 'elements': ['A', 'B', 'C', 'E', 'M']}, {'id': 'S4', 'elements': ['A', 'D', 'J', 'L', 'M']}, {'id': 'S5', 'elements': ['A', 'B', 'C', 'E', 'F', 'G', 'H', 'I', 'J', 'M']}, {'id': 'S6', 'elements': ['A', 'C', 'E', 'F', 'G', 'I']}, {'id': 'S7', 'elements': ['A', 'E', 'G', 'H', 'I']}, {'id': 'S8', 'elements': ['E', 'H', 'I']}, {'id': 'S9', 'elements': ['A', 'B', 'E', 'F', 'G', 'H', 'I', 'J']}, {'id': 'S10', 'elements': ['A', 'B', 'D', 'I', 'L']}, {'id': 'S11', 'elements': ['B', 'I', 'J', 'K', 'M']}, {'id': 'S12', 'elements': ['D', 'J', 'K', 'L']}, {'id': 'S13', 'elements': ['A', 'B', 'C', 'D', 'M']}]}","['S5', 'S12']",42,nl,names
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=13
# total_contractor_teams=13
contractor_team_id,machine_types_covered
S1,0 1 4 7 10
S2,0 1 2 8 10 12
S3,2 5 9
S4,3 8 12
S5,4 7 8 10
S6,2 6 9
S7,1 2 5 8 9
S8,0 4 7
S9,3 4 6 8 12
S10,5 6 9
S11,0 4 10 11
S12,10 11
S13,1 3 12
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': 13, 'num_sets': 13, 'density': 0.28994082840236685, 'sets': [{'id': 1, 'elements': [1, 2, 5, 8, 11]}, {'id': 2, 'elements': [1, 2, 3, 9, 11, 13]}, {'id': 3, 'elements': [3, 6, 10]}, {'id': 4, 'elements': [4, 9, 13]}, {'id': 5, 'elements': [5, 8, 9, 11]}, {'id': 6, 'elements': [3, 7, 10]}, {'id': 7, 'elements': [2, 3, 6, 9, 10]}, {'id': 8, 'elements': [1, 5, 8]}, {'id': 9, 'elements': [4, 5, 7, 9, 13]}, {'id': 10, 'elements': [6, 7, 10]}, {'id': 11, 'elements': [1, 5, 11, 12]}, {'id': 12, 'elements': [11, 12]}, {'id': 13, 'elements': [2, 4, 13]}], 'graph': {'num_nodes': 13, 'edges': [{'u': 12, 'v': 11}, {'u': 8, 'v': 1}, {'u': 13, 'v': 4}, {'u': 13, 'v': 9}, {'u': 10, 'v': 3}, {'u': 11, 'v': 5}, {'u': 2, 'v': 5}, {'u': 2, 'v': 7}, {'u': 2, 'v': 9}, {'u': 7, 'v': 3}, {'u': 3, 'v': 6}, {'u': 5, 'v': 1}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0042.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0042.png'}","[1, 7, 9, 11]",4.0,"{'num_elements': 13, 'num_sets': 13, 'sets': [{'id': 'S1', 'elements': [0, 1, 4, 7, 10]}, {'id': 'S2', 'elements': [0, 1, 2, 8, 10, 12]}, {'id': 'S3', 'elements': [2, 5, 9]}, {'id': 'S4', 'elements': [3, 8, 12]}, {'id': 'S5', 'elements': [4, 7, 8, 10]}, {'id': 'S6', 'elements': [2, 6, 9]}, {'id': 'S7', 'elements': [1, 2, 5, 8, 9]}, {'id': 'S8', 'elements': [0, 4, 7]}, {'id': 'S9', 'elements': [3, 4, 6, 8, 12]}, {'id': 'S10', 'elements': [5, 6, 9]}, {'id': 'S11', 'elements': [0, 4, 10, 11]}, {'id': 'S12', 'elements': [10, 11]}, {'id': 'S13', 'elements': [1, 3, 12]}]}","['S1', 'S7', 'S9', 'S11']",43,csv,0
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**: 16
- **total_influencers**: 14
| influencer_id | segments_reached |
|---|---|
| S1 | 1 8 9 11 |
| S2 | 2 7 10 15 |
| S3 | 3 11 16 |
| S4 | 4 6 |
| S5 | 5 6 7 13 14 |
| S6 | 4 5 6 7 10 13 14 |
| S7 | 2 5 7 |
| S8 | 1 2 9 11 12 15 |
| S9 | 2 6 7 10 15 |
| S10 | 1 3 9 12 16 |
| S11 | 1 8 9 11 12 15 |
| S12 | 5 7 13 14 |
| S13 | 5 7 |
| S14 | 2 12 |
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': 16, 'num_sets': 14, 'density': 0.25892857142857145, 'sets': [{'id': 1, 'elements': [1, 8, 9, 11]}, {'id': 2, 'elements': [2, 7, 10, 15]}, {'id': 3, 'elements': [3, 11, 16]}, {'id': 4, 'elements': [4, 6]}, {'id': 5, 'elements': [5, 6, 7, 13, 14]}, {'id': 6, 'elements': [4, 5, 6, 7, 10, 13, 14]}, {'id': 7, 'elements': [2, 5, 7]}, {'id': 8, 'elements': [1, 2, 9, 11, 12, 15]}, {'id': 9, 'elements': [2, 6, 7, 10, 15]}, {'id': 10, 'elements': [1, 3, 9, 12, 16]}, {'id': 11, 'elements': [1, 8, 9, 11, 12, 15]}, {'id': 12, 'elements': [5, 7, 13, 14]}, {'id': 13, 'elements': [5, 7]}, {'id': 14, 'elements': [2, 12]}], 'graph': {'num_nodes': 16, 'edges': [{'u': 11, 'v': 3}, {'u': 11, 'v': 12}, {'u': 12, 'v': 1}, {'u': 12, 'v': 9}, {'u': 2, 'v': 10}, {'u': 2, 'v': 15}, {'u': 15, 'v': 9}, {'u': 8, 'v': 1}, {'u': 6, 'v': 5}, {'u': 6, 'v': 7}, {'u': 6, 'v': 13}, {'u': 6, 'v': 14}, {'u': 7, 'v': 10}, {'u': 14, 'v': 4}, {'u': 3, 'v': 16}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0043.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0043.png'}","[6, 8, 10, 11]",4.0,"{'num_elements': 16, 'num_sets': 14, 'sets': [{'id': 'S1', 'elements': [1, 8, 9, 11]}, {'id': 'S2', 'elements': [2, 7, 10, 15]}, {'id': 'S3', 'elements': [3, 11, 16]}, {'id': 'S4', 'elements': [4, 6]}, {'id': 'S5', 'elements': [5, 6, 7, 13, 14]}, {'id': 'S6', 'elements': [4, 5, 6, 7, 10, 13, 14]}, {'id': 'S7', 'elements': [2, 5, 7]}, {'id': 'S8', 'elements': [1, 2, 9, 11, 12, 15]}, {'id': 'S9', 'elements': [2, 6, 7, 10, 15]}, {'id': 'S10', 'elements': [1, 3, 9, 12, 16]}, {'id': 'S11', 'elements': [1, 8, 9, 11, 12, 15]}, {'id': 'S12', 'elements': [5, 7, 13, 14]}, {'id': 'S13', 'elements': [5, 7]}, {'id': 'S14', 'elements': [2, 12]}]}","['S6', 'S8', 'S10', 'S11']",44,markdown_table,1
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=13
# total_kits=12
kit_id,wards_covered
S1,3 4 5 10
S2,1 4 8
S3,0 7 8 9 10 11
S4,0 2 3 10 12
S5,0 5 9
S6,0 4 5 8
S7,3 7 11 12
S8,2 11
S9,0 1 2 4 8 9
S10,1 2 4 9 10
S11,0 2 3 4 9 10
S12,3 6 7 11 12
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': 13, 'num_sets': 12, 'density': 0.33974358974358976, 'sets': [{'id': 1, 'elements': [4, 5, 6, 11]}, {'id': 2, 'elements': [2, 5, 9]}, {'id': 3, 'elements': [1, 8, 9, 10, 11, 12]}, {'id': 4, 'elements': [1, 3, 4, 11, 13]}, {'id': 5, 'elements': [1, 6, 10]}, {'id': 6, 'elements': [1, 5, 6, 9]}, {'id': 7, 'elements': [4, 8, 12, 13]}, {'id': 8, 'elements': [3, 12]}, {'id': 9, 'elements': [1, 2, 3, 5, 9, 10]}, {'id': 10, 'elements': [2, 3, 5, 10, 11]}, {'id': 11, 'elements': [1, 3, 4, 5, 10, 11]}, {'id': 12, 'elements': [4, 7, 8, 12, 13]}], 'graph': {'num_nodes': 13, 'edges': [{'u': 1, 'v': 3}, {'u': 1, 'v': 9}, {'u': 13, 'v': 7}, {'u': 13, 'v': 8}, {'u': 2, 'v': 5}, {'u': 5, 'v': 9}, {'u': 5, 'v': 10}, {'u': 12, 'v': 4}, {'u': 12, 'v': 7}, {'u': 10, 'v': 11}, {'u': 3, 'v': 4}, {'u': 3, 'v': 11}, {'u': 4, 'v': 8}, {'u': 9, 'v': 6}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0044.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0044.png'}","[6, 10, 12]",3.0,"{'num_elements': 13, 'num_sets': 12, 'sets': [{'id': 'S1', 'elements': [3, 4, 5, 10]}, {'id': 'S2', 'elements': [1, 4, 8]}, {'id': 'S3', 'elements': [0, 7, 8, 9, 10, 11]}, {'id': 'S4', 'elements': [0, 2, 3, 10, 12]}, {'id': 'S5', 'elements': [0, 5, 9]}, {'id': 'S6', 'elements': [0, 4, 5, 8]}, {'id': 'S7', 'elements': [3, 7, 11, 12]}, {'id': 'S8', 'elements': [2, 11]}, {'id': 'S9', 'elements': [0, 1, 2, 4, 8, 9]}, {'id': 'S10', 'elements': [1, 2, 4, 9, 10]}, {'id': 'S11', 'elements': [0, 2, 3, 4, 9, 10]}, {'id': 'S12', 'elements': [3, 6, 7, 11, 12]}]}","['S6', 'S10', 'S12']",45,csv,0
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=15
# available_locations_count=13
location_id,supported_vehicle_types
S1,2 7 8 9 11 12 14 15
S2,1 3 7 12
S3,6 8
S4,5 9 12
S5,4 6 8 12
S6,2 8 12 15
S7,2 9 12
S8,5 7 9
S9,3 12 15
S10,2 6 7 9 10 13 14
S11,2 14
S12,11 12 14
S13,2 7 13
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': 15, 'num_sets': 13, 'density': 0.2512820512820513, 'sets': [{'id': 1, 'elements': [2, 7, 8, 9, 11, 12, 14, 15]}, {'id': 2, 'elements': [1, 3, 7, 12]}, {'id': 3, 'elements': [6, 8]}, {'id': 4, 'elements': [5, 9, 12]}, {'id': 5, 'elements': [4, 6, 8, 12]}, {'id': 6, 'elements': [2, 8, 12, 15]}, {'id': 7, 'elements': [2, 9, 12]}, {'id': 8, 'elements': [5, 7, 9]}, {'id': 9, 'elements': [3, 12, 15]}, {'id': 10, 'elements': [2, 6, 7, 9, 10, 13, 14]}, {'id': 11, 'elements': [2, 14]}, {'id': 12, 'elements': [11, 12, 14]}, {'id': 13, 'elements': [2, 7, 13]}], 'graph': {'num_nodes': 15, 'edges': [{'u': 8, 'v': 6}, {'u': 8, 'v': 12}, {'u': 7, 'v': 3}, {'u': 7, 'v': 10}, {'u': 7, 'v': 12}, {'u': 5, 'v': 9}, {'u': 13, 'v': 2}, {'u': 13, 'v': 15}, {'u': 14, 'v': 2}, {'u': 14, 'v': 11}, {'u': 3, 'v': 1}, {'u': 15, 'v': 10}, {'u': 6, 'v': 4}, {'u': 9, 'v': 12}, {'u': 2, 'v': 12}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0045.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0045.png'}","[1, 2, 4, 5, 10]",5.0,"{'num_elements': 15, 'num_sets': 13, 'sets': [{'id': 'S1', 'elements': [2, 7, 8, 9, 11, 12, 14, 15]}, {'id': 'S2', 'elements': [1, 3, 7, 12]}, {'id': 'S3', 'elements': [6, 8]}, {'id': 'S4', 'elements': [5, 9, 12]}, {'id': 'S5', 'elements': [4, 6, 8, 12]}, {'id': 'S6', 'elements': [2, 8, 12, 15]}, {'id': 'S7', 'elements': [2, 9, 12]}, {'id': 'S8', 'elements': [5, 7, 9]}, {'id': 'S9', 'elements': [3, 12, 15]}, {'id': 'S10', 'elements': [2, 6, 7, 9, 10, 13, 14]}, {'id': 'S11', 'elements': [2, 14]}, {'id': 'S12', 'elements': [11, 12, 14]}, {'id': 'S13', 'elements': [2, 7, 13]}]}","['S1', 'S2', 'S4', 'S5', 'S10']",46,csv,1
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=17
# total_candidate_bundles=15
bundle_id,bundle_genre_ids
S1,1 3 4
S2,1 2 4 5 7 14
S3,1 4 5 7
S4,3 4 5 11 14 16
S5,6 8 10
S6,3 7
S7,6 8 9 12 16
S8,8 9 12 13 15
S9,6 8 13 16
S10,3 5 8 11 17
S11,8 9 15
S12,8 9 10 13 16
S13,3 5
S14,5 8 9 10 11 16 17
S15,8 11 16 17
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': 17, 'num_sets': 15, 'density': 0.25098039215686274, 'sets': [{'id': 1, 'elements': [1, 3, 4]}, {'id': 2, 'elements': [1, 2, 4, 5, 7, 14]}, {'id': 3, 'elements': [1, 4, 5, 7]}, {'id': 4, 'elements': [3, 4, 5, 11, 14, 16]}, {'id': 5, 'elements': [6, 8, 10]}, {'id': 6, 'elements': [3, 7]}, {'id': 7, 'elements': [6, 8, 9, 12, 16]}, {'id': 8, 'elements': [8, 9, 12, 13, 15]}, {'id': 9, 'elements': [6, 8, 13, 16]}, {'id': 10, 'elements': [3, 5, 8, 11, 17]}, {'id': 11, 'elements': [8, 9, 15]}, {'id': 12, 'elements': [8, 9, 10, 13, 16]}, {'id': 13, 'elements': [3, 5]}, {'id': 14, 'elements': [5, 8, 9, 10, 11, 16, 17]}, {'id': 15, 'elements': [8, 11, 16, 17]}], 'graph': {'num_nodes': 17, 'edges': [{'u': 11, 'v': 5}, {'u': 11, 'v': 16}, {'u': 15, 'v': 9}, {'u': 14, 'v': 2}, {'u': 14, 'v': 3}, {'u': 8, 'v': 9}, {'u': 8, 'v': 10}, {'u': 8, 'v': 13}, {'u': 8, 'v': 16}, {'u': 16, 'v': 17}, {'u': 10, 'v': 6}, {'u': 9, 'v': 12}, {'u': 3, 'v': 4}, {'u': 3, 'v': 5}, {'u': 4, 'v': 1}, {'u': 4, 'v': 7}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0046.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0046.png'}","[2, 8, 9, 10, 14]",5.0,"{'num_elements': 17, 'num_sets': 15, 'sets': [{'id': 'S1', 'elements': [1, 3, 4]}, {'id': 'S2', 'elements': [1, 2, 4, 5, 7, 14]}, {'id': 'S3', 'elements': [1, 4, 5, 7]}, {'id': 'S4', 'elements': [3, 4, 5, 11, 14, 16]}, {'id': 'S5', 'elements': [6, 8, 10]}, {'id': 'S6', 'elements': [3, 7]}, {'id': 'S7', 'elements': [6, 8, 9, 12, 16]}, {'id': 'S8', 'elements': [8, 9, 12, 13, 15]}, {'id': 'S9', 'elements': [6, 8, 13, 16]}, {'id': 'S10', 'elements': [3, 5, 8, 11, 17]}, {'id': 'S11', 'elements': [8, 9, 15]}, {'id': 'S12', 'elements': [8, 9, 10, 13, 16]}, {'id': 'S13', 'elements': [3, 5]}, {'id': 'S14', 'elements': [5, 8, 9, 10, 11, 16, 17]}, {'id': 'S15', 'elements': [8, 11, 16, 17]}]}","['S2', 'S8', 'S9', 'S10', 'S14']",47,csv,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**: 15
- **total_clusters**: 14
| cluster_id | covered_blind_spots |
|---|---|
| S1 | A B G |
| S2 | A B |
| S3 | C E J K L N |
| S4 | D M O |
| S5 | E F H K L N |
| S6 | I M N O |
| S7 | A B G I |
| S8 | C H K |
| S9 | B E F G |
| S10 | C J K |
| S11 | C L N |
| S12 | D N |
| S13 | E F I M N |
| S14 | D F M |
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': 15, 'num_sets': 14, 'density': 0.24285714285714285, 'sets': [{'id': 1, 'elements': [1, 2, 7]}, {'id': 2, 'elements': [1, 2]}, {'id': 3, 'elements': [3, 5, 10, 11, 12, 14]}, {'id': 4, 'elements': [4, 13, 15]}, {'id': 5, 'elements': [5, 6, 8, 11, 12, 14]}, {'id': 6, 'elements': [9, 13, 14, 15]}, {'id': 7, 'elements': [1, 2, 7, 9]}, {'id': 8, 'elements': [3, 8, 11]}, {'id': 9, 'elements': [2, 5, 6, 7]}, {'id': 10, 'elements': [3, 10, 11]}, {'id': 11, 'elements': [3, 12, 14]}, {'id': 12, 'elements': [4, 14]}, {'id': 13, 'elements': [5, 6, 9, 13, 14]}, {'id': 14, 'elements': [4, 6, 13]}], 'graph': {'num_nodes': 15, 'edges': [{'u': 7, 'v': 1}, {'u': 8, 'v': 3}, {'u': 4, 'v': 15}, {'u': 9, 'v': 1}, {'u': 9, 'v': 2}, {'u': 9, 'v': 14}, {'u': 5, 'v': 3}, {'u': 5, 'v': 12}, {'u': 5, 'v': 14}, {'u': 6, 'v': 13}, {'u': 6, 'v': 14}, {'u': 13, 'v': 15}, {'u': 1, 'v': 2}, {'u': 11, 'v': 3}, {'u': 11, 'v': 10}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0047.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0047.png'}","[3, 4, 5, 7]",4.0,"{'num_elements': 15, 'num_sets': 14, 'sets': [{'id': 'S1', 'elements': ['A', 'B', 'G']}, {'id': 'S2', 'elements': ['A', 'B']}, {'id': 'S3', 'elements': ['C', 'E', 'J', 'K', 'L', 'N']}, {'id': 'S4', 'elements': ['D', 'M', 'O']}, {'id': 'S5', 'elements': ['E', 'F', 'H', 'K', 'L', 'N']}, {'id': 'S6', 'elements': ['I', 'M', 'N', 'O']}, {'id': 'S7', 'elements': ['A', 'B', 'G', 'I']}, {'id': 'S8', 'elements': ['C', 'H', 'K']}, {'id': 'S9', 'elements': ['B', 'E', 'F', 'G']}, {'id': 'S10', 'elements': ['C', 'J', 'K']}, {'id': 'S11', 'elements': ['C', 'L', 'N']}, {'id': 'S12', 'elements': ['D', 'N']}, {'id': 'S13', 'elements': ['E', 'F', 'I', 'M', 'N']}, {'id': 'S14', 'elements': ['D', 'F', 'M']}]}","['S3', 'S4', 'S5', 'S7']",48,markdown_table,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"": 13,
""total_test_suites"": 13,
""sets"": [
{
""suite_id"": ""S1"",
""covered_features"": [
1,
2,
9
]
},
{
""suite_id"": ""S2"",
""covered_features"": [
1,
8,
9,
13
]
},
{
""suite_id"": ""S3"",
""covered_features"": [
3,
5,
6,
7,
10
]
},
{
""suite_id"": ""S4"",
""covered_features"": [
4,
6,
10,
12
]
},
{
""suite_id"": ""S5"",
""covered_features"": [
5,
6,
7
]
},
{
""suite_id"": ""S6"",
""covered_features"": [
3,
4,
11,
13
]
},
{
""suite_id"": ""S7"",
""covered_features"": [
3,
5
]
},
{
""suite_id"": ""S8"",
""covered_features"": [
2,
8,
9
]
},
{
""suite_id"": ""S9"",
""covered_features"": [
8,
9
]
},
{
""suite_id"": ""S10"",
""covered_features"": [
4,
6,
10,
11
]
},
{
""suite_id"": ""S11"",
""covered_features"": [
2,
3,
6,
10,
13
]
},
{
""suite_id"": ""S12"",
""covered_features"": [
4,
10
]
},
{
""suite_id"": ""S13"",
""covered_features"": [
6,
8,
13
]
}
]
}
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': 13, 'num_sets': 13, 'density': 0.2603550295857988, 'sets': [{'id': 1, 'elements': [1, 2, 9]}, {'id': 2, 'elements': [1, 8, 9, 13]}, {'id': 3, 'elements': [3, 5, 6, 7, 10]}, {'id': 4, 'elements': [4, 6, 10, 12]}, {'id': 5, 'elements': [5, 6, 7]}, {'id': 6, 'elements': [3, 4, 11, 13]}, {'id': 7, 'elements': [3, 5]}, {'id': 8, 'elements': [2, 8, 9]}, {'id': 9, 'elements': [8, 9]}, {'id': 10, 'elements': [4, 6, 10, 11]}, {'id': 11, 'elements': [2, 3, 6, 10, 13]}, {'id': 12, 'elements': [4, 10]}, {'id': 13, 'elements': [6, 8, 13]}], 'graph': {'num_nodes': 13, 'edges': [{'u': 1, 'v': 8}, {'u': 11, 'v': 6}, {'u': 11, 'v': 13}, {'u': 7, 'v': 5}, {'u': 6, 'v': 3}, {'u': 6, 'v': 10}, {'u': 2, 'v': 8}, {'u': 2, 'v': 13}, {'u': 12, 'v': 4}, {'u': 3, 'v': 5}, {'u': 8, 'v': 9}, {'u': 4, 'v': 10}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0048.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0048.png'}","[2, 3, 4, 6, 8]",5.0,"{'num_elements': 13, 'num_sets': 13, 'sets': [{'id': 'S1', 'elements': [1, 2, 9]}, {'id': 'S2', 'elements': [1, 8, 9, 13]}, {'id': 'S3', 'elements': [3, 5, 6, 7, 10]}, {'id': 'S4', 'elements': [4, 6, 10, 12]}, {'id': 'S5', 'elements': [5, 6, 7]}, {'id': 'S6', 'elements': [3, 4, 11, 13]}, {'id': 'S7', 'elements': [3, 5]}, {'id': 'S8', 'elements': [2, 8, 9]}, {'id': 'S9', 'elements': [8, 9]}, {'id': 'S10', 'elements': [4, 6, 10, 11]}, {'id': 'S11', 'elements': [2, 3, 6, 10, 13]}, {'id': 'S12', 'elements': [4, 10]}, {'id': 'S13', 'elements': [6, 8, 13]}]}","['S2', 'S3', 'S4', 'S6', 'S8']",49,json,1
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"": 18,
""num_candidate_venues"": 16,
""sets"": [
{
""venue_id"": ""S1"",
""available_scene_types"": [
""B"",
""H"",
""L"",
""O""
]
},
{
""venue_id"": ""S2"",
""available_scene_types"": [
""B"",
""F"",
""G"",
""M""
]
},
{
""venue_id"": ""S3"",
""available_scene_types"": [
""A"",
""D"",
""G"",
""I"",
""M""
]
},
{
""venue_id"": ""S4"",
""available_scene_types"": [
""E"",
""I"",
""O""
]
},
{
""venue_id"": ""S5"",
""available_scene_types"": [
""C"",
""F"",
""G"",
""L""
]
},
{
""venue_id"": ""S6"",
""available_scene_types"": [
""A"",
""C"",
""D"",
""F"",
""K"",
""L"",
""O"",
""R""
]
},
{
""venue_id"": ""S7"",
""available_scene_types"": [
""B"",
""L"",
""M""
]
},
{
""venue_id"": ""S8"",
""available_scene_types"": [
""D"",
""I"",
""P""
]
},
{
""venue_id"": ""S9"",
""available_scene_types"": [
""A"",
""D"",
""N"",
""Q""
]
},
{
""venue_id"": ""S10"",
""available_scene_types"": [
""F"",
""G"",
""K"",
""R""
]
},
{
""venue_id"": ""S11"",
""available_scene_types"": [
""F"",
""H"",
""K"",
""L"",
""M"",
""R""
]
},
{
""venue_id"": ""S12"",
""available_scene_types"": [
""B"",
""F"",
""G"",
""H"",
""L"",
""M"",
""O"",
""R""
]
},
{
""venue_id"": ""S13"",
""available_scene_types"": [
""J"",
""N"",
""Q""
]
},
{
""venue_id"": ""S14"",
""available_scene_types"": [
""B"",
""C"",
""D"",
""E"",
""O"",
""P""
]
},
{
""venue_id"": ""S15"",
""available_scene_types"": [
""E"",
""I"",
""O"",
""P""
]
},
{
""venue_id"": ""S16"",
""available_scene_types"": [
""D"",
""F"",
""G"",
""L"",
""R""
]
}
]
}
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': 18, 'num_sets': 16, 'density': 0.2569444444444444, 'sets': [{'id': 1, 'elements': [2, 8, 12, 15]}, {'id': 2, 'elements': [2, 6, 7, 13]}, {'id': 3, 'elements': [1, 4, 7, 9, 13]}, {'id': 4, 'elements': [5, 9, 15]}, {'id': 5, 'elements': [3, 6, 7, 12]}, {'id': 6, 'elements': [1, 3, 4, 6, 11, 12, 15, 18]}, {'id': 7, 'elements': [2, 12, 13]}, {'id': 8, 'elements': [4, 9, 16]}, {'id': 9, 'elements': [1, 4, 14, 17]}, {'id': 10, 'elements': [6, 7, 11, 18]}, {'id': 11, 'elements': [6, 8, 11, 12, 13, 18]}, {'id': 12, 'elements': [2, 6, 7, 8, 12, 13, 15, 18]}, {'id': 13, 'elements': [10, 14, 17]}, {'id': 14, 'elements': [2, 3, 4, 5, 15, 16]}, {'id': 15, 'elements': [5, 9, 15, 16]}, {'id': 16, 'elements': [4, 6, 7, 12, 18]}], 'graph': {'num_nodes': 18, 'edges': [{'u': 6, 'v': 2}, {'u': 6, 'v': 8}, {'u': 6, 'v': 12}, {'u': 6, 'v': 13}, {'u': 5, 'v': 9}, {'u': 14, 'v': 17}, {'u': 7, 'v': 4}, {'u': 7, 'v': 13}, {'u': 7, 'v': 18}, {'u': 11, 'v': 12}, {'u': 11, 'v': 18}, {'u': 10, 'v': 1}, {'u': 10, 'v': 17}, {'u': 4, 'v': 1}, {'u': 4, 'v': 15}, {'u': 9, 'v': 15}, {'u': 9, 'v': 16}, {'u': 18, 'v': 12}, {'u': 3, 'v': 2}, {'u': 3, 'v': 13}, {'u': 3, 'v': 15}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_M/instance_0049.png', 'viz_solution': 'generated_data/SCP/viz/SCP_M/solution_0049.png'}","[3, 11, 13, 14]",4.0,"{'num_elements': 18, 'num_sets': 16, 'sets': [{'id': 'S1', 'elements': ['B', 'H', 'L', 'O']}, {'id': 'S2', 'elements': ['B', 'F', 'G', 'M']}, {'id': 'S3', 'elements': ['A', 'D', 'G', 'I', 'M']}, {'id': 'S4', 'elements': ['E', 'I', 'O']}, {'id': 'S5', 'elements': ['C', 'F', 'G', 'L']}, {'id': 'S6', 'elements': ['A', 'C', 'D', 'F', 'K', 'L', 'O', 'R']}, {'id': 'S7', 'elements': ['B', 'L', 'M']}, {'id': 'S8', 'elements': ['D', 'I', 'P']}, {'id': 'S9', 'elements': ['A', 'D', 'N', 'Q']}, {'id': 'S10', 'elements': ['F', 'G', 'K', 'R']}, {'id': 'S11', 'elements': ['F', 'H', 'K', 'L', 'M', 'R']}, {'id': 'S12', 'elements': ['B', 'F', 'G', 'H', 'L', 'M', 'O', 'R']}, {'id': 'S13', 'elements': ['J', 'N', 'Q']}, {'id': 'S14', 'elements': ['B', 'C', 'D', 'E', 'O', 'P']}, {'id': 'S15', 'elements': ['E', 'I', 'O', 'P']}, {'id': 'S16', 'elements': ['D', 'F', 'G', 'L', 'R']}]}","['S3', 'S11', 'S13', 'S14']",50,json,names
|