File size: 259,711 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 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 | task_name,problem_type,instruction,instance,solution,obj,instance_variant,solution_variant,context_index,input_format,input_index_base
SCP,SCP,"In my neighborhood someone is figuring out how to protect a whole house with detectors: the task is to pick which models to place around the house so each room gets at least one detector, and to do that while minimizing how many detector units are used overall. The way to judge any plan is by counting every detector installed across all rooms — the smaller that count, the better. Every room must have coverage, and putting more than one detector in the same room only increases the total and is therefore less desirable. The concrete layout and model options are listed below.
{
""total_rooms"": 24,
""num_candidate_installations"": 24,
""sets"": [
{
""candidate_installation_id"": ""S1"",
""rooms_covered"": [
""W"",
""X""
]
},
{
""candidate_installation_id"": ""S2"",
""rooms_covered"": [
""B"",
""E"",
""I"",
""K"",
""O""
]
},
{
""candidate_installation_id"": ""S3"",
""rooms_covered"": [
""C"",
""O"",
""S"",
""V""
]
},
{
""candidate_installation_id"": ""S4"",
""rooms_covered"": [
""C"",
""D"",
""F"",
""N"",
""O"",
""V""
]
},
{
""candidate_installation_id"": ""S5"",
""rooms_covered"": [
""B"",
""E"",
""I"",
""L"",
""O"",
""U""
]
},
{
""candidate_installation_id"": ""S6"",
""rooms_covered"": [
""D"",
""F"",
""G"",
""Q"",
""W""
]
},
{
""candidate_installation_id"": ""S7"",
""rooms_covered"": [
""A"",
""G"",
""H"",
""R"",
""W"",
""X""
]
},
{
""candidate_installation_id"": ""S8"",
""rooms_covered"": [
""G"",
""H"",
""R""
]
},
{
""candidate_installation_id"": ""S9"",
""rooms_covered"": [
""B"",
""E"",
""F"",
""K"",
""L""
]
},
{
""candidate_installation_id"": ""S10"",
""rooms_covered"": [
""J"",
""P"",
""S""
]
},
{
""candidate_installation_id"": ""S11"",
""rooms_covered"": [
""B"",
""K""
]
},
{
""candidate_installation_id"": ""S12"",
""rooms_covered"": [
""E"",
""M"",
""U""
]
},
{
""candidate_installation_id"": ""S13"",
""rooms_covered"": [
""L"",
""M"",
""U""
]
},
{
""candidate_installation_id"": ""S14"",
""rooms_covered"": [
""C"",
""D""
]
},
{
""candidate_installation_id"": ""S15"",
""rooms_covered"": [
""B"",
""C"",
""I"",
""O"",
""V""
]
},
{
""candidate_installation_id"": ""S16"",
""rooms_covered"": [
""J"",
""P""
]
},
{
""candidate_installation_id"": ""S17"",
""rooms_covered"": [
""F"",
""G""
]
},
{
""candidate_installation_id"": ""S18"",
""rooms_covered"": [
""G"",
""H"",
""T"",
""X""
]
},
{
""candidate_installation_id"": ""S19"",
""rooms_covered"": [
""C"",
""J"",
""N"",
""P""
]
},
{
""candidate_installation_id"": ""S20"",
""rooms_covered"": [
""R"",
""X""
]
},
{
""candidate_installation_id"": ""S21"",
""rooms_covered"": [
""E"",
""L"",
""M""
]
},
{
""candidate_installation_id"": ""S22"",
""rooms_covered"": [
""O"",
""V""
]
},
{
""candidate_installation_id"": ""S23"",
""rooms_covered"": [
""A"",
""F"",
""G"",
""X""
]
},
{
""candidate_installation_id"": ""S24"",
""rooms_covered"": [
""A"",
""G"",
""H"",
""R"",
""T"",
""W"",
""X""
]
}
]
}
Also, when you send back your plan, just put the chosen detector identifiers into a tiny JSON object so it's easy to read — something like this (this is just the shape, not the actual answer):
{
""solution"": [""detector_id"", ...]
}
Think of it like a simple form: ""solution"" is the list of detector models you picked (one entry for each model you want installed). The placeholder detector_id stands in for whatever exact IDs the instance uses; replace those placeholders with the real IDs from the problem when you answer.
This JSON is only a sketch of the expected shape — not the actual solution.
Please use the identifiers exactly as they appear in the instance input — no renaming and no new labels.
- for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 24, 'num_sets': 24, 'density': 0.15625, 'sets': [{'id': 1, 'elements': [23, 24]}, {'id': 2, 'elements': [2, 5, 9, 11, 15]}, {'id': 3, 'elements': [3, 15, 19, 22]}, {'id': 4, 'elements': [3, 4, 6, 14, 15, 22]}, {'id': 5, 'elements': [2, 5, 9, 12, 15, 21]}, {'id': 6, 'elements': [4, 6, 7, 17, 23]}, {'id': 7, 'elements': [1, 7, 8, 18, 23, 24]}, {'id': 8, 'elements': [7, 8, 18]}, {'id': 9, 'elements': [2, 5, 6, 11, 12]}, {'id': 10, 'elements': [10, 16, 19]}, {'id': 11, 'elements': [2, 11]}, {'id': 12, 'elements': [5, 13, 21]}, {'id': 13, 'elements': [12, 13, 21]}, {'id': 14, 'elements': [3, 4]}, {'id': 15, 'elements': [2, 3, 9, 15, 22]}, {'id': 16, 'elements': [10, 16]}, {'id': 17, 'elements': [6, 7]}, {'id': 18, 'elements': [7, 8, 20, 24]}, {'id': 19, 'elements': [3, 10, 14, 16]}, {'id': 20, 'elements': [18, 24]}, {'id': 21, 'elements': [5, 12, 13]}, {'id': 22, 'elements': [15, 22]}, {'id': 23, 'elements': [1, 6, 7, 24]}, {'id': 24, 'elements': [1, 7, 8, 18, 20, 23, 24]}], 'graph': {'num_nodes': 24, 'edges': [{'u': 4, 'v': 3}, {'u': 4, 'v': 15}, {'u': 4, 'v': 22}, {'u': 14, 'v': 3}, {'u': 19, 'v': 3}, {'u': 19, 'v': 10}, {'u': 16, 'v': 10}, {'u': 17, 'v': 23}, {'u': 7, 'v': 1}, {'u': 7, 'v': 23}, {'u': 7, 'v': 24}, {'u': 21, 'v': 12}, {'u': 21, 'v': 13}, {'u': 5, 'v': 9}, {'u': 5, 'v': 12}, {'u': 24, 'v': 8}, {'u': 24, 'v': 18}, {'u': 6, 'v': 15}, {'u': 6, 'v': 23}, {'u': 15, 'v': 9}, {'u': 18, 'v': 20}, {'u': 9, 'v': 2}, {'u': 11, 'v': 2}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0000.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0000.png'}","[2, 4, 6, 10, 13, 24]",6.0,"{'num_elements': 24, 'num_sets': 24, 'sets': [{'id': 'S1', 'elements': ['W', 'X']}, {'id': 'S2', 'elements': ['B', 'E', 'I', 'K', 'O']}, {'id': 'S3', 'elements': ['C', 'O', 'S', 'V']}, {'id': 'S4', 'elements': ['C', 'D', 'F', 'N', 'O', 'V']}, {'id': 'S5', 'elements': ['B', 'E', 'I', 'L', 'O', 'U']}, {'id': 'S6', 'elements': ['D', 'F', 'G', 'Q', 'W']}, {'id': 'S7', 'elements': ['A', 'G', 'H', 'R', 'W', 'X']}, {'id': 'S8', 'elements': ['G', 'H', 'R']}, {'id': 'S9', 'elements': ['B', 'E', 'F', 'K', 'L']}, {'id': 'S10', 'elements': ['J', 'P', 'S']}, {'id': 'S11', 'elements': ['B', 'K']}, {'id': 'S12', 'elements': ['E', 'M', 'U']}, {'id': 'S13', 'elements': ['L', 'M', 'U']}, {'id': 'S14', 'elements': ['C', 'D']}, {'id': 'S15', 'elements': ['B', 'C', 'I', 'O', 'V']}, {'id': 'S16', 'elements': ['J', 'P']}, {'id': 'S17', 'elements': ['F', 'G']}, {'id': 'S18', 'elements': ['G', 'H', 'T', 'X']}, {'id': 'S19', 'elements': ['C', 'J', 'N', 'P']}, {'id': 'S20', 'elements': ['R', 'X']}, {'id': 'S21', 'elements': ['E', 'L', 'M']}, {'id': 'S22', 'elements': ['O', 'V']}, {'id': 'S23', 'elements': ['A', 'F', 'G', 'X']}, {'id': 'S24', 'elements': ['A', 'G', 'H', 'R', 'T', 'W', 'X']}]}","['S2', 'S4', 'S6', 'S10', 'S13', 'S24']",1,json,names
SCP,SCP,"On a tight schedule, the event planner needs to assemble a compact roster that still includes every musical genre on the program. The task is to choose which performers to invite; better choices are those with fewer artists, because the effectiveness is just the number of invites (smaller is better), while making sure every genre appears at least once. No genre may be omitted, and duplicate invites don’t increase genre coverage. The specific options are given below.
# total_genres=19
# total_performer_options=18
performer_id,genres_covered
S1,A G J L P
S2,B E G I M P S
S3,C E H I J L
S4,D F N
S5,B C E G I M
S6,F N
S7,A B E P
S8,H J K N
S9,B E L M S
S10,A C H J L N
S11,H K R
S12,A C F H I K L N R
S13,B M S
S14,D J L O
S15,A B J
S16,H Q R
S17,H K L Q R
S18,B E I M
Also, when you hand me the final picks, please follow this simple JSON layout so it's easy to parse:
{
""solution"": [""performer_id"", ...]
}
This just means ""solution"" is a list (an array) of the performer IDs you decide to invite. The string ""performer_id"" is a placeholder showing where each real ID goes — swap those placeholders for the actual IDs from the instance. It's just a sketch of the shape I expect, not the final answer itself.
Please be sure to use the exact identifiers from the instance input — don't rename them or invent new labels.
- for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 19, 'num_sets': 18, 'density': 0.23976608187134502, 'sets': [{'id': 1, 'elements': [1, 7, 10, 12, 16]}, {'id': 2, 'elements': [2, 5, 7, 9, 13, 16, 19]}, {'id': 3, 'elements': [3, 5, 8, 9, 10, 12]}, {'id': 4, 'elements': [4, 6, 14]}, {'id': 5, 'elements': [2, 3, 5, 7, 9, 13]}, {'id': 6, 'elements': [6, 14]}, {'id': 7, 'elements': [1, 2, 5, 16]}, {'id': 8, 'elements': [8, 10, 11, 14]}, {'id': 9, 'elements': [2, 5, 12, 13, 19]}, {'id': 10, 'elements': [1, 3, 8, 10, 12, 14]}, {'id': 11, 'elements': [8, 11, 18]}, {'id': 12, 'elements': [1, 3, 6, 8, 9, 11, 12, 14, 18]}, {'id': 13, 'elements': [2, 13, 19]}, {'id': 14, 'elements': [4, 10, 12, 15]}, {'id': 15, 'elements': [1, 2, 10]}, {'id': 16, 'elements': [8, 17, 18]}, {'id': 17, 'elements': [8, 11, 12, 17, 18]}, {'id': 18, 'elements': [2, 5, 9, 13]}], 'graph': {'num_nodes': 19, 'edges': [{'u': 5, 'v': 2}, {'u': 5, 'v': 9}, {'u': 5, 'v': 13}, {'u': 5, 'v': 19}, {'u': 18, 'v': 8}, {'u': 18, 'v': 17}, {'u': 1, 'v': 10}, {'u': 1, 'v': 16}, {'u': 15, 'v': 6}, {'u': 4, 'v': 14}, {'u': 11, 'v': 8}, {'u': 10, 'v': 12}, {'u': 12, 'v': 3}, {'u': 12, 'v': 8}, {'u': 12, 'v': 14}, {'u': 6, 'v': 14}, {'u': 7, 'v': 2}, {'u': 7, 'v': 16}, {'u': 3, 'v': 9}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0001.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0001.png'}","[2, 12, 14, 17]",4.0,"{'num_elements': 19, 'num_sets': 18, 'sets': [{'id': 'S1', 'elements': ['A', 'G', 'J', 'L', 'P']}, {'id': 'S2', 'elements': ['B', 'E', 'G', 'I', 'M', 'P', 'S']}, {'id': 'S3', 'elements': ['C', 'E', 'H', 'I', 'J', 'L']}, {'id': 'S4', 'elements': ['D', 'F', 'N']}, {'id': 'S5', 'elements': ['B', 'C', 'E', 'G', 'I', 'M']}, {'id': 'S6', 'elements': ['F', 'N']}, {'id': 'S7', 'elements': ['A', 'B', 'E', 'P']}, {'id': 'S8', 'elements': ['H', 'J', 'K', 'N']}, {'id': 'S9', 'elements': ['B', 'E', 'L', 'M', 'S']}, {'id': 'S10', 'elements': ['A', 'C', 'H', 'J', 'L', 'N']}, {'id': 'S11', 'elements': ['H', 'K', 'R']}, {'id': 'S12', 'elements': ['A', 'C', 'F', 'H', 'I', 'K', 'L', 'N', 'R']}, {'id': 'S13', 'elements': ['B', 'M', 'S']}, {'id': 'S14', 'elements': ['D', 'J', 'L', 'O']}, {'id': 'S15', 'elements': ['A', 'B', 'J']}, {'id': 'S16', 'elements': ['H', 'Q', 'R']}, {'id': 'S17', 'elements': ['H', 'K', 'L', 'Q', 'R']}, {'id': 'S18', 'elements': ['B', 'E', 'I', 'M']}]}","['S2', 'S12', 'S14', 'S17']",2,csv,names
SCP,SCP,"Recently the district asked the library to make sure every curriculum topic is represented on the shelves, so the librarian is choosing which titles to buy. The trick is to pick books that together touch every topic, and the smarter plan is the one that does that while keeping the purchase count as low as possible — tally the number of titles to compare options. Every topic must have at least one book, and extra copies that don’t introduce new topics are unnecessary. The concrete instance details are given below.
- **total_curriculum_topics**: 19
- **total_available_titles**: 19
| title_id | covered_topics |
|---|---|
| S1 | 9 12 17 |
| S2 | 1 3 8 |
| S3 | 2 3 6 8 9 11 13 16 17 |
| S4 | 1 2 3 5 8 16 |
| S5 | 4 8 10 |
| S6 | 2 3 5 7 16 17 |
| S7 | 2 6 13 15 18 |
| S8 | 12 17 |
| S9 | 1 3 4 9 11 13 |
| S10 | 0 2 8 9 13 |
| S11 | 4 8 16 |
| S12 | 2 8 9 13 |
| S13 | 0 7 8 12 17 |
| S14 | 2 6 8 11 13 18 |
| S15 | 6 14 18 |
| S16 | 6 14 15 |
| S17 | 2 3 4 5 10 |
| S18 | 2 5 9 12 17 |
| S19 | 6 14 15 18 |
If you want to hand me the chosen titles, just drop them in a tiny JSON blob like this so I know what to expect:
{
""solution"": [""book_id"", ...]
}
Here ""solution"" is just the list of book IDs the librarian would buy to cover all the curriculum topics — each entry is the ID of a title from the instance. It's a casual sketch of the shape I expect, not the actual answer itself.
All identifiers must be used exactly as they appear in the instance input — no renaming and no new labels.
- for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 19, 'num_sets': 19, 'density': 0.23822714681440443, 'sets': [{'id': 1, 'elements': [10, 13, 18]}, {'id': 2, 'elements': [2, 4, 9]}, {'id': 3, 'elements': [3, 4, 7, 9, 10, 12, 14, 17, 18]}, {'id': 4, 'elements': [2, 3, 4, 6, 9, 17]}, {'id': 5, 'elements': [5, 9, 11]}, {'id': 6, 'elements': [3, 4, 6, 8, 17, 18]}, {'id': 7, 'elements': [3, 7, 14, 16, 19]}, {'id': 8, 'elements': [13, 18]}, {'id': 9, 'elements': [2, 4, 5, 10, 12, 14]}, {'id': 10, 'elements': [1, 3, 9, 10, 14]}, {'id': 11, 'elements': [5, 9, 17]}, {'id': 12, 'elements': [3, 9, 10, 14]}, {'id': 13, 'elements': [1, 8, 9, 13, 18]}, {'id': 14, 'elements': [3, 7, 9, 12, 14, 19]}, {'id': 15, 'elements': [7, 15, 19]}, {'id': 16, 'elements': [7, 15, 16]}, {'id': 17, 'elements': [3, 4, 5, 6, 11]}, {'id': 18, 'elements': [3, 6, 10, 13, 18]}, {'id': 19, 'elements': [7, 15, 16, 19]}], 'graph': {'num_nodes': 19, 'edges': [{'u': 2, 'v': 4}, {'u': 3, 'v': 9}, {'u': 3, 'v': 10}, {'u': 3, 'v': 12}, {'u': 3, 'v': 14}, {'u': 6, 'v': 9}, {'u': 6, 'v': 13}, {'u': 14, 'v': 7}, {'u': 11, 'v': 17}, {'u': 1, 'v': 18}, {'u': 9, 'v': 4}, {'u': 9, 'v': 17}, {'u': 16, 'v': 19}, {'u': 18, 'v': 10}, {'u': 18, 'v': 13}, {'u': 15, 'v': 19}, {'u': 5, 'v': 17}, {'u': 7, 'v': 19}, {'u': 13, 'v': 8}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0002.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0002.png'}","[3, 4, 13, 17, 19]",5.0,"{'num_elements': 19, 'num_sets': 19, 'sets': [{'id': 'S1', 'elements': [9, 12, 17]}, {'id': 'S2', 'elements': [1, 3, 8]}, {'id': 'S3', 'elements': [2, 3, 6, 8, 9, 11, 13, 16, 17]}, {'id': 'S4', 'elements': [1, 2, 3, 5, 8, 16]}, {'id': 'S5', 'elements': [4, 8, 10]}, {'id': 'S6', 'elements': [2, 3, 5, 7, 16, 17]}, {'id': 'S7', 'elements': [2, 6, 13, 15, 18]}, {'id': 'S8', 'elements': [12, 17]}, {'id': 'S9', 'elements': [1, 3, 4, 9, 11, 13]}, {'id': 'S10', 'elements': [0, 2, 8, 9, 13]}, {'id': 'S11', 'elements': [4, 8, 16]}, {'id': 'S12', 'elements': [2, 8, 9, 13]}, {'id': 'S13', 'elements': [0, 7, 8, 12, 17]}, {'id': 'S14', 'elements': [2, 6, 8, 11, 13, 18]}, {'id': 'S15', 'elements': [6, 14, 18]}, {'id': 'S16', 'elements': [6, 14, 15]}, {'id': 'S17', 'elements': [2, 3, 4, 5, 10]}, {'id': 'S18', 'elements': [2, 5, 9, 12, 17]}, {'id': 'S19', 'elements': [6, 14, 15, 18]}]}","['S3', 'S4', 'S13', 'S17', 'S19']",3,markdown_table,0
SCP,SCP,"Picture this: an IT manager at a dashboard, checking boxes to enable modules, needing to make sure every required feature lights up but trying to check as few boxes as possible. The work is picking which boxes to check — because each box (module) turns on a set of features — and a smarter pick is one that leaves no required feature dark while keeping the number of checked boxes to a minimum. The way to evaluate any selection is simple: count the checked boxes, and don’t let any required feature be left out; checking extra boxes that only duplicate features just raises the total for no reason. The specific modules and features are listed below.
# total_required_features=24
# total_available_modules=23
module_id,features_enabled
S1,A C E N S T V
S2,B D E
S3,A B C D G M T
S4,C D E H W
S5,A B D E H M W
S6,F J M R
S7,F G K Q U X
S8,D E H W
S9,F I L
S10,F M P R
S11,G M Q U X
S12,F I L P
S13,A E K P Q
S14,N V
S15,K O
S16,F I J L M P R
S17,G K M Q
S18,F J M P R
S19,N S V
S20,A C T
S21,G O U X
S22,A S V
S23,G U
Oh, and when you send the selection back, a tiny JSON snippet like this is perfect — just list the module ids you picked:
{
""solution"": [""module_id"", ...]
}
The ""solution"" array is where you put the ids of the boxes/modules you checked — one identifier per selected module. Think of it as filling out a short checklist: each entry is the exact label for a module from the instance.
This JSON is just a sketch of the shape I expect, not the actual answer itself — use it as a form to fill in.
Please make sure to use the identifiers exactly as they appear in the instance input — no renaming and no new labels.
Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 24, 'num_sets': 23, 'density': 0.1793478260869565, 'sets': [{'id': 1, 'elements': [1, 3, 5, 14, 19, 20, 22]}, {'id': 2, 'elements': [2, 4, 5]}, {'id': 3, 'elements': [1, 2, 3, 4, 7, 13, 20]}, {'id': 4, 'elements': [3, 4, 5, 8, 23]}, {'id': 5, 'elements': [1, 2, 4, 5, 8, 13, 23]}, {'id': 6, 'elements': [6, 10, 13, 18]}, {'id': 7, 'elements': [6, 7, 11, 17, 21, 24]}, {'id': 8, 'elements': [4, 5, 8, 23]}, {'id': 9, 'elements': [6, 9, 12]}, {'id': 10, 'elements': [6, 13, 16, 18]}, {'id': 11, 'elements': [7, 13, 17, 21, 24]}, {'id': 12, 'elements': [6, 9, 12, 16]}, {'id': 13, 'elements': [1, 5, 11, 16, 17]}, {'id': 14, 'elements': [14, 22]}, {'id': 15, 'elements': [11, 15]}, {'id': 16, 'elements': [6, 9, 10, 12, 13, 16, 18]}, {'id': 17, 'elements': [7, 11, 13, 17]}, {'id': 18, 'elements': [6, 10, 13, 16, 18]}, {'id': 19, 'elements': [14, 19, 22]}, {'id': 20, 'elements': [1, 3, 20]}, {'id': 21, 'elements': [7, 15, 21, 24]}, {'id': 22, 'elements': [1, 19, 22]}, {'id': 23, 'elements': [7, 21]}], 'graph': {'num_nodes': 24, 'edges': [{'u': 13, 'v': 3}, {'u': 13, 'v': 6}, {'u': 13, 'v': 7}, {'u': 21, 'v': 11}, {'u': 21, 'v': 15}, {'u': 8, 'v': 4}, {'u': 6, 'v': 10}, {'u': 6, 'v': 16}, {'u': 6, 'v': 18}, {'u': 24, 'v': 11}, {'u': 4, 'v': 5}, {'u': 4, 'v': 23}, {'u': 16, 'v': 9}, {'u': 16, 'v': 12}, {'u': 2, 'v': 5}, {'u': 19, 'v': 14}, {'u': 1, 'v': 3}, {'u': 1, 'v': 14}, {'u': 1, 'v': 20}, {'u': 3, 'v': 5}, {'u': 17, 'v': 7}, {'u': 14, 'v': 22}, {'u': 11, 'v': 7}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0003.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0003.png'}","[1, 5, 7, 15, 16]",5.0,"{'num_elements': 24, 'num_sets': 23, 'sets': [{'id': 'S1', 'elements': ['A', 'C', 'E', 'N', 'S', 'T', 'V']}, {'id': 'S2', 'elements': ['B', 'D', 'E']}, {'id': 'S3', 'elements': ['A', 'B', 'C', 'D', 'G', 'M', 'T']}, {'id': 'S4', 'elements': ['C', 'D', 'E', 'H', 'W']}, {'id': 'S5', 'elements': ['A', 'B', 'D', 'E', 'H', 'M', 'W']}, {'id': 'S6', 'elements': ['F', 'J', 'M', 'R']}, {'id': 'S7', 'elements': ['F', 'G', 'K', 'Q', 'U', 'X']}, {'id': 'S8', 'elements': ['D', 'E', 'H', 'W']}, {'id': 'S9', 'elements': ['F', 'I', 'L']}, {'id': 'S10', 'elements': ['F', 'M', 'P', 'R']}, {'id': 'S11', 'elements': ['G', 'M', 'Q', 'U', 'X']}, {'id': 'S12', 'elements': ['F', 'I', 'L', 'P']}, {'id': 'S13', 'elements': ['A', 'E', 'K', 'P', 'Q']}, {'id': 'S14', 'elements': ['N', 'V']}, {'id': 'S15', 'elements': ['K', 'O']}, {'id': 'S16', 'elements': ['F', 'I', 'J', 'L', 'M', 'P', 'R']}, {'id': 'S17', 'elements': ['G', 'K', 'M', 'Q']}, {'id': 'S18', 'elements': ['F', 'J', 'M', 'P', 'R']}, {'id': 'S19', 'elements': ['N', 'S', 'V']}, {'id': 'S20', 'elements': ['A', 'C', 'T']}, {'id': 'S21', 'elements': ['G', 'O', 'U', 'X']}, {'id': 'S22', 'elements': ['A', 'S', 'V']}, {'id': 'S23', 'elements': ['G', 'U']}]}","['S1', 'S5', 'S7', 'S15', 'S16']",4,csv,names
SCP,SCP,"We heard about a teacher trying to assemble a tiny team of group leaders so all the course topics are handled during project week. The choice comes down to selecting leaders whose combined topic lists include every subject at least once; the better choice is the one that uses the fewest leaders overall, which you can check by simply counting the selected leaders. Every topic must appear under at least one chosen leader, and overlapping topic coverage is fine but doesn’t reduce the headcount. The exact setup appears below.
There are 21 distinct topics and 20 candidate leaders listed below:
Leader S1 handles 8 13 14.
Leader S2 handles 1 2 5 20.
Leader S3 handles 1 2 5 7 11 13 18.
Leader S4 handles 5 20.
Leader S5 handles 4 17 19.
Leader S6 handles 1 2 3 5 18 20.
Leader S7 handles 6 17.
Leader S8 handles 4 7 11 13 17 19.
Leader S9 handles 6 8 12 13 17.
Leader S10 handles 0 16 18.
Leader S11 handles 10 11 15.
Leader S12 handles 2 7 10 11 13 15 18.
Leader S13 handles 8 12 16 17 19.
Leader S14 handles 2 7 8 9 11 13 14 16.
Leader S15 handles 0 8 13 14 16.
Leader S16 handles 0 9 12 13 14 16 18.
Leader S17 handles 6 7 12 17.
Leader S18 handles 2 5 7 9 11 13 18 19.
Leader S19 handles 4 12 19.
Leader S20 handles 1 2 3 5 20.
We will select as few leaders as possible to cover all 21 topics.
Also, if you could put the final choice into a tiny JSON snippet so I can parse it easily, that would be great — something like this:
{
""solution"": [""leader_id"", ...]
}
Here ""solution"" should be a list of the chosen leader identifiers (one per selected leader). Think of each identifier as the little label on a leader’s name tag — that list is just the roster of people you picked. This JSON is only a sketch of the shape I expect, not your actual answer.
Please use the exact identifiers from the instance input — don’t rename them or invent new labels.
- Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 21, 'num_sets': 20, 'density': 0.22857142857142856, 'sets': [{'id': 1, 'elements': [9, 14, 15]}, {'id': 2, 'elements': [2, 3, 6, 21]}, {'id': 3, 'elements': [2, 3, 6, 8, 12, 14, 19]}, {'id': 4, 'elements': [6, 21]}, {'id': 5, 'elements': [5, 18, 20]}, {'id': 6, 'elements': [2, 3, 4, 6, 19, 21]}, {'id': 7, 'elements': [7, 18]}, {'id': 8, 'elements': [5, 8, 12, 14, 18, 20]}, {'id': 9, 'elements': [7, 9, 13, 14, 18]}, {'id': 10, 'elements': [1, 17, 19]}, {'id': 11, 'elements': [11, 12, 16]}, {'id': 12, 'elements': [3, 8, 11, 12, 14, 16, 19]}, {'id': 13, 'elements': [9, 13, 17, 18, 20]}, {'id': 14, 'elements': [3, 8, 9, 10, 12, 14, 15, 17]}, {'id': 15, 'elements': [1, 9, 14, 15, 17]}, {'id': 16, 'elements': [1, 10, 13, 14, 15, 17, 19]}, {'id': 17, 'elements': [7, 8, 13, 18]}, {'id': 18, 'elements': [3, 6, 8, 10, 12, 14, 19, 20]}, {'id': 19, 'elements': [5, 13, 20]}, {'id': 20, 'elements': [2, 3, 4, 6, 21]}], 'graph': {'num_nodes': 21, 'edges': [{'u': 21, 'v': 6}, {'u': 3, 'v': 6}, {'u': 3, 'v': 19}, {'u': 19, 'v': 8}, {'u': 19, 'v': 12}, {'u': 19, 'v': 14}, {'u': 5, 'v': 20}, {'u': 17, 'v': 1}, {'u': 17, 'v': 9}, {'u': 17, 'v': 14}, {'u': 17, 'v': 15}, {'u': 7, 'v': 13}, {'u': 14, 'v': 10}, {'u': 11, 'v': 16}, {'u': 12, 'v': 16}, {'u': 6, 'v': 2}, {'u': 6, 'v': 4}, {'u': 8, 'v': 20}, {'u': 13, 'v': 9}, {'u': 13, 'v': 18}, {'u': 10, 'v': 1}, {'u': 20, 'v': 18}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0004.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0004.png'}","[6, 9, 12, 16, 19]",5.0,"{'num_elements': 21, 'num_sets': 20, 'sets': [{'id': 'S1', 'elements': [8, 13, 14]}, {'id': 'S2', 'elements': [1, 2, 5, 20]}, {'id': 'S3', 'elements': [1, 2, 5, 7, 11, 13, 18]}, {'id': 'S4', 'elements': [5, 20]}, {'id': 'S5', 'elements': [4, 17, 19]}, {'id': 'S6', 'elements': [1, 2, 3, 5, 18, 20]}, {'id': 'S7', 'elements': [6, 17]}, {'id': 'S8', 'elements': [4, 7, 11, 13, 17, 19]}, {'id': 'S9', 'elements': [6, 8, 12, 13, 17]}, {'id': 'S10', 'elements': [0, 16, 18]}, {'id': 'S11', 'elements': [10, 11, 15]}, {'id': 'S12', 'elements': [2, 7, 10, 11, 13, 15, 18]}, {'id': 'S13', 'elements': [8, 12, 16, 17, 19]}, {'id': 'S14', 'elements': [2, 7, 8, 9, 11, 13, 14, 16]}, {'id': 'S15', 'elements': [0, 8, 13, 14, 16]}, {'id': 'S16', 'elements': [0, 9, 12, 13, 14, 16, 18]}, {'id': 'S17', 'elements': [6, 7, 12, 17]}, {'id': 'S18', 'elements': [2, 5, 7, 9, 11, 13, 18, 19]}, {'id': 'S19', 'elements': [4, 12, 19]}, {'id': 'S20', 'elements': [1, 2, 3, 5, 20]}]}","['S6', 'S9', 'S12', 'S16', 'S19']",5,nl,0
SCP,SCP,"Back at the agency, the task was to choose a handful of communication channels that collectively reach all the client’s target segments. The situation: there’s a list of channels and each one connects with certain segments; the decision is which specific channels to use so the whole audience is reached. A better plan is simply the one that achieves full coverage using as few channels as possible — evaluate by counting selected channels, lower is better — and ensure nobody is left out and don’t include channels that only duplicate reach. The concrete channel-by-group details follow below.
# total_segments=20
# total_channels=19
channel_id,channel_segments
S1,9 15
S2,4 7 9 11 15 20
S3,11 18
S4,4 5 7 9 12 20
S5,5 17
S6,3 6 8 11
S7,4 7 10 12
S8,3 6 8 12
S9,1 2 4 5 9 12 15 20
S10,2 4 7
S11,2 3 6 8 13 15 18
S12,1 2 7 8 9 10 12 14 15 17
S13,11 13 14 16
S14,1 2 4 5 15
S15,13 14
S16,5 9 15 17
S17,6 8 11 18
S18,1 19
S19,2 4 9
Quick note on how to return the result so it’s easy to read and machine-friendly — just use this simple JSON shape:
{
""solution"": [""channel_id"", ...]
}
""solution"" is the list of channels you’re choosing to cover everybody. Each ""channel_id"" is just a placeholder showing where an actual channel identifier goes — swap it for the exact id from the instance. The array should list the chosen channel ids (one per entry).
This is just a sketch of the expected shape, not the final answer itself — please fill in the real identifiers.
Please use the identifiers exactly as they appear in the instance input — don’t rename them or invent new labels.
- for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 20, 'num_sets': 19, 'density': 0.21578947368421053, 'sets': [{'id': 1, 'elements': [9, 15]}, {'id': 2, 'elements': [4, 7, 9, 11, 15, 20]}, {'id': 3, 'elements': [11, 18]}, {'id': 4, 'elements': [4, 5, 7, 9, 12, 20]}, {'id': 5, 'elements': [5, 17]}, {'id': 6, 'elements': [3, 6, 8, 11]}, {'id': 7, 'elements': [4, 7, 10, 12]}, {'id': 8, 'elements': [3, 6, 8, 12]}, {'id': 9, 'elements': [1, 2, 4, 5, 9, 12, 15, 20]}, {'id': 10, 'elements': [2, 4, 7]}, {'id': 11, 'elements': [2, 3, 6, 8, 13, 15, 18]}, {'id': 12, 'elements': [1, 2, 7, 8, 9, 10, 12, 14, 15, 17]}, {'id': 13, 'elements': [11, 13, 14, 16]}, {'id': 14, 'elements': [1, 2, 4, 5, 15]}, {'id': 15, 'elements': [13, 14]}, {'id': 16, 'elements': [5, 9, 15, 17]}, {'id': 17, 'elements': [6, 8, 11, 18]}, {'id': 18, 'elements': [1, 19]}, {'id': 19, 'elements': [2, 4, 9]}], 'graph': {'num_nodes': 20, 'edges': [{'u': 11, 'v': 8}, {'u': 11, 'v': 12}, {'u': 11, 'v': 14}, {'u': 8, 'v': 3}, {'u': 8, 'v': 6}, {'u': 8, 'v': 18}, {'u': 9, 'v': 4}, {'u': 9, 'v': 5}, {'u': 9, 'v': 15}, {'u': 14, 'v': 13}, {'u': 14, 'v': 16}, {'u': 7, 'v': 2}, {'u': 17, 'v': 5}, {'u': 17, 'v': 15}, {'u': 15, 'v': 1}, {'u': 15, 'v': 12}, {'u': 1, 'v': 19}, {'u': 4, 'v': 2}, {'u': 4, 'v': 20}, {'u': 12, 'v': 2}, {'u': 10, 'v': 2}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0005.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0005.png'}","[4, 11, 12, 13, 18]",5.0,"{'num_elements': 20, 'num_sets': 19, 'sets': [{'id': 'S1', 'elements': [9, 15]}, {'id': 'S2', 'elements': [4, 7, 9, 11, 15, 20]}, {'id': 'S3', 'elements': [11, 18]}, {'id': 'S4', 'elements': [4, 5, 7, 9, 12, 20]}, {'id': 'S5', 'elements': [5, 17]}, {'id': 'S6', 'elements': [3, 6, 8, 11]}, {'id': 'S7', 'elements': [4, 7, 10, 12]}, {'id': 'S8', 'elements': [3, 6, 8, 12]}, {'id': 'S9', 'elements': [1, 2, 4, 5, 9, 12, 15, 20]}, {'id': 'S10', 'elements': [2, 4, 7]}, {'id': 'S11', 'elements': [2, 3, 6, 8, 13, 15, 18]}, {'id': 'S12', 'elements': [1, 2, 7, 8, 9, 10, 12, 14, 15, 17]}, {'id': 'S13', 'elements': [11, 13, 14, 16]}, {'id': 'S14', 'elements': [1, 2, 4, 5, 15]}, {'id': 'S15', 'elements': [13, 14]}, {'id': 'S16', 'elements': [5, 9, 15, 17]}, {'id': 'S17', 'elements': [6, 8, 11, 18]}, {'id': 'S18', 'elements': [1, 19]}, {'id': 'S19', 'elements': [2, 4, 9]}]}","['S4', 'S11', 'S12', 'S13', 'S18']",6,csv,1
SCP,SCP,"Back when packing for a long journey, the goal was to sort through a jumble of chargers and pick only what’s needed so every gadget could be powered. The choice is which chargers to bring so each device type has a way to charge; a smarter choice is the one with the fewest chargers that still covers all the devices — the straightforward way to tell is to count how many chargers are in the bag and confirm every device type is included. No device type can be left without a charger, and bringing multiple identical chargers is wasteful unless it’s necessary. The exact details of the devices and available chargers will be shown below.
{
""total_device_types"": 20,
""total_available_chargers"": 19,
""sets"": [
{
""charger_id"": ""S1"",
""supported_device_types"": [
""C"",
""N"",
""P"",
""Q""
]
},
{
""charger_id"": ""S2"",
""supported_device_types"": [
""B"",
""G"",
""J""
]
},
{
""charger_id"": ""S3"",
""supported_device_types"": [
""A"",
""P"",
""R""
]
},
{
""charger_id"": ""S4"",
""supported_device_types"": [
""D"",
""K"",
""L"",
""T""
]
},
{
""charger_id"": ""S5"",
""supported_device_types"": [
""H"",
""L"",
""O"",
""S""
]
},
{
""charger_id"": ""S6"",
""supported_device_types"": [
""F"",
""K"",
""L"",
""R"",
""S""
]
},
{
""charger_id"": ""S7"",
""supported_device_types"": [
""E"",
""H"",
""I"",
""L"",
""T""
]
},
{
""charger_id"": ""S8"",
""supported_device_types"": [
""F"",
""H"",
""O"",
""R"",
""S""
]
},
{
""charger_id"": ""S9"",
""supported_device_types"": [
""G"",
""J"",
""K"",
""M"",
""T""
]
},
{
""charger_id"": ""S10"",
""supported_device_types"": [
""F"",
""G"",
""J"",
""M"",
""Q""
]
},
{
""charger_id"": ""S11"",
""supported_device_types"": [
""D"",
""E"",
""H"",
""I"",
""O""
]
},
{
""charger_id"": ""S12"",
""supported_device_types"": [
""J"",
""K"",
""M"",
""R"",
""T""
]
},
{
""charger_id"": ""S13"",
""supported_device_types"": [
""A"",
""C""
]
},
{
""charger_id"": ""S14"",
""supported_device_types"": [
""E"",
""I"",
""O"",
""S""
]
},
{
""charger_id"": ""S15"",
""supported_device_types"": [
""A"",
""C"",
""Q""
]
},
{
""charger_id"": ""S16"",
""supported_device_types"": [
""A"",
""C"",
""P"",
""Q"",
""R""
]
},
{
""charger_id"": ""S17"",
""supported_device_types"": [
""C"",
""F"",
""Q"",
""R""
]
},
{
""charger_id"": ""S18"",
""supported_device_types"": [
""E"",
""F"",
""I"",
""L"",
""S""
]
},
{
""charger_id"": ""S19"",
""supported_device_types"": [
""H"",
""J"",
""M"",
""R"",
""T""
]
}
]
}
Oh, and one more thing — when you send the answer back, keep it in a little JSON shape so it's easy to read by whatever's checking the packing list. Something like this:
{
""solution"": [""charger_id"", ...]
}
Here ""solution"" is just the list of charger identifiers you chose to bring — think of each entry as the label stuck to a charger in the inventory. This block is only a sketch of the shape I want, not the actual packing list.
Please use the identifiers exactly as they appear in the instance input — do not rename them or invent new ones.
- for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 20, 'num_sets': 19, 'density': 0.2131578947368421, 'sets': [{'id': 1, 'elements': [3, 14, 16, 17]}, {'id': 2, 'elements': [2, 7, 10]}, {'id': 3, 'elements': [1, 16, 18]}, {'id': 4, 'elements': [4, 11, 12, 20]}, {'id': 5, 'elements': [8, 12, 15, 19]}, {'id': 6, 'elements': [6, 11, 12, 18, 19]}, {'id': 7, 'elements': [5, 8, 9, 12, 20]}, {'id': 8, 'elements': [6, 8, 15, 18, 19]}, {'id': 9, 'elements': [7, 10, 11, 13, 20]}, {'id': 10, 'elements': [6, 7, 10, 13, 17]}, {'id': 11, 'elements': [4, 5, 8, 9, 15]}, {'id': 12, 'elements': [10, 11, 13, 18, 20]}, {'id': 13, 'elements': [1, 3]}, {'id': 14, 'elements': [5, 9, 15, 19]}, {'id': 15, 'elements': [1, 3, 17]}, {'id': 16, 'elements': [1, 3, 16, 17, 18]}, {'id': 17, 'elements': [3, 6, 17, 18]}, {'id': 18, 'elements': [5, 6, 9, 12, 19]}, {'id': 19, 'elements': [8, 10, 13, 18, 20]}], 'graph': {'num_nodes': 20, 'edges': [{'u': 3, 'v': 1}, {'u': 3, 'v': 16}, {'u': 3, 'v': 17}, {'u': 1, 'v': 14}, {'u': 8, 'v': 4}, {'u': 8, 'v': 12}, {'u': 9, 'v': 6}, {'u': 9, 'v': 12}, {'u': 9, 'v': 19}, {'u': 4, 'v': 20}, {'u': 5, 'v': 12}, {'u': 5, 'v': 15}, {'u': 5, 'v': 19}, {'u': 6, 'v': 18}, {'u': 20, 'v': 11}, {'u': 15, 'v': 19}, {'u': 10, 'v': 7}, {'u': 10, 'v': 11}, {'u': 18, 'v': 11}, {'u': 18, 'v': 17}, {'u': 7, 'v': 2}, {'u': 11, 'v': 13}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0006.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0006.png'}","[1, 2, 11, 12, 16, 18]",6.0,"{'num_elements': 20, 'num_sets': 19, 'sets': [{'id': 'S1', 'elements': ['C', 'N', 'P', 'Q']}, {'id': 'S2', 'elements': ['B', 'G', 'J']}, {'id': 'S3', 'elements': ['A', 'P', 'R']}, {'id': 'S4', 'elements': ['D', 'K', 'L', 'T']}, {'id': 'S5', 'elements': ['H', 'L', 'O', 'S']}, {'id': 'S6', 'elements': ['F', 'K', 'L', 'R', 'S']}, {'id': 'S7', 'elements': ['E', 'H', 'I', 'L', 'T']}, {'id': 'S8', 'elements': ['F', 'H', 'O', 'R', 'S']}, {'id': 'S9', 'elements': ['G', 'J', 'K', 'M', 'T']}, {'id': 'S10', 'elements': ['F', 'G', 'J', 'M', 'Q']}, {'id': 'S11', 'elements': ['D', 'E', 'H', 'I', 'O']}, {'id': 'S12', 'elements': ['J', 'K', 'M', 'R', 'T']}, {'id': 'S13', 'elements': ['A', 'C']}, {'id': 'S14', 'elements': ['E', 'I', 'O', 'S']}, {'id': 'S15', 'elements': ['A', 'C', 'Q']}, {'id': 'S16', 'elements': ['A', 'C', 'P', 'Q', 'R']}, {'id': 'S17', 'elements': ['C', 'F', 'Q', 'R']}, {'id': 'S18', 'elements': ['E', 'F', 'I', 'L', 'S']}, {'id': 'S19', 'elements': ['H', 'J', 'M', 'R', 'T']}]}","['S1', 'S2', 'S11', 'S12', 'S16', 'S18']",7,json,names
SCP,SCP,"Someone at the community fair is matching volunteers to shifts and needs to be efficient about it. They want the leanest possible team that still covers every role — success is measured by how many volunteers end up on the roster, so fewer equals better. No job can be left without coverage, and doubling up on roles without reason is avoided wherever possible. The concrete list of roles and who can fill them appears below.
- **total_roles_to_cover**: 20
- **total_available_volunteers**: 15
| volunteer_id | covered_roles |
|---|---|
| S1 | D K S |
| S2 | B E G I O Q |
| S3 | C F J R |
| S4 | A K P R S |
| S5 | E H L N O T |
| S6 | C F J M R |
| S7 | H O T |
| S8 | F M Q |
| S9 | A D K R |
| S10 | H L N T |
| S11 | F J O Q |
| S12 | E H N |
| S13 | E G H O Q |
| S14 | D P S |
| S15 | C D F K |
Oh, and to keep things tidy, please show the chosen roster in a tiny JSON snippet like the one below — just the shape, nothing else:
{
""solution"": [""volunteer_id"", ...]
}
Here ""solution"" is the list of volunteer IDs you plan to put on the roster — one ID per slot in the array. Think of it like filling out a short form: the array holds the exact labels of the volunteers who cover every role. This is just a sketch of the shape I expect, not your final answer.
Please use the identifiers exactly as they appear in the problem input — do not rename them or invent new labels. For example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 20, 'num_sets': 15, 'density': 0.20666666666666667, 'sets': [{'id': 1, 'elements': [4, 11, 19]}, {'id': 2, 'elements': [2, 5, 7, 9, 15, 17]}, {'id': 3, 'elements': [3, 6, 10, 18]}, {'id': 4, 'elements': [1, 11, 16, 18, 19]}, {'id': 5, 'elements': [5, 8, 12, 14, 15, 20]}, {'id': 6, 'elements': [3, 6, 10, 13, 18]}, {'id': 7, 'elements': [8, 15, 20]}, {'id': 8, 'elements': [6, 13, 17]}, {'id': 9, 'elements': [1, 4, 11, 18]}, {'id': 10, 'elements': [8, 12, 14, 20]}, {'id': 11, 'elements': [6, 10, 15, 17]}, {'id': 12, 'elements': [5, 8, 14]}, {'id': 13, 'elements': [5, 7, 8, 15, 17]}, {'id': 14, 'elements': [4, 16, 19]}, {'id': 15, 'elements': [3, 4, 6, 11]}], 'graph': {'num_nodes': 20, 'edges': [{'u': 9, 'v': 7}, {'u': 10, 'v': 6}, {'u': 10, 'v': 13}, {'u': 15, 'v': 2}, {'u': 15, 'v': 5}, {'u': 15, 'v': 17}, {'u': 7, 'v': 2}, {'u': 4, 'v': 1}, {'u': 4, 'v': 11}, {'u': 4, 'v': 19}, {'u': 12, 'v': 5}, {'u': 12, 'v': 8}, {'u': 12, 'v': 14}, {'u': 16, 'v': 19}, {'u': 5, 'v': 8}, {'u': 11, 'v': 18}, {'u': 6, 'v': 3}, {'u': 3, 'v': 18}, {'u': 8, 'v': 20}, {'u': 17, 'v': 13}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0007.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0007.png'}","[2, 5, 6, 9, 14]",5.0,"{'num_elements': 20, 'num_sets': 15, 'sets': [{'id': 'S1', 'elements': ['D', 'K', 'S']}, {'id': 'S2', 'elements': ['B', 'E', 'G', 'I', 'O', 'Q']}, {'id': 'S3', 'elements': ['C', 'F', 'J', 'R']}, {'id': 'S4', 'elements': ['A', 'K', 'P', 'R', 'S']}, {'id': 'S5', 'elements': ['E', 'H', 'L', 'N', 'O', 'T']}, {'id': 'S6', 'elements': ['C', 'F', 'J', 'M', 'R']}, {'id': 'S7', 'elements': ['H', 'O', 'T']}, {'id': 'S8', 'elements': ['F', 'M', 'Q']}, {'id': 'S9', 'elements': ['A', 'D', 'K', 'R']}, {'id': 'S10', 'elements': ['H', 'L', 'N', 'T']}, {'id': 'S11', 'elements': ['F', 'J', 'O', 'Q']}, {'id': 'S12', 'elements': ['E', 'H', 'N']}, {'id': 'S13', 'elements': ['E', 'G', 'H', 'O', 'Q']}, {'id': 'S14', 'elements': ['D', 'P', 'S']}, {'id': 'S15', 'elements': ['C', 'D', 'F', 'K']}]}","['S2', 'S5', 'S6', 'S9', 'S14']",8,markdown_table,names
SCP,SCP,"There’s a catering challenge: make a tight, easy-to-read special menu that satisfies every guest’s diet. The task is picking a few dishes so each dietary preference shows up on the menu at least once, and to do that using as few dishes as possible. To tell if one menu beats another, count how many dishes it has — the smaller the number that still covers everyone, the better. No preference can be left out, and piling on dishes that don’t expand coverage is unnecessary. The specific guest preferences and available dishes are detailed below.
# num_preferences=19
# num_dishes_available=18
dish_id,preferences_covered
S1,A B F H I P
S2,K Q
S3,C F K
S4,D H K O
S5,E H O
S6,C F J K
S7,L M P
S8,B D E F H K
S9,A K L
S10,C F J
S11,A B D F H I K O
S12,G I L M P
S13,I L N P R S
S14,E H K O
S15,I M N P R
S16,B K
S17,N P R S
S18,P R S
Oh, and when you send your final menu, just drop the chosen dishes into this simple JSON shape so whoever’s reading it can parse it quickly:
{
""solution"": [""dish_id"", ...]
}
Think of ""solution"" as the list of dishes you picked for the special menu, and ""dish_id"" is just a placeholder showing where each real dish identifier goes. This is just the shape I want — not the actual answer itself — so replace the placeholders with the exact dish IDs from the instance.
Please make sure to use the identifiers exactly as they appear in the input — don’t rename them or invent new labels. Valid identifiers look like plain numbers such as ""1"" or ""23"", single capital letters like ""A"" or ""B"", or a capital letter followed by digits like ""A1"" or ""X7"".","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 19, 'num_sets': 18, 'density': 0.21637426900584794, 'sets': [{'id': 1, 'elements': [1, 2, 6, 8, 9, 16]}, {'id': 2, 'elements': [11, 17]}, {'id': 3, 'elements': [3, 6, 11]}, {'id': 4, 'elements': [4, 8, 11, 15]}, {'id': 5, 'elements': [5, 8, 15]}, {'id': 6, 'elements': [3, 6, 10, 11]}, {'id': 7, 'elements': [12, 13, 16]}, {'id': 8, 'elements': [2, 4, 5, 6, 8, 11]}, {'id': 9, 'elements': [1, 11, 12]}, {'id': 10, 'elements': [3, 6, 10]}, {'id': 11, 'elements': [1, 2, 4, 6, 8, 9, 11, 15]}, {'id': 12, 'elements': [7, 9, 12, 13, 16]}, {'id': 13, 'elements': [9, 12, 14, 16, 18, 19]}, {'id': 14, 'elements': [5, 8, 11, 15]}, {'id': 15, 'elements': [9, 13, 14, 16, 18]}, {'id': 16, 'elements': [2, 11]}, {'id': 17, 'elements': [14, 16, 18, 19]}, {'id': 18, 'elements': [16, 18, 19]}], 'graph': {'num_nodes': 19, 'edges': [{'u': 16, 'v': 9}, {'u': 16, 'v': 12}, {'u': 16, 'v': 14}, {'u': 8, 'v': 4}, {'u': 8, 'v': 11}, {'u': 8, 'v': 15}, {'u': 17, 'v': 2}, {'u': 9, 'v': 1}, {'u': 13, 'v': 12}, {'u': 14, 'v': 18}, {'u': 14, 'v': 19}, {'u': 12, 'v': 7}, {'u': 5, 'v': 15}, {'u': 3, 'v': 6}, {'u': 3, 'v': 10}, {'u': 2, 'v': 11}, {'u': 11, 'v': 1}, {'u': 11, 'v': 6}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0008.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0008.png'}","[2, 10, 11, 12, 13, 14]",6.0,"{'num_elements': 19, 'num_sets': 18, 'sets': [{'id': 'S1', 'elements': ['A', 'B', 'F', 'H', 'I', 'P']}, {'id': 'S2', 'elements': ['K', 'Q']}, {'id': 'S3', 'elements': ['C', 'F', 'K']}, {'id': 'S4', 'elements': ['D', 'H', 'K', 'O']}, {'id': 'S5', 'elements': ['E', 'H', 'O']}, {'id': 'S6', 'elements': ['C', 'F', 'J', 'K']}, {'id': 'S7', 'elements': ['L', 'M', 'P']}, {'id': 'S8', 'elements': ['B', 'D', 'E', 'F', 'H', 'K']}, {'id': 'S9', 'elements': ['A', 'K', 'L']}, {'id': 'S10', 'elements': ['C', 'F', 'J']}, {'id': 'S11', 'elements': ['A', 'B', 'D', 'F', 'H', 'I', 'K', 'O']}, {'id': 'S12', 'elements': ['G', 'I', 'L', 'M', 'P']}, {'id': 'S13', 'elements': ['I', 'L', 'N', 'P', 'R', 'S']}, {'id': 'S14', 'elements': ['E', 'H', 'K', 'O']}, {'id': 'S15', 'elements': ['I', 'M', 'N', 'P', 'R']}, {'id': 'S16', 'elements': ['B', 'K']}, {'id': 'S17', 'elements': ['N', 'P', 'R', 'S']}, {'id': 'S18', 'elements': ['P', 'R', 'S']}]}","['S2', 'S10', 'S11', 'S12', 'S13', 'S14']",9,csv,names
SCP,SCP,"A curator needs to assemble a short festival schedule that still represents every theme on the list; some movies touch several themes, so the aim is to select films that together cover all categories with the least number of screenings. The way to compare options is to count how many showings are on the schedule — lower counts win — and the rules are clear: every theme must be included at least once and avoid repeating screenings without purpose. The specific options and their theme coverage are shown below.
- **num_themes**: 24
- **num_films_available**: 23
| film_id | themes_covered |
|---|---|
| S1 | B G H K L P Q |
| S2 | A B G J K S W |
| S3 | C I R T |
| S4 | J L V |
| S5 | E H P S |
| S6 | F I O P |
| S7 | B G |
| S8 | A B E G H K L N P |
| S9 | B D M T |
| S10 | A B D G H J P |
| S11 | A E L P |
| S12 | J T |
| S13 | A B C F N P Q R S |
| S14 | C F I N O R W |
| S15 | A E F K L N P |
| S16 | A B D J R T U V |
| S17 | B C N O R U W |
| S18 | B F H N O S W |
| S19 | B C M Q T U V |
| S20 | B C I Q U V W X |
| S21 | M Q T U |
| S22 | B C F H I N O U W X |
| S23 | B W X |
If you want to hand this back in a tidy, machine-friendly way, a tiny JSON object with the chosen film identifiers is perfect. Here’s the shape I expect:
{
""solution"": [""film_id"", ...]
}
""solution"" is the list of films you pick for the schedule, and each entry in that array should be a film identifier (the ""film_id"" text above is just a placeholder). Think of this like filling out a short form: put the exact IDs of the movies you’re scheduling into that array. This JSON is just a sketch of the shape I want, not the actual answer.
Please use the identifiers exactly as they appear in the instance input — don’t rename them or make up new labels.
- ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 24, 'num_sets': 23, 'density': 0.2427536231884058, 'sets': [{'id': 1, 'elements': [2, 7, 8, 11, 12, 16, 17]}, {'id': 2, 'elements': [1, 2, 7, 10, 11, 19, 23]}, {'id': 3, 'elements': [3, 9, 18, 20]}, {'id': 4, 'elements': [10, 12, 22]}, {'id': 5, 'elements': [5, 8, 16, 19]}, {'id': 6, 'elements': [6, 9, 15, 16]}, {'id': 7, 'elements': [2, 7]}, {'id': 8, 'elements': [1, 2, 5, 7, 8, 11, 12, 14, 16]}, {'id': 9, 'elements': [2, 4, 13, 20]}, {'id': 10, 'elements': [1, 2, 4, 7, 8, 10, 16]}, {'id': 11, 'elements': [1, 5, 12, 16]}, {'id': 12, 'elements': [10, 20]}, {'id': 13, 'elements': [1, 2, 3, 6, 14, 16, 17, 18, 19]}, {'id': 14, 'elements': [3, 6, 9, 14, 15, 18, 23]}, {'id': 15, 'elements': [1, 5, 6, 11, 12, 14, 16]}, {'id': 16, 'elements': [1, 2, 4, 10, 18, 20, 21, 22]}, {'id': 17, 'elements': [2, 3, 14, 15, 18, 21, 23]}, {'id': 18, 'elements': [2, 6, 8, 14, 15, 19, 23]}, {'id': 19, 'elements': [2, 3, 13, 17, 20, 21, 22]}, {'id': 20, 'elements': [2, 3, 9, 17, 21, 22, 23, 24]}, {'id': 21, 'elements': [13, 17, 20, 21]}, {'id': 22, 'elements': [2, 3, 6, 8, 9, 14, 15, 21, 23, 24]}, {'id': 23, 'elements': [2, 23, 24]}], 'graph': {'num_nodes': 24, 'edges': [{'u': 15, 'v': 6}, {'u': 15, 'v': 9}, {'u': 15, 'v': 23}, {'u': 16, 'v': 5}, {'u': 16, 'v': 8}, {'u': 16, 'v': 12}, {'u': 16, 'v': 19}, {'u': 6, 'v': 19}, {'u': 19, 'v': 14}, {'u': 3, 'v': 9}, {'u': 3, 'v': 21}, {'u': 3, 'v': 23}, {'u': 8, 'v': 1}, {'u': 8, 'v': 14}, {'u': 10, 'v': 4}, {'u': 10, 'v': 17}, {'u': 10, 'v': 22}, {'u': 11, 'v': 1}, {'u': 11, 'v': 4}, {'u': 11, 'v': 12}, {'u': 20, 'v': 17}, {'u': 20, 'v': 21}, {'u': 20, 'v': 22}, {'u': 1, 'v': 2}, {'u': 1, 'v': 7}, {'u': 21, 'v': 18}, {'u': 18, 'v': 2}, {'u': 18, 'v': 23}, {'u': 18, 'v': 24}, {'u': 17, 'v': 2}, {'u': 22, 'v': 13}, {'u': 2, 'v': 14}, {'u': 23, 'v': 14}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0009.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0009.png'}","[8, 9, 16, 18, 20]",5.0,"{'num_elements': 24, 'num_sets': 23, 'sets': [{'id': 'S1', 'elements': ['B', 'G', 'H', 'K', 'L', 'P', 'Q']}, {'id': 'S2', 'elements': ['A', 'B', 'G', 'J', 'K', 'S', 'W']}, {'id': 'S3', 'elements': ['C', 'I', 'R', 'T']}, {'id': 'S4', 'elements': ['J', 'L', 'V']}, {'id': 'S5', 'elements': ['E', 'H', 'P', 'S']}, {'id': 'S6', 'elements': ['F', 'I', 'O', 'P']}, {'id': 'S7', 'elements': ['B', 'G']}, {'id': 'S8', 'elements': ['A', 'B', 'E', 'G', 'H', 'K', 'L', 'N', 'P']}, {'id': 'S9', 'elements': ['B', 'D', 'M', 'T']}, {'id': 'S10', 'elements': ['A', 'B', 'D', 'G', 'H', 'J', 'P']}, {'id': 'S11', 'elements': ['A', 'E', 'L', 'P']}, {'id': 'S12', 'elements': ['J', 'T']}, {'id': 'S13', 'elements': ['A', 'B', 'C', 'F', 'N', 'P', 'Q', 'R', 'S']}, {'id': 'S14', 'elements': ['C', 'F', 'I', 'N', 'O', 'R', 'W']}, {'id': 'S15', 'elements': ['A', 'E', 'F', 'K', 'L', 'N', 'P']}, {'id': 'S16', 'elements': ['A', 'B', 'D', 'J', 'R', 'T', 'U', 'V']}, {'id': 'S17', 'elements': ['B', 'C', 'N', 'O', 'R', 'U', 'W']}, {'id': 'S18', 'elements': ['B', 'F', 'H', 'N', 'O', 'S', 'W']}, {'id': 'S19', 'elements': ['B', 'C', 'M', 'Q', 'T', 'U', 'V']}, {'id': 'S20', 'elements': ['B', 'C', 'I', 'Q', 'U', 'V', 'W', 'X']}, {'id': 'S21', 'elements': ['M', 'Q', 'T', 'U']}, {'id': 'S22', 'elements': ['B', 'C', 'F', 'H', 'I', 'N', 'O', 'U', 'W', 'X']}, {'id': 'S23', 'elements': ['B', 'W', 'X']}]}","['S8', 'S9', 'S16', 'S18', 'S20']",10,markdown_table,names
SCP,SCP,"There’s a dispatch puzzle: choose a few key curbside spots so that every block with customers is covered, and do it with as few stops as possible. The question is which spots to choose so their coverage covers every block; you judge any plan by counting how many stops it uses — fewer is better. No customer block can be skipped, and making extra stops that only repeat coverage is wasteful and counted against the plan. The concrete instance — the blocks and possible stops — is shown below.
# total_customer_blocks=24
# available_stops_count=24
stop_id,covered_blocks
S1,1 5 16 20 21
S2,1 2 3 5 8
S3,1 2 5 16 24
S4,3 4 6 24
S5,5 8 16 21 22
S6,4 6 10 14 18 20
S7,7 15 22
S8,2 5 17 21 22
S9,9 12 15
S10,6 20
S11,11 12 19
S12,9 11 12 13
S13,9 12
S14,4 6
S15,11 15 19 22
S16,2 16 20 23
S17,8 17 21 23
S18,4 6 18
S19,7 12 19 22 23
S20,1 3 4 6 10 14 16 20
S21,2 5 17 21 23
S22,5 7 8 19 21
S23,2 5 8 17 22
S24,3 4 10 18 20
If you want to send the selected curb stops back, just drop them into this tiny JSON shape so it's easy to read by hand or by a script:
{
""solution"": [""set_id"", ...]
}
Think of ""solution"" as the single field where you list the stops you'll pick; each string in the array should be the exact identifier of a curb spot from the instance. This little block is just the form I expect — a sketch of the shape, not the actual filled-in plan.
All identifiers must be used exactly as they appear in the instance input — no renaming and no new labels.
- for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 24, 'num_sets': 24, 'density': 0.17708333333333334, 'sets': [{'id': 1, 'elements': [1, 5, 16, 20, 21]}, {'id': 2, 'elements': [1, 2, 3, 5, 8]}, {'id': 3, 'elements': [1, 2, 5, 16, 24]}, {'id': 4, 'elements': [3, 4, 6, 24]}, {'id': 5, 'elements': [5, 8, 16, 21, 22]}, {'id': 6, 'elements': [4, 6, 10, 14, 18, 20]}, {'id': 7, 'elements': [7, 15, 22]}, {'id': 8, 'elements': [2, 5, 17, 21, 22]}, {'id': 9, 'elements': [9, 12, 15]}, {'id': 10, 'elements': [6, 20]}, {'id': 11, 'elements': [11, 12, 19]}, {'id': 12, 'elements': [9, 11, 12, 13]}, {'id': 13, 'elements': [9, 12]}, {'id': 14, 'elements': [4, 6]}, {'id': 15, 'elements': [11, 15, 19, 22]}, {'id': 16, 'elements': [2, 16, 20, 23]}, {'id': 17, 'elements': [8, 17, 21, 23]}, {'id': 18, 'elements': [4, 6, 18]}, {'id': 19, 'elements': [7, 12, 19, 22, 23]}, {'id': 20, 'elements': [1, 3, 4, 6, 10, 14, 16, 20]}, {'id': 21, 'elements': [2, 5, 17, 21, 23]}, {'id': 22, 'elements': [5, 7, 8, 19, 21]}, {'id': 23, 'elements': [2, 5, 8, 17, 22]}, {'id': 24, 'elements': [3, 4, 10, 18, 20]}], 'graph': {'num_nodes': 24, 'edges': [{'u': 10, 'v': 18}, {'u': 10, 'v': 24}, {'u': 20, 'v': 3}, {'u': 20, 'v': 4}, {'u': 20, 'v': 24}, {'u': 1, 'v': 2}, {'u': 1, 'v': 3}, {'u': 1, 'v': 16}, {'u': 11, 'v': 15}, {'u': 13, 'v': 9}, {'u': 21, 'v': 2}, {'u': 21, 'v': 8}, {'u': 21, 'v': 23}, {'u': 2, 'v': 5}, {'u': 4, 'v': 6}, {'u': 4, 'v': 14}, {'u': 5, 'v': 16}, {'u': 5, 'v': 23}, {'u': 16, 'v': 3}, {'u': 6, 'v': 18}, {'u': 23, 'v': 8}, {'u': 23, 'v': 22}, {'u': 7, 'v': 19}, {'u': 8, 'v': 17}, {'u': 9, 'v': 12}, {'u': 12, 'v': 15}, {'u': 22, 'v': 19}, {'u': 19, 'v': 15}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0010.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0010.png'}","[4, 12, 15, 20, 21, 22, 24]",7.0,"{'num_elements': 24, 'num_sets': 24, 'sets': [{'id': 'S1', 'elements': [1, 5, 16, 20, 21]}, {'id': 'S2', 'elements': [1, 2, 3, 5, 8]}, {'id': 'S3', 'elements': [1, 2, 5, 16, 24]}, {'id': 'S4', 'elements': [3, 4, 6, 24]}, {'id': 'S5', 'elements': [5, 8, 16, 21, 22]}, {'id': 'S6', 'elements': [4, 6, 10, 14, 18, 20]}, {'id': 'S7', 'elements': [7, 15, 22]}, {'id': 'S8', 'elements': [2, 5, 17, 21, 22]}, {'id': 'S9', 'elements': [9, 12, 15]}, {'id': 'S10', 'elements': [6, 20]}, {'id': 'S11', 'elements': [11, 12, 19]}, {'id': 'S12', 'elements': [9, 11, 12, 13]}, {'id': 'S13', 'elements': [9, 12]}, {'id': 'S14', 'elements': [4, 6]}, {'id': 'S15', 'elements': [11, 15, 19, 22]}, {'id': 'S16', 'elements': [2, 16, 20, 23]}, {'id': 'S17', 'elements': [8, 17, 21, 23]}, {'id': 'S18', 'elements': [4, 6, 18]}, {'id': 'S19', 'elements': [7, 12, 19, 22, 23]}, {'id': 'S20', 'elements': [1, 3, 4, 6, 10, 14, 16, 20]}, {'id': 'S21', 'elements': [2, 5, 17, 21, 23]}, {'id': 'S22', 'elements': [5, 7, 8, 19, 21]}, {'id': 'S23', 'elements': [2, 5, 8, 17, 22]}, {'id': 'S24', 'elements': [3, 4, 10, 18, 20]}]}","['S4', 'S12', 'S15', 'S20', 'S21', 'S22', 'S24']",11,csv,1
SCP,SCP,"I’m juggling the gallery plan: pick a handful of exhibits so every historical era the museum cares about is shown somewhere on the walls. The choice is which exhibits to include; one choice is better than another if it uses fewer exhibits while still showing every era at least once — you can tell by simply counting how many exhibits were picked, and the smaller that number, the better. Nothing can be left out — each era has to appear at least once — and picking the same exhibit twice doesn’t help, though different exhibits can overlap in which eras they cover. The concrete list of eras and exhibit options is shown below.
There are 23 distinct historical eras I need represented and 22 candidate exhibits to choose from.
Exhibit S1 displays eras 1 3 10 14.
Exhibit S2 displays eras 2 23.
Exhibit S3 displays eras 3 4 8 10 11 13.
Exhibit S4 displays eras 3 4 10 13 22.
Exhibit S5 displays eras 5 19.
Exhibit S6 displays eras 5 6 16 17 18.
Exhibit S7 displays eras 7 16 19.
Exhibit S8 displays eras 8 14.
Exhibit S9 displays eras 2 9 17 20.
Exhibit S10 displays eras 1 3 4 10 14 18.
Exhibit S11 displays eras 8 11.
Exhibit S12 displays eras 12 17 18 22.
Exhibit S13 displays eras 13 22.
Exhibit S14 displays eras 1 3 8 11 21.
Exhibit S15 displays eras 9 15 20.
Exhibit S16 displays eras 5 6 7 16 17.
Exhibit S17 displays eras 6 18 23.
Exhibit S18 displays eras 6 10 12 17 18 22 23.
Exhibit S19 displays eras 5 7 16.
Exhibit S20 displays eras 2 9 15 20 23.
Exhibit S21 displays eras 8 14 21.
Exhibit S22 displays eras 10 12 13 17 18.
My aim is to cover all 23 eras while using as few of the 22 exhibits as possible.
Also, when you send the final pick, please use this little JSON layout so I can read it easily:
{
""solution"": [""exhibit_id"", ...]
}
Think of it like a tiny form: ""solution"" is the list of exhibits you chose, and each entry like ""exhibit_id"" is a placeholder for one exhibit identifier from the instance. This block is just the expected shape — not the actual answer — so replace the placeholder entries with the real exhibit ids from the problem.
Please make sure to use the exhibit identifiers exactly as they appear in the instance input — no renaming and no new labels.
- for example: Valid identifiers look like plain numbers such as ""1"" or ""23"", single capital letters like ""A"" or ""B"", or a capital letter followed by digits like ""A1"" or ""X7"".","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 23, 'num_sets': 22, 'density': 0.16996047430830039, 'sets': [{'id': 1, 'elements': [1, 3, 10, 14]}, {'id': 2, 'elements': [2, 23]}, {'id': 3, 'elements': [3, 4, 8, 10, 11, 13]}, {'id': 4, 'elements': [3, 4, 10, 13, 22]}, {'id': 5, 'elements': [5, 19]}, {'id': 6, 'elements': [5, 6, 16, 17, 18]}, {'id': 7, 'elements': [7, 16, 19]}, {'id': 8, 'elements': [8, 14]}, {'id': 9, 'elements': [2, 9, 17, 20]}, {'id': 10, 'elements': [1, 3, 4, 10, 14, 18]}, {'id': 11, 'elements': [8, 11]}, {'id': 12, 'elements': [12, 17, 18, 22]}, {'id': 13, 'elements': [13, 22]}, {'id': 14, 'elements': [1, 3, 8, 11, 21]}, {'id': 15, 'elements': [9, 15, 20]}, {'id': 16, 'elements': [5, 6, 7, 16, 17]}, {'id': 17, 'elements': [6, 18, 23]}, {'id': 18, 'elements': [6, 10, 12, 17, 18, 22, 23]}, {'id': 19, 'elements': [5, 7, 16]}, {'id': 20, 'elements': [2, 9, 15, 20, 23]}, {'id': 21, 'elements': [8, 14, 21]}, {'id': 22, 'elements': [10, 12, 13, 17, 18]}], 'graph': {'num_nodes': 23, 'edges': [{'u': 2, 'v': 9}, {'u': 3, 'v': 1}, {'u': 3, 'v': 10}, {'u': 3, 'v': 14}, {'u': 4, 'v': 10}, {'u': 15, 'v': 20}, {'u': 5, 'v': 7}, {'u': 5, 'v': 16}, {'u': 6, 'v': 16}, {'u': 6, 'v': 17}, {'u': 21, 'v': 8}, {'u': 12, 'v': 18}, {'u': 13, 'v': 10}, {'u': 14, 'v': 8}, {'u': 14, 'v': 11}, {'u': 10, 'v': 22}, {'u': 18, 'v': 17}, {'u': 18, 'v': 22}, {'u': 16, 'v': 7}, {'u': 17, 'v': 23}, {'u': 23, 'v': 9}, {'u': 9, 'v': 20}, {'u': 19, 'v': 7}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0011.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0011.png'}","[7, 10, 14, 16, 18, 20, 22]",7.0,"{'num_elements': 23, 'num_sets': 22, 'sets': [{'id': 'S1', 'elements': [1, 3, 10, 14]}, {'id': 'S2', 'elements': [2, 23]}, {'id': 'S3', 'elements': [3, 4, 8, 10, 11, 13]}, {'id': 'S4', 'elements': [3, 4, 10, 13, 22]}, {'id': 'S5', 'elements': [5, 19]}, {'id': 'S6', 'elements': [5, 6, 16, 17, 18]}, {'id': 'S7', 'elements': [7, 16, 19]}, {'id': 'S8', 'elements': [8, 14]}, {'id': 'S9', 'elements': [2, 9, 17, 20]}, {'id': 'S10', 'elements': [1, 3, 4, 10, 14, 18]}, {'id': 'S11', 'elements': [8, 11]}, {'id': 'S12', 'elements': [12, 17, 18, 22]}, {'id': 'S13', 'elements': [13, 22]}, {'id': 'S14', 'elements': [1, 3, 8, 11, 21]}, {'id': 'S15', 'elements': [9, 15, 20]}, {'id': 'S16', 'elements': [5, 6, 7, 16, 17]}, {'id': 'S17', 'elements': [6, 18, 23]}, {'id': 'S18', 'elements': [6, 10, 12, 17, 18, 22, 23]}, {'id': 'S19', 'elements': [5, 7, 16]}, {'id': 'S20', 'elements': [2, 9, 15, 20, 23]}, {'id': 'S21', 'elements': [8, 14, 21]}, {'id': 'S22', 'elements': [10, 12, 13, 17, 18]}]}","['S7', 'S10', 'S14', 'S16', 'S18', 'S20', 'S22']",12,nl,1
SCP,SCP,"We’ve got an HR puzzle: cover every required competency with training, but keep the variety of sessions to a minimum so employees aren’t juggling dozens of course types. The decision is which session types to pick so every needed competency shows up in at least one of them; a better decision is simply the one with fewer different session types — you measure that by counting the unique sessions chosen. Each competency must be included somewhere in the schedule, and there’s no point in scheduling the same type repeatedly just to pad numbers, so the plan should avoid needless duplication. The exact list of competencies and the session options are listed below.
# total_competencies=19
# total_session_types=18
session_type_id,covered_competency_ids
S1,A E F
S2,B I
S3,C E F J
S4,D I J
S5,A C F G
S6,A F I Q
S7,A E
S8,B D H I J
S9,B D H I K
S10,C D E H I J L P Q
S11,J L N P Q
S12,M N P Q R S
S13,L M N O Q
S14,M N O Q
S15,J L M P Q S
S16,F I L M N O Q R S
S17,M N Q R
S18,M P Q S
Oh, and when you send the chosen session types back, please stick to a tiny JSON shape like this so it’s easy to check:
{
""solution"": [""session_id"", ...]
}
Here ""solution"" is just the list of session types you picked — each entry is a session identifier from the instance (so one item per chosen session). Think of it like filling in a short form: the array holds the session IDs you want to run. This JSON is only a sketch of the expected shape, not the actual answer.
Please use the identifiers exactly as they appear in the instance input — don’t rename them or make up new labels. For example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 19, 'num_sets': 18, 'density': 0.24561403508771928, 'sets': [{'id': 1, 'elements': [1, 5, 6]}, {'id': 2, 'elements': [2, 9]}, {'id': 3, 'elements': [3, 5, 6, 10]}, {'id': 4, 'elements': [4, 9, 10]}, {'id': 5, 'elements': [1, 3, 6, 7]}, {'id': 6, 'elements': [1, 6, 9, 17]}, {'id': 7, 'elements': [1, 5]}, {'id': 8, 'elements': [2, 4, 8, 9, 10]}, {'id': 9, 'elements': [2, 4, 8, 9, 11]}, {'id': 10, 'elements': [3, 4, 5, 8, 9, 10, 12, 16, 17]}, {'id': 11, 'elements': [10, 12, 14, 16, 17]}, {'id': 12, 'elements': [13, 14, 16, 17, 18, 19]}, {'id': 13, 'elements': [12, 13, 14, 15, 17]}, {'id': 14, 'elements': [13, 14, 15, 17]}, {'id': 15, 'elements': [10, 12, 13, 16, 17, 19]}, {'id': 16, 'elements': [6, 9, 12, 13, 14, 15, 17, 18, 19]}, {'id': 17, 'elements': [13, 14, 17, 18]}, {'id': 18, 'elements': [13, 16, 17, 19]}], 'graph': {'num_nodes': 19, 'edges': [{'u': 5, 'v': 1}, {'u': 5, 'v': 6}, {'u': 6, 'v': 3}, {'u': 6, 'v': 10}, {'u': 2, 'v': 8}, {'u': 7, 'v': 1}, {'u': 13, 'v': 14}, {'u': 13, 'v': 16}, {'u': 14, 'v': 15}, {'u': 14, 'v': 17}, {'u': 14, 'v': 18}, {'u': 15, 'v': 12}, {'u': 16, 'v': 17}, {'u': 16, 'v': 19}, {'u': 17, 'v': 10}, {'u': 17, 'v': 12}, {'u': 8, 'v': 9}, {'u': 9, 'v': 4}, {'u': 9, 'v': 10}, {'u': 11, 'v': 4}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0012.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0012.png'}","[5, 9, 10, 16]",4.0,"{'num_elements': 19, 'num_sets': 18, 'sets': [{'id': 'S1', 'elements': ['A', 'E', 'F']}, {'id': 'S2', 'elements': ['B', 'I']}, {'id': 'S3', 'elements': ['C', 'E', 'F', 'J']}, {'id': 'S4', 'elements': ['D', 'I', 'J']}, {'id': 'S5', 'elements': ['A', 'C', 'F', 'G']}, {'id': 'S6', 'elements': ['A', 'F', 'I', 'Q']}, {'id': 'S7', 'elements': ['A', 'E']}, {'id': 'S8', 'elements': ['B', 'D', 'H', 'I', 'J']}, {'id': 'S9', 'elements': ['B', 'D', 'H', 'I', 'K']}, {'id': 'S10', 'elements': ['C', 'D', 'E', 'H', 'I', 'J', 'L', 'P', 'Q']}, {'id': 'S11', 'elements': ['J', 'L', 'N', 'P', 'Q']}, {'id': 'S12', 'elements': ['M', 'N', 'P', 'Q', 'R', 'S']}, {'id': 'S13', 'elements': ['L', 'M', 'N', 'O', 'Q']}, {'id': 'S14', 'elements': ['M', 'N', 'O', 'Q']}, {'id': 'S15', 'elements': ['J', 'L', 'M', 'P', 'Q', 'S']}, {'id': 'S16', 'elements': ['F', 'I', 'L', 'M', 'N', 'O', 'Q', 'R', 'S']}, {'id': 'S17', 'elements': ['M', 'N', 'Q', 'R']}, {'id': 'S18', 'elements': ['M', 'P', 'Q', 'S']}]}","['S5', 'S9', 'S10', 'S16']",13,csv,names
SCP,SCP,"Recently a landscape designer had to sketch out a planting plan that satisfies every habitat in a park but avoids an overly large plant list. The question to answer was which species to pick so each habitat need gets covered by at least one selected species. The simpler plan is the one with fewer different species — you can judge plans by counting the unique species used, and the lower that number, the better. All habitat needs must be met; leaving any unmet is not allowed, and duplicating the same species doesn’t help. The concrete specifics are shown below.
There were 21 candidate species available and 22 distinct habitat requirements to satisfy.
Species S1 covered habitats 0 2 6 7 8 13 19.
Species S2 covered habitats 0 1 2 8 17.
Species S3 covered habitats 4 6 12 13 14 18 19.
Species S4 covered habitats 3 14 18.
Species S5 covered habitats 2 4 10 11 12 14 16 18.
Species S6 covered habitats 5 7 15 21.
Species S7 covered habitats 0 1 2 6 8 13 17 19.
Species S8 covered habitats 0 5 7 13 15.
Species S9 covered habitats 1 2 6 18 19.
Species S10 covered habitats 3 18.
Species S11 covered habitats 4 10 11 16 18.
Species S12 covered habitats 12 14 18 20.
Species S13 covered habitats 2 6 13 19.
Species S14 covered habitats 3 4 9 12.
Species S15 covered habitats 5 7 21.
Species S16 covered habitats 4 11 16 18.
Species S17 covered habitats 1 6 8.
Species S18 covered habitats 3 4 8 11 12 16 18 20.
Species S19 covered habitats 6 7 8 19.
Species S20 covered habitats 18 20.
Species S21 covered habitats 5 7 13 21.
The objective was to cover all 22 habitats using as few of the 21 species as possible.
Oh, and just so you know how I’ll format the final pick: I’ll give you a tiny JSON snippet like this.
{
""solution"": [""species_id"", ...]
}
Here ""solution"" is the list of species you’d plant (one entry per chosen species). The placeholder ""species_id"" is just standing in for whatever actual species labels appear in the instance input — replace those placeholders with the real IDs when you submit. This JSON is just a sketch of the shape I’ll use, not the actual final plan.
Please use the exact identifiers from the instance input — don’t rename them or invent new labels.
- for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 22, 'num_sets': 21, 'density': 0.21428571428571427, 'sets': [{'id': 1, 'elements': [1, 3, 7, 8, 9, 14, 20]}, {'id': 2, 'elements': [1, 2, 3, 9, 18]}, {'id': 3, 'elements': [5, 7, 13, 14, 15, 19, 20]}, {'id': 4, 'elements': [4, 15, 19]}, {'id': 5, 'elements': [3, 5, 11, 12, 13, 15, 17, 19]}, {'id': 6, 'elements': [6, 8, 16, 22]}, {'id': 7, 'elements': [1, 2, 3, 7, 9, 14, 18, 20]}, {'id': 8, 'elements': [1, 6, 8, 14, 16]}, {'id': 9, 'elements': [2, 3, 7, 19, 20]}, {'id': 10, 'elements': [4, 19]}, {'id': 11, 'elements': [5, 11, 12, 17, 19]}, {'id': 12, 'elements': [13, 15, 19, 21]}, {'id': 13, 'elements': [3, 7, 14, 20]}, {'id': 14, 'elements': [4, 5, 10, 13]}, {'id': 15, 'elements': [6, 8, 22]}, {'id': 16, 'elements': [5, 12, 17, 19]}, {'id': 17, 'elements': [2, 7, 9]}, {'id': 18, 'elements': [4, 5, 9, 12, 13, 17, 19, 21]}, {'id': 19, 'elements': [7, 8, 9, 20]}, {'id': 20, 'elements': [19, 21]}, {'id': 21, 'elements': [6, 8, 14, 22]}], 'graph': {'num_nodes': 22, 'edges': [{'u': 10, 'v': 15}, {'u': 18, 'v': 2}, {'u': 9, 'v': 2}, {'u': 9, 'v': 3}, {'u': 9, 'v': 7}, {'u': 1, 'v': 7}, {'u': 1, 'v': 14}, {'u': 1, 'v': 20}, {'u': 21, 'v': 13}, {'u': 19, 'v': 3}, {'u': 19, 'v': 5}, {'u': 19, 'v': 13}, {'u': 19, 'v': 15}, {'u': 15, 'v': 4}, {'u': 12, 'v': 5}, {'u': 12, 'v': 11}, {'u': 6, 'v': 22}, {'u': 5, 'v': 17}, {'u': 7, 'v': 2}, {'u': 22, 'v': 8}, {'u': 22, 'v': 16}, {'u': 3, 'v': 20}, {'u': 14, 'v': 8}, {'u': 14, 'v': 20}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0013.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0013.png'}","[5, 6, 7, 12, 14]",5.0,"{'num_elements': 22, 'num_sets': 21, 'sets': [{'id': 'S1', 'elements': [0, 2, 6, 7, 8, 13, 19]}, {'id': 'S2', 'elements': [0, 1, 2, 8, 17]}, {'id': 'S3', 'elements': [4, 6, 12, 13, 14, 18, 19]}, {'id': 'S4', 'elements': [3, 14, 18]}, {'id': 'S5', 'elements': [2, 4, 10, 11, 12, 14, 16, 18]}, {'id': 'S6', 'elements': [5, 7, 15, 21]}, {'id': 'S7', 'elements': [0, 1, 2, 6, 8, 13, 17, 19]}, {'id': 'S8', 'elements': [0, 5, 7, 13, 15]}, {'id': 'S9', 'elements': [1, 2, 6, 18, 19]}, {'id': 'S10', 'elements': [3, 18]}, {'id': 'S11', 'elements': [4, 10, 11, 16, 18]}, {'id': 'S12', 'elements': [12, 14, 18, 20]}, {'id': 'S13', 'elements': [2, 6, 13, 19]}, {'id': 'S14', 'elements': [3, 4, 9, 12]}, {'id': 'S15', 'elements': [5, 7, 21]}, {'id': 'S16', 'elements': [4, 11, 16, 18]}, {'id': 'S17', 'elements': [1, 6, 8]}, {'id': 'S18', 'elements': [3, 4, 8, 11, 12, 16, 18, 20]}, {'id': 'S19', 'elements': [6, 7, 8, 19]}, {'id': 'S20', 'elements': [18, 20]}, {'id': 'S21', 'elements': [5, 7, 13, 21]}]}","['S5', 'S6', 'S7', 'S12', 'S14']",14,nl,0
SCP,SCP,"There’s a DJ piecing together a short setlist that still satisfies a bunch of mood requests; the idea is to pick songs that between them cover all the moods, using as few tracks as possible. Some tracks pull double duty and hit multiple moods, so the choice is about which combination covers everything. You measure success by counting tracks — the lower the count the better — but every requested mood has to appear at least once and no song should appear twice. The exact details are shown below.
{
""num_moods_total"": 19,
""num_songs_available"": 18,
""sets"": [
{
""song_id"": ""S1"",
""moods_covered"": [
1,
7,
11,
12,
17
]
},
{
""song_id"": ""S2"",
""moods_covered"": [
2,
5,
6,
19
]
},
{
""song_id"": ""S3"",
""moods_covered"": [
8,
9,
16
]
},
{
""song_id"": ""S4"",
""moods_covered"": [
1,
4,
7,
14
]
},
{
""song_id"": ""S5"",
""moods_covered"": [
2,
6,
8,
10,
19
]
},
{
""song_id"": ""S6"",
""moods_covered"": [
2,
5,
6,
10,
16,
19
]
},
{
""song_id"": ""S7"",
""moods_covered"": [
1,
4,
7,
17
]
},
{
""song_id"": ""S8"",
""moods_covered"": [
6,
8,
10,
11,
15,
16
]
},
{
""song_id"": ""S9"",
""moods_covered"": [
8,
19
]
},
{
""song_id"": ""S10"",
""moods_covered"": [
1,
8,
15,
17
]
},
{
""song_id"": ""S11"",
""moods_covered"": [
1,
7,
12
]
},
{
""song_id"": ""S12"",
""moods_covered"": [
13,
16,
18
]
},
{
""song_id"": ""S13"",
""moods_covered"": [
1,
7
]
},
{
""song_id"": ""S14"",
""moods_covered"": [
6,
8,
15
]
},
{
""song_id"": ""S15"",
""moods_covered"": [
3,
8,
9,
13
]
},
{
""song_id"": ""S16"",
""moods_covered"": [
1,
7,
15,
17
]
},
{
""song_id"": ""S17"",
""moods_covered"": [
3,
8,
13
]
},
{
""song_id"": ""S18"",
""moods_covered"": [
2,
5,
6,
10
]
}
]
}
Also, when you reply, please use a tiny JSON sketch so it's easy to read and parse. Something like this:
{
""solution"": [""track_id"", ...]
}
Here ""solution"" is just an array listing the tracks you pick for the DJ set — put each chosen track's identifier in there (that's the label from the instance). Think of the JSON as a simple form: the key says what the list is, and the array holds the exact track IDs. This is only a template showing the expected shape, not your actual answer.
Please make sure all identifiers are used exactly as they appear in the instance input — no renaming and no new labels.
- for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 19, 'num_sets': 18, 'density': 0.20175438596491227, 'sets': [{'id': 1, 'elements': [1, 7, 11, 12, 17]}, {'id': 2, 'elements': [2, 5, 6, 19]}, {'id': 3, 'elements': [8, 9, 16]}, {'id': 4, 'elements': [1, 4, 7, 14]}, {'id': 5, 'elements': [2, 6, 8, 10, 19]}, {'id': 6, 'elements': [2, 5, 6, 10, 16, 19]}, {'id': 7, 'elements': [1, 4, 7, 17]}, {'id': 8, 'elements': [6, 8, 10, 11, 15, 16]}, {'id': 9, 'elements': [8, 19]}, {'id': 10, 'elements': [1, 8, 15, 17]}, {'id': 11, 'elements': [1, 7, 12]}, {'id': 12, 'elements': [13, 16, 18]}, {'id': 13, 'elements': [1, 7]}, {'id': 14, 'elements': [6, 8, 15]}, {'id': 15, 'elements': [3, 8, 9, 13]}, {'id': 16, 'elements': [1, 7, 15, 17]}, {'id': 17, 'elements': [3, 8, 13]}, {'id': 18, 'elements': [2, 5, 6, 10]}], 'graph': {'num_nodes': 19, 'edges': [{'u': 15, 'v': 8}, {'u': 15, 'v': 11}, {'u': 18, 'v': 13}, {'u': 18, 'v': 16}, {'u': 4, 'v': 7}, {'u': 9, 'v': 3}, {'u': 17, 'v': 1}, {'u': 17, 'v': 11}, {'u': 12, 'v': 1}, {'u': 14, 'v': 7}, {'u': 19, 'v': 5}, {'u': 19, 'v': 10}, {'u': 1, 'v': 7}, {'u': 16, 'v': 3}, {'u': 16, 'v': 8}, {'u': 5, 'v': 2}, {'u': 5, 'v': 6}, {'u': 10, 'v': 6}, {'u': 8, 'v': 6}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0014.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0014.png'}","[1, 4, 6, 10, 12, 15]",6.0,"{'num_elements': 19, 'num_sets': 18, 'sets': [{'id': 'S1', 'elements': [1, 7, 11, 12, 17]}, {'id': 'S2', 'elements': [2, 5, 6, 19]}, {'id': 'S3', 'elements': [8, 9, 16]}, {'id': 'S4', 'elements': [1, 4, 7, 14]}, {'id': 'S5', 'elements': [2, 6, 8, 10, 19]}, {'id': 'S6', 'elements': [2, 5, 6, 10, 16, 19]}, {'id': 'S7', 'elements': [1, 4, 7, 17]}, {'id': 'S8', 'elements': [6, 8, 10, 11, 15, 16]}, {'id': 'S9', 'elements': [8, 19]}, {'id': 'S10', 'elements': [1, 8, 15, 17]}, {'id': 'S11', 'elements': [1, 7, 12]}, {'id': 'S12', 'elements': [13, 16, 18]}, {'id': 'S13', 'elements': [1, 7]}, {'id': 'S14', 'elements': [6, 8, 15]}, {'id': 'S15', 'elements': [3, 8, 9, 13]}, {'id': 'S16', 'elements': [1, 7, 15, 17]}, {'id': 'S17', 'elements': [3, 8, 13]}, {'id': 'S18', 'elements': [2, 5, 6, 10]}]}","['S1', 'S4', 'S6', 'S10', 'S12', 'S15']",15,json,1
SCP,SCP,"Someone in charge of building security explained the setup over coffee: cameras need to be positioned so all corridors are covered, and the kicker is to do it with the fewest cameras possible. The task is picking which sites to use so every hallway gets covered at least once; the way to tell if it’s good is to total the cameras used — lower totals are better. Every corridor must be included in that coverage, and putting cameras that only duplicate existing coverage is wasteful. Details about the corridors and camera choices follow below.
# total_corridors=19
# total_camera_sites=19
camera_site_id,covered_corridors
S1,2 8
S2,1 6 9 11 15
S3,3 4 5 10 13 16 17
S4,4 10 12 16 17
S5,3 5 11 13 14 17
S6,2 6 19
S7,3 7 10 16
S8,1 8 9
S9,2 8 9
S10,3 4 7 14
S11,2 5 11 15 16
S12,10 12
S13,3 13 14
S14,3 5 7 10 13 14 16
S15,1 2 15 17
S16,3 4 5 7 11 12 14 16 17
S17,4 5 11 15 16 17
S18,6 18
S19,18 19
Oh, and just so everything stays neat, I like to get the final pick in a tiny JSON sketch — super simple and easy to read. Something like this will do:
{
""solution"": [""set_id"", ...]
}
Here ""solution"" is the list of camera sites you’re choosing (each entry is the id of a site to place a camera). Think of it like filling out a short form: put each site identifier in that array, and that’s your answer. This is just the shape I’m expecting, not the actual selection.
Please be careful to use the exact identifiers from the instance input — don’t rename anything or invent new labels.
- for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 19, 'num_sets': 19, 'density': 0.22714681440443213, 'sets': [{'id': 1, 'elements': [2, 8]}, {'id': 2, 'elements': [1, 6, 9, 11, 15]}, {'id': 3, 'elements': [3, 4, 5, 10, 13, 16, 17]}, {'id': 4, 'elements': [4, 10, 12, 16, 17]}, {'id': 5, 'elements': [3, 5, 11, 13, 14, 17]}, {'id': 6, 'elements': [2, 6, 19]}, {'id': 7, 'elements': [3, 7, 10, 16]}, {'id': 8, 'elements': [1, 8, 9]}, {'id': 9, 'elements': [2, 8, 9]}, {'id': 10, 'elements': [3, 4, 7, 14]}, {'id': 11, 'elements': [2, 5, 11, 15, 16]}, {'id': 12, 'elements': [10, 12]}, {'id': 13, 'elements': [3, 13, 14]}, {'id': 14, 'elements': [3, 5, 7, 10, 13, 14, 16]}, {'id': 15, 'elements': [1, 2, 15, 17]}, {'id': 16, 'elements': [3, 4, 5, 7, 11, 12, 14, 16, 17]}, {'id': 17, 'elements': [4, 5, 11, 15, 16, 17]}, {'id': 18, 'elements': [6, 18]}, {'id': 19, 'elements': [18, 19]}], 'graph': {'num_nodes': 19, 'edges': [{'u': 5, 'v': 14}, {'u': 5, 'v': 17}, {'u': 4, 'v': 10}, {'u': 4, 'v': 12}, {'u': 4, 'v': 16}, {'u': 17, 'v': 11}, {'u': 17, 'v': 16}, {'u': 19, 'v': 18}, {'u': 13, 'v': 14}, {'u': 9, 'v': 8}, {'u': 11, 'v': 15}, {'u': 7, 'v': 3}, {'u': 8, 'v': 2}, {'u': 2, 'v': 1}, {'u': 2, 'v': 15}, {'u': 10, 'v': 3}, {'u': 18, 'v': 6}, {'u': 16, 'v': 3}, {'u': 1, 'v': 6}, {'u': 3, 'v': 14}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0015.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0015.png'}","[2, 9, 14, 16, 19]",5.0,"{'num_elements': 19, 'num_sets': 19, 'sets': [{'id': 'S1', 'elements': [2, 8]}, {'id': 'S2', 'elements': [1, 6, 9, 11, 15]}, {'id': 'S3', 'elements': [3, 4, 5, 10, 13, 16, 17]}, {'id': 'S4', 'elements': [4, 10, 12, 16, 17]}, {'id': 'S5', 'elements': [3, 5, 11, 13, 14, 17]}, {'id': 'S6', 'elements': [2, 6, 19]}, {'id': 'S7', 'elements': [3, 7, 10, 16]}, {'id': 'S8', 'elements': [1, 8, 9]}, {'id': 'S9', 'elements': [2, 8, 9]}, {'id': 'S10', 'elements': [3, 4, 7, 14]}, {'id': 'S11', 'elements': [2, 5, 11, 15, 16]}, {'id': 'S12', 'elements': [10, 12]}, {'id': 'S13', 'elements': [3, 13, 14]}, {'id': 'S14', 'elements': [3, 5, 7, 10, 13, 14, 16]}, {'id': 'S15', 'elements': [1, 2, 15, 17]}, {'id': 'S16', 'elements': [3, 4, 5, 7, 11, 12, 14, 16, 17]}, {'id': 'S17', 'elements': [4, 5, 11, 15, 16, 17]}, {'id': 'S18', 'elements': [6, 18]}, {'id': 'S19', 'elements': [18, 19]}]}","['S2', 'S9', 'S14', 'S16', 'S19']",16,csv,1
SCP,SCP,"Many people prefer a clean brochure with just a few distinct tours, so the operator must choose which built routes to include so that every monument and viewpoint is covered. The choice comes down to which combination of routes reaches every spot while keeping the number of different routes offered to a minimum. To judge any selection, simply count the distinct routes it contains — every point needs to be on at least one route, and duplicates don’t reduce that total. The concrete list of sights and possible routes is given below.
# total_points_of_interest=19
# available_route_count=19
route_id,route_covered_sights
S1,A O Q
S2,E I K Q
S3,R S
S4,E G J L P
S5,B D E L Q
S6,F G H J K Q
S7,D G H I
S8,G H I M N Q
S9,H I K M
S10,B D F I J K M
S11,B G I K
S12,B E L
S13,I J M
S14,G H I N
S15,O P
S16,A D G O P R
S17,A B C D E F H L O P Q R S
S18,D G P Q
S19,C Q S
If you want to hand me the chosen routes in a tidy, machine-friendly way, just send a little JSON snippet like this:
{
""solution"": [""route_id"", ...]
}
Think of it like a simple form: ""solution"" is the list of route identifiers you want in the brochure, and each item in the array is one route. This block is just a sketch of the expected shape, not the actual answer — replace the placeholder entries with the real route IDs from the instance.
Please use the identifiers exactly as they appear in the instance input — no renaming and no invented labels.
- for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”"".","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 19, 'num_sets': 19, 'density': 0.24376731301939059, 'sets': [{'id': 1, 'elements': [1, 15, 17]}, {'id': 2, 'elements': [5, 9, 11, 17]}, {'id': 3, 'elements': [18, 19]}, {'id': 4, 'elements': [5, 7, 10, 12, 16]}, {'id': 5, 'elements': [2, 4, 5, 12, 17]}, {'id': 6, 'elements': [6, 7, 8, 10, 11, 17]}, {'id': 7, 'elements': [4, 7, 8, 9]}, {'id': 8, 'elements': [7, 8, 9, 13, 14, 17]}, {'id': 9, 'elements': [8, 9, 11, 13]}, {'id': 10, 'elements': [2, 4, 6, 9, 10, 11, 13]}, {'id': 11, 'elements': [2, 7, 9, 11]}, {'id': 12, 'elements': [2, 5, 12]}, {'id': 13, 'elements': [9, 10, 13]}, {'id': 14, 'elements': [7, 8, 9, 14]}, {'id': 15, 'elements': [15, 16]}, {'id': 16, 'elements': [1, 4, 7, 15, 16, 18]}, {'id': 17, 'elements': [1, 2, 3, 4, 5, 6, 8, 12, 15, 16, 17, 18, 19]}, {'id': 18, 'elements': [4, 7, 16, 17]}, {'id': 19, 'elements': [3, 17, 19]}], 'graph': {'num_nodes': 19, 'edges': [{'u': 15, 'v': 16}, {'u': 16, 'v': 1}, {'u': 16, 'v': 17}, {'u': 17, 'v': 4}, {'u': 17, 'v': 7}, {'u': 17, 'v': 18}, {'u': 18, 'v': 3}, {'u': 18, 'v': 19}, {'u': 19, 'v': 3}, {'u': 6, 'v': 7}, {'u': 6, 'v': 11}, {'u': 7, 'v': 8}, {'u': 8, 'v': 9}, {'u': 8, 'v': 14}, {'u': 9, 'v': 10}, {'u': 9, 'v': 13}, {'u': 10, 'v': 2}, {'u': 10, 'v': 11}, {'u': 4, 'v': 2}, {'u': 4, 'v': 5}, {'u': 4, 'v': 12}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0016.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0016.png'}","[8, 10, 17]",3.0,"{'num_elements': 19, 'num_sets': 19, 'sets': [{'id': 'S1', 'elements': ['A', 'O', 'Q']}, {'id': 'S2', 'elements': ['E', 'I', 'K', 'Q']}, {'id': 'S3', 'elements': ['R', 'S']}, {'id': 'S4', 'elements': ['E', 'G', 'J', 'L', 'P']}, {'id': 'S5', 'elements': ['B', 'D', 'E', 'L', 'Q']}, {'id': 'S6', 'elements': ['F', 'G', 'H', 'J', 'K', 'Q']}, {'id': 'S7', 'elements': ['D', 'G', 'H', 'I']}, {'id': 'S8', 'elements': ['G', 'H', 'I', 'M', 'N', 'Q']}, {'id': 'S9', 'elements': ['H', 'I', 'K', 'M']}, {'id': 'S10', 'elements': ['B', 'D', 'F', 'I', 'J', 'K', 'M']}, {'id': 'S11', 'elements': ['B', 'G', 'I', 'K']}, {'id': 'S12', 'elements': ['B', 'E', 'L']}, {'id': 'S13', 'elements': ['I', 'J', 'M']}, {'id': 'S14', 'elements': ['G', 'H', 'I', 'N']}, {'id': 'S15', 'elements': ['O', 'P']}, {'id': 'S16', 'elements': ['A', 'D', 'G', 'O', 'P', 'R']}, {'id': 'S17', 'elements': ['A', 'B', 'C', 'D', 'E', 'F', 'H', 'L', 'O', 'P', 'Q', 'R', 'S']}, {'id': 'S18', 'elements': ['D', 'G', 'P', 'Q']}, {'id': 'S19', 'elements': ['C', 'Q', 'S']}]}","['S8', 'S10', 'S17']",17,csv,names
SCP,SCP,"Recently the backup team faced a cleanup: dozens of essential files and a list of possible storage sites, and the mission was to pick a small set of sites that together hold every critical file. They measure a good solution by simply counting how many sites are used (fewer sites means a better solution), and they must make sure every file appears in at least one chosen site; duplicating the same site is pointless. The precise setup appears below.
{
""total_critical_files"": 20,
""available_storage_sites"": 19,
""sets"": [
{
""storage_site_id"": ""S1"",
""files_in_site"": [
""A"",
""G"",
""J"",
""Q"",
""S"",
""T""
]
},
{
""storage_site_id"": ""S2"",
""files_in_site"": [
""B"",
""H"",
""I"",
""J"",
""T""
]
},
{
""storage_site_id"": ""S3"",
""files_in_site"": [
""C"",
""H"",
""J"",
""N""
]
},
{
""storage_site_id"": ""S4"",
""files_in_site"": [
""D"",
""E"",
""S""
]
},
{
""storage_site_id"": ""S5"",
""files_in_site"": [
""L"",
""S""
]
},
{
""storage_site_id"": ""S6"",
""files_in_site"": [
""A"",
""G"",
""K"",
""Q"",
""R""
]
},
{
""storage_site_id"": ""S7"",
""files_in_site"": [
""B"",
""H"",
""M"",
""N"",
""O"",
""T""
]
},
{
""storage_site_id"": ""S8"",
""files_in_site"": [
""B"",
""F"",
""J"",
""T""
]
},
{
""storage_site_id"": ""S9"",
""files_in_site"": [
""A"",
""B"",
""C"",
""E"",
""G"",
""H"",
""I"",
""K"",
""L"",
""M"",
""N"",
""T""
]
},
{
""storage_site_id"": ""S10"",
""files_in_site"": [
""A"",
""G"",
""J"",
""K""
]
},
{
""storage_site_id"": ""S11"",
""files_in_site"": [
""L"",
""P"",
""R"",
""S""
]
},
{
""storage_site_id"": ""S12"",
""files_in_site"": [
""J"",
""N""
]
},
{
""storage_site_id"": ""S13"",
""files_in_site"": [
""A"",
""C"",
""J"",
""O"",
""S"",
""T""
]
},
{
""storage_site_id"": ""S14"",
""files_in_site"": [
""H"",
""T""
]
},
{
""storage_site_id"": ""S15"",
""files_in_site"": [
""G"",
""L"",
""R"",
""S""
]
},
{
""storage_site_id"": ""S16"",
""files_in_site"": [
""A"",
""Q"",
""R""
]
},
{
""storage_site_id"": ""S17"",
""files_in_site"": [
""A"",
""G"",
""L"",
""P"",
""Q"",
""R""
]
},
{
""storage_site_id"": ""S18"",
""files_in_site"": [
""D"",
""L"",
""P"",
""T""
]
},
{
""storage_site_id"": ""S19"",
""files_in_site"": [
""H"",
""I"",
""J"",
""N"",
""O"",
""S"",
""T""
]
}
]
}
When you report back, just drop the chosen sites into a tiny JSON snippet so it's easy to read and parse. Something like this will do:
{
""solution"": [""site_id"", ...]
}
Here ""solution"" is where you list the sites you chose — one identifier per entry — and the ellipsis just means you can include as many as needed. Think of it like a simple form: the array is the list of storage sites to use.
This is only the expected shape of the answer, not the actual picks. Quick reminder: use the identifiers exactly as they appear in the instance input — do not rename them or invent new labels. Valid identifiers look like plain numbers such as ""1"" or ""23"", single capital letters like ""A"" or ""B"", or a capital letter followed by digits like ""A1"" or ""X7"".","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 20, 'num_sets': 19, 'density': 0.23421052631578948, 'sets': [{'id': 1, 'elements': [1, 7, 10, 17, 19, 20]}, {'id': 2, 'elements': [2, 8, 9, 10, 20]}, {'id': 3, 'elements': [3, 8, 10, 14]}, {'id': 4, 'elements': [4, 5, 19]}, {'id': 5, 'elements': [12, 19]}, {'id': 6, 'elements': [1, 7, 11, 17, 18]}, {'id': 7, 'elements': [2, 8, 13, 14, 15, 20]}, {'id': 8, 'elements': [2, 6, 10, 20]}, {'id': 9, 'elements': [1, 2, 3, 5, 7, 8, 9, 11, 12, 13, 14, 20]}, {'id': 10, 'elements': [1, 7, 10, 11]}, {'id': 11, 'elements': [12, 16, 18, 19]}, {'id': 12, 'elements': [10, 14]}, {'id': 13, 'elements': [1, 3, 10, 15, 19, 20]}, {'id': 14, 'elements': [8, 20]}, {'id': 15, 'elements': [7, 12, 18, 19]}, {'id': 16, 'elements': [1, 17, 18]}, {'id': 17, 'elements': [1, 7, 12, 16, 17, 18]}, {'id': 18, 'elements': [4, 12, 16, 20]}, {'id': 19, 'elements': [8, 9, 10, 14, 15, 19, 20]}], 'graph': {'num_nodes': 20, 'edges': [{'u': 19, 'v': 5}, {'u': 19, 'v': 10}, {'u': 19, 'v': 12}, {'u': 5, 'v': 4}, {'u': 10, 'v': 1}, {'u': 10, 'v': 14}, {'u': 10, 'v': 20}, {'u': 6, 'v': 9}, {'u': 11, 'v': 1}, {'u': 9, 'v': 20}, {'u': 2, 'v': 15}, {'u': 2, 'v': 20}, {'u': 3, 'v': 14}, {'u': 18, 'v': 7}, {'u': 18, 'v': 16}, {'u': 15, 'v': 8}, {'u': 1, 'v': 7}, {'u': 20, 'v': 8}, {'u': 16, 'v': 12}, {'u': 13, 'v': 14}, {'u': 8, 'v': 14}, {'u': 17, 'v': 7}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0017.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0017.png'}","[8, 9, 13, 17, 18]",5.0,"{'num_elements': 20, 'num_sets': 19, 'sets': [{'id': 'S1', 'elements': ['A', 'G', 'J', 'Q', 'S', 'T']}, {'id': 'S2', 'elements': ['B', 'H', 'I', 'J', 'T']}, {'id': 'S3', 'elements': ['C', 'H', 'J', 'N']}, {'id': 'S4', 'elements': ['D', 'E', 'S']}, {'id': 'S5', 'elements': ['L', 'S']}, {'id': 'S6', 'elements': ['A', 'G', 'K', 'Q', 'R']}, {'id': 'S7', 'elements': ['B', 'H', 'M', 'N', 'O', 'T']}, {'id': 'S8', 'elements': ['B', 'F', 'J', 'T']}, {'id': 'S9', 'elements': ['A', 'B', 'C', 'E', 'G', 'H', 'I', 'K', 'L', 'M', 'N', 'T']}, {'id': 'S10', 'elements': ['A', 'G', 'J', 'K']}, {'id': 'S11', 'elements': ['L', 'P', 'R', 'S']}, {'id': 'S12', 'elements': ['J', 'N']}, {'id': 'S13', 'elements': ['A', 'C', 'J', 'O', 'S', 'T']}, {'id': 'S14', 'elements': ['H', 'T']}, {'id': 'S15', 'elements': ['G', 'L', 'R', 'S']}, {'id': 'S16', 'elements': ['A', 'Q', 'R']}, {'id': 'S17', 'elements': ['A', 'G', 'L', 'P', 'Q', 'R']}, {'id': 'S18', 'elements': ['D', 'L', 'P', 'T']}, {'id': 'S19', 'elements': ['H', 'I', 'J', 'N', 'O', 'S', 'T']}]}","['S8', 'S9', 'S13', 'S17', 'S18']",18,json,names
SCP,SCP,"Someone on the team needs to build a compact freelance lineup that still handles every language pairing requested by projects. The choice is which freelancers to invite onto the roster so that each required language combination is represented at least once, and the cleaner solution is the one with the least people added. In practice this means making sure every pairing is assigned, tallying up the selected freelancers to see how compact the roster is, and avoiding hires that merely duplicate coverage without covering anything new. The exact list of requirements and freelancers will be shown below.
There are 20 required language combinations and 19 available freelancers.
Freelancer S1 covers A J Q.
Freelancer S2 covers B K S.
Freelancer S3 covers C D G M Q.
Freelancer S4 covers D M O Q T.
Freelancer S5 covers E H R.
Freelancer S6 covers P S T.
Freelancer S7 covers C M.
Freelancer S8 covers E H N O R T.
Freelancer S9 covers A I J Q.
Freelancer S10 covers A I Q.
Freelancer S11 covers B D O P S T.
Freelancer S12 covers F L P.
Freelancer S13 covers C D M.
Freelancer S14 covers N O.
Freelancer S15 covers E H O.
Freelancer S16 covers F K L P.
Freelancer S17 covers A C D I J T.
Freelancer S18 covers O R.
Freelancer S19 covers C D H K N O Q S T.
The goal is to cover all 20 pairings with as few hires as possible.
Oh, and to keep things machine- and people-friendly, please return the chosen roster in this little JSON shape:
{
""solution"": [""freelancer_id"", ...]
}
Think of it like a simple form: ""solution"" is the list (array) of the freelancer IDs you’re inviting onto the roster. The placeholder freelancer_id is where each exact ID from the instance goes. This JSON is just the expected shape — not the actual answer — so replace the placeholder(s) with the real IDs when you submit.
Please make sure to use the identifiers exactly as they appear in the instance input — no renaming and no new labels.
- for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 20, 'num_sets': 19, 'density': 0.19736842105263158, 'sets': [{'id': 1, 'elements': [1, 10, 17]}, {'id': 2, 'elements': [2, 11, 19]}, {'id': 3, 'elements': [3, 4, 7, 13, 17]}, {'id': 4, 'elements': [4, 13, 15, 17, 20]}, {'id': 5, 'elements': [5, 8, 18]}, {'id': 6, 'elements': [16, 19, 20]}, {'id': 7, 'elements': [3, 13]}, {'id': 8, 'elements': [5, 8, 14, 15, 18, 20]}, {'id': 9, 'elements': [1, 9, 10, 17]}, {'id': 10, 'elements': [1, 9, 17]}, {'id': 11, 'elements': [2, 4, 15, 16, 19, 20]}, {'id': 12, 'elements': [6, 12, 16]}, {'id': 13, 'elements': [3, 4, 13]}, {'id': 14, 'elements': [14, 15]}, {'id': 15, 'elements': [5, 8, 15]}, {'id': 16, 'elements': [6, 11, 12, 16]}, {'id': 17, 'elements': [1, 3, 4, 9, 10, 20]}, {'id': 18, 'elements': [15, 18]}, {'id': 19, 'elements': [3, 4, 8, 11, 14, 15, 17, 19, 20]}], 'graph': {'num_nodes': 20, 'edges': [{'u': 19, 'v': 2}, {'u': 19, 'v': 11}, {'u': 6, 'v': 11}, {'u': 6, 'v': 16}, {'u': 4, 'v': 3}, {'u': 4, 'v': 17}, {'u': 4, 'v': 20}, {'u': 14, 'v': 15}, {'u': 16, 'v': 12}, {'u': 13, 'v': 3}, {'u': 13, 'v': 7}, {'u': 15, 'v': 8}, {'u': 15, 'v': 20}, {'u': 5, 'v': 8}, {'u': 17, 'v': 9}, {'u': 10, 'v': 9}, {'u': 8, 'v': 18}, {'u': 20, 'v': 11}, {'u': 9, 'v': 1}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0018.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0018.png'}","[3, 8, 11, 16, 17]",5.0,"{'num_elements': 20, 'num_sets': 19, 'sets': [{'id': 'S1', 'elements': ['A', 'J', 'Q']}, {'id': 'S2', 'elements': ['B', 'K', 'S']}, {'id': 'S3', 'elements': ['C', 'D', 'G', 'M', 'Q']}, {'id': 'S4', 'elements': ['D', 'M', 'O', 'Q', 'T']}, {'id': 'S5', 'elements': ['E', 'H', 'R']}, {'id': 'S6', 'elements': ['P', 'S', 'T']}, {'id': 'S7', 'elements': ['C', 'M']}, {'id': 'S8', 'elements': ['E', 'H', 'N', 'O', 'R', 'T']}, {'id': 'S9', 'elements': ['A', 'I', 'J', 'Q']}, {'id': 'S10', 'elements': ['A', 'I', 'Q']}, {'id': 'S11', 'elements': ['B', 'D', 'O', 'P', 'S', 'T']}, {'id': 'S12', 'elements': ['F', 'L', 'P']}, {'id': 'S13', 'elements': ['C', 'D', 'M']}, {'id': 'S14', 'elements': ['N', 'O']}, {'id': 'S15', 'elements': ['E', 'H', 'O']}, {'id': 'S16', 'elements': ['F', 'K', 'L', 'P']}, {'id': 'S17', 'elements': ['A', 'C', 'D', 'I', 'J', 'T']}, {'id': 'S18', 'elements': ['O', 'R']}, {'id': 'S19', 'elements': ['C', 'D', 'H', 'K', 'N', 'O', 'Q', 'S', 'T']}]}","['S3', 'S8', 'S11', 'S16', 'S17']",19,nl,names
SCP,SCP,"Recently the department decided it would be handy to have a minimal textbook set for the term, so the coordinator’s challenge became: choose the smallest possible collection of books that together contain every topic from the syllabus. The choice to make is which specific textbooks to pick; a preferable choice is the one that covers every topic but uses the fewest titles. The way to compare choices is by counting the selected textbooks, and no topic should be left out even if some will appear in more than one chosen book. The exact list of topics and book candidates appears below.
There are 23 distinct syllabus topics and 21 textbook candidates listed below.
Textbook S1 covers topics 0 6 7 13.
Textbook S2 covers topics 2 5 7 11 13 17 18 20.
Textbook S3 covers topics 3 13.
Textbook S4 covers topics 0 7 8 13 19 21.
Textbook S5 covers topics 2 5 20.
Textbook S6 covers topics 0 6 16.
Textbook S7 covers topics 2 4 7 8 13 14 17.
Textbook S8 covers topics 7 19.
Textbook S9 covers topics 9 14 16 21.
Textbook S10 covers topics 1 2 10 11 13 18.
Textbook S11 covers topics 5 10 11 13 20.
Textbook S12 covers topics 3 12 13 17.
Textbook S13 covers topics 4 7 10 11 12 13 17.
Textbook S14 covers topics 0 6 14 16 21.
Textbook S15 covers topics 6 14 15 16 19 21.
Textbook S16 covers topics 2 7 12 13 17.
Textbook S17 covers topics 1 2.
Textbook S18 covers topics 4 15 16 19 21 22.
Textbook S19 covers topics 2 5.
Textbook S20 covers topics 4 9 14 15 16 19 21 22.
Textbook S21 covers topics 4 19 21 22.
The coordinator should select the fewest textbooks that together cover all 23 topics.
If you want to hand me the picks in a simple, machine-friendly way, you can stick to a tiny JSON sketch like this:
{
""solution"": [""book_id"", ...]
}
Think of ""solution"" as the list of chosen textbooks, and put each chosen book's identifier inside that array. The ""book_id"" entry is just a placeholder showing the kind of ID you'll use — it's not an actual book title. This JSON is just the expected shape of the reply, not the real answer itself.
Please use the exact identifiers from the instance input — don't rename them or invent new ones. Valid identifiers look like plain numbers such as ""1"" or ""23"", single capital letters like ""A"" or ""B"", or a capital letter followed by digits like ""A1"" or ""X7"".","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 23, 'num_sets': 21, 'density': 0.20496894409937888, 'sets': [{'id': 1, 'elements': [1, 7, 8, 14]}, {'id': 2, 'elements': [3, 6, 8, 12, 14, 18, 19, 21]}, {'id': 3, 'elements': [4, 14]}, {'id': 4, 'elements': [1, 8, 9, 14, 20, 22]}, {'id': 5, 'elements': [3, 6, 21]}, {'id': 6, 'elements': [1, 7, 17]}, {'id': 7, 'elements': [3, 5, 8, 9, 14, 15, 18]}, {'id': 8, 'elements': [8, 20]}, {'id': 9, 'elements': [10, 15, 17, 22]}, {'id': 10, 'elements': [2, 3, 11, 12, 14, 19]}, {'id': 11, 'elements': [6, 11, 12, 14, 21]}, {'id': 12, 'elements': [4, 13, 14, 18]}, {'id': 13, 'elements': [5, 8, 11, 12, 13, 14, 18]}, {'id': 14, 'elements': [1, 7, 15, 17, 22]}, {'id': 15, 'elements': [7, 15, 16, 17, 20, 22]}, {'id': 16, 'elements': [3, 8, 13, 14, 18]}, {'id': 17, 'elements': [2, 3]}, {'id': 18, 'elements': [5, 16, 17, 20, 22, 23]}, {'id': 19, 'elements': [3, 6]}, {'id': 20, 'elements': [5, 10, 15, 16, 17, 20, 22, 23]}, {'id': 21, 'elements': [5, 20, 22, 23]}], 'graph': {'num_nodes': 23, 'edges': [{'u': 22, 'v': 16}, {'u': 22, 'v': 17}, {'u': 22, 'v': 20}, {'u': 18, 'v': 4}, {'u': 18, 'v': 13}, {'u': 18, 'v': 14}, {'u': 19, 'v': 2}, {'u': 19, 'v': 11}, {'u': 7, 'v': 15}, {'u': 14, 'v': 3}, {'u': 14, 'v': 8}, {'u': 15, 'v': 1}, {'u': 15, 'v': 17}, {'u': 23, 'v': 20}, {'u': 6, 'v': 12}, {'u': 9, 'v': 5}, {'u': 20, 'v': 5}, {'u': 17, 'v': 10}, {'u': 11, 'v': 3}, {'u': 12, 'v': 3}, {'u': 12, 'v': 21}, {'u': 1, 'v': 8}, {'u': 5, 'v': 8}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0019.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0019.png'}","[4, 10, 11, 12, 14, 20]",6.0,"{'num_elements': 23, 'num_sets': 21, 'sets': [{'id': 'S1', 'elements': [0, 6, 7, 13]}, {'id': 'S2', 'elements': [2, 5, 7, 11, 13, 17, 18, 20]}, {'id': 'S3', 'elements': [3, 13]}, {'id': 'S4', 'elements': [0, 7, 8, 13, 19, 21]}, {'id': 'S5', 'elements': [2, 5, 20]}, {'id': 'S6', 'elements': [0, 6, 16]}, {'id': 'S7', 'elements': [2, 4, 7, 8, 13, 14, 17]}, {'id': 'S8', 'elements': [7, 19]}, {'id': 'S9', 'elements': [9, 14, 16, 21]}, {'id': 'S10', 'elements': [1, 2, 10, 11, 13, 18]}, {'id': 'S11', 'elements': [5, 10, 11, 13, 20]}, {'id': 'S12', 'elements': [3, 12, 13, 17]}, {'id': 'S13', 'elements': [4, 7, 10, 11, 12, 13, 17]}, {'id': 'S14', 'elements': [0, 6, 14, 16, 21]}, {'id': 'S15', 'elements': [6, 14, 15, 16, 19, 21]}, {'id': 'S16', 'elements': [2, 7, 12, 13, 17]}, {'id': 'S17', 'elements': [1, 2]}, {'id': 'S18', 'elements': [4, 15, 16, 19, 21, 22]}, {'id': 'S19', 'elements': [2, 5]}, {'id': 'S20', 'elements': [4, 9, 14, 15, 16, 19, 21, 22]}, {'id': 'S21', 'elements': [4, 19, 21, 22]}]}","['S4', 'S10', 'S11', 'S12', 'S14', 'S20']",20,nl,0
SCP,SCP,"I’m putting together a conference and have a stack of vendor packages to choose from—each one covers a few of the services we need like catering, AV, and signage. The job is to pick as few of those packages as possible so every required service shows up in at least one selected bundle; the way to judge a plan is simply by counting how many packages were picked (fewer is better) while making sure nothing important is missing, and avoiding needless overlap where two packages both do the same thing. The concrete package and service details are listed below.
# total_services_required=23
# total_packages_available=23
package_id,services_in_package
S1,2 4 7 11 15 18 20 23
S2,1 2 8 21
S3,5 10 13 14 22
S4,1 4 6 9 12 13 15 16 17
S5,3 14 16
S6,4 5 6 15 16 17 18 19 23
S7,1 7 8 21 23
S8,7 8 20
S9,10 12 14
S10,3 9 10 12 22 23
S11,1 2 7 11 15 20
S12,3 4 9 10 12 13 14 16
S13,5 10 12 13 16
S14,3 5 6 9 12 15 16 23
S15,1 6 11 14 15 17 18
S16,5 6 14 16 17 19
S17,1 4 6 15 16 17 18 19
S18,1 6 11 15 18 20
S19,4 6 17 19
S20,7 8 9 11 15 20 23
S21,2 8 21
S22,3 10 22
S23,1 4 6 10 12 14 15 20 23
If you want to hand back the chosen packages in a neat way, just use this little JSON layout so it's easy for everyone (and whatever script is checking things) to read:
{
""solution"": [""package_id"", ...]
}
Think of ""solution"" as a simple list of the package IDs you pick — one string per package, just the exact labels from the package list. This block is just a sketch of the shape I need, not your final answer: replace ""package_id"" and the ... with the real IDs you select.
Please make sure to use the identifiers exactly as they appear in the instance input — don’t rename them or invent new labels.
- for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 23, 'num_sets': 23, 'density': 0.2551984877126654, 'sets': [{'id': 1, 'elements': [2, 4, 7, 11, 15, 18, 20, 23]}, {'id': 2, 'elements': [1, 2, 8, 21]}, {'id': 3, 'elements': [5, 10, 13, 14, 22]}, {'id': 4, 'elements': [1, 4, 6, 9, 12, 13, 15, 16, 17]}, {'id': 5, 'elements': [3, 14, 16]}, {'id': 6, 'elements': [4, 5, 6, 15, 16, 17, 18, 19, 23]}, {'id': 7, 'elements': [1, 7, 8, 21, 23]}, {'id': 8, 'elements': [7, 8, 20]}, {'id': 9, 'elements': [10, 12, 14]}, {'id': 10, 'elements': [3, 9, 10, 12, 22, 23]}, {'id': 11, 'elements': [1, 2, 7, 11, 15, 20]}, {'id': 12, 'elements': [3, 4, 9, 10, 12, 13, 14, 16]}, {'id': 13, 'elements': [5, 10, 12, 13, 16]}, {'id': 14, 'elements': [3, 5, 6, 9, 12, 15, 16, 23]}, {'id': 15, 'elements': [1, 6, 11, 14, 15, 17, 18]}, {'id': 16, 'elements': [5, 6, 14, 16, 17, 19]}, {'id': 17, 'elements': [1, 4, 6, 15, 16, 17, 18, 19]}, {'id': 18, 'elements': [1, 6, 11, 15, 18, 20]}, {'id': 19, 'elements': [4, 6, 17, 19]}, {'id': 20, 'elements': [7, 8, 9, 11, 15, 20, 23]}, {'id': 21, 'elements': [2, 8, 21]}, {'id': 22, 'elements': [3, 10, 22]}, {'id': 23, 'elements': [1, 4, 6, 10, 12, 14, 15, 20, 23]}], 'graph': {'num_nodes': 23, 'edges': [{'u': 2, 'v': 7}, {'u': 2, 'v': 11}, {'u': 3, 'v': 10}, {'u': 3, 'v': 12}, {'u': 3, 'v': 13}, {'u': 19, 'v': 6}, {'u': 5, 'v': 13}, {'u': 5, 'v': 16}, {'u': 6, 'v': 4}, {'u': 6, 'v': 16}, {'u': 6, 'v': 17}, {'u': 7, 'v': 8}, {'u': 7, 'v': 20}, {'u': 7, 'v': 21}, {'u': 22, 'v': 10}, {'u': 23, 'v': 4}, {'u': 23, 'v': 9}, {'u': 23, 'v': 20}, {'u': 9, 'v': 10}, {'u': 9, 'v': 12}, {'u': 13, 'v': 14}, {'u': 14, 'v': 4}, {'u': 14, 'v': 12}, {'u': 14, 'v': 16}, {'u': 15, 'v': 1}, {'u': 15, 'v': 4}, {'u': 15, 'v': 17}, {'u': 11, 'v': 1}, {'u': 17, 'v': 18}, {'u': 18, 'v': 1}, {'u': 20, 'v': 1}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0020.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0020.png'}","[1, 2, 3, 10, 16]",5.0,"{'num_elements': 23, 'num_sets': 23, 'sets': [{'id': 'S1', 'elements': [2, 4, 7, 11, 15, 18, 20, 23]}, {'id': 'S2', 'elements': [1, 2, 8, 21]}, {'id': 'S3', 'elements': [5, 10, 13, 14, 22]}, {'id': 'S4', 'elements': [1, 4, 6, 9, 12, 13, 15, 16, 17]}, {'id': 'S5', 'elements': [3, 14, 16]}, {'id': 'S6', 'elements': [4, 5, 6, 15, 16, 17, 18, 19, 23]}, {'id': 'S7', 'elements': [1, 7, 8, 21, 23]}, {'id': 'S8', 'elements': [7, 8, 20]}, {'id': 'S9', 'elements': [10, 12, 14]}, {'id': 'S10', 'elements': [3, 9, 10, 12, 22, 23]}, {'id': 'S11', 'elements': [1, 2, 7, 11, 15, 20]}, {'id': 'S12', 'elements': [3, 4, 9, 10, 12, 13, 14, 16]}, {'id': 'S13', 'elements': [5, 10, 12, 13, 16]}, {'id': 'S14', 'elements': [3, 5, 6, 9, 12, 15, 16, 23]}, {'id': 'S15', 'elements': [1, 6, 11, 14, 15, 17, 18]}, {'id': 'S16', 'elements': [5, 6, 14, 16, 17, 19]}, {'id': 'S17', 'elements': [1, 4, 6, 15, 16, 17, 18, 19]}, {'id': 'S18', 'elements': [1, 6, 11, 15, 18, 20]}, {'id': 'S19', 'elements': [4, 6, 17, 19]}, {'id': 'S20', 'elements': [7, 8, 9, 11, 15, 20, 23]}, {'id': 'S21', 'elements': [2, 8, 21]}, {'id': 'S22', 'elements': [3, 10, 22]}, {'id': 'S23', 'elements': [1, 4, 6, 10, 12, 14, 15, 20, 23]}]}","['S1', 'S2', 'S3', 'S10', 'S16']",21,csv,1
SCP,SCP,"Many people would just grab every toolkit and hope for the best, but here the plan is smarter: pick the least number of kits such that for each repair there’s at least one selected kit with the necessary tools. That means making sure no chore is overlooked and avoiding redundant kit choices, and you judge options by counting the kits — the lower the count that still covers all chores, the better. The exact jobs and what’s in each kit are shown below.
# total_repair_tasks=19
# total_available_toolkits=17
toolkit_id,handled_tasks
S1,0 9 11
S2,1 3 15 18
S3,4 7 14
S4,1 2 11
S5,2 4 18
S6,5 9 11
S7,7 8 10 16 17
S8,2 3 6 7 10 11 16 18
S9,6 10 13 17
S10,0 5 11 18
S11,6 7 8 10 12 13 16 18
S12,0 2 3 5 9 11 18
S13,12 16
S14,8 13 17
S15,7 10
S16,13 16 17
S17,0 1 3 7 9 10 11
Also, if you want the answer in a tidy, machine-friendly shape, just hand it back like this:
{
""solution"": [""kit_id"", ...]
}
This just means: ""solution"" is the list of chosen kits, and each item in the array is a placeholder for a kit identifier from the instance (replace the placeholder with the actual IDs when you reply). The JSON above is only a sketch of the expected shape — not the final selection.
Please use the exact identifiers from the instance input — do not rename them or introduce new labels.
- for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 19, 'num_sets': 17, 'density': 0.22291021671826625, 'sets': [{'id': 1, 'elements': [1, 10, 12]}, {'id': 2, 'elements': [2, 4, 16, 19]}, {'id': 3, 'elements': [5, 8, 15]}, {'id': 4, 'elements': [2, 3, 12]}, {'id': 5, 'elements': [3, 5, 19]}, {'id': 6, 'elements': [6, 10, 12]}, {'id': 7, 'elements': [8, 9, 11, 17, 18]}, {'id': 8, 'elements': [3, 4, 7, 8, 11, 12, 17, 19]}, {'id': 9, 'elements': [7, 11, 14, 18]}, {'id': 10, 'elements': [1, 6, 12, 19]}, {'id': 11, 'elements': [7, 8, 9, 11, 13, 14, 17, 19]}, {'id': 12, 'elements': [1, 3, 4, 6, 10, 12, 19]}, {'id': 13, 'elements': [13, 17]}, {'id': 14, 'elements': [9, 14, 18]}, {'id': 15, 'elements': [8, 11]}, {'id': 16, 'elements': [14, 17, 18]}, {'id': 17, 'elements': [1, 2, 4, 8, 10, 11, 12]}], 'graph': {'num_nodes': 19, 'edges': [{'u': 2, 'v': 4}, {'u': 2, 'v': 16}, {'u': 10, 'v': 6}, {'u': 10, 'v': 12}, {'u': 13, 'v': 17}, {'u': 14, 'v': 17}, {'u': 14, 'v': 18}, {'u': 17, 'v': 11}, {'u': 18, 'v': 9}, {'u': 19, 'v': 3}, {'u': 19, 'v': 4}, {'u': 19, 'v': 8}, {'u': 19, 'v': 12}, {'u': 5, 'v': 3}, {'u': 5, 'v': 15}, {'u': 9, 'v': 7}, {'u': 11, 'v': 7}, {'u': 11, 'v': 8}, {'u': 12, 'v': 1}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0021.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0021.png'}","[2, 3, 11, 12, 16]",5.0,"{'num_elements': 19, 'num_sets': 17, 'sets': [{'id': 'S1', 'elements': [0, 9, 11]}, {'id': 'S2', 'elements': [1, 3, 15, 18]}, {'id': 'S3', 'elements': [4, 7, 14]}, {'id': 'S4', 'elements': [1, 2, 11]}, {'id': 'S5', 'elements': [2, 4, 18]}, {'id': 'S6', 'elements': [5, 9, 11]}, {'id': 'S7', 'elements': [7, 8, 10, 16, 17]}, {'id': 'S8', 'elements': [2, 3, 6, 7, 10, 11, 16, 18]}, {'id': 'S9', 'elements': [6, 10, 13, 17]}, {'id': 'S10', 'elements': [0, 5, 11, 18]}, {'id': 'S11', 'elements': [6, 7, 8, 10, 12, 13, 16, 18]}, {'id': 'S12', 'elements': [0, 2, 3, 5, 9, 11, 18]}, {'id': 'S13', 'elements': [12, 16]}, {'id': 'S14', 'elements': [8, 13, 17]}, {'id': 'S15', 'elements': [7, 10]}, {'id': 'S16', 'elements': [13, 16, 17]}, {'id': 'S17', 'elements': [0, 1, 3, 7, 9, 10, 11]}]}","['S2', 'S3', 'S11', 'S12', 'S16']",22,csv,0
SCP,SCP,"Many people imagine ordering ingredients one-by-one, but here the chef has to work with pre-packed bundles and decide which ones to use so every menu item’s ingredients are available. Better choices cover all required ingredients while using the least number of bundles possible. To compare choices, just count the number of bundles included in each plan — fewer is better. Every ingredient must appear in at least one selected bundle, and selecting the same bundle twice is redundant. The concrete bundle details follow below.
There are 20 distinct ingredients to cover and 17 available bundles:
Bundle S1 supplies the ingredients: F H L.
Bundle S2 supplies the ingredients: B D J O.
Bundle S3 supplies the ingredients: C H Q.
Bundle S4 supplies the ingredients: G H I K O Q R.
Bundle S5 supplies the ingredients: E G K L P R S.
Bundle S6 supplies the ingredients: A C E H L Q.
Bundle S7 supplies the ingredients: D I N.
Bundle S8 supplies the ingredients: E J O.
Bundle S9 supplies the ingredients: G J.
Bundle S10 supplies the ingredients: A E F Q R.
Bundle S11 supplies the ingredients: B D I M N.
Bundle S12 supplies the ingredients: E I M N O R.
Bundle S13 supplies the ingredients: E O Q R S T.
Bundle S14 supplies the ingredients: G P R S.
Bundle S15 supplies the ingredients: A F H L O Q.
Bundle S16 supplies the ingredients: A E F G L P Q R S.
Bundle S17 supplies the ingredients: K O P R S.
Pick bundles so all 20 ingredients are covered while using as few of the 17 bundles as possible.
Oh, and when you send your pick, please follow this little JSON shape so it's easy to check:
{
""solution"": [""set_id"", ...]
}
""solution"" should be a list of the bundle IDs you want to use — one ID per chosen bundle. Think of it like filling in a short form: put each bundle identifier from the instance inside that array. This block is just a sketch of the expected shape, not the actual answer.
Please use the identifiers exactly as they appear in the instance input — no renaming and no new labels. Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 20, 'num_sets': 17, 'density': 0.24705882352941178, 'sets': [{'id': 1, 'elements': [6, 8, 12]}, {'id': 2, 'elements': [2, 4, 10, 15]}, {'id': 3, 'elements': [3, 8, 17]}, {'id': 4, 'elements': [7, 8, 9, 11, 15, 17, 18]}, {'id': 5, 'elements': [5, 7, 11, 12, 16, 18, 19]}, {'id': 6, 'elements': [1, 3, 5, 8, 12, 17]}, {'id': 7, 'elements': [4, 9, 14]}, {'id': 8, 'elements': [5, 10, 15]}, {'id': 9, 'elements': [7, 10]}, {'id': 10, 'elements': [1, 5, 6, 17, 18]}, {'id': 11, 'elements': [2, 4, 9, 13, 14]}, {'id': 12, 'elements': [5, 9, 13, 14, 15, 18]}, {'id': 13, 'elements': [5, 15, 17, 18, 19, 20]}, {'id': 14, 'elements': [7, 16, 18, 19]}, {'id': 15, 'elements': [1, 6, 8, 12, 15, 17]}, {'id': 16, 'elements': [1, 5, 6, 7, 12, 16, 17, 18, 19]}, {'id': 17, 'elements': [11, 15, 16, 18, 19]}], 'graph': {'num_nodes': 20, 'edges': [{'u': 16, 'v': 7}, {'u': 10, 'v': 2}, {'u': 10, 'v': 15}, {'u': 11, 'v': 15}, {'u': 11, 'v': 19}, {'u': 11, 'v': 20}, {'u': 14, 'v': 5}, {'u': 14, 'v': 9}, {'u': 5, 'v': 15}, {'u': 5, 'v': 17}, {'u': 5, 'v': 18}, {'u': 2, 'v': 4}, {'u': 1, 'v': 8}, {'u': 1, 'v': 12}, {'u': 7, 'v': 18}, {'u': 7, 'v': 19}, {'u': 6, 'v': 12}, {'u': 3, 'v': 8}, {'u': 12, 'v': 17}, {'u': 12, 'v': 18}, {'u': 8, 'v': 17}, {'u': 13, 'v': 4}, {'u': 13, 'v': 9}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0022.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0022.png'}","[5, 6, 9, 11, 13, 16]",6.0,"{'num_elements': 20, 'num_sets': 17, 'sets': [{'id': 'S1', 'elements': ['F', 'H', 'L']}, {'id': 'S2', 'elements': ['B', 'D', 'J', 'O']}, {'id': 'S3', 'elements': ['C', 'H', 'Q']}, {'id': 'S4', 'elements': ['G', 'H', 'I', 'K', 'O', 'Q', 'R']}, {'id': 'S5', 'elements': ['E', 'G', 'K', 'L', 'P', 'R', 'S']}, {'id': 'S6', 'elements': ['A', 'C', 'E', 'H', 'L', 'Q']}, {'id': 'S7', 'elements': ['D', 'I', 'N']}, {'id': 'S8', 'elements': ['E', 'J', 'O']}, {'id': 'S9', 'elements': ['G', 'J']}, {'id': 'S10', 'elements': ['A', 'E', 'F', 'Q', 'R']}, {'id': 'S11', 'elements': ['B', 'D', 'I', 'M', 'N']}, {'id': 'S12', 'elements': ['E', 'I', 'M', 'N', 'O', 'R']}, {'id': 'S13', 'elements': ['E', 'O', 'Q', 'R', 'S', 'T']}, {'id': 'S14', 'elements': ['G', 'P', 'R', 'S']}, {'id': 'S15', 'elements': ['A', 'F', 'H', 'L', 'O', 'Q']}, {'id': 'S16', 'elements': ['A', 'E', 'F', 'G', 'L', 'P', 'Q', 'R', 'S']}, {'id': 'S17', 'elements': ['K', 'O', 'P', 'R', 'S']}]}","['S5', 'S6', 'S9', 'S11', 'S13', 'S16']",23,nl,names
SCP,SCP,"At the library, the plan is to assemble a few themed boxes to represent all the subjects in the reading program, and the aim is to do that with as few boxes as possible. The question is which boxes to choose; evaluate each option by how many boxes are selected — the ideal choice uses the smallest number while still including every subject at least once. Nothing can be left unrepresented, and unnecessary duplicate coverage is to be avoided. The specific box contents appear below.
- **total_subjects**: 24
- **total_boxes_available**: 22
| box_id | subjects_covered |
|---|---|
| S1 | 3 6 7 9 11 19 22 |
| S2 | 1 3 4 13 |
| S3 | 2 4 8 13 17 21 |
| S4 | 0 3 4 8 9 11 13 17 22 |
| S5 | 1 3 11 13 17 |
| S6 | 10 15 18 21 23 |
| S7 | 0 6 7 9 11 |
| S8 | 0 6 7 9 11 14 |
| S9 | 2 3 8 12 13 21 22 |
| S10 | 0 3 6 7 9 11 14 22 |
| S11 | 10 23 |
| S12 | 0 3 4 6 7 9 11 17 18 19 22 |
| S13 | 1 2 4 8 13 |
| S14 | 7 14 20 |
| S15 | 5 12 21 |
| S16 | 0 16 19 |
| S17 | 2 3 4 11 18 21 22 |
| S18 | 17 22 23 |
| S19 | 9 11 |
| S20 | 7 9 |
| S21 | 2 5 8 15 17 21 |
| S22 | 0 3 8 9 11 17 18 22 |
Oh, and when you reply with your pick of boxes, toss it into a little JSON snippet like this so it's tidy and easy to check:
{
""solution"": [""box_id"", ...]
}
This just means ""solution"" should be a list of the themed box identifiers you choose. The ""box_id"" bit is just a placeholder showing the format — replace each placeholder with the actual box identifier from the instance. Think of it like filling out a short form: the key ""solution"" holds the chosen box labels.
This JSON is only a sketch of the expected shape, not the actual answer — you'll fill in the real identifiers from the instance.
Make sure all identifiers are used exactly as they appear in the instance input — no renaming and no new labels. Valid identifiers look like:
- plain numbers such as “1” or “23”
- single capital letters like “A” or “B”
- a capital letter followed by digits like “A1” or “X7”","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 24, 'num_sets': 22, 'density': 0.2215909090909091, 'sets': [{'id': 1, 'elements': [4, 7, 8, 10, 12, 20, 23]}, {'id': 2, 'elements': [2, 4, 5, 14]}, {'id': 3, 'elements': [3, 5, 9, 14, 18, 22]}, {'id': 4, 'elements': [1, 4, 5, 9, 10, 12, 14, 18, 23]}, {'id': 5, 'elements': [2, 4, 12, 14, 18]}, {'id': 6, 'elements': [11, 16, 19, 22, 24]}, {'id': 7, 'elements': [1, 7, 8, 10, 12]}, {'id': 8, 'elements': [1, 7, 8, 10, 12, 15]}, {'id': 9, 'elements': [3, 4, 9, 13, 14, 22, 23]}, {'id': 10, 'elements': [1, 4, 7, 8, 10, 12, 15, 23]}, {'id': 11, 'elements': [11, 24]}, {'id': 12, 'elements': [1, 4, 5, 7, 8, 10, 12, 18, 19, 20, 23]}, {'id': 13, 'elements': [2, 3, 5, 9, 14]}, {'id': 14, 'elements': [8, 15, 21]}, {'id': 15, 'elements': [6, 13, 22]}, {'id': 16, 'elements': [1, 17, 20]}, {'id': 17, 'elements': [3, 4, 5, 12, 19, 22, 23]}, {'id': 18, 'elements': [18, 23, 24]}, {'id': 19, 'elements': [10, 12]}, {'id': 20, 'elements': [8, 10]}, {'id': 21, 'elements': [3, 6, 9, 16, 18, 22]}, {'id': 22, 'elements': [1, 4, 9, 10, 12, 18, 19, 23]}], 'graph': {'num_nodes': 24, 'edges': [{'u': 17, 'v': 20}, {'u': 21, 'v': 8}, {'u': 13, 'v': 22}, {'u': 14, 'v': 3}, {'u': 14, 'v': 5}, {'u': 24, 'v': 6}, {'u': 24, 'v': 19}, {'u': 16, 'v': 6}, {'u': 16, 'v': 22}, {'u': 10, 'v': 1}, {'u': 10, 'v': 7}, {'u': 10, 'v': 8}, {'u': 10, 'v': 12}, {'u': 11, 'v': 6}, {'u': 3, 'v': 9}, {'u': 23, 'v': 12}, {'u': 23, 'v': 18}, {'u': 23, 'v': 19}, {'u': 15, 'v': 8}, {'u': 1, 'v': 12}, {'u': 1, 'v': 20}, {'u': 4, 'v': 5}, {'u': 4, 'v': 12}, {'u': 4, 'v': 18}, {'u': 5, 'v': 2}, {'u': 18, 'v': 9}, {'u': 9, 'v': 22}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0023.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0023.png'}","[6, 12, 13, 14, 15, 16]",6.0,"{'num_elements': 24, 'num_sets': 22, 'sets': [{'id': 'S1', 'elements': [3, 6, 7, 9, 11, 19, 22]}, {'id': 'S2', 'elements': [1, 3, 4, 13]}, {'id': 'S3', 'elements': [2, 4, 8, 13, 17, 21]}, {'id': 'S4', 'elements': [0, 3, 4, 8, 9, 11, 13, 17, 22]}, {'id': 'S5', 'elements': [1, 3, 11, 13, 17]}, {'id': 'S6', 'elements': [10, 15, 18, 21, 23]}, {'id': 'S7', 'elements': [0, 6, 7, 9, 11]}, {'id': 'S8', 'elements': [0, 6, 7, 9, 11, 14]}, {'id': 'S9', 'elements': [2, 3, 8, 12, 13, 21, 22]}, {'id': 'S10', 'elements': [0, 3, 6, 7, 9, 11, 14, 22]}, {'id': 'S11', 'elements': [10, 23]}, {'id': 'S12', 'elements': [0, 3, 4, 6, 7, 9, 11, 17, 18, 19, 22]}, {'id': 'S13', 'elements': [1, 2, 4, 8, 13]}, {'id': 'S14', 'elements': [7, 14, 20]}, {'id': 'S15', 'elements': [5, 12, 21]}, {'id': 'S16', 'elements': [0, 16, 19]}, {'id': 'S17', 'elements': [2, 3, 4, 11, 18, 21, 22]}, {'id': 'S18', 'elements': [17, 22, 23]}, {'id': 'S19', 'elements': [9, 11]}, {'id': 'S20', 'elements': [7, 9]}, {'id': 'S21', 'elements': [2, 5, 8, 15, 17, 21]}, {'id': 'S22', 'elements': [0, 3, 8, 9, 11, 17, 18, 22]}]}","['S6', 'S12', 'S13', 'S14', 'S15', 'S16']",24,markdown_table,0
SCP,SCP,"There’s a backlog of features and a stack of candidate libraries on the table; the role here is to assemble a compact toolkit. The rule is simple: make sure each required feature is handled by at least one library, and try to keep the toolkit minimal — the way to check this is to count the libraries you included (lower counts are better). Nothing from the must-have list can be skipped, and picking libraries that duplicate the same features doesn’t give any extra credit. Concrete details follow below.
{
""num_required_features"": 24,
""num_candidate_libraries"": 22,
""sets"": [
{
""library_id"": ""S1"",
""features_provided"": [
1,
19
]
},
{
""library_id"": ""S2"",
""features_provided"": [
2,
3
]
},
{
""library_id"": ""S3"",
""features_provided"": [
2,
3,
4,
6
]
},
{
""library_id"": ""S4"",
""features_provided"": [
2,
3,
6,
17,
20
]
},
{
""library_id"": ""S5"",
""features_provided"": [
3,
4,
5,
20
]
},
{
""library_id"": ""S6"",
""features_provided"": [
3,
4,
5,
6,
15,
17
]
},
{
""library_id"": ""S7"",
""features_provided"": [
7,
14,
15,
17,
21,
22
]
},
{
""library_id"": ""S8"",
""features_provided"": [
8,
16,
23
]
},
{
""library_id"": ""S9"",
""features_provided"": [
11,
16,
21,
23
]
},
{
""library_id"": ""S10"",
""features_provided"": [
10,
11,
12,
16,
23,
24
]
},
{
""library_id"": ""S11"",
""features_provided"": [
11,
12,
16,
24
]
},
{
""library_id"": ""S12"",
""features_provided"": [
1,
6,
13,
15,
18,
19
]
},
{
""library_id"": ""S13"",
""features_provided"": [
7,
17,
19
]
},
{
""library_id"": ""S14"",
""features_provided"": [
6,
7,
13,
14,
15,
22
]
},
{
""library_id"": ""S15"",
""features_provided"": [
8,
9,
11,
12,
16,
23,
24
]
},
{
""library_id"": ""S16"",
""features_provided"": [
4,
14,
15,
19
]
},
{
""library_id"": ""S17"",
""features_provided"": [
1,
13,
18,
19
]
},
{
""library_id"": ""S18"",
""features_provided"": [
1,
14,
17
]
},
{
""library_id"": ""S19"",
""features_provided"": [
4,
5,
20
]
},
{
""library_id"": ""S20"",
""features_provided"": [
7,
9,
21,
22
]
},
{
""library_id"": ""S21"",
""features_provided"": [
7,
10,
15,
21,
22
]
},
{
""library_id"": ""S22"",
""features_provided"": [
8,
10,
16,
23
]
}
]
}
Oh, and one more practical thing — when you reply, please follow a tiny output shape so I can parse it easily. Something like this will do:
{
""solution"": [""lib_id"", ...]
}
This is just a sketch of the shape I expect: ""solution"" holds the list of libraries you picked (each entry should be the exact identifier from the instance). Think of it like a simple form: put the chosen library IDs in that array, and you’re done — don’t worry about extra fields or explainers in the JSON itself.
Quick reminder: use the identifiers exactly as they appear in the instance input — no renaming and no inventing new labels.
- for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 24, 'num_sets': 22, 'density': 0.17992424242424243, 'sets': [{'id': 1, 'elements': [1, 19]}, {'id': 2, 'elements': [2, 3]}, {'id': 3, 'elements': [2, 3, 4, 6]}, {'id': 4, 'elements': [2, 3, 6, 17, 20]}, {'id': 5, 'elements': [3, 4, 5, 20]}, {'id': 6, 'elements': [3, 4, 5, 6, 15, 17]}, {'id': 7, 'elements': [7, 14, 15, 17, 21, 22]}, {'id': 8, 'elements': [8, 16, 23]}, {'id': 9, 'elements': [11, 16, 21, 23]}, {'id': 10, 'elements': [10, 11, 12, 16, 23, 24]}, {'id': 11, 'elements': [11, 12, 16, 24]}, {'id': 12, 'elements': [1, 6, 13, 15, 18, 19]}, {'id': 13, 'elements': [7, 17, 19]}, {'id': 14, 'elements': [6, 7, 13, 14, 15, 22]}, {'id': 15, 'elements': [8, 9, 11, 12, 16, 23, 24]}, {'id': 16, 'elements': [4, 14, 15, 19]}, {'id': 17, 'elements': [1, 13, 18, 19]}, {'id': 18, 'elements': [1, 14, 17]}, {'id': 19, 'elements': [4, 5, 20]}, {'id': 20, 'elements': [7, 9, 21, 22]}, {'id': 21, 'elements': [7, 10, 15, 21, 22]}, {'id': 22, 'elements': [8, 10, 16, 23]}], 'graph': {'num_nodes': 24, 'edges': [{'u': 17, 'v': 6}, {'u': 17, 'v': 13}, {'u': 17, 'v': 15}, {'u': 18, 'v': 19}, {'u': 19, 'v': 1}, {'u': 19, 'v': 13}, {'u': 8, 'v': 23}, {'u': 13, 'v': 14}, {'u': 14, 'v': 15}, {'u': 15, 'v': 7}, {'u': 16, 'v': 10}, {'u': 16, 'v': 11}, {'u': 16, 'v': 23}, {'u': 20, 'v': 5}, {'u': 10, 'v': 9}, {'u': 10, 'v': 21}, {'u': 11, 'v': 12}, {'u': 11, 'v': 24}, {'u': 2, 'v': 3}, {'u': 3, 'v': 4}, {'u': 5, 'v': 4}, {'u': 4, 'v': 6}, {'u': 21, 'v': 22}, {'u': 22, 'v': 7}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0024.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0024.png'}","[4, 6, 7, 10, 12, 15]",6.0,"{'num_elements': 24, 'num_sets': 22, 'sets': [{'id': 'S1', 'elements': [1, 19]}, {'id': 'S2', 'elements': [2, 3]}, {'id': 'S3', 'elements': [2, 3, 4, 6]}, {'id': 'S4', 'elements': [2, 3, 6, 17, 20]}, {'id': 'S5', 'elements': [3, 4, 5, 20]}, {'id': 'S6', 'elements': [3, 4, 5, 6, 15, 17]}, {'id': 'S7', 'elements': [7, 14, 15, 17, 21, 22]}, {'id': 'S8', 'elements': [8, 16, 23]}, {'id': 'S9', 'elements': [11, 16, 21, 23]}, {'id': 'S10', 'elements': [10, 11, 12, 16, 23, 24]}, {'id': 'S11', 'elements': [11, 12, 16, 24]}, {'id': 'S12', 'elements': [1, 6, 13, 15, 18, 19]}, {'id': 'S13', 'elements': [7, 17, 19]}, {'id': 'S14', 'elements': [6, 7, 13, 14, 15, 22]}, {'id': 'S15', 'elements': [8, 9, 11, 12, 16, 23, 24]}, {'id': 'S16', 'elements': [4, 14, 15, 19]}, {'id': 'S17', 'elements': [1, 13, 18, 19]}, {'id': 'S18', 'elements': [1, 14, 17]}, {'id': 'S19', 'elements': [4, 5, 20]}, {'id': 'S20', 'elements': [7, 9, 21, 22]}, {'id': 'S21', 'elements': [7, 10, 15, 21, 22]}, {'id': 'S22', 'elements': [8, 10, 16, 23]}]}","['S4', 'S6', 'S7', 'S10', 'S12', 'S15']",25,json,1
SCP,SCP,"Many people on the team want a tight, focused exhibit, so the task became: choose a small number of display modules so that every required historical theme is represented at least once. Here’s the setup: there’s a catalog of modules, each touching several themes, and the choice is which modules to pick so the entire theme list is covered. A cleaner solution uses fewer modules — just tally the chosen modules to see how compact the plan is. It’s essential that no theme is left out; duplicate coverage is allowed but makes the plan less compact. The specific modules and themes are listed below.
{
""num_themes"": 24,
""num_modules"": 23,
""sets"": [
{
""module_id"": ""S1"",
""themes"": [
""A"",
""B"",
""E"",
""X""
]
},
{
""module_id"": ""S2"",
""themes"": [
""B"",
""C"",
""D"",
""E"",
""N"",
""X""
]
},
{
""module_id"": ""S3"",
""themes"": [
""A"",
""B"",
""C"",
""N"",
""O"",
""Q""
]
},
{
""module_id"": ""S4"",
""themes"": [
""B"",
""D"",
""L"",
""M"",
""W"",
""X""
]
},
{
""module_id"": ""S5"",
""themes"": [
""B"",
""C"",
""D"",
""W""
]
},
{
""module_id"": ""S6"",
""themes"": [
""F"",
""I"",
""J"",
""K"",
""T"",
""V""
]
},
{
""module_id"": ""S7"",
""themes"": [
""F"",
""G"",
""V""
]
},
{
""module_id"": ""S8"",
""themes"": [
""F"",
""P"",
""S""
]
},
{
""module_id"": ""S9"",
""themes"": [
""G"",
""I"",
""J"",
""O"",
""S"",
""V""
]
},
{
""module_id"": ""S10"",
""themes"": [
""F"",
""I"",
""N"",
""O""
]
},
{
""module_id"": ""S11"",
""themes"": [
""H"",
""K"",
""S""
]
},
{
""module_id"": ""S12"",
""themes"": [
""D"",
""L"",
""M""
]
},
{
""module_id"": ""S13"",
""themes"": [
""D"",
""E"",
""L"",
""X""
]
},
{
""module_id"": ""S14"",
""themes"": [
""B"",
""J"",
""N"",
""O"",
""Q"",
""R""
]
},
{
""module_id"": ""S15"",
""themes"": [
""I"",
""J"",
""O""
]
},
{
""module_id"": ""S16"",
""themes"": [
""H"",
""P""
]
},
{
""module_id"": ""S17"",
""themes"": [
""N"",
""Q"",
""R""
]
},
{
""module_id"": ""S18"",
""themes"": [
""G"",
""H"",
""I"",
""K"",
""P"",
""V""
]
},
{
""module_id"": ""S19"",
""themes"": [
""F"",
""U"",
""V""
]
},
{
""module_id"": ""S20"",
""themes"": [
""F"",
""U""
]
},
{
""module_id"": ""S21"",
""themes"": [
""F"",
""I"",
""S"",
""U"",
""V""
]
},
{
""module_id"": ""S22"",
""themes"": [
""B"",
""W"",
""X""
]
},
{
""module_id"": ""S23"",
""themes"": [
""B"",
""D"",
""E"",
""M"",
""X""
]
}
]
}
Also, when you send the actual selection back, tuck it into this simple JSON shape so it's easy to read and parse:
{
""solution"": [""module_id"", ...]
}
Think of it like a little form: ""solution"" is the list of chosen display modules, and each ""module_id"" is a placeholder for one module from the catalog (one entry per chosen module). This block is just a sketch of the shape I expect, not the final answer itself.
Please make sure to use the identifiers exactly as they appear in the instance input — no renaming and no new labels.
- for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""
Thanks — drop the list in that format when you're ready and I'll check the coverage.","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 24, 'num_sets': 23, 'density': 0.17391304347826086, 'sets': [{'id': 1, 'elements': [1, 2, 5, 24]}, {'id': 2, 'elements': [2, 3, 4, 5, 14, 24]}, {'id': 3, 'elements': [1, 2, 3, 14, 15, 17]}, {'id': 4, 'elements': [2, 4, 12, 13, 23, 24]}, {'id': 5, 'elements': [2, 3, 4, 23]}, {'id': 6, 'elements': [6, 9, 10, 11, 20, 22]}, {'id': 7, 'elements': [6, 7, 22]}, {'id': 8, 'elements': [6, 16, 19]}, {'id': 9, 'elements': [7, 9, 10, 15, 19, 22]}, {'id': 10, 'elements': [6, 9, 14, 15]}, {'id': 11, 'elements': [8, 11, 19]}, {'id': 12, 'elements': [4, 12, 13]}, {'id': 13, 'elements': [4, 5, 12, 24]}, {'id': 14, 'elements': [2, 10, 14, 15, 17, 18]}, {'id': 15, 'elements': [9, 10, 15]}, {'id': 16, 'elements': [8, 16]}, {'id': 17, 'elements': [14, 17, 18]}, {'id': 18, 'elements': [7, 8, 9, 11, 16, 22]}, {'id': 19, 'elements': [6, 21, 22]}, {'id': 20, 'elements': [6, 21]}, {'id': 21, 'elements': [6, 9, 19, 21, 22]}, {'id': 22, 'elements': [2, 23, 24]}, {'id': 23, 'elements': [2, 4, 5, 13, 24]}], 'graph': {'num_nodes': 24, 'edges': [{'u': 11, 'v': 19}, {'u': 14, 'v': 3}, {'u': 14, 'v': 15}, {'u': 14, 'v': 17}, {'u': 15, 'v': 10}, {'u': 6, 'v': 7}, {'u': 6, 'v': 9}, {'u': 6, 'v': 19}, {'u': 6, 'v': 22}, {'u': 17, 'v': 18}, {'u': 16, 'v': 8}, {'u': 9, 'v': 10}, {'u': 19, 'v': 8}, {'u': 22, 'v': 20}, {'u': 22, 'v': 21}, {'u': 12, 'v': 13}, {'u': 13, 'v': 4}, {'u': 2, 'v': 1}, {'u': 2, 'v': 3}, {'u': 2, 'v': 5}, {'u': 4, 'v': 5}, {'u': 4, 'v': 24}, {'u': 5, 'v': 24}, {'u': 23, 'v': 1}, {'u': 23, 'v': 24}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0025.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0025.png'}","[1, 2, 4, 6, 14, 18, 21]",7.0,"{'num_elements': 24, 'num_sets': 23, 'sets': [{'id': 'S1', 'elements': ['A', 'B', 'E', 'X']}, {'id': 'S2', 'elements': ['B', 'C', 'D', 'E', 'N', 'X']}, {'id': 'S3', 'elements': ['A', 'B', 'C', 'N', 'O', 'Q']}, {'id': 'S4', 'elements': ['B', 'D', 'L', 'M', 'W', 'X']}, {'id': 'S5', 'elements': ['B', 'C', 'D', 'W']}, {'id': 'S6', 'elements': ['F', 'I', 'J', 'K', 'T', 'V']}, {'id': 'S7', 'elements': ['F', 'G', 'V']}, {'id': 'S8', 'elements': ['F', 'P', 'S']}, {'id': 'S9', 'elements': ['G', 'I', 'J', 'O', 'S', 'V']}, {'id': 'S10', 'elements': ['F', 'I', 'N', 'O']}, {'id': 'S11', 'elements': ['H', 'K', 'S']}, {'id': 'S12', 'elements': ['D', 'L', 'M']}, {'id': 'S13', 'elements': ['D', 'E', 'L', 'X']}, {'id': 'S14', 'elements': ['B', 'J', 'N', 'O', 'Q', 'R']}, {'id': 'S15', 'elements': ['I', 'J', 'O']}, {'id': 'S16', 'elements': ['H', 'P']}, {'id': 'S17', 'elements': ['N', 'Q', 'R']}, {'id': 'S18', 'elements': ['G', 'H', 'I', 'K', 'P', 'V']}, {'id': 'S19', 'elements': ['F', 'U', 'V']}, {'id': 'S20', 'elements': ['F', 'U']}, {'id': 'S21', 'elements': ['F', 'I', 'S', 'U', 'V']}, {'id': 'S22', 'elements': ['B', 'W', 'X']}, {'id': 'S23', 'elements': ['B', 'D', 'E', 'M', 'X']}]}","['S1', 'S2', 'S4', 'S6', 'S14', 'S18', 'S21']",26,json,names
SCP,SCP,"There’s a storm aftermath with limited transport, and each crate on the truck contains different combinations of emergency supplies. The task is to pick the minimum number of crates that together include every essential thing the people need; choices that cover everything while using fewer crates are preferable. The score for any selection is simply how many crates were taken, and nothing essential can be left out (having the same item in multiple crates is allowed but wastes capacity). The concrete crate contents and the list of needs follow below.
There are 23 distinct essential needs to cover and 23 crates available on the truck.
Crate S1 contains 0 7 9 20.
Crate S2 contains 0 1 7 9 12 20.
Crate S3 contains 2 4 6 8 14 18.
Crate S4 contains 3 10 19.
Crate S5 contains 2 3 4 10 14 18 19.
Crate S6 contains 5 8 11 21 22.
Crate S7 contains 2 6 18.
Crate S8 contains 0 1 11.
Crate S9 contains 5 7 11 15 16 22.
Crate S10 contains 1 9.
Crate S11 contains 3 4 10.
Crate S12 contains 1 7 8 12 16.
Crate S13 contains 7 11 12.
Crate S14 contains 5 13 21.
Crate S15 contains 2 4 18.
Crate S16 contains 2 8 22.
Crate S17 contains 16 22.
Crate S18 contains 1 17.
Crate S19 contains 2 4 18 19 22.
Crate S20 contains 3 4 18 19.
Crate S21 contains 0 1 7 20.
Crate S22 contains 5 8 21.
Crate S23 contains 2 11 15 16 18 22.
The aim is to select the minimum number of crates that together cover all 23 needs; fewer crates are preferable.
Oh, and when you send your pick, please use this simple JSON layout so it's easy to read:
{
""solution"": [""crate_id"", ...]
}
This just means ""solution"" holds a list of crate identifiers — one string per crate you choose. Think of it like filling out a short form: put each crate's label in the array. The snippet above is just a sketch of the shape I need, not your final answer.
All identifiers must be used exactly as they appear in the instance input — no renaming and no new labels. For example: Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 23, 'num_sets': 23, 'density': 0.1720226843100189, 'sets': [{'id': 1, 'elements': [1, 8, 10, 21]}, {'id': 2, 'elements': [1, 2, 8, 10, 13, 21]}, {'id': 3, 'elements': [3, 5, 7, 9, 15, 19]}, {'id': 4, 'elements': [4, 11, 20]}, {'id': 5, 'elements': [3, 4, 5, 11, 15, 19, 20]}, {'id': 6, 'elements': [6, 9, 12, 22, 23]}, {'id': 7, 'elements': [3, 7, 19]}, {'id': 8, 'elements': [1, 2, 12]}, {'id': 9, 'elements': [6, 8, 12, 16, 17, 23]}, {'id': 10, 'elements': [2, 10]}, {'id': 11, 'elements': [4, 5, 11]}, {'id': 12, 'elements': [2, 8, 9, 13, 17]}, {'id': 13, 'elements': [8, 12, 13]}, {'id': 14, 'elements': [6, 14, 22]}, {'id': 15, 'elements': [3, 5, 19]}, {'id': 16, 'elements': [3, 9, 23]}, {'id': 17, 'elements': [17, 23]}, {'id': 18, 'elements': [2, 18]}, {'id': 19, 'elements': [3, 5, 19, 20, 23]}, {'id': 20, 'elements': [4, 5, 19, 20]}, {'id': 21, 'elements': [1, 2, 8, 21]}, {'id': 22, 'elements': [6, 9, 22]}, {'id': 23, 'elements': [3, 12, 16, 17, 19, 23]}], 'graph': {'num_nodes': 23, 'edges': [{'u': 18, 'v': 1}, {'u': 11, 'v': 4}, {'u': 11, 'v': 20}, {'u': 4, 'v': 5}, {'u': 3, 'v': 7}, {'u': 3, 'v': 19}, {'u': 3, 'v': 23}, {'u': 19, 'v': 5}, {'u': 19, 'v': 15}, {'u': 9, 'v': 6}, {'u': 9, 'v': 12}, {'u': 9, 'v': 17}, {'u': 9, 'v': 23}, {'u': 12, 'v': 8}, {'u': 1, 'v': 2}, {'u': 1, 'v': 10}, {'u': 16, 'v': 23}, {'u': 13, 'v': 8}, {'u': 6, 'v': 14}, {'u': 6, 'v': 22}, {'u': 5, 'v': 20}, {'u': 8, 'v': 2}, {'u': 2, 'v': 21}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0026.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0026.png'}","[2, 3, 5, 14, 18, 23]",6.0,"{'num_elements': 23, 'num_sets': 23, 'sets': [{'id': 'S1', 'elements': [0, 7, 9, 20]}, {'id': 'S2', 'elements': [0, 1, 7, 9, 12, 20]}, {'id': 'S3', 'elements': [2, 4, 6, 8, 14, 18]}, {'id': 'S4', 'elements': [3, 10, 19]}, {'id': 'S5', 'elements': [2, 3, 4, 10, 14, 18, 19]}, {'id': 'S6', 'elements': [5, 8, 11, 21, 22]}, {'id': 'S7', 'elements': [2, 6, 18]}, {'id': 'S8', 'elements': [0, 1, 11]}, {'id': 'S9', 'elements': [5, 7, 11, 15, 16, 22]}, {'id': 'S10', 'elements': [1, 9]}, {'id': 'S11', 'elements': [3, 4, 10]}, {'id': 'S12', 'elements': [1, 7, 8, 12, 16]}, {'id': 'S13', 'elements': [7, 11, 12]}, {'id': 'S14', 'elements': [5, 13, 21]}, {'id': 'S15', 'elements': [2, 4, 18]}, {'id': 'S16', 'elements': [2, 8, 22]}, {'id': 'S17', 'elements': [16, 22]}, {'id': 'S18', 'elements': [1, 17]}, {'id': 'S19', 'elements': [2, 4, 18, 19, 22]}, {'id': 'S20', 'elements': [3, 4, 18, 19]}, {'id': 'S21', 'elements': [0, 1, 7, 20]}, {'id': 'S22', 'elements': [5, 8, 21]}, {'id': 'S23', 'elements': [2, 11, 15, 16, 18, 22]}]}","['S2', 'S3', 'S5', 'S14', 'S18', 'S23']",27,nl,0
SCP,SCP,"We’ve got a skills checklist and a catalog of training classes, and the HR job is to combine classes so every skill is addressed. The idea is to use as few different courses as will still touch every competency — measure that by tallying how many courses were picked, with a smaller tally being preferable. Every competency must appear in at least one chosen course, and choosing duplicates or extra classes that don’t add new coverage isn’t useful. The concrete course and competency lists are listed below.
We have 22 competencies to cover and 21 courses available.
Course S1 covers competencies 0 1.
Course S2 covers competencies 0 1 16.
Course S3 covers competencies 2 3 9 13.
Course S4 covers competencies 3 8 14 17.
Course S5 covers competencies 4 11 18 20.
Course S6 covers competencies 3 5 10 12 19.
Course S7 covers competencies 6 7 9 13 16 21.
Course S8 covers competencies 6 7 13 21.
Course S9 covers competencies 3 8 12 14.
Course S10 covers competencies 2 9 13 14 16.
Course S11 covers competencies 10 19.
Course S12 covers competencies 4 17 18 20.
Course S13 covers competencies 5 8 10 12 19.
Course S14 covers competencies 0 2 6 7 13.
Course S15 covers competencies 2 3 8 9 14 17.
Course S16 covers competencies 11 15 20.
Course S17 covers competencies 0 1 9 13 16.
Course S18 covers competencies 3 8 11 14 15.
Course S19 covers competencies 4 11 15 20.
Course S20 covers competencies 3 15 17 18 20.
Course S21 covers competencies 6 7 21.
We should pick as few courses as will cover all 22 competencies.
When you send back the final pick, it helps if you use a tiny JSON snippet like this so it's easy to read and plug into the next step.
{
""solution"": [""course_id"", ...]
}
This just means ""solution"" is a list (an array) of the course identifiers you picked — one string per chosen course. ""course_id"" in the example is a placeholder; replace each placeholder with the actual labels from the instance. The JSON above is just the expected shape, not the actual answer.
Important: use the exact course identifiers from the instance input — no renaming, and don’t invent new labels. Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 22, 'num_sets': 21, 'density': 0.19047619047619047, 'sets': [{'id': 1, 'elements': [1, 2]}, {'id': 2, 'elements': [1, 2, 17]}, {'id': 3, 'elements': [3, 4, 10, 14]}, {'id': 4, 'elements': [4, 9, 15, 18]}, {'id': 5, 'elements': [5, 12, 19, 21]}, {'id': 6, 'elements': [4, 6, 11, 13, 20]}, {'id': 7, 'elements': [7, 8, 10, 14, 17, 22]}, {'id': 8, 'elements': [7, 8, 14, 22]}, {'id': 9, 'elements': [4, 9, 13, 15]}, {'id': 10, 'elements': [3, 10, 14, 15, 17]}, {'id': 11, 'elements': [11, 20]}, {'id': 12, 'elements': [5, 18, 19, 21]}, {'id': 13, 'elements': [6, 9, 11, 13, 20]}, {'id': 14, 'elements': [1, 3, 7, 8, 14]}, {'id': 15, 'elements': [3, 4, 9, 10, 15, 18]}, {'id': 16, 'elements': [12, 16, 21]}, {'id': 17, 'elements': [1, 2, 10, 14, 17]}, {'id': 18, 'elements': [4, 9, 12, 15, 16]}, {'id': 19, 'elements': [5, 12, 16, 21]}, {'id': 20, 'elements': [4, 16, 18, 19, 21]}, {'id': 21, 'elements': [7, 8, 22]}], 'graph': {'num_nodes': 22, 'edges': [{'u': 6, 'v': 9}, {'u': 6, 'v': 13}, {'u': 7, 'v': 8}, {'u': 7, 'v': 14}, {'u': 8, 'v': 22}, {'u': 19, 'v': 5}, {'u': 19, 'v': 16}, {'u': 4, 'v': 9}, {'u': 4, 'v': 15}, {'u': 4, 'v': 18}, {'u': 14, 'v': 10}, {'u': 14, 'v': 17}, {'u': 1, 'v': 2}, {'u': 1, 'v': 17}, {'u': 15, 'v': 3}, {'u': 18, 'v': 21}, {'u': 3, 'v': 10}, {'u': 11, 'v': 13}, {'u': 12, 'v': 5}, {'u': 12, 'v': 21}, {'u': 13, 'v': 20}, {'u': 21, 'v': 16}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0027.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0027.png'}","[5, 6, 7, 15, 17, 19]",6.0,"{'num_elements': 22, 'num_sets': 21, 'sets': [{'id': 'S1', 'elements': [0, 1]}, {'id': 'S2', 'elements': [0, 1, 16]}, {'id': 'S3', 'elements': [2, 3, 9, 13]}, {'id': 'S4', 'elements': [3, 8, 14, 17]}, {'id': 'S5', 'elements': [4, 11, 18, 20]}, {'id': 'S6', 'elements': [3, 5, 10, 12, 19]}, {'id': 'S7', 'elements': [6, 7, 9, 13, 16, 21]}, {'id': 'S8', 'elements': [6, 7, 13, 21]}, {'id': 'S9', 'elements': [3, 8, 12, 14]}, {'id': 'S10', 'elements': [2, 9, 13, 14, 16]}, {'id': 'S11', 'elements': [10, 19]}, {'id': 'S12', 'elements': [4, 17, 18, 20]}, {'id': 'S13', 'elements': [5, 8, 10, 12, 19]}, {'id': 'S14', 'elements': [0, 2, 6, 7, 13]}, {'id': 'S15', 'elements': [2, 3, 8, 9, 14, 17]}, {'id': 'S16', 'elements': [11, 15, 20]}, {'id': 'S17', 'elements': [0, 1, 9, 13, 16]}, {'id': 'S18', 'elements': [3, 8, 11, 14, 15]}, {'id': 'S19', 'elements': [4, 11, 15, 20]}, {'id': 'S20', 'elements': [3, 15, 17, 18, 20]}, {'id': 'S21', 'elements': [6, 7, 21]}]}","['S5', 'S6', 'S7', 'S15', 'S17', 'S19']",28,nl,0
SCP,SCP,"We’re working on thinning down the city’s bus schedule: choose a small set of routes that still make sure every neighborhood sees a bus. The point is to decide which routes to keep; a plan is judged by how many routes it keeps, so tally the chosen lines and aim for the lowest total. It’s important that every neighborhood is covered by at least one of the chosen routes and that each chosen route is only counted once, so no area gets skipped and repeats don’t improve the plan. The exact map and list of routes are shown below.
# num_neighborhoods=20
# num_routes_available=20
route_id,neighborhoods_served
S1,0 1 2 5 15
S2,0 1 2 15 16
S3,2 13 14 15
S4,0 3 4 5 8
S5,4 5 8 9 16
S6,0 1 3 4 5 14 15 16
S7,6 7 8 9 10 19
S8,4 7 9
S9,4 6 8 9 10
S10,4 6 7 12 19
S11,3 6 8 9 10 11 12 17 18 19
S12,10 11 16 19
S13,9 10 16 19
S14,2 13 15
S15,2 5 13 14 16
S16,1 2 3 5 10 14 15 16 17
S17,1 4 5 9 10 12 14 15 17 19
S18,3 10 16
S19,10 12 18 19
S20,6 9 10 12 16 18 19
Also, when you send your proposed trimming plan back, please stick to this little JSON layout so it's easy to read and check:
{
""solution"": [""route_id"", ...]
}
This just means ""solution"" should be a list of route identifiers you want to keep — one entry per chosen route. Think of it like filling out a short form: put each route's exact ID in the list (and don't repeat the same route twice). The block above is just the expected shape of the reply, not the actual answer — it's a sketch to follow.
Please use the route IDs exactly as they appear in the instance input — don't rename them or invent new ones.
- for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 20, 'num_sets': 20, 'density': 0.275, 'sets': [{'id': 1, 'elements': [1, 2, 3, 6, 16]}, {'id': 2, 'elements': [1, 2, 3, 16, 17]}, {'id': 3, 'elements': [3, 14, 15, 16]}, {'id': 4, 'elements': [1, 4, 5, 6, 9]}, {'id': 5, 'elements': [5, 6, 9, 10, 17]}, {'id': 6, 'elements': [1, 2, 4, 5, 6, 15, 16, 17]}, {'id': 7, 'elements': [7, 8, 9, 10, 11, 20]}, {'id': 8, 'elements': [5, 8, 10]}, {'id': 9, 'elements': [5, 7, 9, 10, 11]}, {'id': 10, 'elements': [5, 7, 8, 13, 20]}, {'id': 11, 'elements': [4, 7, 9, 10, 11, 12, 13, 18, 19, 20]}, {'id': 12, 'elements': [11, 12, 17, 20]}, {'id': 13, 'elements': [10, 11, 17, 20]}, {'id': 14, 'elements': [3, 14, 16]}, {'id': 15, 'elements': [3, 6, 14, 15, 17]}, {'id': 16, 'elements': [2, 3, 4, 6, 11, 15, 16, 17, 18]}, {'id': 17, 'elements': [2, 5, 6, 10, 11, 13, 15, 16, 18, 20]}, {'id': 18, 'elements': [4, 11, 17]}, {'id': 19, 'elements': [11, 13, 19, 20]}, {'id': 20, 'elements': [7, 10, 11, 13, 17, 19, 20]}], 'graph': {'num_nodes': 20, 'edges': [{'u': 1, 'v': 2}, {'u': 1, 'v': 6}, {'u': 2, 'v': 3}, {'u': 2, 'v': 16}, {'u': 3, 'v': 15}, {'u': 20, 'v': 7}, {'u': 20, 'v': 11}, {'u': 20, 'v': 19}, {'u': 7, 'v': 8}, {'u': 7, 'v': 10}, {'u': 8, 'v': 9}, {'u': 9, 'v': 5}, {'u': 9, 'v': 10}, {'u': 10, 'v': 11}, {'u': 19, 'v': 13}, {'u': 11, 'v': 12}, {'u': 11, 'v': 13}, {'u': 11, 'v': 17}, {'u': 14, 'v': 15}, {'u': 4, 'v': 5}, {'u': 4, 'v': 6}, {'u': 4, 'v': 17}, {'u': 16, 'v': 6}, {'u': 16, 'v': 15}, {'u': 16, 'v': 17}, {'u': 17, 'v': 18}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0028.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0028.png'}","[6, 7, 11, 15]",4.0,"{'num_elements': 20, 'num_sets': 20, 'sets': [{'id': 'S1', 'elements': [0, 1, 2, 5, 15]}, {'id': 'S2', 'elements': [0, 1, 2, 15, 16]}, {'id': 'S3', 'elements': [2, 13, 14, 15]}, {'id': 'S4', 'elements': [0, 3, 4, 5, 8]}, {'id': 'S5', 'elements': [4, 5, 8, 9, 16]}, {'id': 'S6', 'elements': [0, 1, 3, 4, 5, 14, 15, 16]}, {'id': 'S7', 'elements': [6, 7, 8, 9, 10, 19]}, {'id': 'S8', 'elements': [4, 7, 9]}, {'id': 'S9', 'elements': [4, 6, 8, 9, 10]}, {'id': 'S10', 'elements': [4, 6, 7, 12, 19]}, {'id': 'S11', 'elements': [3, 6, 8, 9, 10, 11, 12, 17, 18, 19]}, {'id': 'S12', 'elements': [10, 11, 16, 19]}, {'id': 'S13', 'elements': [9, 10, 16, 19]}, {'id': 'S14', 'elements': [2, 13, 15]}, {'id': 'S15', 'elements': [2, 5, 13, 14, 16]}, {'id': 'S16', 'elements': [1, 2, 3, 5, 10, 14, 15, 16, 17]}, {'id': 'S17', 'elements': [1, 4, 5, 9, 10, 12, 14, 15, 17, 19]}, {'id': 'S18', 'elements': [3, 10, 16]}, {'id': 'S19', 'elements': [10, 12, 18, 19]}, {'id': 'S20', 'elements': [6, 9, 10, 12, 16, 18, 19]}]}","['S6', 'S7', 'S11', 'S15']",29,csv,0
SCP,SCP,"Many people who run small online shops face the same question: which product bundles should be featured so every customer preference category is met? The decision is picking which bundles to show, and the nicer outcome is the one that meets all the preference categories while using the least number of bundles. Practically, that’s checked by counting chosen bundles — the lower the count, the better — and ensuring every preference category is represented at least once; repeating identical bundles doesn’t help. The detailed bundle and preference information is provided below.
{
""total_preferences"": 23,
""available_bundles_count"": 22,
""sets"": [
{
""bundle_id"": ""S1"",
""covered_preferences"": [
1,
12,
16
]
},
{
""bundle_id"": ""S2"",
""covered_preferences"": [
2,
3,
6,
14,
15,
18,
19
]
},
{
""bundle_id"": ""S3"",
""covered_preferences"": [
14,
15,
18
]
},
{
""bundle_id"": ""S4"",
""covered_preferences"": [
4,
5,
21
]
},
{
""bundle_id"": ""S5"",
""covered_preferences"": [
4,
5,
8,
9,
10,
15,
17,
21,
22,
23
]
},
{
""bundle_id"": ""S6"",
""covered_preferences"": [
2,
5,
6,
8,
21
]
},
{
""bundle_id"": ""S7"",
""covered_preferences"": [
7,
13,
17
]
},
{
""bundle_id"": ""S8"",
""covered_preferences"": [
5,
8,
10,
11,
21,
22
]
},
{
""bundle_id"": ""S9"",
""covered_preferences"": [
5,
9,
22,
23
]
},
{
""bundle_id"": ""S10"",
""covered_preferences"": [
5,
8,
11
]
},
{
""bundle_id"": ""S11"",
""covered_preferences"": [
1,
3,
12,
16
]
},
{
""bundle_id"": ""S12"",
""covered_preferences"": [
13,
20
]
},
{
""bundle_id"": ""S13"",
""covered_preferences"": [
2,
3,
14,
15,
18
]
},
{
""bundle_id"": ""S14"",
""covered_preferences"": [
2,
3,
4,
17,
18
]
},
{
""bundle_id"": ""S15"",
""covered_preferences"": [
1,
3,
12,
16,
18
]
},
{
""bundle_id"": ""S16"",
""covered_preferences"": [
1,
4,
5,
17,
20,
21
]
},
{
""bundle_id"": ""S17"",
""covered_preferences"": [
2,
14,
16,
19,
21
]
},
{
""bundle_id"": ""S18"",
""covered_preferences"": [
2,
6,
18
]
},
{
""bundle_id"": ""S19"",
""covered_preferences"": [
1,
12,
13,
17,
20,
21
]
},
{
""bundle_id"": ""S20"",
""covered_preferences"": [
4,
6,
8,
15,
17,
18,
21
]
},
{
""bundle_id"": ""S21"",
""covered_preferences"": [
5,
6,
8,
9,
21,
22,
23
]
},
{
""bundle_id"": ""S22"",
""covered_preferences"": [
5,
9,
23
]
}
]
}
Oh, and when you’re ready to send back which bundles to feature, just use this simple JSON shape so I can read it easily:
{
""solution"": [""set_id"", ...]
}
Pretty straightforward: ""solution"" is an array where you list the chosen bundle ids (one id per bundle). Think of it like filling in a short form — replace ""set_id"" with the actual ids from the input, keep each id as-is, and don’t repeat the same id twice. This JSON is just a sketch of the shape I expect, not the final answer itself.
Please make sure all identifiers are used exactly as they appear in the instance input — no renaming and no new labels.
- for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 23, 'num_sets': 22, 'density': 0.2075098814229249, 'sets': [{'id': 1, 'elements': [1, 12, 16]}, {'id': 2, 'elements': [2, 3, 6, 14, 15, 18, 19]}, {'id': 3, 'elements': [14, 15, 18]}, {'id': 4, 'elements': [4, 5, 21]}, {'id': 5, 'elements': [4, 5, 8, 9, 10, 15, 17, 21, 22, 23]}, {'id': 6, 'elements': [2, 5, 6, 8, 21]}, {'id': 7, 'elements': [7, 13, 17]}, {'id': 8, 'elements': [5, 8, 10, 11, 21, 22]}, {'id': 9, 'elements': [5, 9, 22, 23]}, {'id': 10, 'elements': [5, 8, 11]}, {'id': 11, 'elements': [1, 3, 12, 16]}, {'id': 12, 'elements': [13, 20]}, {'id': 13, 'elements': [2, 3, 14, 15, 18]}, {'id': 14, 'elements': [2, 3, 4, 17, 18]}, {'id': 15, 'elements': [1, 3, 12, 16, 18]}, {'id': 16, 'elements': [1, 4, 5, 17, 20, 21]}, {'id': 17, 'elements': [2, 14, 16, 19, 21]}, {'id': 18, 'elements': [2, 6, 18]}, {'id': 19, 'elements': [1, 12, 13, 17, 20, 21]}, {'id': 20, 'elements': [4, 6, 8, 15, 17, 18, 21]}, {'id': 21, 'elements': [5, 6, 8, 9, 21, 22, 23]}, {'id': 22, 'elements': [5, 9, 23]}], 'graph': {'num_nodes': 23, 'edges': [{'u': 12, 'v': 1}, {'u': 12, 'v': 16}, {'u': 13, 'v': 7}, {'u': 23, 'v': 22}, {'u': 4, 'v': 21}, {'u': 5, 'v': 6}, {'u': 5, 'v': 8}, {'u': 5, 'v': 21}, {'u': 5, 'v': 22}, {'u': 6, 'v': 19}, {'u': 2, 'v': 18}, {'u': 2, 'v': 19}, {'u': 3, 'v': 16}, {'u': 3, 'v': 18}, {'u': 7, 'v': 20}, {'u': 14, 'v': 18}, {'u': 17, 'v': 20}, {'u': 17, 'v': 21}, {'u': 18, 'v': 15}, {'u': 8, 'v': 10}, {'u': 9, 'v': 22}, {'u': 20, 'v': 1}, {'u': 21, 'v': 15}, {'u': 10, 'v': 11}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0029.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0029.png'}","[2, 5, 7, 8, 15, 16]",6.0,"{'num_elements': 23, 'num_sets': 22, 'sets': [{'id': 'S1', 'elements': [1, 12, 16]}, {'id': 'S2', 'elements': [2, 3, 6, 14, 15, 18, 19]}, {'id': 'S3', 'elements': [14, 15, 18]}, {'id': 'S4', 'elements': [4, 5, 21]}, {'id': 'S5', 'elements': [4, 5, 8, 9, 10, 15, 17, 21, 22, 23]}, {'id': 'S6', 'elements': [2, 5, 6, 8, 21]}, {'id': 'S7', 'elements': [7, 13, 17]}, {'id': 'S8', 'elements': [5, 8, 10, 11, 21, 22]}, {'id': 'S9', 'elements': [5, 9, 22, 23]}, {'id': 'S10', 'elements': [5, 8, 11]}, {'id': 'S11', 'elements': [1, 3, 12, 16]}, {'id': 'S12', 'elements': [13, 20]}, {'id': 'S13', 'elements': [2, 3, 14, 15, 18]}, {'id': 'S14', 'elements': [2, 3, 4, 17, 18]}, {'id': 'S15', 'elements': [1, 3, 12, 16, 18]}, {'id': 'S16', 'elements': [1, 4, 5, 17, 20, 21]}, {'id': 'S17', 'elements': [2, 14, 16, 19, 21]}, {'id': 'S18', 'elements': [2, 6, 18]}, {'id': 'S19', 'elements': [1, 12, 13, 17, 20, 21]}, {'id': 'S20', 'elements': [4, 6, 8, 15, 17, 18, 21]}, {'id': 'S21', 'elements': [5, 6, 8, 9, 21, 22, 23]}, {'id': 'S22', 'elements': [5, 9, 23]}]}","['S2', 'S5', 'S7', 'S8', 'S15', 'S16']",30,json,1
SCP,SCP,"Someone on the production crew has to build the cast list so that each character can be portrayed by someone on staff, but with as few hires as possible. The decision is which actors to pick; a superior decision is the one that achieves full coverage of the script with the smallest number of people. Measure how good a choice is by adding up the number of actors hired — lower is preferred — while ensuring every role has at least one capable actor and avoiding needless extras. The detailed role-and-actor options are shown below.
- **num_roles**: 21
- **num_actor_candidates**: 20
| actor_id | roles_actor_can_play |
|---|---|
| S1 | 1 10 11 12 |
| S2 | 13 21 |
| S3 | 6 9 19 |
| S4 | 1 10 |
| S5 | 1 5 12 |
| S6 | 14 17 |
| S7 | 8 18 |
| S8 | 8 15 16 |
| S9 | 15 20 |
| S10 | 1 4 5 10 19 21 |
| S11 | 1 2 11 12 |
| S12 | 5 10 11 20 21 |
| S13 | 1 11 13 |
| S14 | 3 6 14 19 |
| S15 | 8 9 15 16 18 19 |
| S16 | 8 15 18 |
| S17 | 7 8 16 |
| S18 | 9 14 15 20 |
| S19 | 3 9 12 19 |
| S20 | 2 10 12 13 20 21 |
If you want to hand me the final cast choice, you can just drop it in as a tiny JSON object like this:
{
""solution"": [""actor_id"", ...]
}
Here ""solution"" is the list of actor identifiers you're hiring — think of each entry as the exact name/ID from the cast options. This is just a template showing the shape I expect, not the actual cast list; replace the placeholder entries with the real IDs from the instance input.
All identifiers must be used exactly as they appear in the instance input — no renaming and no new labels.
Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 21, 'num_sets': 20, 'density': 0.16904761904761906, 'sets': [{'id': 1, 'elements': [1, 10, 11, 12]}, {'id': 2, 'elements': [13, 21]}, {'id': 3, 'elements': [6, 9, 19]}, {'id': 4, 'elements': [1, 10]}, {'id': 5, 'elements': [1, 5, 12]}, {'id': 6, 'elements': [14, 17]}, {'id': 7, 'elements': [8, 18]}, {'id': 8, 'elements': [8, 15, 16]}, {'id': 9, 'elements': [15, 20]}, {'id': 10, 'elements': [1, 4, 5, 10, 19, 21]}, {'id': 11, 'elements': [1, 2, 11, 12]}, {'id': 12, 'elements': [5, 10, 11, 20, 21]}, {'id': 13, 'elements': [1, 11, 13]}, {'id': 14, 'elements': [3, 6, 14, 19]}, {'id': 15, 'elements': [8, 9, 15, 16, 18, 19]}, {'id': 16, 'elements': [8, 15, 18]}, {'id': 17, 'elements': [7, 8, 16]}, {'id': 18, 'elements': [9, 14, 15, 20]}, {'id': 19, 'elements': [3, 9, 12, 19]}, {'id': 20, 'elements': [2, 10, 12, 13, 20, 21]}], 'graph': {'num_nodes': 21, 'edges': [{'u': 15, 'v': 9}, {'u': 15, 'v': 18}, {'u': 16, 'v': 18}, {'u': 17, 'v': 6}, {'u': 13, 'v': 2}, {'u': 13, 'v': 11}, {'u': 7, 'v': 8}, {'u': 8, 'v': 18}, {'u': 9, 'v': 19}, {'u': 21, 'v': 2}, {'u': 21, 'v': 10}, {'u': 19, 'v': 3}, {'u': 19, 'v': 20}, {'u': 20, 'v': 10}, {'u': 11, 'v': 1}, {'u': 12, 'v': 1}, {'u': 12, 'v': 4}, {'u': 12, 'v': 5}, {'u': 12, 'v': 10}, {'u': 14, 'v': 3}, {'u': 14, 'v': 6}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0030.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0030.png'}","[6, 10, 13, 14, 15, 17, 20]",7.0,"{'num_elements': 21, 'num_sets': 20, 'sets': [{'id': 'S1', 'elements': [1, 10, 11, 12]}, {'id': 'S2', 'elements': [13, 21]}, {'id': 'S3', 'elements': [6, 9, 19]}, {'id': 'S4', 'elements': [1, 10]}, {'id': 'S5', 'elements': [1, 5, 12]}, {'id': 'S6', 'elements': [14, 17]}, {'id': 'S7', 'elements': [8, 18]}, {'id': 'S8', 'elements': [8, 15, 16]}, {'id': 'S9', 'elements': [15, 20]}, {'id': 'S10', 'elements': [1, 4, 5, 10, 19, 21]}, {'id': 'S11', 'elements': [1, 2, 11, 12]}, {'id': 'S12', 'elements': [5, 10, 11, 20, 21]}, {'id': 'S13', 'elements': [1, 11, 13]}, {'id': 'S14', 'elements': [3, 6, 14, 19]}, {'id': 'S15', 'elements': [8, 9, 15, 16, 18, 19]}, {'id': 'S16', 'elements': [8, 15, 18]}, {'id': 'S17', 'elements': [7, 8, 16]}, {'id': 'S18', 'elements': [9, 14, 15, 20]}, {'id': 'S19', 'elements': [3, 9, 12, 19]}, {'id': 'S20', 'elements': [2, 10, 12, 13, 20, 21]}]}","['S6', 'S10', 'S13', 'S14', 'S15', 'S17', 'S20']",31,markdown_table,1
SCP,SCP,"Many people in the lab study different things, so the coordinator needs to subscribe to a compact set of journals that together cover every topic; the better subscription plan is simply the one with the smaller total number of journals (just count them), and every topic must be present in at least one of the chosen journals — redundant overlap won’t reduce that total. The concrete details will be shown below.
- **num_research_topics**: 25
- **num_journals_available**: 23
| journal_id | topics_covered |
|---|---|
| S1 | 0 1 3 4 17 |
| S2 | 1 4 5 |
| S3 | 2 6 8 18 |
| S4 | 0 3 17 19 21 22 24 |
| S5 | 0 4 5 8 10 14 |
| S6 | 0 5 8 |
| S7 | 6 10 |
| S8 | 8 11 12 14 16 17 |
| S9 | 2 5 7 8 11 14 17 |
| S10 | 5 9 14 17 22 24 |
| S11 | 2 4 6 10 14 |
| S12 | 7 8 11 14 |
| S13 | 12 14 16 |
| S14 | 4 8 9 10 14 |
| S15 | 13 15 20 24 |
| S16 | 7 12 16 |
| S17 | 0 8 9 14 17 19 21 22 |
| S18 | 2 8 10 |
| S19 | 3 19 21 |
| S20 | 13 23 |
| S21 | 3 17 19 21 22 |
| S22 | 3 9 17 19 |
| S23 | 3 5 9 13 22 24 |
Oh, and when you send the picked journals back, just use this simple JSON layout so it's easy to parse:
{
""solution"": [""journal_id"", ...]
}
Here ""solution"" is the list of journals you choose for the subscription plan; each item is a journal identifier (keep it as the exact identifier from the instance). Think of this block like a little form: the array holds the labels of the journals you want. This is only a sketch of the expected shape, not the actual answer — fill it with the real identifiers from the problem.
Please make sure to use the identifiers exactly as they appear in the input — no renaming and no new labels.
- for example: Valid identifiers look like plain numbers such as ""1"" or ""23"", single capital letters like ""A"" or ""B"", or a capital letter followed by digits like ""A1"" or ""X7"".","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 25, 'num_sets': 23, 'density': 0.1808695652173913, 'sets': [{'id': 1, 'elements': [1, 2, 4, 5, 18]}, {'id': 2, 'elements': [2, 5, 6]}, {'id': 3, 'elements': [3, 7, 9, 19]}, {'id': 4, 'elements': [1, 4, 18, 20, 22, 23, 25]}, {'id': 5, 'elements': [1, 5, 6, 9, 11, 15]}, {'id': 6, 'elements': [1, 6, 9]}, {'id': 7, 'elements': [7, 11]}, {'id': 8, 'elements': [9, 12, 13, 15, 17, 18]}, {'id': 9, 'elements': [3, 6, 8, 9, 12, 15, 18]}, {'id': 10, 'elements': [6, 10, 15, 18, 23, 25]}, {'id': 11, 'elements': [3, 5, 7, 11, 15]}, {'id': 12, 'elements': [8, 9, 12, 15]}, {'id': 13, 'elements': [13, 15, 17]}, {'id': 14, 'elements': [5, 9, 10, 11, 15]}, {'id': 15, 'elements': [14, 16, 21, 25]}, {'id': 16, 'elements': [8, 13, 17]}, {'id': 17, 'elements': [1, 9, 10, 15, 18, 20, 22, 23]}, {'id': 18, 'elements': [3, 9, 11]}, {'id': 19, 'elements': [4, 20, 22]}, {'id': 20, 'elements': [14, 24]}, {'id': 21, 'elements': [4, 18, 20, 22, 23]}, {'id': 22, 'elements': [4, 10, 18, 20]}, {'id': 23, 'elements': [4, 6, 10, 14, 23, 25]}], 'graph': {'num_nodes': 25, 'edges': [{'u': 21, 'v': 14}, {'u': 11, 'v': 3}, {'u': 11, 'v': 9}, {'u': 11, 'v': 19}, {'u': 17, 'v': 13}, {'u': 6, 'v': 1}, {'u': 6, 'v': 2}, {'u': 6, 'v': 5}, {'u': 16, 'v': 14}, {'u': 16, 'v': 25}, {'u': 7, 'v': 3}, {'u': 1, 'v': 10}, {'u': 1, 'v': 25}, {'u': 8, 'v': 13}, {'u': 8, 'v': 15}, {'u': 9, 'v': 5}, {'u': 9, 'v': 15}, {'u': 15, 'v': 12}, {'u': 15, 'v': 18}, {'u': 18, 'v': 10}, {'u': 18, 'v': 23}, {'u': 4, 'v': 23}, {'u': 4, 'v': 25}, {'u': 22, 'v': 23}, {'u': 23, 'v': 20}, {'u': 24, 'v': 14}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0031.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0031.png'}","[1, 3, 8, 9, 14, 15, 17, 20]",8.0,"{'num_elements': 25, 'num_sets': 23, 'sets': [{'id': 'S1', 'elements': [0, 1, 3, 4, 17]}, {'id': 'S2', 'elements': [1, 4, 5]}, {'id': 'S3', 'elements': [2, 6, 8, 18]}, {'id': 'S4', 'elements': [0, 3, 17, 19, 21, 22, 24]}, {'id': 'S5', 'elements': [0, 4, 5, 8, 10, 14]}, {'id': 'S6', 'elements': [0, 5, 8]}, {'id': 'S7', 'elements': [6, 10]}, {'id': 'S8', 'elements': [8, 11, 12, 14, 16, 17]}, {'id': 'S9', 'elements': [2, 5, 7, 8, 11, 14, 17]}, {'id': 'S10', 'elements': [5, 9, 14, 17, 22, 24]}, {'id': 'S11', 'elements': [2, 4, 6, 10, 14]}, {'id': 'S12', 'elements': [7, 8, 11, 14]}, {'id': 'S13', 'elements': [12, 14, 16]}, {'id': 'S14', 'elements': [4, 8, 9, 10, 14]}, {'id': 'S15', 'elements': [13, 15, 20, 24]}, {'id': 'S16', 'elements': [7, 12, 16]}, {'id': 'S17', 'elements': [0, 8, 9, 14, 17, 19, 21, 22]}, {'id': 'S18', 'elements': [2, 8, 10]}, {'id': 'S19', 'elements': [3, 19, 21]}, {'id': 'S20', 'elements': [13, 23]}, {'id': 'S21', 'elements': [3, 17, 19, 21, 22]}, {'id': 'S22', 'elements': [3, 9, 17, 19]}, {'id': 'S23', 'elements': [3, 5, 9, 13, 22, 24]}]}","['S1', 'S3', 'S8', 'S9', 'S14', 'S15', 'S17', 'S20']",32,markdown_table,0
SCP,SCP,"There’s a park with a bunch of zones and a toolbox of sensors that each watch certain areas; the manager’s job is to pick just enough of those sensors so that every single zone gets watched by at least one chosen unit. A plan is better when it uses fewer sensors, confirmed simply by tallying the devices picked. No zone can be left out, and extra overlaps aren’t helpful unless they fill uncovered spots. Concrete details follow below.
Concrete details follow below: there are 24 sensors and 25 zones.
Sensor S1 watches zones 4 5 12.
Sensor S2 watches zones 1 11 18 20 21.
Sensor S3 watches zones 3 8 18.
Sensor S4 watches zones 0 4.
Sensor S5 watches zones 5 13 20.
Sensor S6 watches zones 6 16 22.
Sensor S7 watches zones 11 17.
Sensor S8 watches zones 8 18.
Sensor S9 watches zones 10 14 24.
Sensor S10 watches zones 9 20 24.
Sensor S11 watches zones 1 11 13 17 21.
Sensor S12 watches zones 5 12 20.
Sensor S13 watches zones 1 11 13 16 20.
Sensor S14 watches zones 5 13 14 20.
Sensor S15 watches zones 6 16 20 22.
Sensor S16 watches zones 5 6 13 14 15 20 23.
Sensor S17 watches zones 7 11 17 18 21.
Sensor S18 watches zones 1 11 17 18 21.
Sensor S19 watches zones 11 19 21.
Sensor S20 watches zones 1 5 10 13 14 15 16.
Sensor S21 watches zones 17 18 19 21.
Sensor S22 watches zones 6 15.
Sensor S23 watches zones 6 15 16 22.
Sensor S24 watches zones 2 10 24.
The manager must cover all 25 zones while minimizing the count of chosen sensors from the 24 available.
Also, when you send back the plan, just drop it into a tiny JSON snippet so it's easy to read and parse. Something like this will do:
{
""solution"": [""sensor_id"", ...]
}
Here ""solution"" is the list of chosen sensors (one entry per sensor). Think of it like a little form: put each sensor's exact label in that array and you're done. This is just the expected shape of the reply, not the actual answer — fill it with the real identifiers from the instance when you submit.
Please use the identifiers exactly as they appear in the instance input — do not rename them or invent new labels.
- for example: ""Valid identifiers look like plain numbers such as ""1"" or ""23"", single capital letters like ""A"" or ""B"", or a capital letter followed by digits like ""A1"" or ""X7"".""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 25, 'num_sets': 24, 'density': 0.15, 'sets': [{'id': 1, 'elements': [5, 6, 13]}, {'id': 2, 'elements': [2, 12, 19, 21, 22]}, {'id': 3, 'elements': [4, 9, 19]}, {'id': 4, 'elements': [1, 5]}, {'id': 5, 'elements': [6, 14, 21]}, {'id': 6, 'elements': [7, 17, 23]}, {'id': 7, 'elements': [12, 18]}, {'id': 8, 'elements': [9, 19]}, {'id': 9, 'elements': [11, 15, 25]}, {'id': 10, 'elements': [10, 21, 25]}, {'id': 11, 'elements': [2, 12, 14, 18, 22]}, {'id': 12, 'elements': [6, 13, 21]}, {'id': 13, 'elements': [2, 12, 14, 17, 21]}, {'id': 14, 'elements': [6, 14, 15, 21]}, {'id': 15, 'elements': [7, 17, 21, 23]}, {'id': 16, 'elements': [6, 7, 14, 15, 16, 21, 24]}, {'id': 17, 'elements': [8, 12, 18, 19, 22]}, {'id': 18, 'elements': [2, 12, 18, 19, 22]}, {'id': 19, 'elements': [12, 20, 22]}, {'id': 20, 'elements': [2, 6, 11, 14, 15, 16, 17]}, {'id': 21, 'elements': [18, 19, 20, 22]}, {'id': 22, 'elements': [7, 16]}, {'id': 23, 'elements': [7, 16, 17, 23]}, {'id': 24, 'elements': [3, 11, 25]}], 'graph': {'num_nodes': 25, 'edges': [{'u': 12, 'v': 2}, {'u': 12, 'v': 18}, {'u': 12, 'v': 19}, {'u': 12, 'v': 22}, {'u': 20, 'v': 22}, {'u': 21, 'v': 6}, {'u': 21, 'v': 14}, {'u': 21, 'v': 15}, {'u': 21, 'v': 17}, {'u': 25, 'v': 3}, {'u': 25, 'v': 11}, {'u': 5, 'v': 13}, {'u': 14, 'v': 2}, {'u': 13, 'v': 1}, {'u': 13, 'v': 6}, {'u': 10, 'v': 11}, {'u': 4, 'v': 9}, {'u': 15, 'v': 11}, {'u': 16, 'v': 7}, {'u': 16, 'v': 17}, {'u': 16, 'v': 23}, {'u': 16, 'v': 24}, {'u': 18, 'v': 8}, {'u': 19, 'v': 9}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0032.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0032.png'}","[2, 3, 4, 6, 10, 12, 16, 17, 21, 24]",10.0,"{'num_elements': 25, 'num_sets': 24, 'sets': [{'id': 'S1', 'elements': [4, 5, 12]}, {'id': 'S2', 'elements': [1, 11, 18, 20, 21]}, {'id': 'S3', 'elements': [3, 8, 18]}, {'id': 'S4', 'elements': [0, 4]}, {'id': 'S5', 'elements': [5, 13, 20]}, {'id': 'S6', 'elements': [6, 16, 22]}, {'id': 'S7', 'elements': [11, 17]}, {'id': 'S8', 'elements': [8, 18]}, {'id': 'S9', 'elements': [10, 14, 24]}, {'id': 'S10', 'elements': [9, 20, 24]}, {'id': 'S11', 'elements': [1, 11, 13, 17, 21]}, {'id': 'S12', 'elements': [5, 12, 20]}, {'id': 'S13', 'elements': [1, 11, 13, 16, 20]}, {'id': 'S14', 'elements': [5, 13, 14, 20]}, {'id': 'S15', 'elements': [6, 16, 20, 22]}, {'id': 'S16', 'elements': [5, 6, 13, 14, 15, 20, 23]}, {'id': 'S17', 'elements': [7, 11, 17, 18, 21]}, {'id': 'S18', 'elements': [1, 11, 17, 18, 21]}, {'id': 'S19', 'elements': [11, 19, 21]}, {'id': 'S20', 'elements': [1, 5, 10, 13, 14, 15, 16]}, {'id': 'S21', 'elements': [17, 18, 19, 21]}, {'id': 'S22', 'elements': [6, 15]}, {'id': 'S23', 'elements': [6, 15, 16, 22]}, {'id': 'S24', 'elements': [2, 10, 24]}]}","['S2', 'S3', 'S4', 'S6', 'S10', 'S12', 'S16', 'S17', 'S21', 'S24']",33,nl,0
SCP,SCP,"Recently the department decided to streamline assessment materials: each question bank covers several learning objectives, and the assignment is to choose the smallest handful of banks that together cover every objective. The decision is which handful to use, and the quality of a choice is judged by how small that handful is — tally the number of banks chosen to compare options. Make sure every objective is covered by at least one chosen bank; overlaps don’t harm coverage but don’t reduce the tally either. The specific instance details are shown below.
# total_objectives=19
# total_banks=19
bank_id,objectives_in_bank
S1,0 1 3 15
S2,0 1
S3,8 17 18
S4,0 1 3 13 15
S5,4 14
S6,5 7 11 12 17 18
S7,6 11
S8,7 12 17
S9,9 16 18
S10,8 9 16
S11,10 12
S12,5 10 11
S13,10 11 12
S14,4 5 14 17 18
S15,14 15 17
S16,3 13 14 15 17
S17,8 9 16 18
S18,5 7 8 14 15 17 18
S19,2 5 17 18
Also, when you send back which banks you picked, keep it simple and use this little JSON layout — just a casual form so it's easy to parse.
{
""solution"": [""bank_id"", ...]
}
This just means ""solution"" should be an array listing the banks you choose. The placeholder ""bank_id"" stands in for whatever actual bank identifiers appear in the instance; replace those placeholders with the real IDs when you give the answer. Think of this JSON as a sketch of the shape I want, not the final content.
Make sure every identifier you use matches the instance input exactly — no renaming and no made-up labels.
- for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 19, 'num_sets': 19, 'density': 0.19113573407202217, 'sets': [{'id': 1, 'elements': [1, 2, 4, 16]}, {'id': 2, 'elements': [1, 2]}, {'id': 3, 'elements': [9, 18, 19]}, {'id': 4, 'elements': [1, 2, 4, 14, 16]}, {'id': 5, 'elements': [5, 15]}, {'id': 6, 'elements': [6, 8, 12, 13, 18, 19]}, {'id': 7, 'elements': [7, 12]}, {'id': 8, 'elements': [8, 13, 18]}, {'id': 9, 'elements': [10, 17, 19]}, {'id': 10, 'elements': [9, 10, 17]}, {'id': 11, 'elements': [11, 13]}, {'id': 12, 'elements': [6, 11, 12]}, {'id': 13, 'elements': [11, 12, 13]}, {'id': 14, 'elements': [5, 6, 15, 18, 19]}, {'id': 15, 'elements': [15, 16, 18]}, {'id': 16, 'elements': [4, 14, 15, 16, 18]}, {'id': 17, 'elements': [9, 10, 17, 19]}, {'id': 18, 'elements': [6, 8, 9, 15, 16, 18, 19]}, {'id': 19, 'elements': [3, 6, 18, 19]}], 'graph': {'num_nodes': 19, 'edges': [{'u': 1, 'v': 2}, {'u': 1, 'v': 4}, {'u': 3, 'v': 19}, {'u': 4, 'v': 16}, {'u': 5, 'v': 15}, {'u': 14, 'v': 15}, {'u': 14, 'v': 16}, {'u': 14, 'v': 18}, {'u': 19, 'v': 9}, {'u': 19, 'v': 18}, {'u': 12, 'v': 11}, {'u': 12, 'v': 13}, {'u': 6, 'v': 8}, {'u': 6, 'v': 13}, {'u': 6, 'v': 18}, {'u': 13, 'v': 7}, {'u': 9, 'v': 10}, {'u': 9, 'v': 17}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0033.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0033.png'}","[4, 5, 7, 10, 13, 18, 19]",7.0,"{'num_elements': 19, 'num_sets': 19, 'sets': [{'id': 'S1', 'elements': [0, 1, 3, 15]}, {'id': 'S2', 'elements': [0, 1]}, {'id': 'S3', 'elements': [8, 17, 18]}, {'id': 'S4', 'elements': [0, 1, 3, 13, 15]}, {'id': 'S5', 'elements': [4, 14]}, {'id': 'S6', 'elements': [5, 7, 11, 12, 17, 18]}, {'id': 'S7', 'elements': [6, 11]}, {'id': 'S8', 'elements': [7, 12, 17]}, {'id': 'S9', 'elements': [9, 16, 18]}, {'id': 'S10', 'elements': [8, 9, 16]}, {'id': 'S11', 'elements': [10, 12]}, {'id': 'S12', 'elements': [5, 10, 11]}, {'id': 'S13', 'elements': [10, 11, 12]}, {'id': 'S14', 'elements': [4, 5, 14, 17, 18]}, {'id': 'S15', 'elements': [14, 15, 17]}, {'id': 'S16', 'elements': [3, 13, 14, 15, 17]}, {'id': 'S17', 'elements': [8, 9, 16, 18]}, {'id': 'S18', 'elements': [5, 7, 8, 14, 15, 17, 18]}, {'id': 'S19', 'elements': [2, 5, 17, 18]}]}","['S4', 'S5', 'S7', 'S10', 'S13', 'S18', 'S19']",34,csv,0
SCP,SCP,"Recently the warehouse team had to revamp how containers are used: there are many item categories and a number of container types, and the job was to pick a compact set of containers that will accommodate every category. The choice is judged by how few different container types are chosen — success is a lower tally of distinct types — while guaranteeing every single item category fits into at least one of the chosen containers; nothing can be left out, and counting duplicates doesn’t help. The exact options and categories are listed below.
- **num_item_categories**: 25
- **num_container_types**: 24
| container_type_id | covered_item_categories |
|---|---|
| S1 | 1 9 19 |
| S2 | 2 3 4 6 22 24 |
| S3 | 2 4 11 22 23 |
| S4 | 4 6 18 23 |
| S5 | 5 23 |
| S6 | 2 4 6 7 13 14 24 |
| S7 | 6 7 10 13 14 17 24 25 |
| S8 | 8 11 19 21 |
| S9 | 1 14 19 20 23 24 |
| S10 | 7 10 12 13 17 24 25 |
| S11 | 8 14 15 19 21 23 |
| S12 | 10 12 |
| S13 | 6 10 12 14 16 24 |
| S14 | 3 7 9 11 13 14 23 24 |
| S15 | 13 16 17 24 |
| S16 | 10 12 13 17 24 |
| S17 | 2 4 6 |
| S18 | 1 8 9 11 14 20 |
| S19 | 1 9 19 20 |
| S20 | 1 5 8 9 11 20 21 23 |
| S21 | 3 22 |
| S22 | 3 5 11 15 23 |
| S23 | 6 7 9 13 14 25 |
| S24 | 7 10 25 |
Also, when you send me the final selection, please use this little JSON layout so it’s easy to read and plug into the system:
{
""solution"": [""container_id"", ...]
}
Here ""solution"" is just the list of container types you’re picking — each item in the array should be the exact id of a chosen container type from the instance. Think of it like filling out a short form: drop the container ids into the array. This JSON is only a sketch of the expected shape, not the actual answer.
Please make sure to use the identifiers exactly as they appear in the instance input — no renaming and no new labels.
- for example: ""Valid identifiers look like plain numbers such as ""1"" or ""23"", single capital letters like ""A"" or ""B"", or a capital letter followed by digits like ""A1"" or ""X7"".""
That’s it — just paste the chosen ids into the array and we’ll be good to go.","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 25, 'num_sets': 24, 'density': 0.2, 'sets': [{'id': 1, 'elements': [1, 9, 19]}, {'id': 2, 'elements': [2, 3, 4, 6, 22, 24]}, {'id': 3, 'elements': [2, 4, 11, 22, 23]}, {'id': 4, 'elements': [4, 6, 18, 23]}, {'id': 5, 'elements': [5, 23]}, {'id': 6, 'elements': [2, 4, 6, 7, 13, 14, 24]}, {'id': 7, 'elements': [6, 7, 10, 13, 14, 17, 24, 25]}, {'id': 8, 'elements': [8, 11, 19, 21]}, {'id': 9, 'elements': [1, 14, 19, 20, 23, 24]}, {'id': 10, 'elements': [7, 10, 12, 13, 17, 24, 25]}, {'id': 11, 'elements': [8, 14, 15, 19, 21, 23]}, {'id': 12, 'elements': [10, 12]}, {'id': 13, 'elements': [6, 10, 12, 14, 16, 24]}, {'id': 14, 'elements': [3, 7, 9, 11, 13, 14, 23, 24]}, {'id': 15, 'elements': [13, 16, 17, 24]}, {'id': 16, 'elements': [10, 12, 13, 17, 24]}, {'id': 17, 'elements': [2, 4, 6]}, {'id': 18, 'elements': [1, 8, 9, 11, 14, 20]}, {'id': 19, 'elements': [1, 9, 19, 20]}, {'id': 20, 'elements': [1, 5, 8, 9, 11, 20, 21, 23]}, {'id': 21, 'elements': [3, 22]}, {'id': 22, 'elements': [3, 5, 11, 15, 23]}, {'id': 23, 'elements': [6, 7, 9, 13, 14, 25]}, {'id': 24, 'elements': [7, 10, 25]}], 'graph': {'num_nodes': 25, 'edges': [{'u': 17, 'v': 10}, {'u': 17, 'v': 12}, {'u': 17, 'v': 13}, {'u': 9, 'v': 14}, {'u': 9, 'v': 19}, {'u': 22, 'v': 4}, {'u': 23, 'v': 3}, {'u': 23, 'v': 11}, {'u': 23, 'v': 14}, {'u': 3, 'v': 4}, {'u': 18, 'v': 2}, {'u': 24, 'v': 6}, {'u': 24, 'v': 7}, {'u': 24, 'v': 13}, {'u': 24, 'v': 14}, {'u': 11, 'v': 5}, {'u': 11, 'v': 15}, {'u': 11, 'v': 21}, {'u': 8, 'v': 21}, {'u': 19, 'v': 1}, {'u': 19, 'v': 20}, {'u': 19, 'v': 21}, {'u': 6, 'v': 2}, {'u': 2, 'v': 4}, {'u': 10, 'v': 7}, {'u': 25, 'v': 7}, {'u': 16, 'v': 13}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0034.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0034.png'}","[2, 4, 10, 11, 15, 20]",6.0,"{'num_elements': 25, 'num_sets': 24, 'sets': [{'id': 'S1', 'elements': [1, 9, 19]}, {'id': 'S2', 'elements': [2, 3, 4, 6, 22, 24]}, {'id': 'S3', 'elements': [2, 4, 11, 22, 23]}, {'id': 'S4', 'elements': [4, 6, 18, 23]}, {'id': 'S5', 'elements': [5, 23]}, {'id': 'S6', 'elements': [2, 4, 6, 7, 13, 14, 24]}, {'id': 'S7', 'elements': [6, 7, 10, 13, 14, 17, 24, 25]}, {'id': 'S8', 'elements': [8, 11, 19, 21]}, {'id': 'S9', 'elements': [1, 14, 19, 20, 23, 24]}, {'id': 'S10', 'elements': [7, 10, 12, 13, 17, 24, 25]}, {'id': 'S11', 'elements': [8, 14, 15, 19, 21, 23]}, {'id': 'S12', 'elements': [10, 12]}, {'id': 'S13', 'elements': [6, 10, 12, 14, 16, 24]}, {'id': 'S14', 'elements': [3, 7, 9, 11, 13, 14, 23, 24]}, {'id': 'S15', 'elements': [13, 16, 17, 24]}, {'id': 'S16', 'elements': [10, 12, 13, 17, 24]}, {'id': 'S17', 'elements': [2, 4, 6]}, {'id': 'S18', 'elements': [1, 8, 9, 11, 14, 20]}, {'id': 'S19', 'elements': [1, 9, 19, 20]}, {'id': 'S20', 'elements': [1, 5, 8, 9, 11, 20, 21, 23]}, {'id': 'S21', 'elements': [3, 22]}, {'id': 'S22', 'elements': [3, 5, 11, 15, 23]}, {'id': 'S23', 'elements': [6, 7, 9, 13, 14, 25]}, {'id': 'S24', 'elements': [7, 10, 25]}]}","['S2', 'S4', 'S10', 'S11', 'S15', 'S20']",35,markdown_table,1
SCP,SCP,"Recently the park committee realized they don’t need a huge crew — just a carefully chosen group of volunteers so every task-skill is accounted for. The smartest picks are the fewest volunteers whose combined abilities cover everything on the checklist; you can tell by tallying how many volunteers were selected. Nothing on the skill checklist can be skipped, and though a skill can show up more than once, duplicates don’t reduce the team size. The concrete lineup and skills are shown below.
There are 20 distinct task-skills to cover and 19 volunteers available.
Volunteer S1 offers skills A B P T.
Volunteer S2 offers skills A B F L T.
Volunteer S3 offers skills I K Q.
Volunteer S4 offers skills D F G I J S.
Volunteer S5 offers skills E I M S.
Volunteer S6 offers skills D F G H L T.
Volunteer S7 offers skills D G J.
Volunteer S8 offers skills F K O.
Volunteer S9 offers skills D I J M S.
Volunteer S10 offers skills F J N T.
Volunteer S11 offers skills C D I K Q S.
Volunteer S12 offers skills B F R T.
Volunteer S13 offers skills E I M.
Volunteer S14 offers skills F H N O T.
Volunteer S15 offers skills H I K N O.
Volunteer S16 offers skills A B T.
Volunteer S17 offers skills R T.
Volunteer S18 offers skills D E I K M S.
Volunteer S19 offers skills A B J L N P R.
Tally selected volunteers to confirm the smallest team covers all 20 skills.
Oh, and when you send the picked team back, please use this simple JSON shape so it’s easy to read by whatever’s checking it:
{
""solution"": [""volunteer_id"", ...]
}
Here ""solution"" is just the list of volunteer IDs you picked to cover all the tasks — think of it as the names on the sign-up sheet. This is only a sketch of the shape I want, not the actual answer; replace the placeholder(s) with the real IDs from the instance.
Please use the identifiers exactly as they appear in the instance input — don’t rename them or invent new labels.
- for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 20, 'num_sets': 19, 'density': 0.22105263157894736, 'sets': [{'id': 1, 'elements': [1, 2, 16, 20]}, {'id': 2, 'elements': [1, 2, 6, 12, 20]}, {'id': 3, 'elements': [9, 11, 17]}, {'id': 4, 'elements': [4, 6, 7, 9, 10, 19]}, {'id': 5, 'elements': [5, 9, 13, 19]}, {'id': 6, 'elements': [4, 6, 7, 8, 12, 20]}, {'id': 7, 'elements': [4, 7, 10]}, {'id': 8, 'elements': [6, 11, 15]}, {'id': 9, 'elements': [4, 9, 10, 13, 19]}, {'id': 10, 'elements': [6, 10, 14, 20]}, {'id': 11, 'elements': [3, 4, 9, 11, 17, 19]}, {'id': 12, 'elements': [2, 6, 18, 20]}, {'id': 13, 'elements': [5, 9, 13]}, {'id': 14, 'elements': [6, 8, 14, 15, 20]}, {'id': 15, 'elements': [8, 9, 11, 14, 15]}, {'id': 16, 'elements': [1, 2, 20]}, {'id': 17, 'elements': [18, 20]}, {'id': 18, 'elements': [4, 5, 9, 11, 13, 19]}, {'id': 19, 'elements': [1, 2, 10, 12, 14, 16, 18]}], 'graph': {'num_nodes': 20, 'edges': [{'u': 20, 'v': 2}, {'u': 20, 'v': 6}, {'u': 20, 'v': 12}, {'u': 5, 'v': 13}, {'u': 5, 'v': 19}, {'u': 15, 'v': 8}, {'u': 15, 'v': 11}, {'u': 18, 'v': 12}, {'u': 17, 'v': 3}, {'u': 13, 'v': 19}, {'u': 9, 'v': 4}, {'u': 9, 'v': 11}, {'u': 9, 'v': 19}, {'u': 1, 'v': 2}, {'u': 14, 'v': 6}, {'u': 14, 'v': 8}, {'u': 2, 'v': 16}, {'u': 4, 'v': 10}, {'u': 7, 'v': 10}, {'u': 10, 'v': 6}, {'u': 11, 'v': 3}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0035.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0035.png'}","[6, 11, 13, 14, 19]",5.0,"{'num_elements': 20, 'num_sets': 19, 'sets': [{'id': 'S1', 'elements': ['A', 'B', 'P', 'T']}, {'id': 'S2', 'elements': ['A', 'B', 'F', 'L', 'T']}, {'id': 'S3', 'elements': ['I', 'K', 'Q']}, {'id': 'S4', 'elements': ['D', 'F', 'G', 'I', 'J', 'S']}, {'id': 'S5', 'elements': ['E', 'I', 'M', 'S']}, {'id': 'S6', 'elements': ['D', 'F', 'G', 'H', 'L', 'T']}, {'id': 'S7', 'elements': ['D', 'G', 'J']}, {'id': 'S8', 'elements': ['F', 'K', 'O']}, {'id': 'S9', 'elements': ['D', 'I', 'J', 'M', 'S']}, {'id': 'S10', 'elements': ['F', 'J', 'N', 'T']}, {'id': 'S11', 'elements': ['C', 'D', 'I', 'K', 'Q', 'S']}, {'id': 'S12', 'elements': ['B', 'F', 'R', 'T']}, {'id': 'S13', 'elements': ['E', 'I', 'M']}, {'id': 'S14', 'elements': ['F', 'H', 'N', 'O', 'T']}, {'id': 'S15', 'elements': ['H', 'I', 'K', 'N', 'O']}, {'id': 'S16', 'elements': ['A', 'B', 'T']}, {'id': 'S17', 'elements': ['R', 'T']}, {'id': 'S18', 'elements': ['D', 'E', 'I', 'K', 'M', 'S']}, {'id': 'S19', 'elements': ['A', 'B', 'J', 'L', 'N', 'P', 'R']}]}","['S6', 'S11', 'S13', 'S14', 'S19']",36,nl,names
SCP,SCP,"We’ve got a pile of master and sub-keys and a lineup of servers, printers, and appliances; someone needs to decide which keys to keep in the secure drawer. The aim is to keep the smallest possible set of keys that still lets at least one chosen key open every single system. Plans are judged by counting how many keys they include — fewer keys is better — while making sure no system is left unreachable and avoiding unnecessary duplicate coverage. The concrete details are listed below.
{
""num_systems"": 24,
""num_keys_available"": 23,
""sets"": [
{
""key_id"": ""S1"",
""accessible_systems"": [
9,
14,
15,
16,
20
]
},
{
""key_id"": ""S2"",
""accessible_systems"": [
6,
10,
17,
19,
20,
23
]
},
{
""key_id"": ""S3"",
""accessible_systems"": [
3,
13
]
},
{
""key_id"": ""S4"",
""accessible_systems"": [
2,
4,
11,
12,
17
]
},
{
""key_id"": ""S5"",
""accessible_systems"": [
5,
7,
10,
17
]
},
{
""key_id"": ""S6"",
""accessible_systems"": [
17,
24
]
},
{
""key_id"": ""S7"",
""accessible_systems"": [
5,
10
]
},
{
""key_id"": ""S8"",
""accessible_systems"": [
4,
8,
11
]
},
{
""key_id"": ""S9"",
""accessible_systems"": [
1,
9,
21,
22
]
},
{
""key_id"": ""S10"",
""accessible_systems"": [
2,
4,
10,
12
]
},
{
""key_id"": ""S11"",
""accessible_systems"": [
4,
18
]
},
{
""key_id"": ""S12"",
""accessible_systems"": [
2,
3,
4,
12,
13,
17
]
},
{
""key_id"": ""S13"",
""accessible_systems"": [
1,
14,
16
]
},
{
""key_id"": ""S14"",
""accessible_systems"": [
1,
14,
15,
16
]
},
{
""key_id"": ""S15"",
""accessible_systems"": [
1,
9,
14,
15,
16,
20,
22
]
},
{
""key_id"": ""S16"",
""accessible_systems"": [
3,
4,
5,
6,
10,
11,
12,
18,
23
]
},
{
""key_id"": ""S17"",
""accessible_systems"": [
4,
11,
17,
18
]
},
{
""key_id"": ""S18"",
""accessible_systems"": [
2,
6,
19,
20
]
},
{
""key_id"": ""S19"",
""accessible_systems"": [
6,
9,
16,
19,
20
]
},
{
""key_id"": ""S20"",
""accessible_systems"": [
21,
22
]
},
{
""key_id"": ""S21"",
""accessible_systems"": [
9,
21,
22
]
},
{
""key_id"": ""S22"",
""accessible_systems"": [
2,
23
]
},
{
""key_id"": ""S23"",
""accessible_systems"": [
6,
16,
20,
24
]
}
]
}
Oh — and when you send back the plan, stick to a tiny JSON outline like this so it's easy to read and automatic tools can pick it up:
{
""solution"": [""key_id"", ...]
}
""solution"" is the list of keys you'll keep in the secure drawer; each ""key_id"" is just a placeholder for one of the actual key identifiers from the instance. This is only a sketch of the shape I want, not the filled-in answer.
All identifiers must be used exactly as they appear in the instance input — no renaming and no new labels.
- for example: ""Valid identifiers look like plain numbers such as ""1"" or ""23"", single capital letters like ""A"" or ""B"", or a capital letter followed by digits like ""A1"" or ""X7"".""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 24, 'num_sets': 23, 'density': 0.16666666666666666, 'sets': [{'id': 1, 'elements': [9, 14, 15, 16, 20]}, {'id': 2, 'elements': [6, 10, 17, 19, 20, 23]}, {'id': 3, 'elements': [3, 13]}, {'id': 4, 'elements': [2, 4, 11, 12, 17]}, {'id': 5, 'elements': [5, 7, 10, 17]}, {'id': 6, 'elements': [17, 24]}, {'id': 7, 'elements': [5, 10]}, {'id': 8, 'elements': [4, 8, 11]}, {'id': 9, 'elements': [1, 9, 21, 22]}, {'id': 10, 'elements': [2, 4, 10, 12]}, {'id': 11, 'elements': [4, 18]}, {'id': 12, 'elements': [2, 3, 4, 12, 13, 17]}, {'id': 13, 'elements': [1, 14, 16]}, {'id': 14, 'elements': [1, 14, 15, 16]}, {'id': 15, 'elements': [1, 9, 14, 15, 16, 20, 22]}, {'id': 16, 'elements': [3, 4, 5, 6, 10, 11, 12, 18, 23]}, {'id': 17, 'elements': [4, 11, 17, 18]}, {'id': 18, 'elements': [2, 6, 19, 20]}, {'id': 19, 'elements': [6, 9, 16, 19, 20]}, {'id': 20, 'elements': [21, 22]}, {'id': 21, 'elements': [9, 21, 22]}, {'id': 22, 'elements': [2, 23]}, {'id': 23, 'elements': [6, 16, 20, 24]}], 'graph': {'num_nodes': 24, 'edges': [{'u': 22, 'v': 9}, {'u': 5, 'v': 7}, {'u': 5, 'v': 10}, {'u': 24, 'v': 20}, {'u': 3, 'v': 12}, {'u': 3, 'v': 13}, {'u': 17, 'v': 2}, {'u': 17, 'v': 4}, {'u': 17, 'v': 10}, {'u': 17, 'v': 12}, {'u': 6, 'v': 2}, {'u': 6, 'v': 19}, {'u': 6, 'v': 20}, {'u': 4, 'v': 11}, {'u': 4, 'v': 18}, {'u': 11, 'v': 8}, {'u': 20, 'v': 16}, {'u': 15, 'v': 1}, {'u': 16, 'v': 1}, {'u': 16, 'v': 9}, {'u': 9, 'v': 21}, {'u': 23, 'v': 2}, {'u': 14, 'v': 1}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0036.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0036.png'}","[5, 8, 9, 12, 15, 16, 19, 23]",8.0,"{'num_elements': 24, 'num_sets': 23, 'sets': [{'id': 'S1', 'elements': [9, 14, 15, 16, 20]}, {'id': 'S2', 'elements': [6, 10, 17, 19, 20, 23]}, {'id': 'S3', 'elements': [3, 13]}, {'id': 'S4', 'elements': [2, 4, 11, 12, 17]}, {'id': 'S5', 'elements': [5, 7, 10, 17]}, {'id': 'S6', 'elements': [17, 24]}, {'id': 'S7', 'elements': [5, 10]}, {'id': 'S8', 'elements': [4, 8, 11]}, {'id': 'S9', 'elements': [1, 9, 21, 22]}, {'id': 'S10', 'elements': [2, 4, 10, 12]}, {'id': 'S11', 'elements': [4, 18]}, {'id': 'S12', 'elements': [2, 3, 4, 12, 13, 17]}, {'id': 'S13', 'elements': [1, 14, 16]}, {'id': 'S14', 'elements': [1, 14, 15, 16]}, {'id': 'S15', 'elements': [1, 9, 14, 15, 16, 20, 22]}, {'id': 'S16', 'elements': [3, 4, 5, 6, 10, 11, 12, 18, 23]}, {'id': 'S17', 'elements': [4, 11, 17, 18]}, {'id': 'S18', 'elements': [2, 6, 19, 20]}, {'id': 'S19', 'elements': [6, 9, 16, 19, 20]}, {'id': 'S20', 'elements': [21, 22]}, {'id': 'S21', 'elements': [9, 21, 22]}, {'id': 'S22', 'elements': [2, 23]}, {'id': 'S23', 'elements': [6, 16, 20, 24]}]}","['S5', 'S8', 'S9', 'S12', 'S15', 'S16', 'S19', 'S23']",37,json,1
SCP,SCP,"Many people on the gardening committee prefer tidy beds, so the gardener’s brief was simple: use the smallest number of plant varieties that still entice every target pollinator species. A plan is better when it contains fewer distinct varieties; you measure that by tallying the varieties selected. It’s mandatory that each pollinator on the list finds at least one attractive plant among the picks, and duplicates don’t add anything useful. The specific lists are shown below.
- **num_pollinators**: 22
- **num_varieties_available**: 21
| plant_variety_id | attractive_pollinators |
|---|---|
| S1 | 0 5 12 |
| S2 | 1 18 |
| S3 | 2 3 4 15 20 21 |
| S4 | 2 8 9 11 15 19 |
| S5 | 2 4 9 21 |
| S6 | 5 9 12 15 |
| S7 | 6 11 |
| S8 | 7 14 16 17 |
| S9 | 3 8 9 10 11 18 19 |
| S10 | 2 3 4 8 9 15 19 21 |
| S11 | 6 8 11 18 |
| S12 | 1 3 6 10 17 18 |
| S13 | 0 5 15 |
| S14 | 7 13 14 16 |
| S15 | 0 5 9 12 15 |
| S16 | 7 8 14 |
| S17 | 3 7 8 11 13 14 16 17 |
| S18 | 1 10 11 18 |
| S19 | 8 19 |
| S20 | 2 20 21 |
| S21 | 2 4 |
If you want to hand me the final picks in a tidy way, just use a tiny JSON snippet like this — nothing fancy, just a list of the variety identifiers you choose.
{
""solution"": [""variety_id"", ...]
}
""solution"" is simply the list of plant varieties to plant (one entry per variety). Treat each array item as the exact identifier for a variety from the instance input — this JSON is just a sketch of the shape I expect, not the actual answer.
Please be sure to use the identifiers exactly as they appear in the input — no renaming and no new labels.
- for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 22, 'num_sets': 21, 'density': 0.19480519480519481, 'sets': [{'id': 1, 'elements': [1, 6, 13]}, {'id': 2, 'elements': [2, 19]}, {'id': 3, 'elements': [3, 4, 5, 16, 21, 22]}, {'id': 4, 'elements': [3, 9, 10, 12, 16, 20]}, {'id': 5, 'elements': [3, 5, 10, 22]}, {'id': 6, 'elements': [6, 10, 13, 16]}, {'id': 7, 'elements': [7, 12]}, {'id': 8, 'elements': [8, 15, 17, 18]}, {'id': 9, 'elements': [4, 9, 10, 11, 12, 19, 20]}, {'id': 10, 'elements': [3, 4, 5, 9, 10, 16, 20, 22]}, {'id': 11, 'elements': [7, 9, 12, 19]}, {'id': 12, 'elements': [2, 4, 7, 11, 18, 19]}, {'id': 13, 'elements': [1, 6, 16]}, {'id': 14, 'elements': [8, 14, 15, 17]}, {'id': 15, 'elements': [1, 6, 10, 13, 16]}, {'id': 16, 'elements': [8, 9, 15]}, {'id': 17, 'elements': [4, 8, 9, 12, 14, 15, 17, 18]}, {'id': 18, 'elements': [2, 11, 12, 19]}, {'id': 19, 'elements': [9, 20]}, {'id': 20, 'elements': [3, 21, 22]}, {'id': 21, 'elements': [3, 5]}], 'graph': {'num_nodes': 22, 'edges': [{'u': 13, 'v': 6}, {'u': 8, 'v': 17}, {'u': 9, 'v': 4}, {'u': 9, 'v': 12}, {'u': 9, 'v': 18}, {'u': 3, 'v': 5}, {'u': 3, 'v': 10}, {'u': 3, 'v': 22}, {'u': 4, 'v': 10}, {'u': 4, 'v': 20}, {'u': 15, 'v': 17}, {'u': 16, 'v': 6}, {'u': 16, 'v': 10}, {'u': 11, 'v': 7}, {'u': 11, 'v': 12}, {'u': 17, 'v': 14}, {'u': 17, 'v': 18}, {'u': 19, 'v': 2}, {'u': 19, 'v': 12}, {'u': 22, 'v': 21}, {'u': 1, 'v': 6}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0037.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0037.png'}","[3, 10, 12, 15, 17]",5.0,"{'num_elements': 22, 'num_sets': 21, 'sets': [{'id': 'S1', 'elements': [0, 5, 12]}, {'id': 'S2', 'elements': [1, 18]}, {'id': 'S3', 'elements': [2, 3, 4, 15, 20, 21]}, {'id': 'S4', 'elements': [2, 8, 9, 11, 15, 19]}, {'id': 'S5', 'elements': [2, 4, 9, 21]}, {'id': 'S6', 'elements': [5, 9, 12, 15]}, {'id': 'S7', 'elements': [6, 11]}, {'id': 'S8', 'elements': [7, 14, 16, 17]}, {'id': 'S9', 'elements': [3, 8, 9, 10, 11, 18, 19]}, {'id': 'S10', 'elements': [2, 3, 4, 8, 9, 15, 19, 21]}, {'id': 'S11', 'elements': [6, 8, 11, 18]}, {'id': 'S12', 'elements': [1, 3, 6, 10, 17, 18]}, {'id': 'S13', 'elements': [0, 5, 15]}, {'id': 'S14', 'elements': [7, 13, 14, 16]}, {'id': 'S15', 'elements': [0, 5, 9, 12, 15]}, {'id': 'S16', 'elements': [7, 8, 14]}, {'id': 'S17', 'elements': [3, 7, 8, 11, 13, 14, 16, 17]}, {'id': 'S18', 'elements': [1, 10, 11, 18]}, {'id': 'S19', 'elements': [8, 19]}, {'id': 'S20', 'elements': [2, 20, 21]}, {'id': 'S21', 'elements': [2, 4]}]}","['S3', 'S10', 'S12', 'S15', 'S17']",38,markdown_table,0
SCP,SCP,"We were prepping the house for a deep-clean weekend and needed to decide which cleaning kits to put in each area so every room had cleaning supplies on hand. The idea was to keep the number of distinct kits to a minimum (just count the kits chosen) while ensuring every room shows up in at least one kit’s coverage and nothing gets left out or redundantly repeated. The concrete details will be shown below.
We listed 20 available kits and 21 rooms below.
Kit S1 covers 1 2 5 9 16.
Kit S2 covers 9 18.
Kit S3 covers 10 11 13 19 20.
Kit S4 covers 1 5 16 18.
Kit S5 covers 6 21.
Kit S6 covers 7 14 17.
Kit S7 covers 6 8 15 20 21.
Kit S8 covers 1 2 3 9 11 18.
Kit S9 covers 10 12 14 19.
Kit S10 covers 1 2 4 9 11 13 18 19.
Kit S11 covers 10 17.
Kit S12 covers 11 13 19 20.
Kit S13 covers 7 12 14.
Kit S14 covers 8 13.
Kit S15 covers 5 18.
Kit S16 covers 7 12.
Kit S17 covers 1 2 4 9 11 18.
Kit S18 covers 4 10 11 13 19.
Kit S19 covers 4 8 13 15 20.
Kit S20 covers 8 15 21.
We'll try to pick as few kits as possible so all 21 rooms are covered.
Also, when you send back which kits you're actually choosing, please use this simple JSON shape so it's easy to read and plug into the checklist:
{
""solution"": [""kit_id"", ...]
}
Pretty straightforward: ""solution"" is the list of kit identifiers you'll pick to place around the house, and ""kit_id"" is just a placeholder for each kit's identifier (like the label the instance uses). This is just a sketch of the shape I want — not the final answer.
Please make sure to use the exact identifiers from the instance input — no renaming and no new labels. Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 21, 'num_sets': 20, 'density': 0.18571428571428572, 'sets': [{'id': 1, 'elements': [1, 2, 5, 9, 16]}, {'id': 2, 'elements': [9, 18]}, {'id': 3, 'elements': [10, 11, 13, 19, 20]}, {'id': 4, 'elements': [1, 5, 16, 18]}, {'id': 5, 'elements': [6, 21]}, {'id': 6, 'elements': [7, 14, 17]}, {'id': 7, 'elements': [6, 8, 15, 20, 21]}, {'id': 8, 'elements': [1, 2, 3, 9, 11, 18]}, {'id': 9, 'elements': [10, 12, 14, 19]}, {'id': 10, 'elements': [1, 2, 4, 9, 11, 13, 18, 19]}, {'id': 11, 'elements': [10, 17]}, {'id': 12, 'elements': [11, 13, 19, 20]}, {'id': 13, 'elements': [7, 12, 14]}, {'id': 14, 'elements': [8, 13]}, {'id': 15, 'elements': [5, 18]}, {'id': 16, 'elements': [7, 12]}, {'id': 17, 'elements': [1, 2, 4, 9, 11, 18]}, {'id': 18, 'elements': [4, 10, 11, 13, 19]}, {'id': 19, 'elements': [4, 8, 13, 15, 20]}, {'id': 20, 'elements': [8, 15, 21]}], 'graph': {'num_nodes': 21, 'edges': [{'u': 20, 'v': 13}, {'u': 20, 'v': 15}, {'u': 9, 'v': 3}, {'u': 9, 'v': 18}, {'u': 1, 'v': 5}, {'u': 1, 'v': 16}, {'u': 1, 'v': 18}, {'u': 2, 'v': 18}, {'u': 14, 'v': 7}, {'u': 14, 'v': 17}, {'u': 8, 'v': 6}, {'u': 8, 'v': 15}, {'u': 8, 'v': 21}, {'u': 18, 'v': 11}, {'u': 12, 'v': 17}, {'u': 13, 'v': 4}, {'u': 10, 'v': 17}, {'u': 10, 'v': 19}, {'u': 4, 'v': 11}, {'u': 4, 'v': 19}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0038.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0038.png'}","[1, 6, 7, 8, 13, 18]",6.0,"{'num_elements': 21, 'num_sets': 20, 'sets': [{'id': 'S1', 'elements': [1, 2, 5, 9, 16]}, {'id': 'S2', 'elements': [9, 18]}, {'id': 'S3', 'elements': [10, 11, 13, 19, 20]}, {'id': 'S4', 'elements': [1, 5, 16, 18]}, {'id': 'S5', 'elements': [6, 21]}, {'id': 'S6', 'elements': [7, 14, 17]}, {'id': 'S7', 'elements': [6, 8, 15, 20, 21]}, {'id': 'S8', 'elements': [1, 2, 3, 9, 11, 18]}, {'id': 'S9', 'elements': [10, 12, 14, 19]}, {'id': 'S10', 'elements': [1, 2, 4, 9, 11, 13, 18, 19]}, {'id': 'S11', 'elements': [10, 17]}, {'id': 'S12', 'elements': [11, 13, 19, 20]}, {'id': 'S13', 'elements': [7, 12, 14]}, {'id': 'S14', 'elements': [8, 13]}, {'id': 'S15', 'elements': [5, 18]}, {'id': 'S16', 'elements': [7, 12]}, {'id': 'S17', 'elements': [1, 2, 4, 9, 11, 18]}, {'id': 'S18', 'elements': [4, 10, 11, 13, 19]}, {'id': 'S19', 'elements': [4, 8, 13, 15, 20]}, {'id': 'S20', 'elements': [8, 15, 21]}]}","['S1', 'S6', 'S7', 'S8', 'S13', 'S18']",39,nl,1
SCP,SCP,"Recently the school decided to streamline extracurriculars: the teacher’s job is to pick a minimal set of clubs so every student sees at least one of their interests on the schedule. The success check is straightforward — add up how many clubs were picked; fewer clubs means a tighter plan — and be careful not to leave anyone without a match or to add clubs only for duplicate coverage. The detailed list of students and club choices follows below.
{
""total_students_to_cover"": 20,
""total_clubs_available"": 18,
""sets"": [
{
""club_id"": ""S1"",
""students_interested"": [
""A"",
""G"",
""K"",
""L"",
""M""
]
},
{
""club_id"": ""S2"",
""students_interested"": [
""B"",
""C"",
""J"",
""K""
]
},
{
""club_id"": ""S3"",
""students_interested"": [
""B"",
""C"",
""K""
]
},
{
""club_id"": ""S4"",
""students_interested"": [
""D"",
""F"",
""J"",
""K"",
""L"",
""N"",
""O"",
""S""
]
},
{
""club_id"": ""S5"",
""students_interested"": [
""E"",
""T""
]
},
{
""club_id"": ""S6"",
""students_interested"": [
""D"",
""F"",
""N"",
""R""
]
},
{
""club_id"": ""S7"",
""students_interested"": [
""G"",
""I"",
""L""
]
},
{
""club_id"": ""S8"",
""students_interested"": [
""H"",
""Q""
]
},
{
""club_id"": ""S9"",
""students_interested"": [
""D"",
""G"",
""H"",
""I"",
""Q"",
""S""
]
},
{
""club_id"": ""S10"",
""students_interested"": [
""B"",
""C"",
""D"",
""J"",
""K""
]
},
{
""club_id"": ""S11"",
""students_interested"": [
""A"",
""C"",
""D"",
""J"",
""K"",
""L"",
""M"",
""N"",
""S""
]
},
{
""club_id"": ""S12"",
""students_interested"": [
""A"",
""G"",
""J"",
""K"",
""L"",
""M""
]
},
{
""club_id"": ""S13"",
""students_interested"": [
""A"",
""M""
]
},
{
""club_id"": ""S14"",
""students_interested"": [
""D"",
""F"",
""K"",
""N""
]
},
{
""club_id"": ""S15"",
""students_interested"": [
""D"",
""F"",
""N"",
""O""
]
},
{
""club_id"": ""S16"",
""students_interested"": [
""F"",
""R""
]
},
{
""club_id"": ""S17"",
""students_interested"": [
""H"",
""I"",
""K"",
""N"",
""P"",
""Q"",
""S""
]
},
{
""club_id"": ""S18"",
""students_interested"": [
""D"",
""E"",
""I"",
""T""
]
}
]
}
Also, when you send back the picks, please stick to this simple JSON shape — just a friendly way for me to read the list:
{
""solution"": [""club_id"", ...]
}
""solution"" is where you list the clubs the teacher should pick; the entries like ""club_id"" are just placeholders for the actual club identifiers from the instance (so replace them with the real IDs, not new labels). This block is only a sketch of the expected shape, not the actual answer itself — think of it like a little form you fill out.
Make sure to use the identifiers exactly as they appear in the instance input — no renaming and no inventing new labels. Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 20, 'num_sets': 18, 'density': 0.2222222222222222, 'sets': [{'id': 1, 'elements': [1, 7, 11, 12, 13]}, {'id': 2, 'elements': [2, 3, 10, 11]}, {'id': 3, 'elements': [2, 3, 11]}, {'id': 4, 'elements': [4, 6, 10, 11, 12, 14, 15, 19]}, {'id': 5, 'elements': [5, 20]}, {'id': 6, 'elements': [4, 6, 14, 18]}, {'id': 7, 'elements': [7, 9, 12]}, {'id': 8, 'elements': [8, 17]}, {'id': 9, 'elements': [4, 7, 8, 9, 17, 19]}, {'id': 10, 'elements': [2, 3, 4, 10, 11]}, {'id': 11, 'elements': [1, 3, 4, 10, 11, 12, 13, 14, 19]}, {'id': 12, 'elements': [1, 7, 10, 11, 12, 13]}, {'id': 13, 'elements': [1, 13]}, {'id': 14, 'elements': [4, 6, 11, 14]}, {'id': 15, 'elements': [4, 6, 14, 15]}, {'id': 16, 'elements': [6, 18]}, {'id': 17, 'elements': [8, 9, 11, 14, 16, 17, 19]}, {'id': 18, 'elements': [4, 5, 9, 20]}], 'graph': {'num_nodes': 20, 'edges': [{'u': 2, 'v': 10}, {'u': 3, 'v': 10}, {'u': 4, 'v': 11}, {'u': 4, 'v': 14}, {'u': 4, 'v': 19}, {'u': 5, 'v': 20}, {'u': 19, 'v': 9}, {'u': 19, 'v': 20}, {'u': 20, 'v': 16}, {'u': 17, 'v': 9}, {'u': 6, 'v': 14}, {'u': 6, 'v': 18}, {'u': 10, 'v': 11}, {'u': 11, 'v': 12}, {'u': 12, 'v': 1}, {'u': 12, 'v': 13}, {'u': 1, 'v': 7}, {'u': 7, 'v': 8}, {'u': 8, 'v': 9}, {'u': 14, 'v': 15}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0039.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0039.png'}","[4, 6, 10, 12, 17, 18]",6.0,"{'num_elements': 20, 'num_sets': 18, 'sets': [{'id': 'S1', 'elements': ['A', 'G', 'K', 'L', 'M']}, {'id': 'S2', 'elements': ['B', 'C', 'J', 'K']}, {'id': 'S3', 'elements': ['B', 'C', 'K']}, {'id': 'S4', 'elements': ['D', 'F', 'J', 'K', 'L', 'N', 'O', 'S']}, {'id': 'S5', 'elements': ['E', 'T']}, {'id': 'S6', 'elements': ['D', 'F', 'N', 'R']}, {'id': 'S7', 'elements': ['G', 'I', 'L']}, {'id': 'S8', 'elements': ['H', 'Q']}, {'id': 'S9', 'elements': ['D', 'G', 'H', 'I', 'Q', 'S']}, {'id': 'S10', 'elements': ['B', 'C', 'D', 'J', 'K']}, {'id': 'S11', 'elements': ['A', 'C', 'D', 'J', 'K', 'L', 'M', 'N', 'S']}, {'id': 'S12', 'elements': ['A', 'G', 'J', 'K', 'L', 'M']}, {'id': 'S13', 'elements': ['A', 'M']}, {'id': 'S14', 'elements': ['D', 'F', 'K', 'N']}, {'id': 'S15', 'elements': ['D', 'F', 'N', 'O']}, {'id': 'S16', 'elements': ['F', 'R']}, {'id': 'S17', 'elements': ['H', 'I', 'K', 'N', 'P', 'Q', 'S']}, {'id': 'S18', 'elements': ['D', 'E', 'I', 'T']}]}","['S4', 'S6', 'S10', 'S12', 'S17', 'S18']",40,json,names
SCP,SCP,"We’ve got a storefront full of different display units and a bunch of product categories that need shelf space; the task is to choose only the stands that together show every category. The measure of success is straightforward: add up the stands picked and try to keep that total as low as possible, as long as every category appears at least once. Every category must be represented among the selected stands, and picking extra stands that don’t add new categories is wasteful. The concrete details — which stands have which categories — are given below.
We have 20 display stands and 20 product categories to cover:
Stand S1 showcases 0 2 7.
Stand S2 showcases 1 12.
Stand S3 showcases 0 1 3 7 10 12.
Stand S4 showcases 0 1 2 4 7.
Stand S5 showcases 3 4 12.
Stand S6 showcases 5 6 11.
Stand S7 showcases 5 6 8 11 12.
Stand S8 showcases 0 3 7 9 10 14.
Stand S9 showcases 6 8 12.
Stand S10 showcases 2 7 10 13 14 15.
Stand S11 showcases 7 9 10 16 17 19.
Stand S12 showcases 3 5 11 12.
Stand S13 showcases 1 2 3 6 12.
Stand S14 showcases 9 14 15.
Stand S15 showcases 7 9 13.
Stand S16 showcases 9 13 14 15.
Stand S17 showcases 7 10 16.
Stand S18 showcases 16 17.
Stand S19 showcases 16 18 19.
Stand S20 showcases 10 18.
We should choose the fewest stands that together cover all 20 categories.
Also, when you send back the chosen stands, please use a tiny JSON object in this shape so it’s easy to check and parse:
{
""solution"": [""stand_id""]
}
Think of ""solution"" as the list of stand IDs you pick to cover every product category — each entry is one stand’s identifier. This JSON is just a sketch of the expected shape, not the actual answer, so fill the array with the exact stand IDs from the instance when you submit.
Please use the identifiers exactly as they appear in the instance input — no renaming, no made-up labels.
- for example: ""1"", ""23"", ""A"", ""B"", ""A1"", ""X7""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 20, 'num_sets': 20, 'density': 0.1925, 'sets': [{'id': 1, 'elements': [1, 3, 8]}, {'id': 2, 'elements': [2, 13]}, {'id': 3, 'elements': [1, 2, 4, 8, 11, 13]}, {'id': 4, 'elements': [1, 2, 3, 5, 8]}, {'id': 5, 'elements': [4, 5, 13]}, {'id': 6, 'elements': [6, 7, 12]}, {'id': 7, 'elements': [6, 7, 9, 12, 13]}, {'id': 8, 'elements': [1, 4, 8, 10, 11, 15]}, {'id': 9, 'elements': [7, 9, 13]}, {'id': 10, 'elements': [3, 8, 11, 14, 15, 16]}, {'id': 11, 'elements': [8, 10, 11, 17, 18, 20]}, {'id': 12, 'elements': [4, 6, 12, 13]}, {'id': 13, 'elements': [2, 3, 4, 7, 13]}, {'id': 14, 'elements': [10, 15, 16]}, {'id': 15, 'elements': [8, 10, 14]}, {'id': 16, 'elements': [10, 14, 15, 16]}, {'id': 17, 'elements': [8, 11, 17]}, {'id': 18, 'elements': [17, 18]}, {'id': 19, 'elements': [17, 19, 20]}, {'id': 20, 'elements': [11, 19]}], 'graph': {'num_nodes': 20, 'edges': [{'u': 10, 'v': 8}, {'u': 10, 'v': 15}, {'u': 11, 'v': 8}, {'u': 11, 'v': 17}, {'u': 11, 'v': 19}, {'u': 12, 'v': 7}, {'u': 12, 'v': 9}, {'u': 12, 'v': 13}, {'u': 13, 'v': 4}, {'u': 13, 'v': 5}, {'u': 19, 'v': 20}, {'u': 3, 'v': 1}, {'u': 3, 'v': 4}, {'u': 3, 'v': 8}, {'u': 15, 'v': 14}, {'u': 15, 'v': 16}, {'u': 17, 'v': 18}, {'u': 4, 'v': 2}, {'u': 6, 'v': 7}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0040.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0040.png'}","[4, 5, 7, 10, 11, 19]",6.0,"{'num_elements': 20, 'num_sets': 20, 'sets': [{'id': 'S1', 'elements': [0, 2, 7]}, {'id': 'S2', 'elements': [1, 12]}, {'id': 'S3', 'elements': [0, 1, 3, 7, 10, 12]}, {'id': 'S4', 'elements': [0, 1, 2, 4, 7]}, {'id': 'S5', 'elements': [3, 4, 12]}, {'id': 'S6', 'elements': [5, 6, 11]}, {'id': 'S7', 'elements': [5, 6, 8, 11, 12]}, {'id': 'S8', 'elements': [0, 3, 7, 9, 10, 14]}, {'id': 'S9', 'elements': [6, 8, 12]}, {'id': 'S10', 'elements': [2, 7, 10, 13, 14, 15]}, {'id': 'S11', 'elements': [7, 9, 10, 16, 17, 19]}, {'id': 'S12', 'elements': [3, 5, 11, 12]}, {'id': 'S13', 'elements': [1, 2, 3, 6, 12]}, {'id': 'S14', 'elements': [9, 14, 15]}, {'id': 'S15', 'elements': [7, 9, 13]}, {'id': 'S16', 'elements': [9, 13, 14, 15]}, {'id': 'S17', 'elements': [7, 10, 16]}, {'id': 'S18', 'elements': [16, 17]}, {'id': 'S19', 'elements': [16, 18, 19]}, {'id': 'S20', 'elements': [10, 18]}]}","['S4', 'S5', 'S7', 'S10', 'S11', 'S19']",41,nl,0
SCP,SCP,"There’s a charity brunch coming up and the challenge is selecting caterers so every dietary request is met without hiring a bunch of them. The goal is simple: keep the number of caterers as small as possible (count them up to see how many), but only if every dietary need shows up in the menus of the caterers that are actually hired. Every requirement needs at least one match among the chosen vendors, and leaving anything out is not allowed — the full list of needs and what each caterer offers appears below.
{
""num_dietary_requirements"": 25,
""num_caterers_available"": 25,
""sets"": [
{
""caterer_id"": ""S1"",
""offered_requirements"": [
1,
12,
15,
16
]
},
{
""caterer_id"": ""S2"",
""offered_requirements"": [
2,
6,
10,
11,
12,
18,
21,
25
]
},
{
""caterer_id"": ""S3"",
""offered_requirements"": [
3,
4,
6,
8,
19
]
},
{
""caterer_id"": ""S4"",
""offered_requirements"": [
3,
6,
19,
21
]
},
{
""caterer_id"": ""S5"",
""offered_requirements"": [
5,
9,
23
]
},
{
""caterer_id"": ""S6"",
""offered_requirements"": [
2,
3,
4,
21
]
},
{
""caterer_id"": ""S7"",
""offered_requirements"": [
7,
17,
20
]
},
{
""caterer_id"": ""S8"",
""offered_requirements"": [
3,
8,
19
]
},
{
""caterer_id"": ""S9"",
""offered_requirements"": [
5,
12,
14,
16,
23,
24,
25
]
},
{
""caterer_id"": ""S10"",
""offered_requirements"": [
2,
10,
11
]
},
{
""caterer_id"": ""S11"",
""offered_requirements"": [
2,
11
]
},
{
""caterer_id"": ""S12"",
""offered_requirements"": [
1,
2,
5,
9,
14,
16,
23,
25
]
},
{
""caterer_id"": ""S13"",
""offered_requirements"": [
12,
14,
24
]
},
{
""caterer_id"": ""S14"",
""offered_requirements"": [
13,
14,
16,
23,
24
]
},
{
""caterer_id"": ""S15"",
""offered_requirements"": [
1,
12
]
},
{
""caterer_id"": ""S16"",
""offered_requirements"": [
9,
12,
14,
15,
16
]
},
{
""caterer_id"": ""S17"",
""offered_requirements"": [
7,
17,
22
]
},
{
""caterer_id"": ""S18"",
""offered_requirements"": [
22,
25
]
},
{
""caterer_id"": ""S19"",
""offered_requirements"": [
4,
8,
19
]
},
{
""caterer_id"": ""S20"",
""offered_requirements"": [
18,
20,
22,
25
]
},
{
""caterer_id"": ""S21"",
""offered_requirements"": [
2,
4,
10
]
},
{
""caterer_id"": ""S22"",
""offered_requirements"": [
7,
17,
20,
22
]
},
{
""caterer_id"": ""S23"",
""offered_requirements"": [
5,
9,
12,
14,
23,
24
]
},
{
""caterer_id"": ""S24"",
""offered_requirements"": [
9,
12,
13,
14,
23
]
},
{
""caterer_id"": ""S25"",
""offered_requirements"": [
2,
9,
12,
14,
16,
18,
20,
21
]
}
]
}
If you want to hand me the picks in a simple, machine-friendly way, just follow this little JSON layout — nothing fancy, just a list of the caterers you picked.
{
""solution"": [""caterer_id"", ...]
}
Think of ""solution"" as the form field that holds the chosen caterer IDs. Each entry in the array should be one of the caterer identifiers from the instance (so I know exactly who you hired). This JSON is just a sketch of the shape I expect, not the actual answer — fill in the real IDs when you're ready.
Please use the identifiers exactly as they appear in the instance input — no renaming and no new labels.
- for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 25, 'num_sets': 25, 'density': 0.1712, 'sets': [{'id': 1, 'elements': [1, 12, 15, 16]}, {'id': 2, 'elements': [2, 6, 10, 11, 12, 18, 21, 25]}, {'id': 3, 'elements': [3, 4, 6, 8, 19]}, {'id': 4, 'elements': [3, 6, 19, 21]}, {'id': 5, 'elements': [5, 9, 23]}, {'id': 6, 'elements': [2, 3, 4, 21]}, {'id': 7, 'elements': [7, 17, 20]}, {'id': 8, 'elements': [3, 8, 19]}, {'id': 9, 'elements': [5, 12, 14, 16, 23, 24, 25]}, {'id': 10, 'elements': [2, 10, 11]}, {'id': 11, 'elements': [2, 11]}, {'id': 12, 'elements': [1, 2, 5, 9, 14, 16, 23, 25]}, {'id': 13, 'elements': [12, 14, 24]}, {'id': 14, 'elements': [13, 14, 16, 23, 24]}, {'id': 15, 'elements': [1, 12]}, {'id': 16, 'elements': [9, 12, 14, 15, 16]}, {'id': 17, 'elements': [7, 17, 22]}, {'id': 18, 'elements': [22, 25]}, {'id': 19, 'elements': [4, 8, 19]}, {'id': 20, 'elements': [18, 20, 22, 25]}, {'id': 21, 'elements': [2, 4, 10]}, {'id': 22, 'elements': [7, 17, 20, 22]}, {'id': 23, 'elements': [5, 9, 12, 14, 23, 24]}, {'id': 24, 'elements': [9, 12, 13, 14, 23]}, {'id': 25, 'elements': [2, 9, 12, 14, 16, 18, 20, 21]}], 'graph': {'num_nodes': 25, 'edges': [{'u': 1, 'v': 16}, {'u': 7, 'v': 17}, {'u': 7, 'v': 22}, {'u': 2, 'v': 10}, {'u': 2, 'v': 21}, {'u': 2, 'v': 25}, {'u': 16, 'v': 12}, {'u': 16, 'v': 15}, {'u': 8, 'v': 19}, {'u': 5, 'v': 9}, {'u': 22, 'v': 20}, {'u': 9, 'v': 12}, {'u': 9, 'v': 23}, {'u': 18, 'v': 20}, {'u': 18, 'v': 25}, {'u': 3, 'v': 4}, {'u': 3, 'v': 19}, {'u': 6, 'v': 4}, {'u': 6, 'v': 21}, {'u': 23, 'v': 24}, {'u': 11, 'v': 10}, {'u': 12, 'v': 14}, {'u': 12, 'v': 25}, {'u': 13, 'v': 14}, {'u': 14, 'v': 24}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0041.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0041.png'}","[1, 2, 3, 14, 22, 23]",6.0,"{'num_elements': 25, 'num_sets': 25, 'sets': [{'id': 'S1', 'elements': [1, 12, 15, 16]}, {'id': 'S2', 'elements': [2, 6, 10, 11, 12, 18, 21, 25]}, {'id': 'S3', 'elements': [3, 4, 6, 8, 19]}, {'id': 'S4', 'elements': [3, 6, 19, 21]}, {'id': 'S5', 'elements': [5, 9, 23]}, {'id': 'S6', 'elements': [2, 3, 4, 21]}, {'id': 'S7', 'elements': [7, 17, 20]}, {'id': 'S8', 'elements': [3, 8, 19]}, {'id': 'S9', 'elements': [5, 12, 14, 16, 23, 24, 25]}, {'id': 'S10', 'elements': [2, 10, 11]}, {'id': 'S11', 'elements': [2, 11]}, {'id': 'S12', 'elements': [1, 2, 5, 9, 14, 16, 23, 25]}, {'id': 'S13', 'elements': [12, 14, 24]}, {'id': 'S14', 'elements': [13, 14, 16, 23, 24]}, {'id': 'S15', 'elements': [1, 12]}, {'id': 'S16', 'elements': [9, 12, 14, 15, 16]}, {'id': 'S17', 'elements': [7, 17, 22]}, {'id': 'S18', 'elements': [22, 25]}, {'id': 'S19', 'elements': [4, 8, 19]}, {'id': 'S20', 'elements': [18, 20, 22, 25]}, {'id': 'S21', 'elements': [2, 4, 10]}, {'id': 'S22', 'elements': [7, 17, 20, 22]}, {'id': 'S23', 'elements': [5, 9, 12, 14, 23, 24]}, {'id': 'S24', 'elements': [9, 12, 13, 14, 23]}, {'id': 'S25', 'elements': [2, 9, 12, 14, 16, 18, 20, 21]}]}","['S1', 'S2', 'S3', 'S14', 'S22', 'S23']",42,json,1
SCP,SCP,"Recently the maintenance supervisor was asked to cut costs by trimming outside contractors, but without sacrificing repair coverage. The task is to pick a minimal number of contractor teams such that, between them, they can fix every machine type on site. The way to tell which selection is preferred is straightforward: count how many teams are hired — the smaller that number, the better — while ensuring every machine type is covered at least once and not paying for extra teams that add no new capabilities. The specific instance details are below.
{
""total_machine_types"": 21,
""total_contractor_teams"": 20,
""sets"": [
{
""contractor_team_id"": ""S1"",
""machine_types_covered"": [
1,
4,
6,
9,
21
]
},
{
""contractor_team_id"": ""S2"",
""machine_types_covered"": [
2,
9,
13,
16,
18
]
},
{
""contractor_team_id"": ""S3"",
""machine_types_covered"": [
3,
16,
19,
20
]
},
{
""contractor_team_id"": ""S4"",
""machine_types_covered"": [
1,
4,
9
]
},
{
""contractor_team_id"": ""S5"",
""machine_types_covered"": [
2,
5,
13,
16,
21
]
},
{
""contractor_team_id"": ""S6"",
""machine_types_covered"": [
6,
14
]
},
{
""contractor_team_id"": ""S7"",
""machine_types_covered"": [
13,
18
]
},
{
""contractor_team_id"": ""S8"",
""machine_types_covered"": [
1,
2,
4,
6,
12,
14,
17,
21
]
},
{
""contractor_team_id"": ""S9"",
""machine_types_covered"": [
7,
8,
10,
13,
18
]
},
{
""contractor_team_id"": ""S10"",
""machine_types_covered"": [
11,
18
]
},
{
""contractor_team_id"": ""S11"",
""machine_types_covered"": [
9,
14,
17
]
},
{
""contractor_team_id"": ""S12"",
""machine_types_covered"": [
5,
8,
21
]
},
{
""contractor_team_id"": ""S13"",
""machine_types_covered"": [
6,
9,
12,
14,
17,
20
]
},
{
""contractor_team_id"": ""S14"",
""machine_types_covered"": [
7,
10,
18
]
},
{
""contractor_team_id"": ""S15"",
""machine_types_covered"": [
2,
3,
5,
16
]
},
{
""contractor_team_id"": ""S16"",
""machine_types_covered"": [
9,
12,
17,
19,
20
]
},
{
""contractor_team_id"": ""S17"",
""machine_types_covered"": [
7,
8,
10,
11,
15,
18
]
},
{
""contractor_team_id"": ""S18"",
""machine_types_covered"": [
3,
16,
17,
19,
20
]
},
{
""contractor_team_id"": ""S19"",
""machine_types_covered"": [
3,
16,
17,
19
]
},
{
""contractor_team_id"": ""S20"",
""machine_types_covered"": [
6,
9,
13,
14
]
}
]
}
When you're ready, just send the result in a tiny JSON like this so it's easy to parse:
{
""solution"": [""team_id"", ...]
}
""solution"" is the list of contractor team IDs you want to hire — one entry per hired team. The ""team_id"" string is just a placeholder showing the format (each item should be the exact ID for a team). This JSON is only a sketch of the shape I expect, not the actual answer.
Please use the identifiers exactly as they appear in the instance input — no renaming and no new labels.
- for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 21, 'num_sets': 20, 'density': 0.2, 'sets': [{'id': 1, 'elements': [1, 4, 6, 9, 21]}, {'id': 2, 'elements': [2, 9, 13, 16, 18]}, {'id': 3, 'elements': [3, 16, 19, 20]}, {'id': 4, 'elements': [1, 4, 9]}, {'id': 5, 'elements': [2, 5, 13, 16, 21]}, {'id': 6, 'elements': [6, 14]}, {'id': 7, 'elements': [13, 18]}, {'id': 8, 'elements': [1, 2, 4, 6, 12, 14, 17, 21]}, {'id': 9, 'elements': [7, 8, 10, 13, 18]}, {'id': 10, 'elements': [11, 18]}, {'id': 11, 'elements': [9, 14, 17]}, {'id': 12, 'elements': [5, 8, 21]}, {'id': 13, 'elements': [6, 9, 12, 14, 17, 20]}, {'id': 14, 'elements': [7, 10, 18]}, {'id': 15, 'elements': [2, 3, 5, 16]}, {'id': 16, 'elements': [9, 12, 17, 19, 20]}, {'id': 17, 'elements': [7, 8, 10, 11, 15, 18]}, {'id': 18, 'elements': [3, 16, 17, 19, 20]}, {'id': 19, 'elements': [3, 16, 17, 19]}, {'id': 20, 'elements': [6, 9, 13, 14]}], 'graph': {'num_nodes': 21, 'edges': [{'u': 6, 'v': 9}, {'u': 21, 'v': 2}, {'u': 21, 'v': 9}, {'u': 11, 'v': 8}, {'u': 12, 'v': 14}, {'u': 10, 'v': 7}, {'u': 10, 'v': 15}, {'u': 10, 'v': 18}, {'u': 19, 'v': 3}, {'u': 19, 'v': 16}, {'u': 19, 'v': 20}, {'u': 4, 'v': 1}, {'u': 2, 'v': 5}, {'u': 2, 'v': 13}, {'u': 5, 'v': 16}, {'u': 8, 'v': 18}, {'u': 20, 'v': 17}, {'u': 1, 'v': 9}, {'u': 17, 'v': 14}, {'u': 18, 'v': 13}, {'u': 9, 'v': 14}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0042.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0042.png'}","[8, 15, 17, 18, 20]",5.0,"{'num_elements': 21, 'num_sets': 20, 'sets': [{'id': 'S1', 'elements': [1, 4, 6, 9, 21]}, {'id': 'S2', 'elements': [2, 9, 13, 16, 18]}, {'id': 'S3', 'elements': [3, 16, 19, 20]}, {'id': 'S4', 'elements': [1, 4, 9]}, {'id': 'S5', 'elements': [2, 5, 13, 16, 21]}, {'id': 'S6', 'elements': [6, 14]}, {'id': 'S7', 'elements': [13, 18]}, {'id': 'S8', 'elements': [1, 2, 4, 6, 12, 14, 17, 21]}, {'id': 'S9', 'elements': [7, 8, 10, 13, 18]}, {'id': 'S10', 'elements': [11, 18]}, {'id': 'S11', 'elements': [9, 14, 17]}, {'id': 'S12', 'elements': [5, 8, 21]}, {'id': 'S13', 'elements': [6, 9, 12, 14, 17, 20]}, {'id': 'S14', 'elements': [7, 10, 18]}, {'id': 'S15', 'elements': [2, 3, 5, 16]}, {'id': 'S16', 'elements': [9, 12, 17, 19, 20]}, {'id': 'S17', 'elements': [7, 8, 10, 11, 15, 18]}, {'id': 'S18', 'elements': [3, 16, 17, 19, 20]}, {'id': 'S19', 'elements': [3, 16, 17, 19]}, {'id': 'S20', 'elements': [6, 9, 13, 14]}]}","['S8', 'S15', 'S17', 'S18', 'S20']",43,json,1
SCP,SCP,"Picture this — a campaign needs every audience slice to hear about it, and the goal is to assemble the tiniest group of influencers that together cover those slices. The choice is which influencers to invite on board; a better choice is the one that covers every slice but with fewer people. You judge plans by counting collaborators (the smaller the number, the nicer), and it’s crucial that every segment gets at least one touch and the same influencer isn’t double-counted. Concrete details will be shown below.
- **total_audience_segments**: 19
- **total_influencers**: 19
| influencer_id | segments_reached |
|---|---|
| S1 | 0 9 10 |
| S2 | 2 3 7 12 14 |
| S3 | 1 2 3 6 18 |
| S4 | 2 3 7 12 18 |
| S5 | 0 4 11 |
| S6 | 5 14 16 17 |
| S7 | 2 8 13 14 15 16 17 |
| S8 | 1 2 7 10 18 |
| S9 | 6 8 9 13 16 |
| S10 | 0 8 10 11 16 18 |
| S11 | 0 4 8 9 10 11 15 18 |
| S12 | 0 9 10 11 18 |
| S13 | 1 2 3 12 |
| S14 | 13 16 |
| S15 | 1 2 6 7 16 |
| S16 | 5 7 10 15 18 |
| S17 | 8 9 14 16 |
| S18 | 6 15 17 |
| S19 | 0 2 3 7 9 10 11 15 18 |
Also, when you hand me the final pick, please use this little JSON layout so everything is tidy and easy to read.
{
""solution"": [""influencer_id"", ...]
}
Think of it like a simple form: put the IDs of the influencers you want into the solution list. The JSON above is just a sketch of the shape I expect, not the actual answer—replace the placeholder(s) with the real IDs from the instance.
All identifiers must be used exactly as they appear in the instance input — no renaming and no new labels. Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 19, 'num_sets': 19, 'density': 0.25761772853185594, 'sets': [{'id': 1, 'elements': [1, 10, 11]}, {'id': 2, 'elements': [3, 4, 8, 13, 15]}, {'id': 3, 'elements': [2, 3, 4, 7, 19]}, {'id': 4, 'elements': [3, 4, 8, 13, 19]}, {'id': 5, 'elements': [1, 5, 12]}, {'id': 6, 'elements': [6, 15, 17, 18]}, {'id': 7, 'elements': [3, 9, 14, 15, 16, 17, 18]}, {'id': 8, 'elements': [2, 3, 8, 11, 19]}, {'id': 9, 'elements': [7, 9, 10, 14, 17]}, {'id': 10, 'elements': [1, 9, 11, 12, 17, 19]}, {'id': 11, 'elements': [1, 5, 9, 10, 11, 12, 16, 19]}, {'id': 12, 'elements': [1, 10, 11, 12, 19]}, {'id': 13, 'elements': [2, 3, 4, 13]}, {'id': 14, 'elements': [14, 17]}, {'id': 15, 'elements': [2, 3, 7, 8, 17]}, {'id': 16, 'elements': [6, 8, 11, 16, 19]}, {'id': 17, 'elements': [9, 10, 15, 17]}, {'id': 18, 'elements': [7, 16, 18]}, {'id': 19, 'elements': [1, 3, 4, 8, 10, 11, 12, 16, 19]}], 'graph': {'num_nodes': 19, 'edges': [{'u': 5, 'v': 12}, {'u': 19, 'v': 8}, {'u': 19, 'v': 11}, {'u': 19, 'v': 16}, {'u': 6, 'v': 7}, {'u': 6, 'v': 16}, {'u': 6, 'v': 18}, {'u': 7, 'v': 15}, {'u': 7, 'v': 17}, {'u': 13, 'v': 2}, {'u': 15, 'v': 3}, {'u': 10, 'v': 9}, {'u': 10, 'v': 11}, {'u': 11, 'v': 1}, {'u': 11, 'v': 12}, {'u': 12, 'v': 1}, {'u': 3, 'v': 2}, {'u': 3, 'v': 8}, {'u': 14, 'v': 17}, {'u': 8, 'v': 4}, {'u': 9, 'v': 17}, {'u': 4, 'v': 2}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0043.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0043.png'}","[7, 11, 13, 16, 18]",5.0,"{'num_elements': 19, 'num_sets': 19, 'sets': [{'id': 'S1', 'elements': [0, 9, 10]}, {'id': 'S2', 'elements': [2, 3, 7, 12, 14]}, {'id': 'S3', 'elements': [1, 2, 3, 6, 18]}, {'id': 'S4', 'elements': [2, 3, 7, 12, 18]}, {'id': 'S5', 'elements': [0, 4, 11]}, {'id': 'S6', 'elements': [5, 14, 16, 17]}, {'id': 'S7', 'elements': [2, 8, 13, 14, 15, 16, 17]}, {'id': 'S8', 'elements': [1, 2, 7, 10, 18]}, {'id': 'S9', 'elements': [6, 8, 9, 13, 16]}, {'id': 'S10', 'elements': [0, 8, 10, 11, 16, 18]}, {'id': 'S11', 'elements': [0, 4, 8, 9, 10, 11, 15, 18]}, {'id': 'S12', 'elements': [0, 9, 10, 11, 18]}, {'id': 'S13', 'elements': [1, 2, 3, 12]}, {'id': 'S14', 'elements': [13, 16]}, {'id': 'S15', 'elements': [1, 2, 6, 7, 16]}, {'id': 'S16', 'elements': [5, 7, 10, 15, 18]}, {'id': 'S17', 'elements': [8, 9, 14, 16]}, {'id': 'S18', 'elements': [6, 15, 17]}, {'id': 'S19', 'elements': [0, 2, 3, 7, 9, 10, 11, 15, 18]}]}","['S7', 'S11', 'S13', 'S16', 'S18']",44,markdown_table,0
SCP,SCP,"Recently the hospital asked the nursing lead to simplify supplies: choose as small a set of care kits as possible so every ward’s clinical items are included somewhere. The job is to decide which kits to stock — the quality of a plan is measured by how many kits it uses, so count them and aim low. Every ward must be covered by at least one of the selected kits, and avoid stocking redundant duplicates. The full lists and specifics are shown below.
- **total_wards**: 19
- **total_kits**: 19
| kit_id | wards_covered |
|---|---|
| S1 | B D I O P |
| S2 | A B Q S |
| S3 | D I K |
| S4 | A C D J K L O P Q |
| S5 | L M R |
| S6 | J N O |
| S7 | E G M O |
| S8 | E G H |
| S9 | I K |
| S10 | D J L N O R |
| S11 | C D I K |
| S12 | D E G J L O |
| S13 | E G H N R |
| S14 | J M N O R |
| S15 | A D F G I L N O |
| S16 | P Q |
| S17 | A D Q |
| S18 | E R |
| S19 | B Q |
Oh, and one more thing — when you send back your chosen kits, please put them into this simple JSON shape so it's easy to parse:
{
""solution"": [""kit_id"", ...]
}
Just so it's clear: ""solution"" is the list of care kits you'll pick to cover every ward. Each item in that array should be the identifier for a kit (the placeholder ""kit_id"" above is just an example). This JSON is only a sketch of the shape I expect, not your final answer — replace the placeholder entries with the actual kit IDs from the instance.
Please make sure to use the identifiers exactly as they appear in the instance input — no renaming and no extra labels.
For example: ""Valid identifiers look like plain numbers such as ""1"" or ""23"", single capital letters like ""A"" or ""B"", or a capital letter followed by digits like ""A1"" or ""X7"".""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 19, 'num_sets': 19, 'density': 0.2188365650969529, 'sets': [{'id': 1, 'elements': [2, 4, 9, 15, 16]}, {'id': 2, 'elements': [1, 2, 17, 19]}, {'id': 3, 'elements': [4, 9, 11]}, {'id': 4, 'elements': [1, 3, 4, 10, 11, 12, 15, 16, 17]}, {'id': 5, 'elements': [12, 13, 18]}, {'id': 6, 'elements': [10, 14, 15]}, {'id': 7, 'elements': [5, 7, 13, 15]}, {'id': 8, 'elements': [5, 7, 8]}, {'id': 9, 'elements': [9, 11]}, {'id': 10, 'elements': [4, 10, 12, 14, 15, 18]}, {'id': 11, 'elements': [3, 4, 9, 11]}, {'id': 12, 'elements': [4, 5, 7, 10, 12, 15]}, {'id': 13, 'elements': [5, 7, 8, 14, 18]}, {'id': 14, 'elements': [10, 13, 14, 15, 18]}, {'id': 15, 'elements': [1, 4, 6, 7, 9, 12, 14, 15]}, {'id': 16, 'elements': [16, 17]}, {'id': 17, 'elements': [1, 4, 17]}, {'id': 18, 'elements': [5, 18]}, {'id': 19, 'elements': [2, 17]}], 'graph': {'num_nodes': 19, 'edges': [{'u': 3, 'v': 9}, {'u': 11, 'v': 9}, {'u': 10, 'v': 6}, {'u': 10, 'v': 14}, {'u': 10, 'v': 15}, {'u': 14, 'v': 18}, {'u': 16, 'v': 1}, {'u': 5, 'v': 7}, {'u': 5, 'v': 8}, {'u': 5, 'v': 13}, {'u': 15, 'v': 4}, {'u': 15, 'v': 12}, {'u': 12, 'v': 7}, {'u': 9, 'v': 4}, {'u': 2, 'v': 17}, {'u': 18, 'v': 13}, {'u': 19, 'v': 17}, {'u': 1, 'v': 4}, {'u': 1, 'v': 17}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0044.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0044.png'}","[2, 4, 13, 14, 15]",5.0,"{'num_elements': 19, 'num_sets': 19, 'sets': [{'id': 'S1', 'elements': ['B', 'D', 'I', 'O', 'P']}, {'id': 'S2', 'elements': ['A', 'B', 'Q', 'S']}, {'id': 'S3', 'elements': ['D', 'I', 'K']}, {'id': 'S4', 'elements': ['A', 'C', 'D', 'J', 'K', 'L', 'O', 'P', 'Q']}, {'id': 'S5', 'elements': ['L', 'M', 'R']}, {'id': 'S6', 'elements': ['J', 'N', 'O']}, {'id': 'S7', 'elements': ['E', 'G', 'M', 'O']}, {'id': 'S8', 'elements': ['E', 'G', 'H']}, {'id': 'S9', 'elements': ['I', 'K']}, {'id': 'S10', 'elements': ['D', 'J', 'L', 'N', 'O', 'R']}, {'id': 'S11', 'elements': ['C', 'D', 'I', 'K']}, {'id': 'S12', 'elements': ['D', 'E', 'G', 'J', 'L', 'O']}, {'id': 'S13', 'elements': ['E', 'G', 'H', 'N', 'R']}, {'id': 'S14', 'elements': ['J', 'M', 'N', 'O', 'R']}, {'id': 'S15', 'elements': ['A', 'D', 'F', 'G', 'I', 'L', 'N', 'O']}, {'id': 'S16', 'elements': ['P', 'Q']}, {'id': 'S17', 'elements': ['A', 'D', 'Q']}, {'id': 'S18', 'elements': ['E', 'R']}, {'id': 'S19', 'elements': ['B', 'Q']}]}","['S2', 'S4', 'S13', 'S14', 'S15']",45,markdown_table,names
SCP,SCP,"Out at the depot the plan is to switch on a small set of chargers so that every vehicle type can plug in at one of the switched-on spots. The better plan is the one that covers all vehicle types while turning on fewer spots — you can measure that by counting enabled locations. Nothing can be left uncovered, and enabling a location twice doesn’t change the tally. The specific details are given below.
{
""total_vehicle_types"": 22,
""available_locations_count"": 20,
""sets"": [
{
""location_id"": ""S1"",
""supported_vehicle_types"": [
""C"",
""J"",
""N"",
""R"",
""T"",
""U""
]
},
{
""location_id"": ""S2"",
""supported_vehicle_types"": [
""B"",
""C"",
""D"",
""O"",
""T""
]
},
{
""location_id"": ""S3"",
""supported_vehicle_types"": [
""A"",
""B"",
""C"",
""G"",
""J"",
""N"",
""R"",
""S"",
""T""
]
},
{
""location_id"": ""S4"",
""supported_vehicle_types"": [
""D"",
""O"",
""T""
]
},
{
""location_id"": ""S5"",
""supported_vehicle_types"": [
""E"",
""I"",
""L""
]
},
{
""location_id"": ""S6"",
""supported_vehicle_types"": [
""B"",
""F"",
""O"",
""T""
]
},
{
""location_id"": ""S7"",
""supported_vehicle_types"": [
""B"",
""C"",
""G"",
""L"",
""O"",
""R"",
""T""
]
},
{
""location_id"": ""S8"",
""supported_vehicle_types"": [
""F"",
""H"",
""P""
]
},
{
""location_id"": ""S9"",
""supported_vehicle_types"": [
""E"",
""I"",
""L"",
""Q""
]
},
{
""location_id"": ""S10"",
""supported_vehicle_types"": [
""A"",
""C"",
""J"",
""N"",
""U""
]
},
{
""location_id"": ""S11"",
""supported_vehicle_types"": [
""E"",
""G"",
""I"",
""L"",
""S""
]
},
{
""location_id"": ""S12"",
""supported_vehicle_types"": [
""E"",
""M""
]
},
{
""location_id"": ""S13"",
""supported_vehicle_types"": [
""C"",
""J""
]
},
{
""location_id"": ""S14"",
""supported_vehicle_types"": [
""F"",
""O"",
""T""
]
},
{
""location_id"": ""S15"",
""supported_vehicle_types"": [
""H"",
""P""
]
},
{
""location_id"": ""S16"",
""supported_vehicle_types"": [
""E"",
""G"",
""I"",
""L"",
""Q"",
""R"",
""V""
]
},
{
""location_id"": ""S17"",
""supported_vehicle_types"": [
""A"",
""C"",
""G"",
""K"",
""Q"",
""R"",
""T""
]
},
{
""location_id"": ""S18"",
""supported_vehicle_types"": [
""C"",
""K"",
""L""
]
},
{
""location_id"": ""S19"",
""supported_vehicle_types"": [
""A"",
""B"",
""C"",
""D"",
""F"",
""G"",
""L"",
""R"",
""T""
]
},
{
""location_id"": ""S20"",
""supported_vehicle_types"": [
""I"",
""Q""
]
}
]
}
When you're ready, just hand me the plan in a tiny JSON snippet like this — it's an easy way to keep the answer structured and readable:
{
""solution"": [""spot_id"", ...]
}
This says: ""solution"" should be an array listing the spots you'll enable (the placeholder spot_id just stands in for whatever spot identifiers your instance uses). It's just the shape I expect, not the actual answer — fill in the real IDs from the problem when you submit the solution.
All identifiers must be used exactly as they appear in the instance input — no renaming and no new labels.
- Valid identifiers look like plain numbers such as ""1"" or ""23"", single capital letters like ""A"" or ""B"", or a capital letter followed by digits like ""A1"" or ""X7"".","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 22, 'num_sets': 20, 'density': 0.20681818181818182, 'sets': [{'id': 1, 'elements': [3, 10, 14, 18, 20, 21]}, {'id': 2, 'elements': [2, 3, 4, 15, 20]}, {'id': 3, 'elements': [1, 2, 3, 7, 10, 14, 18, 19, 20]}, {'id': 4, 'elements': [4, 15, 20]}, {'id': 5, 'elements': [5, 9, 12]}, {'id': 6, 'elements': [2, 6, 15, 20]}, {'id': 7, 'elements': [2, 3, 7, 12, 15, 18, 20]}, {'id': 8, 'elements': [6, 8, 16]}, {'id': 9, 'elements': [5, 9, 12, 17]}, {'id': 10, 'elements': [1, 3, 10, 14, 21]}, {'id': 11, 'elements': [5, 7, 9, 12, 19]}, {'id': 12, 'elements': [5, 13]}, {'id': 13, 'elements': [3, 10]}, {'id': 14, 'elements': [6, 15, 20]}, {'id': 15, 'elements': [8, 16]}, {'id': 16, 'elements': [5, 7, 9, 12, 17, 18, 22]}, {'id': 17, 'elements': [1, 3, 7, 11, 17, 18, 20]}, {'id': 18, 'elements': [3, 11, 12]}, {'id': 19, 'elements': [1, 2, 3, 4, 6, 7, 12, 18, 20]}, {'id': 20, 'elements': [9, 17]}], 'graph': {'num_nodes': 22, 'edges': [{'u': 20, 'v': 2}, {'u': 20, 'v': 3}, {'u': 20, 'v': 7}, {'u': 7, 'v': 4}, {'u': 7, 'v': 12}, {'u': 8, 'v': 6}, {'u': 12, 'v': 17}, {'u': 12, 'v': 18}, {'u': 18, 'v': 3}, {'u': 18, 'v': 19}, {'u': 14, 'v': 1}, {'u': 13, 'v': 5}, {'u': 11, 'v': 19}, {'u': 9, 'v': 17}, {'u': 9, 'v': 22}, {'u': 5, 'v': 17}, {'u': 6, 'v': 2}, {'u': 6, 'v': 16}, {'u': 10, 'v': 1}, {'u': 10, 'v': 21}, {'u': 1, 'v': 3}, {'u': 4, 'v': 15}, {'u': 2, 'v': 15}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0045.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0045.png'}","[2, 3, 8, 10, 12, 16, 17]",7.0,"{'num_elements': 22, 'num_sets': 20, 'sets': [{'id': 'S1', 'elements': ['C', 'J', 'N', 'R', 'T', 'U']}, {'id': 'S2', 'elements': ['B', 'C', 'D', 'O', 'T']}, {'id': 'S3', 'elements': ['A', 'B', 'C', 'G', 'J', 'N', 'R', 'S', 'T']}, {'id': 'S4', 'elements': ['D', 'O', 'T']}, {'id': 'S5', 'elements': ['E', 'I', 'L']}, {'id': 'S6', 'elements': ['B', 'F', 'O', 'T']}, {'id': 'S7', 'elements': ['B', 'C', 'G', 'L', 'O', 'R', 'T']}, {'id': 'S8', 'elements': ['F', 'H', 'P']}, {'id': 'S9', 'elements': ['E', 'I', 'L', 'Q']}, {'id': 'S10', 'elements': ['A', 'C', 'J', 'N', 'U']}, {'id': 'S11', 'elements': ['E', 'G', 'I', 'L', 'S']}, {'id': 'S12', 'elements': ['E', 'M']}, {'id': 'S13', 'elements': ['C', 'J']}, {'id': 'S14', 'elements': ['F', 'O', 'T']}, {'id': 'S15', 'elements': ['H', 'P']}, {'id': 'S16', 'elements': ['E', 'G', 'I', 'L', 'Q', 'R', 'V']}, {'id': 'S17', 'elements': ['A', 'C', 'G', 'K', 'Q', 'R', 'T']}, {'id': 'S18', 'elements': ['C', 'K', 'L']}, {'id': 'S19', 'elements': ['A', 'B', 'C', 'D', 'F', 'G', 'L', 'R', 'T']}, {'id': 'S20', 'elements': ['I', 'Q']}]}","['S2', 'S3', 'S8', 'S10', 'S12', 'S16', 'S17']",46,json,names
SCP,SCP,"Many people on the library staff are helping prepare reading kits for partners, and the challenge is to combine books into as few kits as possible while still covering every important genre. The way to know if the plan is good is to count how many kits will be sent—fewer kits means a better pick of combinations. It’s required that each important genre appears in at least one kit; duplicating genres across kits is allowed but discouraged because it inflates the kit total. The exact lists of genres and books can be found below.
{
""total_genres"": 21,
""total_candidate_bundles"": 19,
""sets"": [
{
""bundle_id"": ""S1"",
""bundle_genre_ids"": [
1,
6,
8,
10
]
},
{
""bundle_id"": ""S2"",
""bundle_genre_ids"": [
8,
9,
11,
13,
18
]
},
{
""bundle_id"": ""S3"",
""bundle_genre_ids"": [
11,
13
]
},
{
""bundle_id"": ""S4"",
""bundle_genre_ids"": [
11,
13,
16,
19
]
},
{
""bundle_id"": ""S5"",
""bundle_genre_ids"": [
2,
5,
13,
20
]
},
{
""bundle_id"": ""S6"",
""bundle_genre_ids"": [
1,
6,
10,
13,
17
]
},
{
""bundle_id"": ""S7"",
""bundle_genre_ids"": [
3,
7,
21
]
},
{
""bundle_id"": ""S8"",
""bundle_genre_ids"": [
1,
2,
8,
17,
18
]
},
{
""bundle_id"": ""S9"",
""bundle_genre_ids"": [
2,
12,
14
]
},
{
""bundle_id"": ""S10"",
""bundle_genre_ids"": [
1,
6,
10
]
},
{
""bundle_id"": ""S11"",
""bundle_genre_ids"": [
2,
11,
15,
18,
21
]
},
{
""bundle_id"": ""S12"",
""bundle_genre_ids"": [
2,
3,
4,
5,
8,
11,
20
]
},
{
""bundle_id"": ""S13"",
""bundle_genre_ids"": [
3,
11
]
},
{
""bundle_id"": ""S14"",
""bundle_genre_ids"": [
4,
16,
18,
19
]
},
{
""bundle_id"": ""S15"",
""bundle_genre_ids"": [
1,
6,
17
]
},
{
""bundle_id"": ""S16"",
""bundle_genre_ids"": [
2,
3,
4,
8,
11,
19
]
},
{
""bundle_id"": ""S17"",
""bundle_genre_ids"": [
4,
19
]
},
{
""bundle_id"": ""S18"",
""bundle_genre_ids"": [
5,
12,
13
]
},
{
""bundle_id"": ""S19"",
""bundle_genre_ids"": [
3,
7,
11,
15
]
}
]
}
Also, when you're ready to tell me which kits to send, toss them into this little JSON shape so it's easy to parse:
{
""solution"": [""kit_id"", ...]
}
Think of ""solution"" as just a list of the kit identifiers you picked — those are the actual kit labels from the instance (the placeholders here like ""kit_id"" just show the shape). This is just a sketch of the format I need, not the real answer.
Quick reminder: use the identifiers exactly as they appear in the instance input — don't rename them or invent new labels. For example:
- Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 21, 'num_sets': 19, 'density': 0.18546365914786966, 'sets': [{'id': 1, 'elements': [1, 6, 8, 10]}, {'id': 2, 'elements': [8, 9, 11, 13, 18]}, {'id': 3, 'elements': [11, 13]}, {'id': 4, 'elements': [11, 13, 16, 19]}, {'id': 5, 'elements': [2, 5, 13, 20]}, {'id': 6, 'elements': [1, 6, 10, 13, 17]}, {'id': 7, 'elements': [3, 7, 21]}, {'id': 8, 'elements': [1, 2, 8, 17, 18]}, {'id': 9, 'elements': [2, 12, 14]}, {'id': 10, 'elements': [1, 6, 10]}, {'id': 11, 'elements': [2, 11, 15, 18, 21]}, {'id': 12, 'elements': [2, 3, 4, 5, 8, 11, 20]}, {'id': 13, 'elements': [3, 11]}, {'id': 14, 'elements': [4, 16, 18, 19]}, {'id': 15, 'elements': [1, 6, 17]}, {'id': 16, 'elements': [2, 3, 4, 8, 11, 19]}, {'id': 17, 'elements': [4, 19]}, {'id': 18, 'elements': [5, 12, 13]}, {'id': 19, 'elements': [3, 7, 11, 15]}], 'graph': {'num_nodes': 21, 'edges': [{'u': 9, 'v': 14}, {'u': 9, 'v': 20}, {'u': 16, 'v': 4}, {'u': 3, 'v': 11}, {'u': 3, 'v': 15}, {'u': 3, 'v': 21}, {'u': 2, 'v': 5}, {'u': 2, 'v': 13}, {'u': 2, 'v': 20}, {'u': 4, 'v': 18}, {'u': 4, 'v': 19}, {'u': 12, 'v': 20}, {'u': 21, 'v': 7}, {'u': 1, 'v': 6}, {'u': 1, 'v': 10}, {'u': 6, 'v': 8}, {'u': 6, 'v': 17}, {'u': 11, 'v': 13}, {'u': 11, 'v': 18}, {'u': 18, 'v': 13}, {'u': 8, 'v': 13}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0046.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0046.png'}","[2, 6, 9, 11, 12, 14, 19]",7.0,"{'num_elements': 21, 'num_sets': 19, 'sets': [{'id': 'S1', 'elements': [1, 6, 8, 10]}, {'id': 'S2', 'elements': [8, 9, 11, 13, 18]}, {'id': 'S3', 'elements': [11, 13]}, {'id': 'S4', 'elements': [11, 13, 16, 19]}, {'id': 'S5', 'elements': [2, 5, 13, 20]}, {'id': 'S6', 'elements': [1, 6, 10, 13, 17]}, {'id': 'S7', 'elements': [3, 7, 21]}, {'id': 'S8', 'elements': [1, 2, 8, 17, 18]}, {'id': 'S9', 'elements': [2, 12, 14]}, {'id': 'S10', 'elements': [1, 6, 10]}, {'id': 'S11', 'elements': [2, 11, 15, 18, 21]}, {'id': 'S12', 'elements': [2, 3, 4, 5, 8, 11, 20]}, {'id': 'S13', 'elements': [3, 11]}, {'id': 'S14', 'elements': [4, 16, 18, 19]}, {'id': 'S15', 'elements': [1, 6, 17]}, {'id': 'S16', 'elements': [2, 3, 4, 8, 11, 19]}, {'id': 'S17', 'elements': [4, 19]}, {'id': 'S18', 'elements': [5, 12, 13]}, {'id': 'S19', 'elements': [3, 7, 11, 15]}]}","['S2', 'S6', 'S9', 'S11', 'S12', 'S14', 'S19']",47,json,1
SCP,SCP,"There’s a new shift in the control room and the main concern is arranging camera clusters around the building so no corner goes dark. The decision is simply which clusters to switch on; a plan is better if it gets every blind spot under surveillance while using the least number of clusters — just tally the clusters chosen to see which plan is smaller, and make sure nothing gets missed or redundantly watched. The specific cluster choices and coverage map appear below.
# total_blind_spots=23
# total_clusters=22
cluster_id,covered_blind_spots
S1,B G K Q
S2,C E J M P S T U V
S3,D L
S4,C D E L M N
S5,F M
S6,G K Q
S7,H I T W
S8,H I R T U V W
S9,C F J M N P
S10,B K T
S11,D I L O U V
S12,C E J M S
S13,C D E J S V
S14,L R U
S15,C J Q T W
S16,B G Q V W
S17,D I L O R
S18,A F J M N P S
S19,A I K P Q S T U V W
S20,C D I L T U V W
S21,C I L Q S V W
S22,O Q U
Oh, and when you send the final plan, just use this simple JSON layout so it's easy to parse:
{
""solution"": [""cluster_id"", ...]
}
This shows that ""solution"" should be a list of the cluster identifiers you want to switch on — basically the set of camera clusters that cover every blind spot. Treat it like a little checklist: put each cluster ID in the array. The block above is just the sketch of the shape I expect, not the actual answer.
Please make sure every identifier you use matches the instance input exactly — no renaming or inventing new labels.
- for example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 23, 'num_sets': 22, 'density': 0.22924901185770752, 'sets': [{'id': 1, 'elements': [2, 7, 11, 17]}, {'id': 2, 'elements': [3, 5, 10, 13, 16, 19, 20, 21, 22]}, {'id': 3, 'elements': [4, 12]}, {'id': 4, 'elements': [3, 4, 5, 12, 13, 14]}, {'id': 5, 'elements': [6, 13]}, {'id': 6, 'elements': [7, 11, 17]}, {'id': 7, 'elements': [8, 9, 20, 23]}, {'id': 8, 'elements': [8, 9, 18, 20, 21, 22, 23]}, {'id': 9, 'elements': [3, 6, 10, 13, 14, 16]}, {'id': 10, 'elements': [2, 11, 20]}, {'id': 11, 'elements': [4, 9, 12, 15, 21, 22]}, {'id': 12, 'elements': [3, 5, 10, 13, 19]}, {'id': 13, 'elements': [3, 4, 5, 10, 19, 22]}, {'id': 14, 'elements': [12, 18, 21]}, {'id': 15, 'elements': [3, 10, 17, 20, 23]}, {'id': 16, 'elements': [2, 7, 17, 22, 23]}, {'id': 17, 'elements': [4, 9, 12, 15, 18]}, {'id': 18, 'elements': [1, 6, 10, 13, 14, 16, 19]}, {'id': 19, 'elements': [1, 9, 11, 16, 17, 19, 20, 21, 22, 23]}, {'id': 20, 'elements': [3, 4, 9, 12, 20, 21, 22, 23]}, {'id': 21, 'elements': [3, 9, 12, 17, 19, 22, 23]}, {'id': 22, 'elements': [15, 17, 21]}], 'graph': {'num_nodes': 23, 'edges': [{'u': 3, 'v': 14}, {'u': 3, 'v': 19}, {'u': 3, 'v': 22}, {'u': 21, 'v': 9}, {'u': 21, 'v': 12}, {'u': 21, 'v': 22}, {'u': 4, 'v': 5}, {'u': 4, 'v': 12}, {'u': 14, 'v': 5}, {'u': 14, 'v': 13}, {'u': 1, 'v': 16}, {'u': 2, 'v': 11}, {'u': 12, 'v': 18}, {'u': 8, 'v': 23}, {'u': 10, 'v': 6}, {'u': 10, 'v': 13}, {'u': 10, 'v': 19}, {'u': 11, 'v': 7}, {'u': 11, 'v': 17}, {'u': 19, 'v': 16}, {'u': 9, 'v': 15}, {'u': 9, 'v': 23}, {'u': 22, 'v': 20}, {'u': 23, 'v': 20}, {'u': 20, 'v': 16}, {'u': 20, 'v': 17}, {'u': 18, 'v': 15}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0047.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0047.png'}","[1, 4, 8, 17, 18]",5.0,"{'num_elements': 23, 'num_sets': 22, 'sets': [{'id': 'S1', 'elements': ['B', 'G', 'K', 'Q']}, {'id': 'S2', 'elements': ['C', 'E', 'J', 'M', 'P', 'S', 'T', 'U', 'V']}, {'id': 'S3', 'elements': ['D', 'L']}, {'id': 'S4', 'elements': ['C', 'D', 'E', 'L', 'M', 'N']}, {'id': 'S5', 'elements': ['F', 'M']}, {'id': 'S6', 'elements': ['G', 'K', 'Q']}, {'id': 'S7', 'elements': ['H', 'I', 'T', 'W']}, {'id': 'S8', 'elements': ['H', 'I', 'R', 'T', 'U', 'V', 'W']}, {'id': 'S9', 'elements': ['C', 'F', 'J', 'M', 'N', 'P']}, {'id': 'S10', 'elements': ['B', 'K', 'T']}, {'id': 'S11', 'elements': ['D', 'I', 'L', 'O', 'U', 'V']}, {'id': 'S12', 'elements': ['C', 'E', 'J', 'M', 'S']}, {'id': 'S13', 'elements': ['C', 'D', 'E', 'J', 'S', 'V']}, {'id': 'S14', 'elements': ['L', 'R', 'U']}, {'id': 'S15', 'elements': ['C', 'J', 'Q', 'T', 'W']}, {'id': 'S16', 'elements': ['B', 'G', 'Q', 'V', 'W']}, {'id': 'S17', 'elements': ['D', 'I', 'L', 'O', 'R']}, {'id': 'S18', 'elements': ['A', 'F', 'J', 'M', 'N', 'P', 'S']}, {'id': 'S19', 'elements': ['A', 'I', 'K', 'P', 'Q', 'S', 'T', 'U', 'V', 'W']}, {'id': 'S20', 'elements': ['C', 'D', 'I', 'L', 'T', 'U', 'V', 'W']}, {'id': 'S21', 'elements': ['C', 'I', 'L', 'Q', 'S', 'V', 'W']}, {'id': 'S22', 'elements': ['O', 'Q', 'U']}]}","['S1', 'S4', 'S8', 'S17', 'S18']",48,csv,names
SCP,SCP,"I’m the QA lead juggling a long list of product features and a stack of test suites; the job is to pick the fewest test suites possible so every feature gets at least one hit. The choice is which suites to run, and a better choice is simply the one that uses fewer runs while still touching every feature — count the number of suites selected to see how good a plan is. Nothing can be left untested, and while overlapping coverage can happen, rerunning suites that only duplicate work is wasteful. The concrete details of the features and suites are shown below.
# total_features=21
# total_test_suites=21
suite_id,covered_features
S1,A D K R S
S2,C G N Q
S3,B H Q
S4,A D G K
S5,B C F O Q U
S6,E F J N O Q
S7,B I J N O
S8,C H M Q U
S9,D G I P
S10,F G J O R S
S11,D K
S12,S T
S13,C H M U
S14,B G O P
S15,G J O S
S16,B D G I K N P
S17,B C E F Q U
S18,A K R S
S19,A J L N S
S20,J L R S T
S21,E F H M
Oh, and when you give the final plan, please use this tiny JSON shape so it's easy to read and plug into the tracker:
{
""solution"": [""suite_id"", ...]
}
Pretty simple: ""solution"" is the list of test suites you choose to run. The placeholder ""suite_id"" just shows where each suite identifier goes — replace those with the actual suite names from the instance. This block is only a sketch of the expected shape, not the actual answer.
Please be sure to use the identifiers exactly as they appear in the instance input — no renaming and no new labels.
Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 21, 'num_sets': 21, 'density': 0.21541950113378686, 'sets': [{'id': 1, 'elements': [1, 4, 11, 18, 19]}, {'id': 2, 'elements': [3, 7, 14, 17]}, {'id': 3, 'elements': [2, 8, 17]}, {'id': 4, 'elements': [1, 4, 7, 11]}, {'id': 5, 'elements': [2, 3, 6, 15, 17, 21]}, {'id': 6, 'elements': [5, 6, 10, 14, 15, 17]}, {'id': 7, 'elements': [2, 9, 10, 14, 15]}, {'id': 8, 'elements': [3, 8, 13, 17, 21]}, {'id': 9, 'elements': [4, 7, 9, 16]}, {'id': 10, 'elements': [6, 7, 10, 15, 18, 19]}, {'id': 11, 'elements': [4, 11]}, {'id': 12, 'elements': [19, 20]}, {'id': 13, 'elements': [3, 8, 13, 21]}, {'id': 14, 'elements': [2, 7, 15, 16]}, {'id': 15, 'elements': [7, 10, 15, 19]}, {'id': 16, 'elements': [2, 4, 7, 9, 11, 14, 16]}, {'id': 17, 'elements': [2, 3, 5, 6, 17, 21]}, {'id': 18, 'elements': [1, 11, 18, 19]}, {'id': 19, 'elements': [1, 10, 12, 14, 19]}, {'id': 20, 'elements': [10, 12, 18, 19, 20]}, {'id': 21, 'elements': [5, 6, 8, 13]}], 'graph': {'num_nodes': 21, 'edges': [{'u': 3, 'v': 8}, {'u': 3, 'v': 17}, {'u': 21, 'v': 5}, {'u': 21, 'v': 13}, {'u': 19, 'v': 10}, {'u': 19, 'v': 18}, {'u': 19, 'v': 20}, {'u': 12, 'v': 20}, {'u': 17, 'v': 2}, {'u': 17, 'v': 5}, {'u': 7, 'v': 2}, {'u': 7, 'v': 14}, {'u': 7, 'v': 16}, {'u': 8, 'v': 13}, {'u': 9, 'v': 16}, {'u': 1, 'v': 11}, {'u': 1, 'v': 18}, {'u': 4, 'v': 11}, {'u': 4, 'v': 16}, {'u': 5, 'v': 6}, {'u': 15, 'v': 6}, {'u': 15, 'v': 10}, {'u': 15, 'v': 14}, {'u': 14, 'v': 10}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0048.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0048.png'}","[1, 5, 16, 20, 21]",5.0,"{'num_elements': 21, 'num_sets': 21, 'sets': [{'id': 'S1', 'elements': ['A', 'D', 'K', 'R', 'S']}, {'id': 'S2', 'elements': ['C', 'G', 'N', 'Q']}, {'id': 'S3', 'elements': ['B', 'H', 'Q']}, {'id': 'S4', 'elements': ['A', 'D', 'G', 'K']}, {'id': 'S5', 'elements': ['B', 'C', 'F', 'O', 'Q', 'U']}, {'id': 'S6', 'elements': ['E', 'F', 'J', 'N', 'O', 'Q']}, {'id': 'S7', 'elements': ['B', 'I', 'J', 'N', 'O']}, {'id': 'S8', 'elements': ['C', 'H', 'M', 'Q', 'U']}, {'id': 'S9', 'elements': ['D', 'G', 'I', 'P']}, {'id': 'S10', 'elements': ['F', 'G', 'J', 'O', 'R', 'S']}, {'id': 'S11', 'elements': ['D', 'K']}, {'id': 'S12', 'elements': ['S', 'T']}, {'id': 'S13', 'elements': ['C', 'H', 'M', 'U']}, {'id': 'S14', 'elements': ['B', 'G', 'O', 'P']}, {'id': 'S15', 'elements': ['G', 'J', 'O', 'S']}, {'id': 'S16', 'elements': ['B', 'D', 'G', 'I', 'K', 'N', 'P']}, {'id': 'S17', 'elements': ['B', 'C', 'E', 'F', 'Q', 'U']}, {'id': 'S18', 'elements': ['A', 'K', 'R', 'S']}, {'id': 'S19', 'elements': ['A', 'J', 'L', 'N', 'S']}, {'id': 'S20', 'elements': ['J', 'L', 'R', 'S', 'T']}, {'id': 'S21', 'elements': ['E', 'F', 'H', 'M']}]}","['S1', 'S5', 'S16', 'S20', 'S21']",49,csv,names
SCP,SCP,"We’ve got a shoot with a long list of scene types and a bunch of possible venues, and now it’s time to decide which venues to lock in. The goal is to cover all the scene needs using as few venues as possible — compare options by counting how many venues are chosen, with smaller counts favored — and make sure every required setting is present in at least one booked place; skipping any required setting isn’t allowed and overlapping locations that don’t add new settings just cost extra. The concrete details of scenes and candidate locations appear below.
- **num_scene_types**: 19
- **num_candidate_venues**: 18
| venue_id | available_scene_types |
|---|---|
| S1 | B F G O P Q R S |
| S2 | A B F H I Q |
| S3 | C K N |
| S4 | D M O R |
| S5 | E J L N S |
| S6 | A B I Q |
| S7 | G I N S |
| S8 | A B F G H I O |
| S9 | E J L S |
| S10 | C K L N |
| S11 | C E K L N S |
| S12 | D O R |
| S13 | E J |
| S14 | A D G I M O P R |
| S15 | A D M O |
| S16 | A B F |
| S17 | D M O P R |
| S18 | A G J L N |
Also, when you give your final picks, toss them into a tiny JSON snippet like this so everything’s clear and machine-friendly:
{
""solution"": [""venue_id"", ...]
}
""solution"" is just the list of venue identifiers you plan to book — one identifier per chosen venue. Think of it like filling out a short form: put the exact venue IDs in that array. This is only a template of the shape I want, not the actual answer.
All identifiers must be used exactly as they appear in the instance input — no renaming and no new labels.
For example: ""Valid identifiers look like plain numbers such as “1” or “23”, single capital letters like “A” or “B”, or a capital letter followed by digits like “A1” or “X7”.""","{'source_file': 'road_central.mtx', 'k_hop': 2, 'num_elements': 19, 'num_sets': 18, 'density': 0.24853801169590642, 'sets': [{'id': 1, 'elements': [2, 6, 7, 15, 16, 17, 18, 19]}, {'id': 2, 'elements': [1, 2, 6, 8, 9, 17]}, {'id': 3, 'elements': [3, 11, 14]}, {'id': 4, 'elements': [4, 13, 15, 18]}, {'id': 5, 'elements': [5, 10, 12, 14, 19]}, {'id': 6, 'elements': [1, 2, 9, 17]}, {'id': 7, 'elements': [7, 9, 14, 19]}, {'id': 8, 'elements': [1, 2, 6, 7, 8, 9, 15]}, {'id': 9, 'elements': [5, 10, 12, 19]}, {'id': 10, 'elements': [3, 11, 12, 14]}, {'id': 11, 'elements': [3, 5, 11, 12, 14, 19]}, {'id': 12, 'elements': [4, 15, 18]}, {'id': 13, 'elements': [5, 10]}, {'id': 14, 'elements': [1, 4, 7, 9, 13, 15, 16, 18]}, {'id': 15, 'elements': [1, 4, 13, 15]}, {'id': 16, 'elements': [1, 2, 6]}, {'id': 17, 'elements': [4, 13, 15, 16, 18]}, {'id': 18, 'elements': [1, 7, 10, 12, 14]}], 'graph': {'num_nodes': 19, 'edges': [{'u': 19, 'v': 7}, {'u': 19, 'v': 14}, {'u': 14, 'v': 5}, {'u': 14, 'v': 10}, {'u': 14, 'v': 12}, {'u': 13, 'v': 4}, {'u': 13, 'v': 16}, {'u': 1, 'v': 7}, {'u': 1, 'v': 9}, {'u': 1, 'v': 15}, {'u': 11, 'v': 12}, {'u': 6, 'v': 9}, {'u': 16, 'v': 15}, {'u': 18, 'v': 4}, {'u': 18, 'v': 15}, {'u': 17, 'v': 9}, {'u': 8, 'v': 2}, {'u': 9, 'v': 2}, {'u': 3, 'v': 12}]}, 'viz_instance': 'generated_data/SCP/viz/SCP_L/instance_0049.png', 'viz_solution': 'generated_data/SCP/viz/SCP_L/solution_0049.png'}","[2, 11, 14, 18]",4.0,"{'num_elements': 19, 'num_sets': 18, 'sets': [{'id': 'S1', 'elements': ['B', 'F', 'G', 'O', 'P', 'Q', 'R', 'S']}, {'id': 'S2', 'elements': ['A', 'B', 'F', 'H', 'I', 'Q']}, {'id': 'S3', 'elements': ['C', 'K', 'N']}, {'id': 'S4', 'elements': ['D', 'M', 'O', 'R']}, {'id': 'S5', 'elements': ['E', 'J', 'L', 'N', 'S']}, {'id': 'S6', 'elements': ['A', 'B', 'I', 'Q']}, {'id': 'S7', 'elements': ['G', 'I', 'N', 'S']}, {'id': 'S8', 'elements': ['A', 'B', 'F', 'G', 'H', 'I', 'O']}, {'id': 'S9', 'elements': ['E', 'J', 'L', 'S']}, {'id': 'S10', 'elements': ['C', 'K', 'L', 'N']}, {'id': 'S11', 'elements': ['C', 'E', 'K', 'L', 'N', 'S']}, {'id': 'S12', 'elements': ['D', 'O', 'R']}, {'id': 'S13', 'elements': ['E', 'J']}, {'id': 'S14', 'elements': ['A', 'D', 'G', 'I', 'M', 'O', 'P', 'R']}, {'id': 'S15', 'elements': ['A', 'D', 'M', 'O']}, {'id': 'S16', 'elements': ['A', 'B', 'F']}, {'id': 'S17', 'elements': ['D', 'M', 'O', 'P', 'R']}, {'id': 'S18', 'elements': ['A', 'G', 'J', 'L', 'N']}]}","['S2', 'S11', 'S14', 'S18']",50,markdown_table,names
|