File size: 158,710 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 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 | [
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "Someone organizing a meet-and-greet asked to arrange all guests in one straight row β everyone must be placed once, no one left out or duplicated β and to be mindful of friendship links that span the line. At each gap between two positions, count the number of friendships that connect anyone on the left side to anyone on the right side; then find the gap with the biggest count. The host prefers the lineup whose single worst gap has the fewest crossing friendships. The exact guest list and links are shown below.\n\n# guest_count=8\n# friendship_count=1\n# guest_ids=0, 1, 2, 3, 4, 5, 6, 7\nguest_a,guest_b\n5,6\n\nOh β and when you send the lineup back, please use this simple JSON layout so it's easy to read by whoever's collecting the responses:\n\n{\n \"solution\": [<first_node>, <second_node>, ..., <last_node>]\n}\n\n\"solution\" is just the ordered list of guests from left to right in the row β put each guest identifier in the array in the exact order you want them seated. Think of this as a little form: the JSON shows the shape I need, not the computed best order itself.\n\nPlease also remember: 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β\".",
"instance": {
"name": "bcsstm07.mtx.rnd_sub_8",
"num_nodes": 8,
"num_edges": 1,
"edges": [
[
5,
6
]
],
"solution": [
5,
0,
6,
4,
1,
2,
3,
7
],
"objective": 1.0
},
"solution": [
5,
0,
6,
4,
1,
2,
3,
7
],
"obj": 1.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 8,
"nodes": [
0,
1,
2,
3,
4,
5,
6,
7
],
"num_edges": 1,
"edges": [
{
"u": 5,
"v": 6
}
]
},
"solution_variant": [
5,
0,
6,
4,
1,
2,
3,
7
],
"context_index": 1,
"input_format": "csv",
"input_index_base": 0
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "We ran into a real-world puzzle: order the servers on a rack so the worst choke point β where the most cables cross from one side of the rack to the other β is as mellow as possible. That means placing every server exactly once into a single line, then checking every gap between neighbors, counting the cables that run from someone on the left to someone on the right. The score of an ordering is the largest of those gap counts, and the better order is the one with the smallest such score. The exact server list and cable map are shown below.\n\nThey are: servers 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11 (12 total) with 11 cables.\n\n| server_a | server_b |\n|---|---|\n| 2 | 3 |\n| 1 | 3 |\n| 11 | 3 |\n| 8 | 3 |\n| 6 | 3 |\n| 5 | 3 |\n| 7 | 3 |\n| 4 | 3 |\n| 0 | 3 |\n| 10 | 3 |\n| 9 | 3 |\n\nWe'll place each server once to minimize the largest gap-crossing among these 11 cables.\n\nJust drop your answer into this little JSON shape when you're ready β keeps things tidy and machine-friendly while we chat like humans.\n\n{\n \"solution\": [<first_server>, <second_server>, ..., <last_server>]\n}\n\nHere \"solution\" is the lineup from left to right on the rack: list each server identifier exactly once in the order you want them placed. This JSON is just a sketch of the shape I expect, not the actual ordering β you'll replace those placeholders with the real IDs from the instance.\n\nPlease make sure you use the identifiers exactly as they appear in the instance input β no renaming and no new labels.\n\n- 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β\".",
"instance": {
"name": "fs_541_1.mtx.rnd_sub_12",
"num_nodes": 12,
"num_edges": 11,
"edges": [
[
2,
3
],
[
1,
3
],
[
11,
3
],
[
8,
3
],
[
6,
3
],
[
5,
3
],
[
7,
3
],
[
4,
3
],
[
0,
3
],
[
10,
3
],
[
9,
3
]
],
"solution": [
0,
5,
11,
6,
7,
8,
3,
9,
1,
10,
4,
2
],
"objective": 6.0
},
"solution": [
0,
5,
11,
6,
7,
8,
3,
9,
1,
10,
4,
2
],
"obj": 6.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 12,
"nodes": [
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11
],
"num_edges": 11,
"edges": [
{
"u": 2,
"v": 3
},
{
"u": 1,
"v": 3
},
{
"u": 11,
"v": 3
},
{
"u": 8,
"v": 3
},
{
"u": 6,
"v": 3
},
{
"u": 5,
"v": 3
},
{
"u": 7,
"v": 3
},
{
"u": 4,
"v": 3
},
{
"u": 0,
"v": 3
},
{
"u": 10,
"v": 3
},
{
"u": 9,
"v": 3
}
]
},
"solution_variant": [
0,
5,
11,
6,
7,
8,
3,
9,
1,
10,
4,
2
],
"context_index": 2,
"input_format": "markdown_table",
"input_index_base": 0
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "Someone at the library is trying to arrange all the volumes in a single line so that, wherever you split that line, you rarely see many references reaching from the books on the left to those on the right. The only choice to make is the order β every book must appear once in the row. You evaluate any order by checking every gap, counting cross-references at that gap, and then looking at the worst (largest) count across all gaps; the lower that worst count, the better the lineup. The specific book and reference details are shown below.\n\nThere are 9 books and 4 cross-references; the book identifiers are A, B, C, D, E, F, G, H, I.\nA cross-reference links book E and book H.\nA cross-reference links book H and book I.\nA cross-reference links book G and book C.\nA cross-reference links book G and book I.\nEach following line shows one cross-reference between the listed book ids.\n\nOh, and when you're ready to hand me the lineup, please use this simple JSON shape so it's easy to parse and check β nothing fancy, just that one object with the order inside.\n\n{\n \"solution\": [<first_book>, <second_book>, ..., <last_book>]\n}\n\nThis block is just a friendly template: the \"solution\" array is where you list the books from leftmost to rightmost. The angle-bracket items are placeholders showing the shape β when you provide the real ordering, replace those placeholders with the actual book identifiers from the instance.\n\nQuick heads-up: the JSON above is only a sketch of the expected shape, not the final answer itself. And be sure to use the identifiers exactly as they appear in the problem 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β.",
"instance": {
"name": "p80_22_30_sub_9",
"num_nodes": 9,
"num_edges": 4,
"edges": [
[
4,
7
],
[
7,
8
],
[
6,
2
],
[
6,
8
]
],
"solution": [
4,
7,
0,
8,
6,
3,
2,
1,
5
],
"objective": 1.0
},
"solution": [
4,
7,
0,
8,
6,
3,
2,
1,
5
],
"obj": 1.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 9,
"nodes": [
"A",
"B",
"C",
"D",
"E",
"F",
"G",
"H",
"I"
],
"num_edges": 4,
"edges": [
{
"u": "E",
"v": "H"
},
{
"u": "H",
"v": "I"
},
{
"u": "G",
"v": "C"
},
{
"u": "G",
"v": "I"
}
]
},
"solution_variant": [
"E",
"H",
"A",
"I",
"G",
"D",
"C",
"B",
"F"
],
"context_index": 3,
"input_format": "nl",
"input_index_base": "names"
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "I was helping a festival put together a single parade line of acts, and the trick was to order everyone so that, at any spot between two performers, not too many of their past collaborations had to βstretchβ across that gap. The decision is just who goes where in the one line β everyone must appear exactly once and nobody gets repeated or skipped β and a good order is one where, if someone checks every gap and counts how many collaboration links cross it, the biggest of those counts is as small as possible. The specific list of performers and which pairs have worked together will be shown below.\n\nBelow are the 9 performers (0, 1, 2, 3, 4, 5, 6, 7, 8) and the 6 past collaborations between them.\nI recorded that 1 and 8 had collaborated.\nI recorded that 2 and 7 had collaborated.\nI recorded that 5 and 6 had collaborated.\nI recorded that 7 and 0 had collaborated.\nI recorded that 2 and 1 had collaborated.\nI recorded that 0 and 2 had collaborated.\nThose were the ties I had to juggle when arranging the parade order.\n\nAlso, if you want to give me the ordering, a tiny JSON sketch works best β nothing fancy, just the list from the first performer to the last in a single array. For the story, Iβll use βactβ in the placeholders so it reads naturally.\n\n{\n \"solution\": [<first_act>, <second_act>, ..., <last_act>]\n}\n\nThis simply means: put the parade order in the array under \"solution\", with the performer at the front first and the performer at the end last. The angle-bracketed names above are just placeholders showing the shape β when you reply, replace them with the actual performer IDs from the instance (donβt invent new keys or change the outer structure). The JSON is only a sketch of the expected shape, not the actual answer.\n\nAll identifiers must be used exactly as they appear in the instance input β no renaming and no new labels.\n- 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β.\"",
"instance": {
"name": "p52_20_27_sub_9",
"num_nodes": 9,
"num_edges": 6,
"edges": [
[
1,
8
],
[
2,
7
],
[
5,
6
],
[
7,
0
],
[
2,
1
],
[
0,
2
]
],
"solution": [
3,
5,
6,
7,
0,
2,
1,
8,
4
],
"objective": 2.0
},
"solution": [
3,
5,
6,
7,
0,
2,
1,
8,
4
],
"obj": 2.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 9,
"nodes": [
0,
1,
2,
3,
4,
5,
6,
7,
8
],
"num_edges": 6,
"edges": [
{
"u": 1,
"v": 8
},
{
"u": 2,
"v": 7
},
{
"u": 5,
"v": 6
},
{
"u": 7,
"v": 0
},
{
"u": 2,
"v": 1
},
{
"u": 0,
"v": 2
}
]
},
"solution_variant": [
3,
5,
6,
7,
0,
2,
1,
8,
4
],
"context_index": 4,
"input_format": "nl",
"input_index_base": 0
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "On a quiet morning the team was told to arrange a lineup of artifacts down a corridor so that visitors donβt hit a point where an overwhelming number of connections leap across the aisle. The exhibits must all be placed in one single sequence, no repeats and none left out, and you check every space between items by tallying links that go from the left group to the right group. Which ordering is nicer? The one whose worst split β the highest tally among all the spaces β is as small as possible. The specific exhibits and their connections are listed below.\n\n{\n \"num_exhibits\": 10,\n \"num_thematic_links\": 4,\n \"exhibit_ids\": [\n 1,\n 2,\n 3,\n 4,\n 5,\n 6,\n 7,\n 8,\n 9,\n 10\n ],\n \"edges\": [\n {\n \"exhibit_a\": 7,\n \"exhibit_b\": 1\n },\n {\n \"exhibit_a\": 1,\n \"exhibit_b\": 4\n },\n {\n \"exhibit_a\": 1,\n \"exhibit_b\": 6\n },\n {\n \"exhibit_a\": 4,\n \"exhibit_b\": 6\n }\n ]\n}\n\nOh, and one more practical thing β when you send back the ordering, please stick to this simple JSON layout so it's easy to check:\n\n{\n \"solution\": [<first_node>, <second_node>, ..., <last_node>]\n}\n\nHere \"solution\" is just the left-to-right lineup of exhibits along the corridor; put each exhibit's identifier in order inside that array, from the first placed to the last. Think of it like filling out a form: the array lists the sequence, and that's all the judge needs to see.\n\nThis JSON is just a sketch of the shape I expect β replace the placeholder items with the actual exhibit identifiers from the instance input when you give the final ordering. Please use those identifiers exactly as they appear in the instance input β do not rename or invent labels. \n\n- 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β.\"",
"instance": {
"name": "curtis54.mtx.rnd_sub_10",
"num_nodes": 10,
"num_edges": 4,
"edges": [
[
6,
0
],
[
0,
3
],
[
0,
5
],
[
3,
5
]
],
"solution": [
5,
8,
9,
1,
2,
3,
0,
6,
4,
7
],
"objective": 2.0
},
"solution": [
5,
8,
9,
1,
2,
3,
0,
6,
4,
7
],
"obj": 2.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 10,
"nodes": [
1,
2,
3,
4,
5,
6,
7,
8,
9,
10
],
"num_edges": 4,
"edges": [
{
"u": 7,
"v": 1
},
{
"u": 1,
"v": 4
},
{
"u": 1,
"v": 6
},
{
"u": 4,
"v": 6
}
]
},
"solution_variant": [
6,
9,
10,
2,
3,
4,
1,
7,
5,
8
],
"context_index": 5,
"input_format": "json",
"input_index_base": 1
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "Recently a foreman tried to arrange all pallets in a straight line so the single worst crossing point wouldnβt be overloaded with ties between left and right. All that had to be decided was the order of the pallets β each pallet must be in the line once, no omissions or repeats. To figure out how well an order does, check every spot between pallets, count how many dependency-lines cross that spot from left to right, then take the highest count you find; the smaller that highest number, the better the ordering. The concrete instance is shown below.\n\nHere 12 pallets must be placed in a single file, with 9 dependency lines among the labels A, B, C, D, E, F, G, H, I, J, K, L.\nA dependency line connects pallet A and pallet G.\nA dependency line connects pallet B and pallet E.\nA dependency line connects pallet C and pallet J.\nA dependency line connects pallet G and pallet J.\nA dependency line connects pallet H and pallet J.\nA dependency line connects pallet I and pallet J.\nA dependency line connects pallet K and pallet L.\nA dependency line connects pallet A and pallet K.\nA dependency line connects pallet C and pallet B.\nThese 9 dependency lines among the 12 pallets are the ties the foreman had to consider.\n\nIf you'd like to hand in a proposed ordering, just toss it into a tiny JSON object like this β keeps things simple and machine-friendly.\n\n{\n \"solution\": [<first_pallet>, <second_pallet>, <third_pallet>, <fourth_pallet>, <fifth_pallet>, <sixth_pallet>, <seventh_pallet>, <eighth_pallet>, <ninth_pallet>, <tenth_pallet>]\n}\n\nHere \"solution\" is the list of pallets in the order you want them arranged, from leftmost to rightmost. Each placeholder like <first_pallet> stands in for an actual pallet identifier from the instance β replace those placeholders with the real IDs when you submit. This JSON is just a sketch of the expected shape, not the actual answer.\n\nPlease use the identifiers exactly as they appear in the instance input β no renaming and no new labels. \nValid 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\".",
"instance": {
"name": "p58_20_21_sub_12",
"num_nodes": 12,
"num_edges": 9,
"edges": [
[
0,
6
],
[
1,
4
],
[
2,
9
],
[
6,
9
],
[
7,
9
],
[
8,
9
],
[
10,
11
],
[
0,
10
],
[
2,
1
]
],
"solution": [
8,
3,
4,
1,
2,
9,
7,
6,
0,
10,
5,
11
],
"objective": 2.0
},
"solution": [
8,
3,
4,
1,
2,
9,
7,
6,
0,
10,
5,
11
],
"obj": 2.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 12,
"nodes": [
"A",
"B",
"C",
"D",
"E",
"F",
"G",
"H",
"I",
"J",
"K",
"L"
],
"num_edges": 9,
"edges": [
{
"u": "A",
"v": "G"
},
{
"u": "B",
"v": "E"
},
{
"u": "C",
"v": "J"
},
{
"u": "G",
"v": "J"
},
{
"u": "H",
"v": "J"
},
{
"u": "I",
"v": "J"
},
{
"u": "K",
"v": "L"
},
{
"u": "A",
"v": "K"
},
{
"u": "C",
"v": "B"
}
]
},
"solution_variant": [
"I",
"D",
"E",
"B",
"C",
"J",
"H",
"G",
"A",
"K",
"F",
"L"
],
"context_index": 6,
"input_format": "nl",
"input_index_base": "names"
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "There's a teacher who wants a neat photo lineup: all the kids in one straight line, each child exactly once. The idea is to think about every possible cut between kidsβcount how many friendships stretch from the front side to the back side at that cutβand then note the single biggest count you see among all those cuts. The aim is to arrange the kids so that this biggest crossing number is as low as it can be. The actual roster and friendship connections appear below.\n\n{\n \"num_students\": 11,\n \"num_friendships\": 6,\n \"student_ids\": [\n 1,\n 2,\n 3,\n 4,\n 5,\n 6,\n 7,\n 8,\n 9,\n 10,\n 11\n ],\n \"edges\": [\n {\n \"student_a\": 1,\n \"student_b\": 4\n },\n {\n \"student_a\": 2,\n \"student_b\": 9\n },\n {\n \"student_a\": 4,\n \"student_b\": 6\n },\n {\n \"student_a\": 5,\n \"student_b\": 6\n },\n {\n \"student_a\": 8,\n \"student_b\": 9\n },\n {\n \"student_a\": 9,\n \"student_b\": 11\n }\n ]\n}\n\nOh, and when you're ready to hand me a proposed lineup, please use this simple JSON shape so it's easy to read and check:\n\n{\n \"solution\": [<first_node>, <second_node>, ..., <last_node>]\n}\n\n\"solution\" is just the ordered list of kids from left/front of the photo to right/back. Treat each placeholder there as where you'd put the exact identifier for a kid from the instance β that list is a sketch of the shape I expect, not the actual answer.\n\nPlease make sure you use the identifiers exactly as they appear in 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β.",
"instance": {
"name": "p37_18_20_sub_11",
"num_nodes": 11,
"num_edges": 6,
"edges": [
[
0,
3
],
[
1,
8
],
[
3,
5
],
[
4,
5
],
[
7,
8
],
[
8,
10
]
],
"solution": [
2,
10,
8,
7,
1,
0,
3,
5,
4,
6,
9
],
"objective": 2.0
},
"solution": [
2,
10,
8,
7,
1,
0,
3,
5,
4,
6,
9
],
"obj": 2.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 11,
"nodes": [
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11
],
"num_edges": 6,
"edges": [
{
"u": 1,
"v": 4
},
{
"u": 2,
"v": 9
},
{
"u": 4,
"v": 6
},
{
"u": 5,
"v": 6
},
{
"u": 8,
"v": 9
},
{
"u": 9,
"v": 11
}
]
},
"solution_variant": [
3,
11,
9,
8,
2,
1,
4,
6,
5,
7,
10
],
"context_index": 7,
"input_format": "json",
"input_index_base": 1
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "At rehearsal the leader sketched out the songs on the whiteboard and said, we need one playlist where nothingβs left out or repeated, and no slice of the show is overwhelmed by links reaching across to the rest. The choice is the exact sequence of all songs, and the way to compare sequences is to walk every gap, count how many song-pairs jump from before the gap to after it, then take the maximum count among those gaps; the aim is to keep that maximum down. The concrete setup is shown below.\n\nBelow we list the 6 transitions among the 12 songs; the song identifiers are A, B, C, D, E, F, G, H, I, J, K, L.\n\n| song_u | song_v |\n|---|---|\n| B | K |\n| E | G |\n| F | G |\n| G | H |\n| C | B |\n| A | D |\n\nThat's the complete link list; we'll arrange the 12 songs into a single playlist that keeps the maximum gap cut as low as we can.\n\nAnd when youβre ready to hand over the ordering, just pop it into this little JSON wrapper so itβs clear and tidy:\n\n{\n \"solution\": [<first_node>, <second_node>, ..., <last_node>]\n}\n\nThink of \"solution\" as the playlist: the array lists the songs (nodes) from the very first to the very last. Replace each placeholder with the actual node identifier from the instance β this is just the shape I expect, not the final answer itself.\n\nPlease use the identifiers exactly as they appear in the 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β.",
"instance": {
"name": "p28_17_18_sub_12",
"num_nodes": 12,
"num_edges": 6,
"edges": [
[
1,
10
],
[
4,
6
],
[
5,
6
],
[
6,
7
],
[
2,
1
],
[
0,
3
]
],
"solution": [
8,
11,
0,
7,
3,
4,
6,
2,
1,
5,
10,
9
],
"objective": 2.0
},
"solution": [
8,
11,
0,
7,
3,
4,
6,
2,
1,
5,
10,
9
],
"obj": 2.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 12,
"nodes": [
"A",
"B",
"C",
"D",
"E",
"F",
"G",
"H",
"I",
"J",
"K",
"L"
],
"num_edges": 6,
"edges": [
{
"u": "B",
"v": "K"
},
{
"u": "E",
"v": "G"
},
{
"u": "F",
"v": "G"
},
{
"u": "G",
"v": "H"
},
{
"u": "C",
"v": "B"
},
{
"u": "A",
"v": "D"
}
]
},
"solution_variant": [
"I",
"L",
"A",
"H",
"D",
"E",
"G",
"C",
"B",
"F",
"K",
"J"
],
"context_index": 8,
"input_format": "markdown_table",
"input_index_base": "names"
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "Weβre picturing a boutique where the manager asks for all the clothes to be hung one after another on a single rail, and the challenge is arranging them so the most awkward split β the spot where the largest number of style connections cross from one side to the other β is kept as small as possible. Every garment needs to appear once on that rail, no repeats, no omissions; for every place you could split the row you tally how many connections go across, then take the highest tally, and the aim is to keep that highest tally low. The concrete setup is listed below.\n\n{\n \"num_garments\": 10,\n \"num_style_links\": 4,\n \"garment_ids\": [\n 1,\n 2,\n 3,\n 4,\n 5,\n 6,\n 7,\n 8,\n 9,\n 10\n ],\n \"edges\": [\n {\n \"garment_endpoint_a\": 1,\n \"garment_endpoint_b\": 6\n },\n {\n \"garment_endpoint_a\": 2,\n \"garment_endpoint_b\": 4\n },\n {\n \"garment_endpoint_a\": 4,\n \"garment_endpoint_b\": 9\n },\n {\n \"garment_endpoint_a\": 9,\n \"garment_endpoint_b\": 10\n }\n ]\n}\n\nAlso, when you hand the ordering back, just drop it into this little JSON layout so it's easy to read and use:\n\n{\n \"solution\": [<first_node>, <second_node>, ..., <last_node>]\n}\n\nThink of \"solution\" as the rail: the array is the garments from the very first hook to the very last. Each placeholder like <first_node> is where you'll put the actual item identifier from the instance β the exact one you see in the input. This JSON is just a sketch of the shape I want, not the final answer itself.\n\nPlease make sure all identifiers are used exactly as they appear in the instance input β no renaming and no new labels. \nValid 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\".",
"instance": {
"name": "p68_21_27_sub_10",
"num_nodes": 10,
"num_edges": 4,
"edges": [
[
0,
5
],
[
1,
3
],
[
3,
8
],
[
8,
9
]
],
"solution": [
2,
5,
0,
1,
3,
8,
9,
4,
7,
6
],
"objective": 1.0
},
"solution": [
2,
5,
0,
1,
3,
8,
9,
4,
7,
6
],
"obj": 1.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 10,
"nodes": [
1,
2,
3,
4,
5,
6,
7,
8,
9,
10
],
"num_edges": 4,
"edges": [
{
"u": 1,
"v": 6
},
{
"u": 2,
"v": 4
},
{
"u": 4,
"v": 9
},
{
"u": 9,
"v": 10
}
]
},
"solution_variant": [
3,
6,
1,
2,
4,
9,
10,
5,
8,
7
],
"context_index": 9,
"input_format": "json",
"input_index_base": 1
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "Many people on the crew prefer a cut that doesnβt throw too many threads across a single edit, so the editor asked for one straight sequence using every scene once. At every possible splice the number of threads that jump from earlier to later scenes was checked, and the whole sequence is judged by whichever splice has the most jumps. The aim then becomes arranging the scenes so the busiest splice carries as few crossing threads as possible. The concrete scene list and links are shown below.\n\n{\n \"total_scenes\": 11,\n \"total_threads\": 2,\n \"scene_list\": [\n 1,\n 2,\n 3,\n 4,\n 5,\n 6,\n 7,\n 8,\n 9,\n 10,\n 11\n ],\n \"edges\": [\n {\n \"scene_a\": 7,\n \"scene_b\": 10\n },\n {\n \"scene_a\": 2,\n \"scene_b\": 9\n }\n ]\n}\n\nIf you want to hand me the final ordering, just drop it into the little JSON shape below β nothing fancy, just the sequence in the order you want the scenes to appear.\n\n{\n \"solution\": [<first_node>, <second_node>, ..., <last_node>]\n}\n\nThis simply means: put every scene ID in that array in the exact order you want them played. The first entry is the opening scene, the next is what comes after, and so on down to the last entry. Itβs just a sketch of the shape I expect β the real answer would be a filled-in list of the scene IDs.\n\nPlease be sure to use the identifiers exactly as they appear in the instance input β donβt rename them or invent new labels.\n- 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β.\"",
"instance": {
"name": "impcol_e.mtx.rnd_sub_11",
"num_nodes": 11,
"num_edges": 2,
"edges": [
[
6,
9
],
[
1,
8
]
],
"solution": [
2,
4,
7,
5,
3,
9,
6,
8,
1,
0,
10
],
"objective": 1.0
},
"solution": [
2,
4,
7,
5,
3,
9,
6,
8,
1,
0,
10
],
"obj": 1.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 11,
"nodes": [
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11
],
"num_edges": 2,
"edges": [
{
"u": 7,
"v": 10
},
{
"u": 2,
"v": 9
}
]
},
"solution_variant": [
3,
5,
8,
6,
4,
10,
7,
9,
2,
1,
11
],
"context_index": 10,
"input_format": "json",
"input_index_base": 1
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "Many people donβt think about ordering furniture, but when everything must be placed in one long row inside a truck, the order matters if items are connected. Walk along the row and count, at each split, how many connections go from left to right; whichever split has the most connections is the one that matters most, and the task is to pick an order that makes that maximum crossing number as low as possible. No piece can be skipped or repeated. The actual instance details follow below.\n\n{\n \"num_items\": 12,\n \"num_dependencies\": 12,\n \"item_ids\": [\n 1,\n 2,\n 3,\n 4,\n 5,\n 6,\n 7,\n 8,\n 9,\n 10,\n 11,\n 12\n ],\n \"edges\": [\n {\n \"item_a\": 1,\n \"item_b\": 2\n },\n {\n \"item_a\": 2,\n \"item_b\": 12\n },\n {\n \"item_a\": 3,\n \"item_b\": 9\n },\n {\n \"item_a\": 5,\n \"item_b\": 6\n },\n {\n \"item_a\": 6,\n \"item_b\": 9\n },\n {\n \"item_a\": 7,\n \"item_b\": 12\n },\n {\n \"item_a\": 9,\n \"item_b\": 12\n },\n {\n \"item_a\": 10,\n \"item_b\": 12\n },\n {\n \"item_a\": 11,\n \"item_b\": 12\n },\n {\n \"item_a\": 3,\n \"item_b\": 1\n },\n {\n \"item_a\": 11,\n \"item_b\": 6\n },\n {\n \"item_a\": 8,\n \"item_b\": 11\n }\n ]\n}\n\nOh, and when you send the final ordering back, please use this simple JSON layout so it's easy to parse:\n\n{\n \"solution\": [<first_item>, <second_item>, ..., <last_item>]\n}\n\nThink of that array as the truck row from front to back β list the items in the order they should appear, first to last. This JSON is just a little sketch of the shape I expect, not the actual answer itself.\n\nPlease use the exact identifiers from the instance input β don't rename them or invent new labels. \n- 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β.\"",
"instance": {
"name": "p68_21_27_sub_12",
"num_nodes": 12,
"num_edges": 12,
"edges": [
[
0,
1
],
[
1,
11
],
[
2,
8
],
[
4,
5
],
[
5,
8
],
[
6,
11
],
[
8,
11
],
[
9,
11
],
[
10,
11
],
[
2,
0
],
[
10,
5
],
[
7,
10
]
],
"solution": [
6,
9,
11,
1,
0,
2,
8,
3,
5,
4,
7,
10
],
"objective": 3.0
},
"solution": [
6,
9,
11,
1,
0,
2,
8,
3,
5,
4,
7,
10
],
"obj": 3.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 12,
"nodes": [
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12
],
"num_edges": 12,
"edges": [
{
"u": 1,
"v": 2
},
{
"u": 2,
"v": 12
},
{
"u": 3,
"v": 9
},
{
"u": 5,
"v": 6
},
{
"u": 6,
"v": 9
},
{
"u": 7,
"v": 12
},
{
"u": 9,
"v": 12
},
{
"u": 10,
"v": 12
},
{
"u": 11,
"v": 12
},
{
"u": 3,
"v": 1
},
{
"u": 11,
"v": 6
},
{
"u": 8,
"v": 11
}
]
},
"solution_variant": [
7,
10,
12,
2,
1,
3,
9,
4,
6,
5,
8,
11
],
"context_index": 11,
"input_format": "json",
"input_index_base": 1
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "We had a roadmap to build and the lead wanted a single ordered checklist of all the work items, no duplicates and nothing missing. Picture cutting that list at any point: some dependencies will jump from the earlier items to the later ones β for every cut you count how many jumps there are, and then look at the largest of those counts across all cuts; the idea is to order the items so that this largest number is kept as low as possible. Every task has to be placed once and only once. Concrete details are shown below.\n\n# num_tasks=11\n# num_dependencies=1\n# task_ids=A, B, C, D, E, F, G, H, I, J, K\ntask_u,task_v\nC,E\n\nAlso, just so we're on the same page about the reply format, please return the ordering in this casual JSON layout β nothing fancy, just a single list showing the checklist in the exact order you'd put the items.\n\n{\n \"solution\": [<first_task>, <second_task>, <third_task>, <fourth_task>, <last_task>]\n}\n\nThink of that array as the ordered checklist from start to finish: the leftmost placeholder is the first item to do, the next is the second, and so on until the last one. This JSON is just a sketch of the shape I expect, not the actual filled-in answer.\n\nOne important note: 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β.",
"instance": {
"name": "dwt__310.mtx.rnd_sub_11",
"num_nodes": 11,
"num_edges": 1,
"edges": [
[
2,
4
]
],
"solution": [
6,
0,
7,
5,
8,
9,
2,
4,
3,
1,
10
],
"objective": 1.0
},
"solution": [
6,
0,
7,
5,
8,
9,
2,
4,
3,
1,
10
],
"obj": 1.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 11,
"nodes": [
"A",
"B",
"C",
"D",
"E",
"F",
"G",
"H",
"I",
"J",
"K"
],
"num_edges": 1,
"edges": [
{
"u": "C",
"v": "E"
}
]
},
"solution_variant": [
"G",
"A",
"H",
"F",
"I",
"J",
"C",
"E",
"D",
"B",
"K"
],
"context_index": 12,
"input_format": "csv",
"input_index_base": "names"
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "Imagine organizing a one-room-style lineup of talks and caring more about the biggest shuffle than average comfort: place every talk in a single order, then for each possible break count the audience members whoβd have to cross from one side to the other because theyβre tied to talks on both sides; find the break with the highest count β thatβs the worst-case shuffle β and pick the ordering that makes that worst-case as small as possible. All talks must be included once, no skips or repeats. The exact talks and whoβs interested in what appear below.\n\n# num_talks=10\n# num_audience_overlaps=4\n# talk_ids=1, 2, 3, 4, 5, 6, 7, 8, 9, 10\ntalk_a,talk_b\n2,7\n5,7\n6,9\n7,9\n\nOh, and when you send the ordering back, please use this simple JSON layout so it's easy to read and check:\n\n{\n \"solution\": [<first_node>, <second_node>, ..., <last_node>]\n}\n\nHere the \"solution\" array is just the lineup from the very first talk/node to the very last β list the identifiers in the order you want them to appear. Think of it like filling in a form: each slot gets one identifier.\n\nThis JSON is only a sketch of the shape I expect, not the actual answer itself. One more thing: all identifiers must be used exactly as they appear in the instance input β no renaming and no new labels.\n\n- 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β\".",
"instance": {
"name": "p53_20_22_sub_10",
"num_nodes": 10,
"num_edges": 4,
"edges": [
[
1,
6
],
[
4,
6
],
[
5,
8
],
[
6,
8
]
],
"solution": [
5,
2,
7,
0,
3,
8,
1,
6,
4,
9
],
"objective": 2.0
},
"solution": [
5,
2,
7,
0,
3,
8,
1,
6,
4,
9
],
"obj": 2.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 10,
"nodes": [
1,
2,
3,
4,
5,
6,
7,
8,
9,
10
],
"num_edges": 4,
"edges": [
{
"u": 2,
"v": 7
},
{
"u": 5,
"v": 7
},
{
"u": 6,
"v": 9
},
{
"u": 7,
"v": 9
}
]
},
"solution_variant": [
6,
3,
8,
1,
4,
9,
2,
7,
5,
10
],
"context_index": 13,
"input_format": "csv",
"input_index_base": 1
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "Someone mentioned a gardener laying out a single flower bed and worrying that roots from early-planted items keep reaching across to later ones. The task is just the order of the plants β no plant is left out and none are repeated β and every time you split the row into an earlier group and a later group you count how many root connections cross the gap. You then look at the split with the highest count; the whole point is to arrange things so that this highest crossing count is as low as it can be. The exact instance β which plants and who connects to whom β appears below.\n\nIt lists 12 plants, 3 root connections, and the plant identifiers are 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12.\n\n| plant_u | plant_v |\n|---|---|\n| 5 | 6 |\n| 8 | 12 |\n| 1 | 3 |\n\nArrange the plants so the maximum number of crossing root connections across any split is as small as you can make it.\n\nWhen you send back the final ordering, just drop it into a tiny JSON sketch like this so it's easy to read and parse:\n\n{\n \"solution\": [<first_node>, <second_node>, ..., <last_node>]\n}\n\nThat \"solution\" array is simply the plants in the order you want them planted β left/earlier first, right/later last. The angle-bracket placeholders are where the actual node identifiers go; think of it like filling out a form, not a complicated file format. This JSON is just the shape I'm expecting, not your final answer itself.\n\nPlease make sure you use the exact identifiers from the instance input β don't rename them or invent new labels. \n- 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β.\"",
"instance": {
"name": "nos1.mtx.rnd_sub_12",
"num_nodes": 12,
"num_edges": 3,
"edges": [
[
4,
5
],
[
7,
11
],
[
0,
2
]
],
"solution": [
1,
3,
10,
2,
0,
8,
6,
11,
7,
4,
5,
9
],
"objective": 1.0
},
"solution": [
1,
3,
10,
2,
0,
8,
6,
11,
7,
4,
5,
9
],
"obj": 1.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 12,
"nodes": [
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12
],
"num_edges": 3,
"edges": [
{
"u": 5,
"v": 6
},
{
"u": 8,
"v": 12
},
{
"u": 1,
"v": 3
}
]
},
"solution_variant": [
2,
4,
11,
3,
1,
9,
7,
12,
8,
5,
6,
10
],
"context_index": 14,
"input_format": "markdown_table",
"input_index_base": 1
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "Someone in the test kitchen asked for a single, ordered procedure so prepping and cooking could move forward without too many ingredients being passed back and forth. To compare different orders, slide an imaginary line between any two consecutive steps and tally how many ingredients are used by steps on both sides of that line; then look at the worst such tally across the whole sequence. The nicer the order, the lower that worst tally will be. The rule was firm: each step appears exactly once, and the concrete recipe details appear below.\n\nThere are 8 distinct procedural steps, 2 undirected ingredient links, and the steps are A, B, C, D, E, F, G, H.\n\n| step_a | step_b |\n|---|---|\n| F | H |\n| G | H |\n\nTreat this list as definitive: each of the 8 steps appears once, and the 2 links mark ingredients that can cross any cut.\n\nIf you'd like to hand in an ordering, just drop it in this relaxed JSON layout so everything's clear and easy to read:\n\n{\n \"solution\": [<first_step>, <second_step>, ..., <last_step>]\n}\n\nThis just means \"solution\" is the ordered list of steps β the first entry is what you do first, the next is what you do second, and so on until the last entry. Think of the angle-bracket placeholders as placeholders only: replace them with the actual step identifiers from the instance input (don't spell out the story words like \"first_step\" as a literal).\n\nThis JSON is only a sketch of the shape I expect, not the actual ordering answer.\n\nPlease make sure to use the exact identifiers from 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β.",
"instance": {
"name": "p48_19_21_sub_8",
"num_nodes": 8,
"num_edges": 2,
"edges": [
[
5,
7
],
[
6,
7
]
],
"solution": [
2,
0,
5,
7,
6,
4,
1,
3
],
"objective": 1.0
},
"solution": [
2,
0,
5,
7,
6,
4,
1,
3
],
"obj": 1.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 8,
"nodes": [
"A",
"B",
"C",
"D",
"E",
"F",
"G",
"H"
],
"num_edges": 2,
"edges": [
{
"u": "F",
"v": "H"
},
{
"u": "G",
"v": "H"
}
]
},
"solution_variant": [
"C",
"A",
"F",
"H",
"G",
"E",
"B",
"D"
],
"context_index": 15,
"input_format": "markdown_table",
"input_index_base": "names"
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "We hear about a planner trying to put all attractions into a single route so visitors follow them one by one, never skipping or repeating any. At every point along that route, some places are behind and some lie ahead; for each of those moments you can total up the number of connections that still link the visited side to the unvisited side. The route thatβs preferred is the one whose biggest such total (the peak number of crossing connections encountered anywhere along the tour) is lower than for other orders. The concrete map details are listed below.\n\n# num_landmarks=9\n# num_paths=3\n# landmark_ids=A, B, C, D, E, F, G, H, I\nlandmark_a,landmark_b\nE,D\nE,C\nD,A\n\nIf you want to hand me the route in a tidy way, just follow this simple JSON shape when you reply β nothing fancy, just the order I should use.\n\n{\n \"solution\": [<first_node>, <second_node>, ..., <last_node>]\n}\n\nThis little JSON is just a sketch of the shape I expect: the solution array is where you list every attraction in the exact order they should be visited, from the very first one on the left to the very last one on the right. Think of each placeholder as a slot for a single attraction identifier.\n\nRemember: this is just the expected format, not the actual answer itself. Also, all identifiers must be used exactly as they appear in the instance input β no renaming and no new labels.\n- 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\".",
"instance": {
"name": "dwt__234.mtx.rnd_sub_9",
"num_nodes": 9,
"num_edges": 3,
"edges": [
[
4,
3
],
[
4,
2
],
[
3,
0
]
],
"solution": [
2,
1,
4,
6,
8,
3,
5,
0,
7
],
"objective": 1.0
},
"solution": [
2,
1,
4,
6,
8,
3,
5,
0,
7
],
"obj": 1.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 9,
"nodes": [
"A",
"B",
"C",
"D",
"E",
"F",
"G",
"H",
"I"
],
"num_edges": 3,
"edges": [
{
"u": "E",
"v": "D"
},
{
"u": "E",
"v": "C"
},
{
"u": "D",
"v": "A"
}
]
},
"solution_variant": [
"C",
"B",
"E",
"G",
"I",
"D",
"F",
"A",
"H"
],
"context_index": 16,
"input_format": "csv",
"input_index_base": "names"
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "At the boutique the brief was simple β one straight shelf of accessories, ordered so that no single divider chops through too many linked styles. That means lining up every piece exactly once, checking every boundary between neighboring items to count how many style links hop from left to right, and judging the lineup by the largest of those counts β smaller is preferable. The specific accessories and their connections will be shown below.\n\nThere are 12 accessories and 4 style pairings, identified as 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11.\n\n| accessory_a | accessory_b |\n|---|---|\n| 11 | 0 |\n| 0 | 8 |\n| 7 | 4 |\n| 5 | 6 |\n\nList each pairing below; the chosen order will be judged by its largest divider cut.\n\nIf you want to hand me a lineup, just pop it into this little JSON shape so I can read it cleanly β nothing fancy, just the order from left to right.\n\n{\n \"solution\": [<first_node>, <second_node>, ..., <last_node>]\n}\n\nThink of \"solution\" as the shelf order: list each accessory (node) once, in the exact left-to-right order you want. This block is just a sketch of the shape I expect, not the actual ordering you need to produce.\n\nPlease use the exact identifiers from the instance input β don't rename them or invent new labels. \n- 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β.\"",
"instance": {
"name": "impcol_a.mtx.rnd_sub_12",
"num_nodes": 12,
"num_edges": 4,
"edges": [
[
11,
0
],
[
0,
8
],
[
7,
4
],
[
5,
6
]
],
"solution": [
1,
8,
0,
11,
5,
6,
10,
4,
7,
9,
3,
2
],
"objective": 1.0
},
"solution": [
1,
8,
0,
11,
5,
6,
10,
4,
7,
9,
3,
2
],
"obj": 1.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 12,
"nodes": [
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11
],
"num_edges": 4,
"edges": [
{
"u": 11,
"v": 0
},
{
"u": 0,
"v": 8
},
{
"u": 7,
"v": 4
},
{
"u": 5,
"v": 6
}
]
},
"solution_variant": [
1,
8,
0,
11,
5,
6,
10,
4,
7,
9,
3,
2
],
"context_index": 17,
"input_format": "markdown_table",
"input_index_base": 0
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "Someone suggested putting all students in a single row so that, whenever the line is cut at any point, as few friendships as possible stretch across that cut β and every student has to appear once, no duplicates. The way to check a seating is to walk every boundary between seats, count how many social links cross from left to right at that place, and then note the biggest of those counts; the nicer seatings are the ones where that biggest number is lower. The exact student list and their connections are listed below.\n\nThere are 9 students (0, 1, 2, 3, 4, 5, 6, 7, 8) and 5 social links:\n\n| student_u | student_v |\n|---|---|\n| 1 | 4 |\n| 4 | 5 |\n| 5 | 7 |\n| 6 | 8 |\n| 3 | 4 |\n\nThese 9 students and 5 links are the set used to evaluate seatings.\n\nIf you want to hand me a seating order, just drop it into this little JSON shape so it's clear and machine-friendly:\n\n{\n \"solution\": [<first_student>, <second_student>, ..., <last_student>]\n}\n\nThis just sketches the shape I expect: the \"solution\" array lists every student once, in the order they should stand from left to right. The angle-bracket placeholders are just showing where each student's identifier goes β it's a template, not the actual answer.\n\nPlease remember to use the identifiers exactly as they appear in the instance input β do not rename them or invent new labels. \n- \"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β.\"",
"instance": {
"name": "p45_19_25_sub_9",
"num_nodes": 9,
"num_edges": 5,
"edges": [
[
1,
4
],
[
4,
5
],
[
5,
7
],
[
6,
8
],
[
3,
4
]
],
"solution": [
0,
6,
8,
2,
1,
4,
5,
7,
3
],
"objective": 2.0
},
"solution": [
0,
6,
8,
2,
1,
4,
5,
7,
3
],
"obj": 2.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 9,
"nodes": [
0,
1,
2,
3,
4,
5,
6,
7,
8
],
"num_edges": 5,
"edges": [
{
"u": 1,
"v": 4
},
{
"u": 4,
"v": 5
},
{
"u": 5,
"v": 7
},
{
"u": 6,
"v": 8
},
{
"u": 3,
"v": 4
}
]
},
"solution_variant": [
0,
6,
8,
2,
1,
4,
5,
7,
3
],
"context_index": 18,
"input_format": "markdown_table",
"input_index_base": 0
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "Back at the transit office the challenge was framed plainly: list every shuttle stop exactly once in a single loop, and then for each cut in that list count trips that start on one side and end on the other. The sequence that wins is the one whose toughest cut β the one with the largest number of crossing trips β is smaller than the rest. The concrete route and trip information follow below.\n\n# num_stops=9\n# num_trips=2\n# stop_ids=1, 2, 3, 4, 5, 6, 7, 8, 9\nstop_a,stop_b\n7,6\n5,3\n\nWhen you send the final route, just stick to this little JSON shape so it's easy to read and check:\n\n{\n \"solution\": [<first_stop>, <second_stop>, ..., <last_stop>]\n}\n\nThink of \"solution\" as the single list of shuttle stops in travel order β the first entry is where the line starts and the last is where it ends. It's just a sketch of the shape I need, not your final answer.\n\nQuick reminder: use the exact stop identifiers from the instance input β don't rename them or invent new labels. \n- 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\".",
"instance": {
"name": "dwt__310.mtx.rnd_sub_9",
"num_nodes": 9,
"num_edges": 2,
"edges": [
[
6,
5
],
[
4,
2
]
],
"solution": [
7,
6,
5,
4,
3,
2,
1,
0,
8
],
"objective": 1.0
},
"solution": [
7,
6,
5,
4,
3,
2,
1,
0,
8
],
"obj": 1.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 9,
"nodes": [
1,
2,
3,
4,
5,
6,
7,
8,
9
],
"num_edges": 2,
"edges": [
{
"u": 7,
"v": 6
},
{
"u": 5,
"v": 3
}
]
},
"solution_variant": [
8,
7,
6,
5,
4,
3,
2,
1,
9
],
"context_index": 19,
"input_format": "csv",
"input_index_base": 1
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "Weβre putting an entire collection on a single wall and trying to make the lineup feel smooth: place each painting exactly once in a row so that, when you look at every space between pieces, the number of story-connections that cross that space is as calm as it can be. Practically that means for each divide you count how many thematic ties go from any left-hand painting to any right-hand one, and you care most about the divide that has the highest such count β the aim is to make that highest count as small as you can. The concrete details follow below.\n\nWe have 8 paintings and 5 thematic connections; their identifiers are 0, 1, 2, 3, 4, 5, 6, 7.\n\n| painting_a | painting_b |\n|---|---|\n| 0 | 1 |\n| 2 | 6 |\n| 4 | 7 |\n| 7 | 2 |\n| 0 | 2 |\n\nWe'll use these ties to arrange the lineup so the worst crossing at any gap is as small as possible.\n\nYou can just send the ordering in a tiny JSON snippet like this β keeps things simple and machine-friendly.\n\n{\n \"solution\": [<first_painting>, <second_painting>, <third_painting>, ..., <last_painting>]\n}\n\n\"solution\" is the left-to-right lineup for the wall; each placeholder in the list is where youβd put one paintingβs identifier from the instance (fill those with the actual IDs). This JSON is just the shape I expect, not the final answer.\n\nPlease use the identifiers exactly as they appear in the instance input β no renaming and no new labels. \nFor 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β.\"",
"instance": {
"name": "p24_17_29_sub_8",
"num_nodes": 8,
"num_edges": 5,
"edges": [
[
0,
1
],
[
2,
6
],
[
4,
7
],
[
7,
2
],
[
0,
2
]
],
"solution": [
1,
0,
6,
2,
7,
4,
3,
5
],
"objective": 2.0
},
"solution": [
1,
0,
6,
2,
7,
4,
3,
5
],
"obj": 2.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 8,
"nodes": [
0,
1,
2,
3,
4,
5,
6,
7
],
"num_edges": 5,
"edges": [
{
"u": 0,
"v": 1
},
{
"u": 2,
"v": 6
},
{
"u": 4,
"v": 7
},
{
"u": 7,
"v": 2
},
{
"u": 0,
"v": 2
}
]
},
"solution_variant": [
1,
0,
6,
2,
7,
4,
3,
5
],
"context_index": 20,
"input_format": "markdown_table",
"input_index_base": 0
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "Recently the town decided to order all the trees along the new promenade in a single straight lineup, and the requirement is to place each tree exactly once in that lineup. For every possible slice through the row, count how many irrigation connections cross from trees on one side to trees on the other; then the score for an arrangement is the biggest of those crossing counts. The aim is to arrange the trees so that this worst-case crossing number is as small as you can make it. The actual instance details are shown below.\n\nThere are 10 trees, 9 irrigation pipes, and the trees are labeled A, B, C, D, E, F, G, H, I, J.\n\n| tree_u | tree_v |\n|---|---|\n| A | J |\n| B | F |\n| C | I |\n| E | G |\n| F | H |\n| G | J |\n| I | J |\n| I | B |\n| C | A |\n\nArrange the 10 trees to make the worst-case number of crossing irrigation pipes (out of 9) as small as possible.\n\nYou can just send the final lineup in a tiny JSON snippet so it's easy to parse. Something casual like this works:\n\n{\n \"solution\": [\"<first_tree>\", \"<second_tree>\", ..., \"<last_tree>\"]\n}\n\nThis is just a sketch of the shape I expect: \"solution\" holds an ordered list from the leftmost tree to the rightmost tree. Each entry in that list should be the exact identifier for a tree (as given in the instance) β think of it like filling out a simple form that reads left-to-right. The JSON above is only the shape I want, not the real ordering.\n\nPlease be careful to use the identifiers exactly as they appear in the instance input β no renaming and no new labels.\n- 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β.\"",
"instance": {
"name": "p90_23_35_sub_10",
"num_nodes": 10,
"num_edges": 9,
"edges": [
[
0,
9
],
[
1,
5
],
[
2,
8
],
[
4,
6
],
[
5,
7
],
[
6,
9
],
[
8,
9
],
[
8,
1
],
[
2,
0
]
],
"solution": [
3,
4,
6,
9,
0,
2,
8,
1,
5,
7
],
"objective": 2.0
},
"solution": [
3,
4,
6,
9,
0,
2,
8,
1,
5,
7
],
"obj": 2.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 10,
"nodes": [
"A",
"B",
"C",
"D",
"E",
"F",
"G",
"H",
"I",
"J"
],
"num_edges": 9,
"edges": [
{
"u": "A",
"v": "J"
},
{
"u": "B",
"v": "F"
},
{
"u": "C",
"v": "I"
},
{
"u": "E",
"v": "G"
},
{
"u": "F",
"v": "H"
},
{
"u": "G",
"v": "J"
},
{
"u": "I",
"v": "J"
},
{
"u": "I",
"v": "B"
},
{
"u": "C",
"v": "A"
}
]
},
"solution_variant": [
"D",
"E",
"G",
"J",
"A",
"C",
"I",
"B",
"F",
"H"
],
"context_index": 21,
"input_format": "markdown_table",
"input_index_base": "names"
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "Recently the team decided to put every study volume onto one long shelf and wondered if thereβs a way to line them up so that the biggest number of cross-references crossing any split is kept low. The only thing to choose is the sequence β each book must be placed exactly once. For every possible gap between books, count the cross-references that start in any book on the left and end in any book on the right; the arrangementβs score is the largest of those counts across all gaps. A better lineup is one with a smaller score. The concrete instance (which books and which cross-references) will be shown below.\n\nIt lists 9 books, 6 cross-references, and the book identifiers are A, B, C, D, E, F, G, H, I.\n\n| book_u | book_v |\n|---|---|\n| I | A |\n| I | B |\n| A | B |\n| C | H |\n| D | G |\n| F | H |\n\nThe team will use these entries to assess each sequence's score.\n\nAlso, when you send back your lineup, please use this simple JSON layout for the solution so it's easy to parse:\n\n{\n \"solution\": [<first_node>, <second_node>, ..., <last_node>]\n}\n\nThink of \"solution\" as the sequence of books from left to right on the shelf β list every book exactly once in the order you'd place them. This JSON is just the shape I expect, a sketch of the format rather than the actual ordering.\n\nPlease make sure all identifiers you use in that list match the instance input exactly β don't rename them or introduce 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β.",
"instance": {
"name": "gent113.mtx.rnd_sub_9",
"num_nodes": 9,
"num_edges": 6,
"edges": [
[
8,
0
],
[
8,
1
],
[
0,
1
],
[
2,
7
],
[
3,
6
],
[
5,
7
]
],
"solution": [
4,
0,
1,
8,
5,
7,
2,
3,
6
],
"objective": 2.0
},
"solution": [
4,
0,
1,
8,
5,
7,
2,
3,
6
],
"obj": 2.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 9,
"nodes": [
"A",
"B",
"C",
"D",
"E",
"F",
"G",
"H",
"I"
],
"num_edges": 6,
"edges": [
{
"u": "I",
"v": "A"
},
{
"u": "I",
"v": "B"
},
{
"u": "A",
"v": "B"
},
{
"u": "C",
"v": "H"
},
{
"u": "D",
"v": "G"
},
{
"u": "F",
"v": "H"
}
]
},
"solution_variant": [
"E",
"A",
"B",
"I",
"F",
"H",
"C",
"D",
"G"
],
"context_index": 22,
"input_format": "markdown_table",
"input_index_base": "names"
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "Recently the fair layout team had to decide the order of visiting booths and they wanted to avoid any single choke point of collaborations. The simple test was to walk along the row and, at each gap, count how many vendor collaborations jump from the left side to the right side. Then note the highest of those counts β thatβs the number they want to keep as low as possible by changing the order. Every booth must be included once and only once. The precise booth and collaboration data appear below.\n\nThere were 8 booths and 2 collaborations; the booth labels to order were 1, 2, 3, 4, 5, 6, 7, 8.\nA collaboration connected booth 5 and booth 2.\nA collaboration connected booth 3 and booth 8.\nThose 2 collaborations among the 8 booths were what they counted at each gap.\n\nYou can just send me the final ordering in a tiny JSON snippet like this β nothing fancy, just a simple list that goes from the first booth you visit to the last.\n\n{\n \"solution\": [\"<first_booth>\", \"<second_booth>\", \"<third_booth>\", \"<fourth_booth>\", \"<fifth_booth>\", \"<sixth_booth>\", \"<seventh_booth>\", \"<eighth_booth>\", \"<ninth_booth>\", \"<tenth_booth>\", \"<last_booth>\"]\n}\n\nThink of \"solution\" as the visiting sequence: the array lists booths in order from left to right along the row. The angle-bracket placeholders are just examples of the shape I expect β replace them with the actual booth identifiers when you give the real answer. This JSON is just a sketch of the expected shape, not the actual ordering.\n\nPlease use the exact identifiers from the instance input β do not rename or invent 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β.",
"instance": {
"name": "gre_216a.mtx.rnd_sub_8",
"num_nodes": 8,
"num_edges": 2,
"edges": [
[
4,
1
],
[
2,
7
]
],
"solution": [
5,
3,
2,
7,
0,
1,
4,
6
],
"objective": 1.0
},
"solution": [
5,
3,
2,
7,
0,
1,
4,
6
],
"obj": 1.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 8,
"nodes": [
1,
2,
3,
4,
5,
6,
7,
8
],
"num_edges": 2,
"edges": [
{
"u": 5,
"v": 2
},
{
"u": 3,
"v": 8
}
]
},
"solution_variant": [
6,
4,
3,
8,
1,
2,
5,
7
],
"context_index": 23,
"input_format": "nl",
"input_index_base": 1
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "Recently the family agreed to line up all the photos along the mantel so nothing feels cluttered, and the idea is to pick a single order that keeps the biggest number of cross-shelf connections at any one spot down. The decision is the ordering of all frames in one straight sequence. To evaluate an order, for each break between earlier and later frames count how many ties go across it, then take the highest count you find β the aim is to make that highest number as small as possible. Include every frame, once and only once. The precise details about which frames and which links exist appear below.\n\n{\n \"num_frames\": 9,\n \"num_ties\": 2,\n \"frame_ids\": [\n 0,\n 1,\n 2,\n 3,\n 4,\n 5,\n 6,\n 7,\n 8\n ],\n \"edges\": [\n {\n \"frame_u\": 8,\n \"frame_v\": 3\n },\n {\n \"frame_u\": 8,\n \"frame_v\": 0\n }\n ]\n}\n\nIf you want to show the ordering, a simple JSON sketch works well β just list the frames in order under the \"solution\" key. Here's the shape I expect you to follow:\n\n{\n \"solution\": [<first_frame>, <second_frame>, ..., <last_frame>]\n}\n\nThis is just a sketch of the shape: \"solution\" holds the sequence of frames from leftmost to rightmost on the mantel. Each placeholder like <first_frame> or <second_frame> represents one frame identifier from the instance, in the order you want them placed. Replace those placeholders with the actual identifiers when you give the final ordering.\n\nPlease be sure to use the exact identifiers from the instance input β no renaming and no new labels. \n- 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β.\"",
"instance": {
"name": "nos5.mtx.rnd_sub_9",
"num_nodes": 9,
"num_edges": 2,
"edges": [
[
8,
3
],
[
8,
0
]
],
"solution": [
1,
0,
2,
6,
4,
5,
8,
3,
7
],
"objective": 1.0
},
"solution": [
1,
0,
2,
6,
4,
5,
8,
3,
7
],
"obj": 1.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 9,
"nodes": [
0,
1,
2,
3,
4,
5,
6,
7,
8
],
"num_edges": 2,
"edges": [
{
"u": 8,
"v": 3
},
{
"u": 8,
"v": 0
}
]
},
"solution_variant": [
1,
0,
2,
6,
4,
5,
8,
3,
7
],
"context_index": 24,
"input_format": "json",
"input_index_base": 0
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "Imagine arranging every card from the board into one continuous sequence, with every card showing up exactly one time and none left off. Slide a divider along the sequence β at each spot count how many dependencies point from the earlier group to the later group. The sequence gets evaluated by its heaviest split, meaning the split with the most crossings; the goal is to organize the cards so that this heaviest crossing count is as low as possible. The specific instance and its links are provided below.\n\nThere are 8 task cards, 6 dependency links, and the task identifiers are A, B, C, D, E, F, G, H.\nDependency link between B and H.\nDependency link between C and G.\nDependency link between E and H.\nDependency link between G and H.\nDependency link between A and D.\nDependency link between G and E.\nOrganize the sequence to minimize the heaviest split.\n\nAlso, when you send the actual ordering back, please use this simple JSON shape so it's easy to parse and check:\n\n{\n \"solution\": [<first_node>, <second_node>, ..., <last_node>]\n}\n\nThis just means \"solution\" should contain a single list with the cards (nodes) in the order you want them placed: <first_node> is the one at the far left, <second_node> comes next, and so on until <last_node> at the far right. Think of it like filling a form β the JSON above is just the outline, not the final filled answer.\n\nA quick reminder: use the exact identifiers from the instance input β do not rename or invent labels. \n- 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β.\"",
"instance": {
"name": "p79_22_29_sub_8",
"num_nodes": 8,
"num_edges": 6,
"edges": [
[
1,
7
],
[
2,
6
],
[
4,
7
],
[
6,
7
],
[
0,
3
],
[
6,
4
]
],
"solution": [
0,
3,
5,
1,
7,
4,
6,
2
],
"objective": 2.0
},
"solution": [
0,
3,
5,
1,
7,
4,
6,
2
],
"obj": 2.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 8,
"nodes": [
"A",
"B",
"C",
"D",
"E",
"F",
"G",
"H"
],
"num_edges": 6,
"edges": [
{
"u": "B",
"v": "H"
},
{
"u": "C",
"v": "G"
},
{
"u": "E",
"v": "H"
},
{
"u": "G",
"v": "H"
},
{
"u": "A",
"v": "D"
},
{
"u": "G",
"v": "E"
}
]
},
"solution_variant": [
"A",
"D",
"F",
"B",
"H",
"E",
"G",
"C"
],
"context_index": 25,
"input_format": "nl",
"input_index_base": "names"
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "Back at the gallery thereβs a challenge to put all works into one straight sequence, with no repeats and nothing left out. Certain works have pairwise pairings, and at every possible cut point you can tally how many of those pairings run from the left-hand items to the right-hand items. The whole arrangement is judged by the single largest tally among those cuts β the smaller that top crossing number, the better the lineup. The particular artworks and their pairings are shown below.\n\n{\n \"num_artworks\": 9,\n \"num_pairings\": 4,\n \"artwork_ids\": [\n 1,\n 2,\n 3,\n 4,\n 5,\n 6,\n 7,\n 8,\n 9\n ],\n \"edges\": [\n {\n \"artwork_a\": 7,\n \"artwork_b\": 8\n },\n {\n \"artwork_a\": 8,\n \"artwork_b\": 1\n },\n {\n \"artwork_a\": 8,\n \"artwork_b\": 2\n },\n {\n \"artwork_a\": 2,\n \"artwork_b\": 3\n }\n ]\n}\n\nOh, and when you send the final lineup back, please use this simple JSON layout so it's easy to read and check:\n\n{\n \"solution\": [<first_node>, <second_node>, ..., <last_node>]\n}\n\nHere \"solution\" is where you list the works in the exact left-to-right order you propose β each placeholder above stands in for one node identifier from the instance (so the first entry is the leftmost piece, the last is the rightmost). This is just the shape I expect, not the actual ordering.\n\nPlease make sure to use the identifiers exactly as they appear in the problem input β do not rename them or invent new labels. \n- 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β.\"",
"instance": {
"name": "mcca.mtx.rnd_sub_9",
"num_nodes": 9,
"num_edges": 4,
"edges": [
[
6,
7
],
[
7,
0
],
[
7,
1
],
[
1,
2
]
],
"solution": [
0,
7,
1,
3,
2,
6,
5,
4,
8
],
"objective": 2.0
},
"solution": [
0,
7,
1,
3,
2,
6,
5,
4,
8
],
"obj": 2.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 9,
"nodes": [
1,
2,
3,
4,
5,
6,
7,
8,
9
],
"num_edges": 4,
"edges": [
{
"u": 7,
"v": 8
},
{
"u": 8,
"v": 1
},
{
"u": 8,
"v": 2
},
{
"u": 2,
"v": 3
}
]
},
"solution_variant": [
1,
8,
2,
4,
3,
7,
6,
5,
9
],
"context_index": 26,
"input_format": "json",
"input_index_base": 1
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "In a little downtown experiment the idea was to order every cafΓ© and store into one long row, every venue included once, because certain spots send customers back and forth through loyalty links. To judge an order, try every cut point, count how many links go from one side to the other at that cut, and take the largest count you find β the aim is to pick an ordering where that largest crossing count is kept low. The concrete list of places and their loyalty ties is provided below.\n\n{\n \"num_stores\": 8,\n \"num_loyalty_links\": 3,\n \"store_list\": [\n \"A\",\n \"B\",\n \"C\",\n \"D\",\n \"E\",\n \"F\",\n \"G\",\n \"H\"\n ],\n \"edges\": [\n {\n \"endpoint_store_a\": \"C\",\n \"endpoint_store_b\": \"D\"\n },\n {\n \"endpoint_store_a\": \"D\",\n \"endpoint_store_b\": \"F\"\n },\n {\n \"endpoint_store_a\": \"E\",\n \"endpoint_store_b\": \"G\"\n }\n ]\n}\n\nIf you want to hand me the ordering, the easiest is to stick to a tiny JSON sketch like this so it's clear and machine-friendly.\n\n{\n \"solution\": [<first_place>, <second_place>, ..., <last_place>]\n}\n\nThis just means: put the venues in the array in the order you'd line them up from left to right. It's just a shape guide β replace the placeholders with the actual venue identifiers from the instance when you give the real answer.\n\nPlease make sure you use the exact identifiers from the input β don't rename them or invent new labels.\n- 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β.\"",
"instance": {
"name": "p65_21_24_sub_8",
"num_nodes": 8,
"num_edges": 3,
"edges": [
[
2,
3
],
[
3,
5
],
[
4,
6
]
],
"solution": [
0,
7,
4,
6,
1,
5,
3,
2
],
"objective": 1.0
},
"solution": [
0,
7,
4,
6,
1,
5,
3,
2
],
"obj": 1.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 8,
"nodes": [
"A",
"B",
"C",
"D",
"E",
"F",
"G",
"H"
],
"num_edges": 3,
"edges": [
{
"u": "C",
"v": "D"
},
{
"u": "D",
"v": "F"
},
{
"u": "E",
"v": "G"
}
]
},
"solution_variant": [
"A",
"H",
"E",
"G",
"B",
"F",
"D",
"C"
],
"context_index": 27,
"input_format": "json",
"input_index_base": "names"
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "Many people think about seating problems, but here the goal is simple: place every student exactly once along one long bench so that if you check every possible split and count friend-links crossing it, the largest crossing count across all splits is kept as small as possible. The concrete instance information is provided below.\n\nThere are 10 students, 7 friendships, and the student identifiers are 0, 1, 2, 3, 4, 5, 6, 7, 8, 9.\n\n| student_a | student_b |\n|---|---|\n| 0 | 1 |\n| 1 | 4 |\n| 2 | 4 |\n| 3 | 6 |\n| 6 | 8 |\n| 7 | 8 |\n| 8 | 9 |\n\nThese items fully specify the instance for the seating problem.\n\nIf you want to give me a seating order, just stick it in this little JSON shape so I can read it easily:\n\n{\n \"solution\": [<first_seat>, <second_seat>, ..., <last_seat>]\n}\n\nHere \"solution\" is the whole lineup from left to right β the first element is the student on the far left of the bench, the next is the one next to them, and so on until the last element on the far right. Think of it like filling out a single row on a form: one entry per seat in order.\n\nThis JSON is just a sketch of the shape I expect, not the actual answer itself. Please be sure to use the exact identifiers from the instance input for every student β do not rename them or invent new labels. To be clear, 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β.",
"instance": {
"name": "p21_17_20_sub_10",
"num_nodes": 10,
"num_edges": 7,
"edges": [
[
0,
1
],
[
1,
4
],
[
2,
4
],
[
3,
6
],
[
6,
8
],
[
7,
8
],
[
8,
9
]
],
"solution": [
2,
4,
5,
1,
0,
7,
8,
9,
3,
6
],
"objective": 2.0
},
"solution": [
2,
4,
5,
1,
0,
7,
8,
9,
3,
6
],
"obj": 2.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 10,
"nodes": [
0,
1,
2,
3,
4,
5,
6,
7,
8,
9
],
"num_edges": 7,
"edges": [
{
"u": 0,
"v": 1
},
{
"u": 1,
"v": 4
},
{
"u": 2,
"v": 4
},
{
"u": 3,
"v": 6
},
{
"u": 6,
"v": 8
},
{
"u": 7,
"v": 8
},
{
"u": 8,
"v": 9
}
]
},
"solution_variant": [
2,
4,
5,
1,
0,
7,
8,
9,
3,
6
],
"context_index": 28,
"input_format": "markdown_table",
"input_index_base": 0
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "Someone at the warehouse suggested arranging all the parcels into one neat row β every parcel gets used once, nothing twice β but thereβs an extra wrinkle: parcels are connected by routing ties and those ties will straddle whatever split you pick along the row. To evaluate any order, scan each gap and tally how many ties cross from the earlier side to the later side, then note the worst gap (the one with the most crossings). The better arrangements are the ones whose worst-gap crossing count is smaller. The full list of packages and ties is shown below.\n\n# num_packages=12\n# num_routing_ties=1\n# package_ids=1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12\ntie_package_a,tie_package_b\n1,9\n\nIf you want to hand me an ordering (or for me to return one), just drop it in this simple JSON shape so it's easy to read and reuse.\n\n{\n \"solution\": [<first_parcel>, <second_parcel>, ..., <last_parcel>]\n}\n\nThis little block is just saying: put the parcels in a list from the one at the far left of the row to the one at the far right. Think of each placeholder as a single parcel label from the instance β it's a sketch of the shape I expect, not the final ordering itself.\n\nPlease use the parcel/node identifiers exactly as they appear in the instance input β do not rename them or invent new labels. \n- 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β.\"",
"instance": {
"name": "plskz362.mtx.rnd_sub_12",
"num_nodes": 12,
"num_edges": 1,
"edges": [
[
0,
8
]
],
"solution": [
6,
3,
8,
11,
9,
7,
4,
0,
1,
2,
5,
10
],
"objective": 1.0
},
"solution": [
6,
3,
8,
11,
9,
7,
4,
0,
1,
2,
5,
10
],
"obj": 1.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 12,
"nodes": [
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12
],
"num_edges": 1,
"edges": [
{
"u": 1,
"v": 9
}
]
},
"solution_variant": [
7,
4,
9,
12,
10,
8,
5,
1,
2,
3,
6,
11
],
"context_index": 29,
"input_format": "csv",
"input_index_base": 1
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "Imagine arranging a series of brochure panels in a straight line so each panel shows up one time and none are skipped. Now, think about pausing the sequence at any point and counting how many links go from the panels on the left to the ones on the right; do that for every pause and keep track of the single biggest count you see. The better arrangements are the ones where that maximum crossing count is smaller. The concrete section list and their links are listed below.\n\nBelow are the 8 sections 1, 2, 3, 4, 5, 6, 7, 8 and the 1 links:\nA cross-reference between 3 and 4.\nUse each listed link when you pause the sequence and count crossings.\n\nWhen you send back your ordering, please use this simple JSON layout so it's easy to parse and check β just a single list showing the panels (or sections) from leftmost to rightmost.\n\n{\n \"solution\": [<first_panel>, <second_panel>, ..., <last_panel>]\n}\n\nThis shows the shape I expect: \"solution\" is a list, and each entry is the ID of a panel in the order you want them arranged (first to last). Think of <first_panel> as the placeholder for whatever identifier you put in the first position, <second_panel> for the next one, and so on. It's just a sketch of the format, not the actual ordering β you'll fill it in with the real IDs from the instance.\n\nPlease make sure to use the exact identifiers provided in 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β.",
"instance": {
"name": "steam2.mtx.rnd_sub_8",
"num_nodes": 8,
"num_edges": 1,
"edges": [
[
2,
3
]
],
"solution": [
0,
5,
4,
6,
7,
2,
3,
1
],
"objective": 1.0
},
"solution": [
0,
5,
4,
6,
7,
2,
3,
1
],
"obj": 1.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 8,
"nodes": [
1,
2,
3,
4,
5,
6,
7,
8
],
"num_edges": 1,
"edges": [
{
"u": 3,
"v": 4
}
]
},
"solution_variant": [
1,
6,
5,
7,
8,
3,
4,
2
],
"context_index": 30,
"input_format": "nl",
"input_index_base": 1
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "Many people treat their balcony as a tiny puzzle: a set of pots with drip lines between certain pairs, and the challenge is to lay them out in one single line so the hoses are as unobtrusive as possible. Every pot must appear in the row exactly once, and for each spot where the row could be split the number of hoses going from left to right is counted. The lineupβs worst crossing number is the biggest of those counts across all splits, and the idea is to pick an order that makes that worst number as small as it can be. The concrete details of which pots connect to which come next.\n\nBelow are the 6 drip lines among the 12 pots, listed as 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12.\n\n| pot_a | pot_b |\n|---|---|\n| 4 | 8 |\n| 7 | 12 |\n| 9 | 12 |\n| 10 | 12 |\n| 11 | 12 |\n| 2 | 11 |\n\nThese 6 connections enumerate the hoses to consider when arranging the 12 pots.\n\nIf you want to hand me an ordering, just drop it in this simple JSON shape so I know which pot goes where along the rail:\n\n{\n \"solution\": [<first_pot>, <second_pot>, ..., <last_pot>]\n}\n\nThink of that \"solution\" array as the row of pots from left to right: each placeholder is where you'd put one of the pots (use the exact pot identifier from the instance). This JSON is just the shape I expect β a sketch, not the final lineup β so replace those placeholders with the actual identifiers when you send the real answer.\n\nAll identifiers must be used exactly as they appear in the instance input β no renaming and no new labels.\n- 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\".\"",
"instance": {
"name": "p46_19_20_sub_12",
"num_nodes": 12,
"num_edges": 6,
"edges": [
[
3,
7
],
[
6,
11
],
[
8,
11
],
[
9,
11
],
[
10,
11
],
[
1,
10
]
],
"solution": [
4,
3,
7,
0,
2,
5,
9,
8,
11,
10,
1,
6
],
"objective": 2.0
},
"solution": [
4,
3,
7,
0,
2,
5,
9,
8,
11,
10,
1,
6
],
"obj": 2.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 12,
"nodes": [
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12
],
"num_edges": 6,
"edges": [
{
"u": 4,
"v": 8
},
{
"u": 7,
"v": 12
},
{
"u": 9,
"v": 12
},
{
"u": 10,
"v": 12
},
{
"u": 11,
"v": 12
},
{
"u": 2,
"v": 11
}
]
},
"solution_variant": [
5,
4,
8,
1,
3,
6,
10,
9,
12,
11,
2,
7
],
"context_index": 31,
"input_format": "markdown_table",
"input_index_base": 1
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "I was playing with the idea of lining up every playlist in the app into one long row. At every place you could split that row into an earlier bunch and a later bunch, count how many tracks are shared between at least one playlist on the left and at least one on the right β the biggest of those counts across all possible splits is the number we care about, and the aim is to make that biggest crossing as small as possible. Every playlist has to appear exactly once, no repeats and no missing ones. The exact playlist list and which tracks overlap will be shown below.\n\n# num_playlists=8\n# num_shared_pairs=6\n# playlist_ids=1, 2, 3, 4, 5, 6, 7, 8\nplaylist_a,playlist_b\n8,6\n8,4\n6,4\n6,3\n4,3\n5,3\n\nOh, and when you send back the ordering, just stick to a tiny JSON sketch like this so it's easy to parse:\n\n{\n \"solution\": [<first_playlist>, <second_playlist>, ..., <last_playlist>]\n}\n\nHere \"solution\" is the ordered list β each item is one playlist placed in that left-to-right order. Think of the placeholders like blanks you fill with the actual playlist identifiers from the instance (that's why they look like <first_playlist> etc.). This JSON is just the shape I expect, not the final answer itself.\n\nPlease make sure to use the exact playlist identifiers from 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β.\"",
"instance": {
"name": "bcsstk05.mtx.rnd_sub_8",
"num_nodes": 8,
"num_edges": 6,
"edges": [
[
7,
5
],
[
7,
3
],
[
5,
3
],
[
5,
2
],
[
3,
2
],
[
4,
2
]
],
"solution": [
4,
1,
0,
6,
2,
3,
7,
5
],
"objective": 3.0
},
"solution": [
4,
1,
0,
6,
2,
3,
7,
5
],
"obj": 3.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 8,
"nodes": [
1,
2,
3,
4,
5,
6,
7,
8
],
"num_edges": 6,
"edges": [
{
"u": 8,
"v": 6
},
{
"u": 8,
"v": 4
},
{
"u": 6,
"v": 4
},
{
"u": 6,
"v": 3
},
{
"u": 4,
"v": 3
},
{
"u": 5,
"v": 3
}
]
},
"solution_variant": [
5,
2,
1,
7,
3,
4,
8,
6
],
"context_index": 32,
"input_format": "csv",
"input_index_base": 1
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "Someone in charge of onboarding wanted a single, tidy order of all the museum audio guides, with no guide omitted or repeated, and a simple rule for judging orders: for each place the list could be split, count how many links run from guides before the split to guides after it, then take the highest of those counts β the aim was to keep that highest crossing number as low as possible. The specifics about which guides and which links are given below.\n\n{\n \"num_guides\": 10,\n \"num_links\": 11,\n \"guide_ids\": [\n 0,\n 1,\n 2,\n 3,\n 4,\n 5,\n 6,\n 7,\n 8,\n 9\n ],\n \"edges\": [\n {\n \"guide_u\": 6,\n \"guide_v\": 1\n },\n {\n \"guide_u\": 1,\n \"guide_v\": 0\n },\n {\n \"guide_u\": 1,\n \"guide_v\": 4\n },\n {\n \"guide_u\": 0,\n \"guide_v\": 7\n },\n {\n \"guide_u\": 0,\n \"guide_v\": 8\n },\n {\n \"guide_u\": 0,\n \"guide_v\": 4\n },\n {\n \"guide_u\": 7,\n \"guide_v\": 9\n },\n {\n \"guide_u\": 7,\n \"guide_v\": 2\n },\n {\n \"guide_u\": 7,\n \"guide_v\": 3\n },\n {\n \"guide_u\": 3,\n \"guide_v\": 5\n },\n {\n \"guide_u\": 3,\n \"guide_v\": 9\n }\n ]\n}\n\nOh, and when you send the ordering back, just stick to this simple JSON shape so it's easy to parse:\n\n{\n \"solution\": [<first_guide>, <second_guide>, ..., <last_guide>]\n}\n\nThink of \"solution\" as a plain list that goes from the first guide in the lineup to the last. Each placeholder in the array should be replaced by the exact guide identifier from the instance (that's the ID you were given for each audio guide). This block is just a sketch of the shape I need, not the final answer itself.\n\nPlease remember to use the original identifiers exactly as they appear in the instance input β do not rename them or invent new labels. \n- 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β.\"",
"instance": {
"name": "impcol_b.mtx.rnd_sub_10",
"num_nodes": 10,
"num_edges": 11,
"edges": [
[
6,
1
],
[
1,
0
],
[
1,
4
],
[
0,
7
],
[
0,
8
],
[
0,
4
],
[
7,
9
],
[
7,
2
],
[
7,
3
],
[
3,
5
],
[
3,
9
]
],
"solution": [
5,
3,
9,
7,
2,
8,
0,
4,
1,
6
],
"objective": 2.0
},
"solution": [
5,
3,
9,
7,
2,
8,
0,
4,
1,
6
],
"obj": 2.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 10,
"nodes": [
0,
1,
2,
3,
4,
5,
6,
7,
8,
9
],
"num_edges": 11,
"edges": [
{
"u": 6,
"v": 1
},
{
"u": 1,
"v": 0
},
{
"u": 1,
"v": 4
},
{
"u": 0,
"v": 7
},
{
"u": 0,
"v": 8
},
{
"u": 0,
"v": 4
},
{
"u": 7,
"v": 9
},
{
"u": 7,
"v": 2
},
{
"u": 7,
"v": 3
},
{
"u": 3,
"v": 5
},
{
"u": 3,
"v": 9
}
]
},
"solution_variant": [
5,
3,
9,
7,
2,
8,
0,
4,
1,
6
],
"context_index": 33,
"input_format": "json",
"input_index_base": 0
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "Recently the team needed a neat way to place all test tubes down a bench: the rule was to put each sample once in a single row, then for every possible division between earlier and later samples count how many contamination-risk links bridge that division, and finally note the largest such count β the aim is to make that biggest crossing number as small as it can be. The exact items and whoβs linked to whom are shown below.\n\nThere are 10 samples, 2 contamination-risk links, and the sample identifiers are A, B, C, D, E, F, G, H, I, J.\nsample A is linked to sample H.\nsample A is linked to sample D.\nThe aim remains to make that biggest crossing number as small as possible.\n\nIf you want to give me an ordering, a tiny JSON snippet like the one below makes it easy to read β just list the samples from left to right along the bench.\n\n{\n \"solution\": [<first_tube>, <second_tube>, ..., <last_tube>]\n}\n\nThis just shows the shape I expect: \"solution\" holds an ordered list of the samples as they'd sit on the bench. Each placeholder like <first_tube> is where you'd put the actual sample identifier from the instance (the one that names the test tube). Think of it like filling out a very short form, leftmost sample first, rightmost last.\n\nNote: this JSON is only a sketch of the expected shape β not the real ordering itself.\n\nPlease use the exact identifiers from the instance input, do not rename them or invent new labels. \n- 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β.\"",
"instance": {
"name": "plskz362.mtx.rnd_sub_10",
"num_nodes": 10,
"num_edges": 2,
"edges": [
[
0,
7
],
[
0,
3
]
],
"solution": [
1,
3,
5,
4,
8,
0,
6,
9,
7,
2
],
"objective": 1.0
},
"solution": [
1,
3,
5,
4,
8,
0,
6,
9,
7,
2
],
"obj": 1.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 10,
"nodes": [
"A",
"B",
"C",
"D",
"E",
"F",
"G",
"H",
"I",
"J"
],
"num_edges": 2,
"edges": [
{
"u": "A",
"v": "H"
},
{
"u": "A",
"v": "D"
}
]
},
"solution_variant": [
"B",
"D",
"F",
"E",
"I",
"A",
"G",
"J",
"H",
"C"
],
"context_index": 34,
"input_format": "nl",
"input_index_base": "names"
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "Imagine a stack of recipe cards where some cards share ingredients with others; the goal is to put every card into one sequence so that the place where the stack is most βtied togetherβ by shared ingredients is as weak as possible. To judge an ordering, consider every possible cut through the sequence, count how many shared-ingredient links connect a card before the cut to one after, take the highest of those counts across all cuts, and aim for an ordering that makes that highest number really small. Every single card has to be included once and only once, and the specific cards and overlaps are listed below.\n\nThere are 8 cards, 6 overlaps, and the cards are A, B, C, D, E, F, G, H.\nRecipe card A shares an ingredient with recipe card H.\nRecipe card A shares an ingredient with recipe card E.\nRecipe card A shares an ingredient with recipe card B.\nRecipe card A shares an ingredient with recipe card G.\nRecipe card A shares an ingredient with recipe card C.\nRecipe card A shares an ingredient with recipe card F.\nUse the listed overlaps to order the cards so the largest number of crossing overlaps across any cut is as small as possible.\n\nIf you want to hand me an ordering, just pop it into this relaxed JSON shape so I know exactly where each card goes in the stack:\n\n{\n \"solution\": [<first_node>, <second_node>, ..., <last_node>]\n}\n\nPretty simple: \"solution\" is the sequence from the top of the stack to the bottom (first to last). Replace each placeholder with the exact label for a card from the instance β think of it like filling out a single-line form rather than a spreadsheet. This JSON is just a sketch of the shape I expect, not the actual answer itself.\n\nPlease make sure you use the identifiers exactly as they appear in the instance input β do not rename them or invent new ones. \n\nValid 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β.",
"instance": {
"name": "shl__200.mtx.rnd_sub_8",
"num_nodes": 8,
"num_edges": 6,
"edges": [
[
0,
7
],
[
0,
4
],
[
0,
1
],
[
0,
6
],
[
0,
2
],
[
0,
5
]
],
"solution": [
3,
6,
7,
5,
0,
2,
1,
4
],
"objective": 3.0
},
"solution": [
3,
6,
7,
5,
0,
2,
1,
4
],
"obj": 3.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 8,
"nodes": [
"A",
"B",
"C",
"D",
"E",
"F",
"G",
"H"
],
"num_edges": 6,
"edges": [
{
"u": "A",
"v": "H"
},
{
"u": "A",
"v": "E"
},
{
"u": "A",
"v": "B"
},
{
"u": "A",
"v": "G"
},
{
"u": "A",
"v": "C"
},
{
"u": "A",
"v": "F"
}
]
},
"solution_variant": [
"D",
"G",
"H",
"F",
"A",
"C",
"B",
"E"
],
"context_index": 35,
"input_format": "nl",
"input_index_base": "names"
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "We set up all the phones in a single line for a marathon of Bluetooth tests, and every device has to be placed once in that line. For any place you might cut the line, count how many active pairings link a device on the left to one on the right; the worst cut is the one with the highest count, and the aim is to arrange the devices so that this worst-case crossing count is as small as possible. That means running through each possible split, counting the cross-connections there, and picking an ordering that drives down the biggest count. The concrete instance and its details are listed below.\n\n# device_count=10\n# pairing_count=7\n# device_ids=0, 1, 2, 3, 4, 5, 6, 7, 8, 9\ndevice_u,device_v\n0,2\n1,3\n2,8\n5,9\n6,7\n7,9\n8,9\n\nWhen you send the final ordering back, just use a tiny, relaxed JSON layout like this β a single list from leftmost to rightmost device.\n\n{\n \"solution\": [<first_phone>, <second_phone>, ..., <last_phone>]\n}\n\nThink of this as a simple form: \"solution\" holds the lineup, and each placeholder like <first_phone> is where you'd put the identifier of the phone that goes in that position (left to right). This is just the expected shape β a sketch, not the actual filled-in answer.\n\nAlso: all identifiers must be used exactly as they appear in the instance input β no renaming and no new labels. \n- 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β.\"",
"instance": {
"name": "p95_24_27_sub_10",
"num_nodes": 10,
"num_edges": 7,
"edges": [
[
0,
2
],
[
1,
3
],
[
2,
8
],
[
5,
9
],
[
6,
7
],
[
7,
9
],
[
8,
9
]
],
"solution": [
1,
3,
8,
2,
4,
0,
9,
5,
6,
7
],
"objective": 2.0
},
"solution": [
1,
3,
8,
2,
4,
0,
9,
5,
6,
7
],
"obj": 2.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 10,
"nodes": [
0,
1,
2,
3,
4,
5,
6,
7,
8,
9
],
"num_edges": 7,
"edges": [
{
"u": 0,
"v": 2
},
{
"u": 1,
"v": 3
},
{
"u": 2,
"v": 8
},
{
"u": 5,
"v": 9
},
{
"u": 6,
"v": 7
},
{
"u": 7,
"v": 9
},
{
"u": 8,
"v": 9
}
]
},
"solution_variant": [
1,
3,
8,
2,
4,
0,
9,
5,
6,
7
],
"context_index": 36,
"input_format": "csv",
"input_index_base": 0
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "Recently the block association decided to re-sequence the mailboxes so the postiesβ paths are less tangled. The choice is a single permutation of all mailboxes (no missing or duplicated boxes). For each space between boxes, count how many delivery routes connect a box on the left to a box on the right; then take the biggest of those counts across all spaces. The aim is to keep that biggest count as low as possible. The exact mailbox and route data come next below.\n\nThere are 9 mailboxes, 5 delivery routes, and the mailbox identifiers are A, B, C, D, E, F, G, H, I.\n\n| mailbox_endpoint_u | mailbox_endpoint_v |\n|---|---|\n| C | F |\n| D | H |\n| G | H |\n| H | I |\n| F | A |\n\nThese lines enumerate the 5 delivery routes among the 9 mailboxes.\n\nIf you want to hand me an ordering, just drop it in this simple JSON shape so I know where to look:\n\n{\n \"solution\": [<first_node>, <second_node>, ..., <last_node>]\n}\n\nThink of \"solution\" as the single list of mailboxes in the left-to-right order you propose β the first mailbox listed is the leftmost, the last is the rightmost. This JSON is just a sketch of the expected shape; replace the placeholders with the actual mailbox identifiers from the instance.\n\nPlease make sure you use the exact identifiers given in the instance input β do not rename them and don't invent new labels. \n- 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β.\"",
"instance": {
"name": "p33_18_21_sub_9",
"num_nodes": 9,
"num_edges": 5,
"edges": [
[
2,
5
],
[
3,
7
],
[
6,
7
],
[
7,
8
],
[
5,
0
]
],
"solution": [
1,
2,
4,
5,
6,
0,
3,
7,
8
],
"objective": 2.0
},
"solution": [
1,
2,
4,
5,
6,
0,
3,
7,
8
],
"obj": 2.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 9,
"nodes": [
"A",
"B",
"C",
"D",
"E",
"F",
"G",
"H",
"I"
],
"num_edges": 5,
"edges": [
{
"u": "C",
"v": "F"
},
{
"u": "D",
"v": "H"
},
{
"u": "G",
"v": "H"
},
{
"u": "H",
"v": "I"
},
{
"u": "F",
"v": "A"
}
]
},
"solution_variant": [
"B",
"C",
"E",
"F",
"G",
"A",
"D",
"H",
"I"
],
"context_index": 37,
"input_format": "markdown_table",
"input_index_base": "names"
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "Someoneβs trying to make the schedule flow better: every speaker has to be booked into one linear sequence, once and only once, and some speakers are connected by past collaborations. If you pause the sequence at any point, count the collaborations that stretch from people before the pause to people after it; the single biggest count among all pauses is the one that matters. A smoother schedule is one where that single biggest crossing count is kept low. The exact speakers and whoβs collaborating with whom are shown below.\n\n{\n \"num_speakers\": 8,\n \"num_collaborations\": 1,\n \"speaker_ids\": [\n \"A\",\n \"B\",\n \"C\",\n \"D\",\n \"E\",\n \"F\",\n \"G\",\n \"H\"\n ],\n \"edges\": [\n {\n \"speaker_u\": \"G\",\n \"speaker_v\": \"C\"\n }\n ]\n}\n\nAlso, when you send back the ordering, you can just drop it into a tiny JSON object like this β keeps things tidy and machine-friendly without fuss:\n\n{\n \"solution\": [\"<first_speaker>\", \"<second_speaker>\", ..., \"<last_speaker>\"]\n}\n\nThis just says \"solution\" is the whole schedule and the array is the speakers in order from first to last. Think of it like a simple form: replace those placeholders with the actual speaker identifiers from the instance. It's just the expected shape β a sketch, not the real filled-in answer.\n\nPlease make sure every identifier you use matches exactly what's in the instance input β don't rename them or invent new labels. \n- 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β.\"",
"instance": {
"name": "lns__511.mtx.rnd_sub_8",
"num_nodes": 8,
"num_edges": 1,
"edges": [
[
6,
2
]
],
"solution": [
1,
4,
3,
6,
7,
2,
0,
5
],
"objective": 1.0
},
"solution": [
1,
4,
3,
6,
7,
2,
0,
5
],
"obj": 1.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 8,
"nodes": [
"A",
"B",
"C",
"D",
"E",
"F",
"G",
"H"
],
"num_edges": 1,
"edges": [
{
"u": "G",
"v": "C"
}
]
},
"solution_variant": [
"B",
"E",
"D",
"G",
"H",
"C",
"A",
"F"
],
"context_index": 38,
"input_format": "json",
"input_index_base": "names"
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "In a small kitchen redo the team needed to place a collection of tiles into a single straight sequence, using each piece one time only. For every possible split along the row you can count how many grout channels run from a tile on the left side to one on the right; the layout is judged by the largest of those counts, and a preferable layout is the one where that largest number ends up as small as you can manage. The concrete tiles and their connection details are shown below.\n\n# total_tiles=11\n# total_grout_channels=1\n# tile_ids=A, B, C, D, E, F, G, H, I, J, K\ntile_endpoint_a,tile_endpoint_b\nF,B\n\nIf you'd like to give me the ordering in a neat, machine-friendly way, just slip it into this little JSON sketch:\n\n{\n \"solution\": [<first_tile>, <second_tile>, ..., <last_tile>]\n}\n\nThink of \"solution\" as the left-to-right sequence of tiles β each placeholder is where you'd put one of the actual tile identifiers from the instance. This JSON is just a template showing the shape I expect, not the actual filled-in answer.\n\nPlease remember to use the exact identifiers from the instance input β do not rename them or invent new labels.\n- 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β.\"",
"instance": {
"name": "impcol_a.mtx.rnd_sub_11",
"num_nodes": 11,
"num_edges": 1,
"edges": [
[
5,
1
]
],
"solution": [
1,
7,
10,
6,
4,
3,
2,
0,
9,
5,
8
],
"objective": 1.0
},
"solution": [
1,
7,
10,
6,
4,
3,
2,
0,
9,
5,
8
],
"obj": 1.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 11,
"nodes": [
"A",
"B",
"C",
"D",
"E",
"F",
"G",
"H",
"I",
"J",
"K"
],
"num_edges": 1,
"edges": [
{
"u": "F",
"v": "B"
}
]
},
"solution_variant": [
"B",
"H",
"K",
"G",
"E",
"D",
"C",
"A",
"J",
"F",
"I"
],
"context_index": 39,
"input_format": "csv",
"input_index_base": "names"
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "Many people on the shop floor noticed that if products with lots of cross-links end up on opposite sides of a divide, that divide becomes hectic. The objective was simple: lay out every product once in a single line, and for every possible break between earlier and later items count how many connections cross it; the worst break is the one with the highest count, and the goal is to make that worst break as calm as possible. The actual product list and the connection details are shown below.\n\n{\n \"total_products\": 8,\n \"total_connections\": 4,\n \"product_ids\": [\n \"A\",\n \"B\",\n \"C\",\n \"D\",\n \"E\",\n \"F\",\n \"G\",\n \"H\"\n ],\n \"edges\": [\n {\n \"product_a\": \"D\",\n \"product_b\": \"E\"\n },\n {\n \"product_a\": \"E\",\n \"product_b\": \"H\"\n },\n {\n \"product_a\": \"F\",\n \"product_b\": \"H\"\n },\n {\n \"product_a\": \"G\",\n \"product_b\": \"H\"\n }\n ]\n}\n\nIf you want the ordering back from me, just drop it in this relaxed little JSON shape so it's easy to read and parse:\n\n{\n \"solution\": [<first_product>, <second_product>, ..., <last_product>]\n}\n\nHere I'm using <first_product>, <second_product>, etc. as placeholders for the actual items β the array is the line from leftmost to rightmost. Think of it like filling out a simple form: the \"solution\" list is just the sequence you want the products laid out in.\n\nThis JSON is only a sketch of the expected shape, not the final answer itself. Please make sure every identifier you put into the array matches exactly how it appears in the instance input β no renaming, no new labels. \n\n- 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β.\"",
"instance": {
"name": "p56_20_23_sub_8",
"num_nodes": 8,
"num_edges": 4,
"edges": [
[
3,
4
],
[
4,
7
],
[
5,
7
],
[
6,
7
]
],
"solution": [
0,
1,
6,
5,
7,
4,
3,
2
],
"objective": 2.0
},
"solution": [
0,
1,
6,
5,
7,
4,
3,
2
],
"obj": 2.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 8,
"nodes": [
"A",
"B",
"C",
"D",
"E",
"F",
"G",
"H"
],
"num_edges": 4,
"edges": [
{
"u": "D",
"v": "E"
},
{
"u": "E",
"v": "H"
},
{
"u": "F",
"v": "H"
},
{
"u": "G",
"v": "H"
}
]
},
"solution_variant": [
"A",
"B",
"G",
"F",
"H",
"E",
"D",
"C"
],
"context_index": 40,
"input_format": "json",
"input_index_base": "names"
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "Someone needs to put every guest in a single row at the headlong banquet table, making sure each person has exactly one seat and nobodyβs duplicated, and arrange them so that no one seating creates a brutal jam of crossed friendships at any one split. Practically, you scan every gap between seats, count how many relationships run from left to right at that gap, and the single biggest count you find is what you want to keep as low as possible. The actual guest roster and connection map are shown below.\n\nThey are listed as 1, 2, 3, 4, 5, 6, 7, 8, 9, totaling 9 guests with 7 relationships.\n1 β 4: a social tie between these two guests that counts whenever you seat them on opposite sides of a gap.\n2 β 3: a social tie between these two guests that counts whenever you seat them on opposite sides of a gap.\n3 β 6: a social tie between these two guests that counts whenever you seat them on opposite sides of a gap.\n4 β 7: a social tie between these two guests that counts whenever you seat them on opposite sides of a gap.\n5 β 6: a social tie between these two guests that counts whenever you seat them on opposite sides of a gap.\n6 β 9: a social tie between these two guests that counts whenever you seat them on opposite sides of a gap.\n7 β 9: a social tie between these two guests that counts whenever you seat them on opposite sides of a gap.\nUse the 9 guests and 7 relationships above to test seatings and keep the worst split crossing as small as you can.\n\nWhen youβre ready to hand me the seating, just drop it in this little JSON layout so I can read it easily:\n\n{\n \"solution\": [<first_node>, <second_node>, ..., <last_node>]\n}\n\nHere \"solution\" is the list of seats from leftmost to rightmost at the table β just put each guest identifier in order. Think of it like filling out a single row on a form: the first entry is the person on the far left, the last entry is on the far right. This JSON is just a sketch of the shape I expect, not the actual answer itself.\n\nPlease make sure you use the exact identifiers from the instance input β do not rename or invent 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β.",
"instance": {
"name": "p71_22_29_sub_9",
"num_nodes": 9,
"num_edges": 7,
"edges": [
[
0,
3
],
[
1,
2
],
[
2,
5
],
[
3,
6
],
[
4,
5
],
[
5,
8
],
[
6,
8
]
],
"solution": [
1,
2,
5,
4,
8,
6,
3,
0,
7
],
"objective": 2.0
},
"solution": [
1,
2,
5,
4,
8,
6,
3,
0,
7
],
"obj": 2.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 9,
"nodes": [
1,
2,
3,
4,
5,
6,
7,
8,
9
],
"num_edges": 7,
"edges": [
{
"u": 1,
"v": 4
},
{
"u": 2,
"v": 3
},
{
"u": 3,
"v": 6
},
{
"u": 4,
"v": 7
},
{
"u": 5,
"v": 6
},
{
"u": 6,
"v": 9
},
{
"u": 7,
"v": 9
}
]
},
"solution_variant": [
2,
3,
6,
5,
9,
7,
4,
1,
8
],
"context_index": 41,
"input_format": "nl",
"input_index_base": 1
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "Someone backstage is arranging a playlist and worrying about transitions: every song goes in once and only once, in a single line-up. For every point in that line-up you can look back at the songs already played and forward at what's coming next, and count how many connected song pairs are cut by that divide. What makes one ordering nicer than another is how small its worst divide is β the one split that breaks the most pairings. The full instance details are shown below.\n\nThey have 8 songs and 1 pairings; the songs are A, B, C, D, E, F, G, H.\n\n| song_a | song_b |\n|---|---|\n| A | F |\n\nKeep these details in mind while judging which lineup keeps the worst divide as small as possible.\n\nYou can just send the ordering back in a tiny JSON snippet β nothing fancy, just one field named \"solution\" with the playlist order as an array. For the story I tweaked the placeholder names to match songs so it's a bit friendlier:\n\n{\n \"solution\": [<first_song>, <second_song>, ..., <last_song>]\n}\n\nThis little block means: \"solution\" is the lineup from the very first song to the very last. Each placeholder like <first_song> is where you would put an actual song/node identifier from the instance. It's just a sketch of the shape I expect, not the real answer.\n\nPlease be sure to use the exact identifiers given in the instance input β don't invent new labels or rename them. To be clear, 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β.",
"instance": {
"name": "p63_21_42_sub_8",
"num_nodes": 8,
"num_edges": 1,
"edges": [
[
0,
5
]
],
"solution": [
0,
7,
4,
1,
3,
5,
6,
2
],
"objective": 1.0
},
"solution": [
0,
7,
4,
1,
3,
5,
6,
2
],
"obj": 1.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 8,
"nodes": [
"A",
"B",
"C",
"D",
"E",
"F",
"G",
"H"
],
"num_edges": 1,
"edges": [
{
"u": "A",
"v": "F"
}
]
},
"solution_variant": [
"A",
"H",
"E",
"B",
"D",
"F",
"G",
"C"
],
"context_index": 42,
"input_format": "markdown_table",
"input_index_base": "names"
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "Back in the kitchen the prep line had to be perfect: every ingredient placed once in a straight lineup, and for every possible break between items somebody checked how many ingredient-pairs got split by that break. Tally those splits for each break and judge a lineup by its single largest tally β the better the lineup, the smaller that largest tally becomes. The concrete details are listed below.\n\nThere are 9 distinct prep ingredients to place once, 6 undirected ingredient-pair interactions to tally, and the ingredient identifiers are 1, 2, 3, 4, 5, 6, 7, 8, 9.\n\n| ingredient_a | ingredient_b |\n|---|---|\n| 1 | 8 |\n| 2 | 9 |\n| 4 | 6 |\n| 6 | 8 |\n| 7 | 8 |\n| 9 | 3 |\n\nKeep arranging the lineup so its single largest split tally is as small as possible.\n\nIf you want to hand the lineup back in a neat way, just drop it into a little JSON snippet like this:\n\n{\n \"solution\": [<first_ingredient>, <second_ingredient>, ..., <last_ingredient>]\n}\n\nThink of that array as the prep line from left to right β the first slot is the item at the left end, the last slot is the one at the right end. This JSON is just a sketch of the shape I expect, not the actual answer itself.\n\nPlease use the exact identifiers from the instance input for each item β don't rename them or invent new labels. \n- 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β.",
"instance": {
"name": "p23_17_23_sub_9",
"num_nodes": 9,
"num_edges": 6,
"edges": [
[
0,
7
],
[
1,
8
],
[
3,
5
],
[
5,
7
],
[
6,
7
],
[
8,
2
]
],
"solution": [
1,
8,
2,
0,
7,
6,
5,
3,
4
],
"objective": 2.0
},
"solution": [
1,
8,
2,
0,
7,
6,
5,
3,
4
],
"obj": 2.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 9,
"nodes": [
1,
2,
3,
4,
5,
6,
7,
8,
9
],
"num_edges": 6,
"edges": [
{
"u": 1,
"v": 8
},
{
"u": 2,
"v": 9
},
{
"u": 4,
"v": 6
},
{
"u": 6,
"v": 8
},
{
"u": 7,
"v": 8
},
{
"u": 9,
"v": 3
}
]
},
"solution_variant": [
2,
9,
3,
1,
8,
7,
6,
4,
5
],
"context_index": 43,
"input_format": "markdown_table",
"input_index_base": 1
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "There's this everyday problem at the dock: crates arrive with handles and straps connecting some pairs, and someone has to form a single-file sequence that includes each crate just one time. For every possible split in that sequence, someone can count how many handles connect something on the left to something on the right; the worst split is the one with the highest count. The better the sequence, the smaller that worst split becomes. The exact instance is shown below.\n\nThere are 10 crates labeled 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 and 3 handles between some of them.\n\n| crate_end_a | crate_end_b |\n|---|---|\n| 2 | 5 |\n| 7 | 8 |\n| 10 | 7 |\n\nNow arrange these 10 crates so the worst split across the 3 handles is as small as possible.\n\nIf you want to send the ordering back, just drop it in a tiny JSON snippet like this so it's easy to parse:\n\n{\n \"solution\": [\"<first_crate>\", \"<second_crate>\", ..., \"<last_crate>\"]\n}\n\nThis just says: put the crates in one long line, left-to-right, in the order given inside the solution array. Each placeholder stands for whatever crate identifier you actually use in the instance. The JSON above is only a sketch of the shape I expect, not the real ordering β replace the placeholders with the real IDs from the problem.\n\nPlease make sure you use the exact crate/node identifiers 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β.\"",
"instance": {
"name": "p96_24_27_sub_10",
"num_nodes": 10,
"num_edges": 3,
"edges": [
[
1,
4
],
[
6,
7
],
[
9,
6
]
],
"solution": [
1,
4,
7,
6,
9,
0,
8,
2,
5,
3
],
"objective": 1.0
},
"solution": [
1,
4,
7,
6,
9,
0,
8,
2,
5,
3
],
"obj": 1.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 10,
"nodes": [
1,
2,
3,
4,
5,
6,
7,
8,
9,
10
],
"num_edges": 3,
"edges": [
{
"u": 2,
"v": 5
},
{
"u": 7,
"v": 8
},
{
"u": 10,
"v": 7
}
]
},
"solution_variant": [
2,
5,
8,
7,
10,
1,
9,
3,
6,
4
],
"context_index": 44,
"input_format": "markdown_table",
"input_index_base": 1
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "On a quiet afternoon the team sketched a straight arrangement of all the works, making sure each painting appears once and no piece is repeated. If the wall is cut at any point into earlier and later groups, some works on the left will still be connected to works on the right; count those connections for each cut. What matters is the cut that severs the most connections, and the hope is to pick an order so that this worst cut cuts through as few connections as possible. The exact collection and connection details come below.\n\nThe team listed the 10 paintings as 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 and recorded 5 thematic links among them.\n\n| painting_a | painting_b |\n|---|---|\n| 3 | 1 |\n| 1 | 2 |\n| 2 | 4 |\n| 2 | 8 |\n| 4 | 8 |\n\nThe team will use these entries to evaluate cuts and to seek an ordering that minimizes the worst severed connections.\n\nIf you want to hand the ordering back in a tidy way, just use a little JSON shape like this:\n\n{\n \"solution\": [<first_painting>, <second_painting>, ..., <last_painting>]\n}\n\nThink of that as a simple form: \"solution\" is the list (left-to-right) of works on the wall, and each placeholder is where an actual work identifier goes. This block is just a sketch of the shape I expect, not the finished ordering.\n\nPlease make sure to use the exact identifiers from the problem input β don't rename them or invent new labels. \n- 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β.\"",
"instance": {
"name": "can__292.mtx.rnd_sub_10",
"num_nodes": 10,
"num_edges": 5,
"edges": [
[
3,
1
],
[
1,
2
],
[
2,
4
],
[
2,
8
],
[
4,
8
]
],
"solution": [
5,
7,
9,
0,
6,
3,
1,
2,
4,
8
],
"objective": 2.0
},
"solution": [
5,
7,
9,
0,
6,
3,
1,
2,
4,
8
],
"obj": 2.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 10,
"nodes": [
0,
1,
2,
3,
4,
5,
6,
7,
8,
9
],
"num_edges": 5,
"edges": [
{
"u": 3,
"v": 1
},
{
"u": 1,
"v": 2
},
{
"u": 2,
"v": 4
},
{
"u": 2,
"v": 8
},
{
"u": 4,
"v": 8
}
]
},
"solution_variant": [
5,
7,
9,
0,
6,
3,
1,
2,
4,
8
],
"context_index": 45,
"input_format": "markdown_table",
"input_index_base": 0
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "Recently the family agreed to re-sequence the photos into one continuous strip so nothing gets omitted or duplicated, and the whole story reads straight through. The concern was pages where too many connections cross the middle, so for any candidate ordering one checks every split, counts crossing links, and then notes the maximum count encountered β that maximum is what determines how good the arrangement feels. The full list of pictures and their connections is shown below.\n\nThere are 10 photos and 5 links; the photo identifiers are 0, 1, 2, 3, 4, 5, 6, 7, 8, 9.\nA link connects photo 0 and photo 7.\nA link connects photo 0 and photo 6.\nA link connects photo 0 and photo 3.\nA link connects photo 2 and photo 4.\nA link connects photo 6 and photo 3.\nRefer to this list when one checks every split and counts crossing links.\n\nIf you want to hand me a candidate ordering, just stick it in a small JSON snippet so it's easy to read and check. Here's the little sketch I like to see:\n\n{\n \"solution\": [<first_photo>, <second_photo>, ..., <last_photo>]\n}\n\nThink of \"solution\" as the photos laid out from left to right; each placeholder shows where a photo identifier would go in that sequence. This block is just the expected shape β a template β not the final answer itself. Please be sure to use the exact photo identifiers from the input when you fill it in; don't rename them or invent new labels.\n\n- 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β.\"",
"instance": {
"name": "curtis54.mtx.rnd_sub_10",
"num_nodes": 10,
"num_edges": 5,
"edges": [
[
0,
7
],
[
0,
6
],
[
0,
3
],
[
2,
4
],
[
6,
3
]
],
"solution": [
2,
4,
8,
3,
6,
0,
1,
7,
5,
9
],
"objective": 2.0
},
"solution": [
2,
4,
8,
3,
6,
0,
1,
7,
5,
9
],
"obj": 2.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 10,
"nodes": [
0,
1,
2,
3,
4,
5,
6,
7,
8,
9
],
"num_edges": 5,
"edges": [
{
"u": 0,
"v": 7
},
{
"u": 0,
"v": 6
},
{
"u": 0,
"v": 3
},
{
"u": 2,
"v": 4
},
{
"u": 6,
"v": 3
}
]
},
"solution_variant": [
2,
4,
8,
3,
6,
0,
1,
7,
5,
9
],
"context_index": 46,
"input_format": "nl",
"input_index_base": 0
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "I was working on putting together an episode from a pile of recorded segments, and the job felt like arranging puzzle pieces in a line. The choice is which clip goes first, second, and so on, with every clip used once and no repeats or skips. As the episode plays, imagine every edit point and count how many little editorial links jump from earlier clips to later ones; the place with the most of those crossing links is the roughest cut, and the idea is to make that biggest crossing number as small as possible. The specific segments and how theyβre connected are listed below.\n\n# num_segments=10\n# num_connections=7\n# segment_ids=0, 1, 2, 3, 4, 5, 6, 7, 8, 9\nsegment_a,segment_b\n0,1\n1,9\n5,8\n8,9\n9,5\n9,2\n0,3\n\nAlso, if you're going to give me a proposed ordering, it helps to use a tiny JSON snippet like this so I can read it easily:\n\n{\n \"solution\": [<first_clip>, <second_clip>, ..., <last_clip>]\n}\n\nThis just shows the shape I expect: \"solution\" is the list of segments in playback order, from the very first clip to the very last. The angle-bracket names like <first_clip> are placeholders showing where the actual segment identifiers go. It's just a sketch of the format β not the real answer itself.\n\nPlease make sure all identifiers you put in that list match the instance exactly β don't rename them or invent new labels. \n- 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β.\"",
"instance": {
"name": "p76_22_30_sub_10",
"num_nodes": 10,
"num_edges": 7,
"edges": [
[
0,
1
],
[
1,
9
],
[
5,
8
],
[
8,
9
],
[
9,
5
],
[
9,
2
],
[
0,
3
]
],
"solution": [
0,
3,
7,
2,
1,
9,
8,
4,
6,
5
],
"objective": 2.0
},
"solution": [
0,
3,
7,
2,
1,
9,
8,
4,
6,
5
],
"obj": 2.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 10,
"nodes": [
0,
1,
2,
3,
4,
5,
6,
7,
8,
9
],
"num_edges": 7,
"edges": [
{
"u": 0,
"v": 1
},
{
"u": 1,
"v": 9
},
{
"u": 5,
"v": 8
},
{
"u": 8,
"v": 9
},
{
"u": 9,
"v": 5
},
{
"u": 9,
"v": 2
},
{
"u": 0,
"v": 3
}
]
},
"solution_variant": [
0,
3,
7,
2,
1,
9,
8,
4,
6,
5
],
"context_index": 47,
"input_format": "csv",
"input_index_base": 0
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "Iβve got a long garden bed and a bunch of different seedlings that donβt all get along β some pairs affect each other if they end up on opposite sides of a spot. The choice is how to line them up in a single row, using every seedling exactly once and not repeating any. If someone looks at any gap along the bed and counts how many of those influencing pairs are split with one plant on the left and the other on the right, the biggest count among all gaps is the one that matters. The idea is to arrange the row so that that worst split ends up as small as possible. The concrete planting details are shown below.\n\nHere they are: I have 11 seedlings, 10 influencing pairs, and they are 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10.\n\n| seedling_a | seedling_b |\n|---|---|\n| 1 | 10 |\n| 3 | 7 |\n| 4 | 5 |\n| 5 | 9 |\n| 6 | 8 |\n| 7 | 8 |\n| 8 | 10 |\n| 9 | 10 |\n| 1 | 4 |\n| 2 | 8 |\n\nThat's all β arrange the 11 seedlings in a row to minimize the worst split.\n\nYou can just send the ordering back in a tiny JSON object like this β nothing fancy, just the list from left-to-right in the bed.\n\n{\n \"solution\": [<first_seedling>, <second_seedling>, ..., <last_seedling>]\n}\n\nThis JSON is just a sketch: the \"solution\" array should list every seedling in the exact order you want them planted, from the left end of the bed to the right. Each placeholder there stands in for one actual seedling identifier β itβs not the final answer, just the shape I need.\n\nPlease make sure you use the exact identifiers from the instance input when you fill it in β 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β.\"",
"instance": {
"name": "p41_19_20_sub_11",
"num_nodes": 11,
"num_edges": 10,
"edges": [
[
1,
10
],
[
3,
7
],
[
4,
5
],
[
5,
9
],
[
6,
8
],
[
7,
8
],
[
8,
10
],
[
9,
10
],
[
1,
4
],
[
2,
8
]
],
"solution": [
0,
1,
4,
5,
9,
10,
2,
8,
6,
7,
3
],
"objective": 2.0
},
"solution": [
0,
1,
4,
5,
9,
10,
2,
8,
6,
7,
3
],
"obj": 2.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 11,
"nodes": [
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10
],
"num_edges": 10,
"edges": [
{
"u": 1,
"v": 10
},
{
"u": 3,
"v": 7
},
{
"u": 4,
"v": 5
},
{
"u": 5,
"v": 9
},
{
"u": 6,
"v": 8
},
{
"u": 7,
"v": 8
},
{
"u": 8,
"v": 10
},
{
"u": 9,
"v": 10
},
{
"u": 1,
"v": 4
},
{
"u": 2,
"v": 8
}
]
},
"solution_variant": [
0,
1,
4,
5,
9,
10,
2,
8,
6,
7,
3
],
"context_index": 48,
"input_format": "markdown_table",
"input_index_base": 0
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "Imagine a straight line of services being started one after another, each with little ropes to the services they rely on. At any place the sequence is cut, some ropes will stretch from started services to not-yet-started ones; for each cut you count those ropes, and the idea is to arrange the line so the single largest count of stretched ropes at any cut is as small as possible. Each service must appear in that line exactly one time β no skipping, no repeats. The specific instance and connections are shown below.\n\n{\n \"num_services\": 11,\n \"num_dependencies\": 2,\n \"service_list\": [\n \"A\",\n \"B\",\n \"C\",\n \"D\",\n \"E\",\n \"F\",\n \"G\",\n \"H\",\n \"I\",\n \"J\",\n \"K\"\n ],\n \"edges\": [\n {\n \"service_u\": \"A\",\n \"service_v\": \"D\"\n },\n {\n \"service_u\": \"A\",\n \"service_v\": \"K\"\n }\n ]\n}\n\nAlso, when you send back the ordering, please stick to this relaxed JSON layout so it's easy to parse and double-check:\n\n{\n \"solution\": [<first_service>, <second_service>, ..., <last_service>]\n}\n\nThink of that as a simple form: \"solution\" holds the whole left-to-right sequence (first started to last started), and each placeholder in the array is one service identifier in that order. This JSON is just a sketch of the shape I want β you'll replace the placeholders with the actual node IDs from the instance.\n\nPlease be sure to use the exact identifiers from the instance input β no renaming, no made-up 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\".",
"instance": {
"name": "sherman4.mtx.rnd_sub_11",
"num_nodes": 11,
"num_edges": 2,
"edges": [
[
0,
3
],
[
0,
10
]
],
"solution": [
1,
4,
5,
2,
9,
6,
3,
0,
8,
10,
7
],
"objective": 1.0
},
"solution": [
1,
4,
5,
2,
9,
6,
3,
0,
8,
10,
7
],
"obj": 1.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 11,
"nodes": [
"A",
"B",
"C",
"D",
"E",
"F",
"G",
"H",
"I",
"J",
"K"
],
"num_edges": 2,
"edges": [
{
"u": "A",
"v": "D"
},
{
"u": "A",
"v": "K"
}
]
},
"solution_variant": [
"B",
"E",
"F",
"C",
"J",
"G",
"D",
"A",
"I",
"K",
"H"
],
"context_index": 49,
"input_format": "json",
"input_index_base": "names"
},
{
"task_name": "CMP",
"problem_type": "CMP",
"instruction": "Recently the yard team turned a tedious shift into a little puzzle: they had to pick an order for all the cars, using each one exactly once, so that the busiest split point β where the most couplings span from left to right β is as small as possible. The way to judge any lineup is simple: at every spot between cars, count how many couplings cross that spot, then find the biggest count among those spots; that biggest count is the one to beat. The detailed list of cars and their couplings is listed below.\n\nThere are 11 cars and 2 couplings; the car identifiers are 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10.\n\n| car_a | car_b |\n|---|---|\n| 9 | 10 |\n| 0 | 10 |\n\nThe goal remains to order the cars so the busiest split β the maximum number of spanning couplings at any spot β is as small as possible.\n\nIf you want to hand me a proposed lineup, just drop it in this simple JSON shape so it's easy to check against the instance:\n\n{\n \"solution\": [<first_car>, <second_car>, ..., <last_car>]\n}\n\nThis \"solution\" list is just the left-to-right order of the cars β the first element is the car at the far left, the last element is at the far right. Think of the JSON above as a little form: replace each placeholder with the actual car identifier from the instance when you submit a lineup. It's only a sketch of the shape I expect, not the final answer itself.\n\nPlease make sure to use the exact identifiers from the input β do not rename them or invent new labels. \n- 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β.\"",
"instance": {
"name": "nnc261.mtx.rnd_sub_11",
"num_nodes": 11,
"num_edges": 2,
"edges": [
[
9,
10
],
[
0,
10
]
],
"solution": [
2,
7,
6,
8,
5,
0,
3,
4,
1,
10,
9
],
"objective": 1.0
},
"solution": [
2,
7,
6,
8,
5,
0,
3,
4,
1,
10,
9
],
"obj": 1.0,
"instance_variant": {
"problem_type": "CMP",
"num_nodes": 11,
"nodes": [
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10
],
"num_edges": 2,
"edges": [
{
"u": 9,
"v": 10
},
{
"u": 0,
"v": 10
}
]
},
"solution_variant": [
2,
7,
6,
8,
5,
0,
3,
4,
1,
10,
9
],
"context_index": 50,
"input_format": "markdown_table",
"input_index_base": 0
}
] |