File size: 160,390 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 | [
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "We have a bakery to run and a tray of deliveries to make, so the task is to choose the delivery sequence that starts at the shop, visits every customer location one time, and finishes back at the shop. What makes one sequence better than another is simple: the one that results in the least driving, measured by summing the miles between consecutive stops for the whole loop. Every stop has to be included exactly once β no skipping a house and no visiting the same house twice. The concrete addresses and coordinates are shown below.\n\n# total_stops_including_shop=10\n# shop_node_id=0\nstop_id,x_coord_miles,y_coord_miles\n0,64,1\n1,20,77\n2,97,56\n3,0,70\n4,69,100\n5,14,30\n6,100,31\n7,49,0\n8,61,30\n9,20,41\n\nAlso, when you send back the route, please follow this simple JSON layout so it's easy to read and check:\n\n{\n \"solution\": [\"shop_id\", \"customer_id\", ..., \"shop_id\"]\n}\n\nThis just means \"solution\" should be a list showing the stops in order β start at the shop, visit each customer once, and finish back at the shop. The strings in the list are the location identifiers taken straight from the instance.\n\nThis JSON is only a sketch of the shape I expect, not the actual route β I'll fill in the real identifiers when I give the final answer. Please 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": [
[
64,
1
],
[
20,
77
],
[
97,
56
],
[
0,
70
],
[
69,
100
],
[
14,
30
],
[
100,
31
],
[
49,
0
],
[
61,
30
],
[
20,
41
]
],
"solution": [
0,
7,
5,
9,
3,
1,
4,
2,
6,
8,
0
],
"obj": 329.708459854126,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 10,
"nodes": [
{
"id": 0,
"x": 64,
"y": 1
},
{
"id": 1,
"x": 20,
"y": 77
},
{
"id": 2,
"x": 97,
"y": 56
},
{
"id": 3,
"x": 0,
"y": 70
},
{
"id": 4,
"x": 69,
"y": 100
},
{
"id": 5,
"x": 14,
"y": 30
},
{
"id": 6,
"x": 100,
"y": 31
},
{
"id": 7,
"x": 49,
"y": 0
},
{
"id": 8,
"x": 61,
"y": 30
},
{
"id": 9,
"x": 20,
"y": 41
}
],
"depot": 0
},
"solution_variant": [
0,
7,
5,
9,
3,
1,
4,
2,
6,
8,
0
],
"context_index": 1,
"input_format": "csv",
"input_index_base": 0
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "Recently the team needs a planned route that begins at the garage, visits all service addresses one time only, and returns to the garage at dayβs end. The task is to decide the visiting order β the smarter the order, the smaller the dayβs mileage. To figure that out, just add up the miles between every pair of consecutive stops in the order you pick (counting the trip out and the trip home) and prefer the order with the smallest overall total. No stops can be skipped or repeated. Exact instance details are provided below.\n\nThere are 10 locations to cover, and the garage is 0.\nStop 0 is located at coordinates (38, 90).\nStop 1 is located at coordinates (18, 80).\nStop 2 is located at coordinates (73, 30).\nStop 3 is located at coordinates (0, 22).\nStop 4 is located at coordinates (44, 44).\nStop 5 is located at coordinates (100, 56).\nStop 6 is located at coordinates (3, 0).\nStop 7 is located at coordinates (65, 80).\nStop 8 is located at coordinates (91, 100).\nStop 9 is located at coordinates (24, 92).\nBegin the tour at 0 and return there after visiting all 10 locations once.\n\nJust drop the final route into a little JSON snippet like this so it's easy to parse and check:\n\n{\n \"solution\": [depot_id, location_id, ..., depot_id]\n}\n\nThink of \"solution\" as the ordered list of stops β start at the garage (the depot), list each service address exactly once in the order you'll visit them, and finish back at the garage. This JSON is only a sketch of the shape I need, not the actual answer itself.\n\nPlease 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": [
[
38,
90
],
[
18,
80
],
[
73,
30
],
[
0,
22
],
[
44,
44
],
[
100,
56
],
[
3,
0
],
[
65,
80
],
[
91,
100
],
[
24,
92
]
],
"solution": [
0,
7,
8,
5,
2,
4,
6,
3,
1,
9,
0
],
"obj": 346.82418727874756,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 10,
"nodes": [
{
"id": 0,
"x": 38,
"y": 90
},
{
"id": 1,
"x": 18,
"y": 80
},
{
"id": 2,
"x": 73,
"y": 30
},
{
"id": 3,
"x": 0,
"y": 22
},
{
"id": 4,
"x": 44,
"y": 44
},
{
"id": 5,
"x": 100,
"y": 56
},
{
"id": 6,
"x": 3,
"y": 0
},
{
"id": 7,
"x": 65,
"y": 80
},
{
"id": 8,
"x": 91,
"y": 100
},
{
"id": 9,
"x": 24,
"y": 92
}
],
"depot": 0
},
"solution_variant": [
0,
7,
8,
5,
2,
4,
6,
3,
1,
9,
0
],
"context_index": 2,
"input_format": "nl",
"input_index_base": 0
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "On a typical morning the studio van will head out, visit a handful of shoot locations one after another, and then roll back into the studio at the end of the day. The decision is which order to pick so the van covers the least ground overall β calculate that by summing each segment between stops plus the last leg back to base. No shoot can be skipped or visited twice. The exact list of stops and their coordinates is shown below.\n\n# total_locations=9\n# studio_node_id=0\nlocation_id,x_coord,y_coord\n0,29,9\n1,97,63\n2,0,1\n3,45,40\n4,100,84\n5,56,100\n6,98,0\n7,37,53\n8,61,12\n\nAlso, when you send the route back, please follow this little JSON layout so it's easy to read and process:\n\n{\n \"solution\": [studio_id, location_id, ..., studio_id]\n}\n\nThink of \"solution\" as the ordered list the van will drive: start at the studio (studio_id), visit each shoot spot in turn (each location_id), and finally come back to the studio (the same studio_id again). It's just a template showing the shape I need β not the final tour.\n\nPlease use the 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": [
[
29,
9
],
[
97,
63
],
[
0,
1
],
[
45,
40
],
[
100,
84
],
[
56,
100
],
[
98,
0
],
[
37,
53
],
[
61,
12
]
],
"solution": [
0,
2,
3,
7,
5,
4,
1,
6,
8,
0
],
"obj": 357.6685733795166,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 9,
"nodes": [
{
"id": 0,
"x": 29,
"y": 9
},
{
"id": 1,
"x": 97,
"y": 63
},
{
"id": 2,
"x": 0,
"y": 1
},
{
"id": 3,
"x": 45,
"y": 40
},
{
"id": 4,
"x": 100,
"y": 84
},
{
"id": 5,
"x": 56,
"y": 100
},
{
"id": 6,
"x": 98,
"y": 0
},
{
"id": 7,
"x": 37,
"y": 53
},
{
"id": 8,
"x": 61,
"y": 12
}
],
"depot": 0
},
"solution_variant": [
0,
2,
3,
7,
5,
4,
1,
6,
8,
0
],
"context_index": 3,
"input_format": "csv",
"input_index_base": 0
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "Many of the regular patrons count on a neat bookmobile loop that starts and ends at the main branch and touches every stop only once, so the librarian wants the route that uses the least driving. The way to judge one route versus another is to add up the distance between each stop in the route, including the last stretch back to the branch β the smaller that sum, the better the route. Every stop must appear exactly once, no repeats. The exact stops and their coordinates follow below.\n\nThere are 9 stops in total, and the route must start and finish at A.\n\n| stop_id | x_coordinate | y_coordinate |\n|---|---|---|\n| A | 88 | 0 |\n| B | 50 | 28 |\n| C | 8 | 67 |\n| D | 25 | 67 |\n| E | 83 | 100 |\n| F | 21 | 0 |\n| G | 92 | 33 |\n| H | 0 | 78 |\n| I | 100 | 100 |\n\nList each stop once so the librarian can sum the segment distances and choose the shortest loop.\n\nIf you want to hand me a candidate route, just pop it into a tiny JSON snippet like this so I can read it cleanly:\n\n{\n \"solution\": [branch_id, stop_id, ..., branch_id]\n}\n\nThink of \"solution\" as the tour: start at the main branch (branch_id), then list each stop in the order the bookmobile should visit them (stop_id placeholders), and finish back at the branch. This is just a sketch of the shape I expect, not the actual route β I'll need the real identifiers from the instance to give a concrete answer.\n\nPlease 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": [
[
88,
0
],
[
50,
28
],
[
8,
67
],
[
25,
67
],
[
83,
100
],
[
21,
0
],
[
92,
33
],
[
0,
78
],
[
100,
100
]
],
"solution": [
0,
1,
5,
2,
7,
3,
4,
8,
6,
0
],
"obj": 381.12525939941406,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 9,
"nodes": [
{
"id": "A",
"x": 88,
"y": 0
},
{
"id": "B",
"x": 50,
"y": 28
},
{
"id": "C",
"x": 8,
"y": 67
},
{
"id": "D",
"x": 25,
"y": 67
},
{
"id": "E",
"x": 83,
"y": 100
},
{
"id": "F",
"x": 21,
"y": 0
},
{
"id": "G",
"x": 92,
"y": 33
},
{
"id": "H",
"x": 0,
"y": 78
},
{
"id": "I",
"x": 100,
"y": 100
}
],
"depot": "A"
},
"solution_variant": [
"A",
"B",
"F",
"C",
"H",
"D",
"E",
"I",
"G",
"A"
],
"context_index": 4,
"input_format": "markdown_table",
"input_index_base": "names"
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "Thereβs a farmer who does porch-to-porch dropoffs around the neighborhood and wants a sensible route that starts and ends at the farm and doesnβt hit any stop more than once. A smarter route is simply the one that adds up to the fewest miles overall β add up every leg between stops to get the total β so the plan with the smallest sum of those legs wins. The full list of stops and their specifics appears below.\n\nBelow are the 10 stops (including the farm depot 1), listed one per line:\n\n| dropoff_id | x_coord | y_coord |\n|---|---|---|\n| 1 | 22 | 100 |\n| 2 | 59 | 47 |\n| 3 | 20 | 92 |\n| 4 | 39 | 81 |\n| 5 | 0 | 46 |\n| 6 | 44 | 62 |\n| 7 | 100 | 94 |\n| 8 | 81 | 30 |\n| 9 | 9 | 73 |\n| 10 | 47 | 0 |\n\nThe farmer must visit each of the 10 stops once, begin and end at 1, and choose the route with the fewest total miles.\n\nWhen you send the route back, just use this simple JSON layout so it's easy to read and parse:\n\n{\n \"solution\": [farm_id, stop_id, ..., farm_id]\n}\n\nHere \"solution\" holds the ordered list of stops the farmer will make β the first entry is the farm where we start, then every porch in the order theyβre visited, and the last entry is the farm again to end the loop. Think of it like filling out a short form: list the farm, then the porches, then the farm.\n\nThis JSON is only a sketch of the shape I expect, not the actual route answer.\n\nPlease use the exact identifiers given 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": [
[
22,
100
],
[
59,
47
],
[
20,
92
],
[
39,
81
],
[
0,
46
],
[
44,
62
],
[
100,
94
],
[
81,
30
],
[
9,
73
],
[
47,
0
]
],
"solution": [
0,
2,
8,
4,
9,
7,
6,
1,
5,
3,
0
],
"obj": 365.25489139556885,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 10,
"nodes": [
{
"id": 1,
"x": 22,
"y": 100
},
{
"id": 2,
"x": 59,
"y": 47
},
{
"id": 3,
"x": 20,
"y": 92
},
{
"id": 4,
"x": 39,
"y": 81
},
{
"id": 5,
"x": 0,
"y": 46
},
{
"id": 6,
"x": 44,
"y": 62
},
{
"id": 7,
"x": 100,
"y": 94
},
{
"id": 8,
"x": 81,
"y": 30
},
{
"id": 9,
"x": 9,
"y": 73
},
{
"id": 10,
"x": 47,
"y": 0
}
],
"depot": 1
},
"solution_variant": [
1,
3,
9,
5,
10,
8,
7,
2,
6,
4,
1
],
"context_index": 5,
"input_format": "markdown_table",
"input_index_base": 1
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "Iβm picturing a caterer who needs to plan a single outing that leaves the kitchen, drops off food at every booked venue, and comes back to the kitchen at the end of the day. The job is to pick the order of stops so the whole trip uses the fewest miles possible β that total is just the sum of the distances between each stop in the route, including the leg back to the kitchen β and nothing can be skipped or visited more than once. The exact list of venues and their locations is shown below.\n\n{\n \"total_locations_in_route\": 5,\n \"nodes\": [\n {\n \"venue_id\": 1,\n \"x_coordinate\": 93,\n \"y_coordinate\": 21\n },\n {\n \"venue_id\": 2,\n \"x_coordinate\": 100,\n \"y_coordinate\": 0\n },\n {\n \"venue_id\": 3,\n \"x_coordinate\": 0,\n \"y_coordinate\": 100\n },\n {\n \"venue_id\": 4,\n \"x_coordinate\": 32,\n \"y_coordinate\": 43\n },\n {\n \"venue_id\": 5,\n \"x_coordinate\": 3,\n \"y_coordinate\": 45\n }\n ],\n \"kitchen_node_id\": 1\n}\n\nOh, and when you give the planned route back, a tiny JSON sketch like this is perfect β just a simple list that starts and ends at the kitchen:\n\n{\n \"solution\": [kitchen_id, venue_id, ..., kitchen_id]\n}\n\nThink of \"solution\" as the ordered checklist: the first item is where the truck leaves (the kitchen), the middle items are the stops in the order youβll visit them, and the last item is the kitchen again when you're done. This is just the shape I need, not the actual route.\n\nPlease use the exact identifiers from the instance input β no renaming, no made-up 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": [
[
93,
21
],
[
100,
0
],
[
0,
100
],
[
32,
43
],
[
3,
45
]
],
"solution": [
0,
1,
3,
4,
2,
0
],
"obj": 308.7661304473877,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 5,
"nodes": [
{
"id": 1,
"x": 93,
"y": 21
},
{
"id": 2,
"x": 100,
"y": 0
},
{
"id": 3,
"x": 0,
"y": 100
},
{
"id": 4,
"x": 32,
"y": 43
},
{
"id": 5,
"x": 3,
"y": 45
}
],
"depot": 1
},
"solution_variant": [
1,
2,
4,
5,
3,
1
],
"context_index": 6,
"input_format": "json",
"input_index_base": 1
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "Weβve got a maintenance planner trying to put together a route so a tech can leave HQ, stop at each equipment location once, and come home without backtracking. The decision is which stop to go to next at each turn, and a good decision is one that keeps the overall driving to a minimum. You measure how good a route is by totaling the miles between consecutive stops, including the leg that returns to headquarters. Itβs important that every site gets exactly one visit and that none are missed or repeated. The detailed list and numbers are shown below.\n\nBelow are the 10 sites, with headquarters A.\n\n| site_id | x_coord | y_coord |\n|---|---|---|\n| A | 68 | 14 |\n| B | 16 | 61 |\n| C | 19 | 60 |\n| D | 100 | 78 |\n| E | 35 | 58 |\n| F | 0 | 17 |\n| G | 53 | 0 |\n| H | 94 | 21 |\n| I | 34 | 76 |\n| J | 19 | 100 |\n\nMake sure each site is visited exactly once and the tour returns to A.\n\nWhen you send back the route, just use this tiny JSON layout so it's easy to plug into the planner:\n\n{\n \"solution\": [hq_id, site_id, ..., hq_id]\n}\n\nThink of \"solution\" as the simple list of stops in order: start at HQ (the first hq_id), visit each site once (the site_id entries), and come back to HQ (the final hq_id). It's just a sketch of the shape I want, not the actual route.\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β.\"\n\nThat's it β drop the actual sequence of IDs into that array and we're good.",
"instance": [
[
68,
14
],
[
16,
61
],
[
19,
60
],
[
100,
78
],
[
35,
58
],
[
0,
17
],
[
53,
0
],
[
94,
21
],
[
34,
76
],
[
19,
100
]
],
"solution": [
0,
6,
5,
1,
2,
4,
8,
9,
3,
7,
0
],
"obj": 356.7884964942932,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 10,
"nodes": [
{
"id": "A",
"x": 68,
"y": 14
},
{
"id": "B",
"x": 16,
"y": 61
},
{
"id": "C",
"x": 19,
"y": 60
},
{
"id": "D",
"x": 100,
"y": 78
},
{
"id": "E",
"x": 35,
"y": 58
},
{
"id": "F",
"x": 0,
"y": 17
},
{
"id": "G",
"x": 53,
"y": 0
},
{
"id": "H",
"x": 94,
"y": 21
},
{
"id": "I",
"x": 34,
"y": 76
},
{
"id": "J",
"x": 19,
"y": 100
}
],
"depot": "A"
},
"solution_variant": [
"A",
"G",
"F",
"B",
"C",
"E",
"I",
"J",
"D",
"H",
"A"
],
"context_index": 7,
"input_format": "markdown_table",
"input_index_base": "names"
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "On a busy morning the flower shop needs a single delivery loop: out from the storefront, one drop at every recipient, and back to the shop without visiting any address more than once. Picking the right order of stops is the task β the best order is the one that keeps the overall driving distance lowest, calculated by summing each leg of the trip including the return. Every address on the list must be visited exactly once. The specific locations are listed below.\n\n# total_locations=9\n# storefront_id=1\nlocation_id,x_coord,y_coord\n1,0,79\n2,99,2\n3,21,100\n4,19,28\n5,18,75\n6,100,56\n7,63,51\n8,99,0\n9,61,40\n\nAlso, when you send back the delivery order, please keep it in a tiny JSON shape like this:\n\n{\n \"solution\": [shop_id, recipient_id, ..., shop_id]\n}\n\nThis just shows the shape Iβm expecting: the solution array lists the stops in order β starting at the shop, hitting every recipient once, and coming back to the shop. Itβs only a sketch of the expected format, not the actual route.\n\nPlease make sure to 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": [
[
0,
79
],
[
99,
2
],
[
21,
100
],
[
19,
28
],
[
18,
75
],
[
100,
56
],
[
63,
51
],
[
99,
0
],
[
61,
40
]
],
"solution": [
0,
2,
4,
6,
5,
1,
7,
8,
3,
0
],
"obj": 352.5007858276367,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 9,
"nodes": [
{
"id": 1,
"x": 0,
"y": 79
},
{
"id": 2,
"x": 99,
"y": 2
},
{
"id": 3,
"x": 21,
"y": 100
},
{
"id": 4,
"x": 19,
"y": 28
},
{
"id": 5,
"x": 18,
"y": 75
},
{
"id": 6,
"x": 100,
"y": 56
},
{
"id": 7,
"x": 63,
"y": 51
},
{
"id": 8,
"x": 99,
"y": 0
},
{
"id": 9,
"x": 61,
"y": 40
}
],
"depot": 1
},
"solution_variant": [
1,
3,
5,
7,
6,
2,
8,
9,
4,
1
],
"context_index": 8,
"input_format": "csv",
"input_index_base": 1
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "Recently the courier asked for a plan that begins at the dispatch office, visits every client one time, and returns to the office in a single loop. The choice to make is the sequence of stops; the best sequence is the one with the smallest total travel distance, computed by adding up all the distances between each stop and the next, including the return trip. Every customer must be visited exactly once. The detailed list of stops appears below.\n\n{\n \"total_stops_in_route\": 6,\n \"nodes\": [\n {\n \"location_id\": 0,\n \"x_coordinate\": 100,\n \"y_coordinate\": 0\n },\n {\n \"location_id\": 1,\n \"x_coordinate\": 84,\n \"y_coordinate\": 15\n },\n {\n \"location_id\": 2,\n \"x_coordinate\": 81,\n \"y_coordinate\": 34\n },\n {\n \"location_id\": 3,\n \"x_coordinate\": 0,\n \"y_coordinate\": 100\n },\n {\n \"location_id\": 4,\n \"x_coordinate\": 14,\n \"y_coordinate\": 20\n },\n {\n \"location_id\": 5,\n \"x_coordinate\": 67,\n \"y_coordinate\": 44\n }\n ],\n \"dispatch_office_id\": 0\n}\n\nAlso, when you send back the route, please use this simple JSON layout so it's easy to parse and check.\n\n{\n \"solution\": [\"dispatch_office_id\", \"client_id\", \"...\", \"dispatch_office_id\"]\n}\n\nHere \"solution\" is just the tour: a list of stop identifiers in the order they should be visited, starting and ending at the dispatch office. The words in the example are placeholders showing the shape I expect β replace them with the real IDs from the instance when you give the actual route.\n\nAll identifiers must be used 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": [
[
100,
0
],
[
84,
15
],
[
81,
34
],
[
0,
100
],
[
14,
20
],
[
67,
44
]
],
"solution": [
0,
1,
2,
5,
3,
4,
0
],
"obj": 315.2037105560303,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 6,
"nodes": [
{
"id": 0,
"x": 100,
"y": 0
},
{
"id": 1,
"x": 84,
"y": 15
},
{
"id": 2,
"x": 81,
"y": 34
},
{
"id": 3,
"x": 0,
"y": 100
},
{
"id": 4,
"x": 14,
"y": 20
},
{
"id": 5,
"x": 67,
"y": 44
}
],
"depot": 0
},
"solution_variant": [
0,
1,
2,
5,
3,
4,
0
],
"context_index": 9,
"input_format": "json",
"input_index_base": 0
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "Recently the clinic scheduled house calls across town, and the driver has to turn that schedule into a single loop: leave the clinic, visit every address exactly once, and return to the clinic at the end. The question is which route order will make the least driving β the better route is the one with the lowest sum of all the successive distances between stops, plus the trip back to base. The detailed addresses and coordinates are shown below.\n\n# total_locations_including_clinic=10\n# clinic_node_id=0\nlocation_id,x_coordinate_east_west,y_coordinate_north_south\n0,34,79\n1,46,13\n2,0,95\n3,78,82\n4,76,0\n5,58,78\n6,100,69\n7,81,51\n8,15,14\n9,61,100\n\nIf you want to hand me the route in a compact form, just pop it into a little JSON array like this:\n\n{\n \"solution\": [clinic_id, house_id, ..., clinic_id]\n}\n\nThis shows the tour order: the array under \"solution\" is the sequence of place identifiers to visit, starting at the clinic, then each house once, and ending back at the clinic. It's just a sketch of the shape I expect β not your actual route yet.\n\nPlease make sure to use the exact identifiers from the instance input, with no renaming or made-up labels. Valid identifiers look like:\n- plain numbers such as β1β or β23β\n- single capital letters like βAβ or βBβ\n- a capital letter followed by digits like βA1β or βX7β\n\nThose are the kinds of IDs I need β use them exactly as given.",
"instance": [
[
34,
79
],
[
46,
13
],
[
0,
95
],
[
78,
82
],
[
76,
0
],
[
58,
78
],
[
100,
69
],
[
81,
51
],
[
15,
14
],
[
61,
100
]
],
"solution": [
0,
2,
8,
1,
4,
7,
6,
3,
9,
5,
0
],
"obj": 357.6196041107178,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 10,
"nodes": [
{
"id": 0,
"x": 34,
"y": 79
},
{
"id": 1,
"x": 46,
"y": 13
},
{
"id": 2,
"x": 0,
"y": 95
},
{
"id": 3,
"x": 78,
"y": 82
},
{
"id": 4,
"x": 76,
"y": 0
},
{
"id": 5,
"x": 58,
"y": 78
},
{
"id": 6,
"x": 100,
"y": 69
},
{
"id": 7,
"x": 81,
"y": 51
},
{
"id": 8,
"x": 15,
"y": 14
},
{
"id": 9,
"x": 61,
"y": 100
}
],
"depot": 0
},
"solution_variant": [
0,
2,
8,
1,
4,
7,
6,
3,
9,
5,
0
],
"context_index": 10,
"input_format": "csv",
"input_index_base": 0
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "Many people on the art team joke about the βpick-up puzzleβ: the van needs to leave the gallery, swing by each lender exactly once to grab artwork, then return to base. Deciding which stop comes when is the whole point β the better the sequence, the less driving. You evaluate a sequence by adding together the lengths of each leg of the trip (including the last leg back to the gallery); the smallest total distance is what we want, with every lending venue visited once and only once. The exact stop list and coordinates are shown below.\n\n# total_locations=7\n# gallery_depot=1\nvenue_node_id,x_coord,y_coord\n1,38,74\n2,64,28\n3,0,24\n4,71,74\n5,89,100\n6,53,0\n7,100,16\n\nIf you want to hand me the final route, the easiest is to drop it in a tiny JSON snippet like this so everything's clear and machine-friendly:\n\n{\n \"solution\": [depot_id, location_id, ..., depot_id]\n}\n\nThink of that \"solution\" list as the trip sheet: start at the depot/gallery id, then list each lender once in the order the van will visit them, and finish back at the same depot id. The placeholders above are just a sketch of the shape I expect β you'll replace them with the actual IDs from the instance.\n\nPlease be sure to 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": [
[
38,
74
],
[
64,
28
],
[
0,
24
],
[
71,
74
],
[
89,
100
],
[
53,
0
],
[
100,
16
]
],
"solution": [
0,
2,
5,
1,
6,
4,
3,
0
],
"obj": 338.3525276184082,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 7,
"nodes": [
{
"id": 1,
"x": 38,
"y": 74
},
{
"id": 2,
"x": 64,
"y": 28
},
{
"id": 3,
"x": 0,
"y": 24
},
{
"id": 4,
"x": 71,
"y": 74
},
{
"id": 5,
"x": 89,
"y": 100
},
{
"id": 6,
"x": 53,
"y": 0
},
{
"id": 7,
"x": 100,
"y": 16
}
],
"depot": 1
},
"solution_variant": [
1,
3,
6,
2,
7,
5,
4,
1
],
"context_index": 11,
"input_format": "csv",
"input_index_base": 1
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "I run a little vintage furniture workshop and need to plan a buying trip that leaves from the shop, visits every seller on the list exactly once, and then brings me straight back to the workshop. The choice to make is the order to visit those sellers; a better plan is the one that keeps the whole drive as short as possible β add up the miles between each stop in the order chosen, including the final leg home, and that total should be as small as it can be. Nothing on the seller list can be skipped or visited twice. The exact addresses and distances are shown below.\n\nMy list contains 6 locations in total, with the workshop listed as 1.\n\n| location_id | map_x_coordinate | map_y_coordinate |\n|---|---|---|\n| 1 | 64 | 77 |\n| 2 | 100 | 61 |\n| 3 | 0 | 0 |\n| 4 | 26 | 60 |\n| 5 | 15 | 100 |\n| 6 | 79 | 9 |\n\nI'll plan a route that starts and ends at 1 and visits every stop once to keep the total drive as short as possible.\n\nAlso, when you send the route back, a little JSON sketch like this is perfect for me β keeps things tidy and easy to read.\n\n{\n \"solution\": [shop_id, seller_id, ..., shop_id]\n}\n\nThink of \"solution\" as the ordered list of stops: start at the shop (the depot), visit each seller once in the middle, and finish back at the shop. The placeholders there just show the shape I need β the actual reply should replace them with the real identifiers from the instance.\n\nThis JSON is only a template of the expected shape, not the actual answer. 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": [
[
64,
77
],
[
100,
61
],
[
0,
0
],
[
26,
60
],
[
15,
100
],
[
79,
9
]
],
"solution": [
0,
1,
5,
2,
3,
4,
0
],
"obj": 335.9922790527344,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 6,
"nodes": [
{
"id": 1,
"x": 64,
"y": 77
},
{
"id": 2,
"x": 100,
"y": 61
},
{
"id": 3,
"x": 0,
"y": 0
},
{
"id": 4,
"x": 26,
"y": 60
},
{
"id": 5,
"x": 15,
"y": 100
},
{
"id": 6,
"x": 79,
"y": 9
}
],
"depot": 1
},
"solution_variant": [
1,
2,
6,
3,
4,
5,
1
],
"context_index": 12,
"input_format": "markdown_table",
"input_index_base": 1
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "There's a simple task for the community health planner: schedule a circuit that starts at the health center, goes to every neighborhood stop exactly once, and finishes back at the health center. What matters most when comparing different circuits is how far the van has to drive in total β add up the distance between each pair of consecutive stops along the loop (including the return leg) and the route with the smallest total is the one to use. No stops can be left out or driven twice. The concrete stop locations and distances are shown below.\n\nThe list below gives 8 locations, with the health center identified as 1.\nStop 1 is located at coordinates (8, 100).\nStop 2 is located at coordinates (94, 14).\nStop 3 is located at coordinates (84, 14).\nStop 4 is located at coordinates (4, 31).\nStop 5 is located at coordinates (0, 66).\nStop 6 is located at coordinates (100, 28).\nStop 7 is located at coordinates (76, 0).\nStop 8 is located at coordinates (8, 34).\nChoose the circuit with the smallest total driving distance (sum distances between consecutive stops, including the return to the health center).\n\nWhen you send the route back, just drop it into this simple JSON shape so it's easy to read and check:\n\n{\n \"solution\": [health_center_id, neighborhood_id, ..., health_center_id]\n}\n\nThis is just a short sketch of the form I need: \"solution\" holds the ordered list of stops starting and ending at the health center (so the first and last placeholder are the same). Think of it like filling in a little form: put the health center identifier first, list each neighborhood once in the order the van will visit them, and finish with the health center again.\n\nPlease make sure to use the exact identifiers from the instance input β don't rename them or invent new ones. \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β.\n\nRemember, the JSON above is just the expected shape (not the route itself).",
"instance": [
[
8,
100
],
[
94,
14
],
[
84,
14
],
[
4,
31
],
[
0,
66
],
[
100,
28
],
[
76,
0
],
[
8,
34
]
],
"solution": [
0,
4,
3,
7,
6,
2,
1,
5,
0
],
"obj": 309.3633556365967,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 8,
"nodes": [
{
"id": 1,
"x": 8,
"y": 100
},
{
"id": 2,
"x": 94,
"y": 14
},
{
"id": 3,
"x": 84,
"y": 14
},
{
"id": 4,
"x": 4,
"y": 31
},
{
"id": 5,
"x": 0,
"y": 66
},
{
"id": 6,
"x": 100,
"y": 28
},
{
"id": 7,
"x": 76,
"y": 0
},
{
"id": 8,
"x": 8,
"y": 34
}
],
"depot": 1
},
"solution_variant": [
1,
5,
4,
8,
7,
3,
2,
6,
1
],
"context_index": 13,
"input_format": "nl",
"input_index_base": 1
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "Someone in the neighborhood organizes a vending tour: they need to leave their garage, hit every market location one time only, and return home at the end. The choice is how to order those stops; the better ordering is the one that results in the smallest total distance traveled β calculate the trip length by summing the distance between each consecutive stop, plus the legs from garage to first and last back to garage, and pick the route with the smallest sum. No market can be omitted or repeated. The full list of markets and coordinates appears below.\n\n# total_locations_count=9\n# garage_node_id=A\nlocation_id,x_coord,y_coord\nA,100,73\nB,73,23\nC,56,0\nD,0,59\nE,49,68\nF,69,100\nG,57,46\nH,97,46\nI,43,15\n\nOh, and when you give the final route, please put it in a tiny JSON snippet like this so it's straightforward to read:\n\n{\n \"solution\": [\"garage_id\", \"market_id\", ..., \"garage_id\"]\n}\n\nThis is just a simple sketch: \"solution\" should be the ordered list of stops (start at the garage, visit every market once, and come back to the garage). Think of the placeholders as blanks you fill in with the exact IDs from the instance β don't invent new names or change the IDs. The JSON above is only the shape I expect, not the actual tour.\n\nAlso, make sure to use the identifiers exactly as they appear in the input β no renaming and no extra 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": [
[
100,
73
],
[
73,
23
],
[
56,
0
],
[
0,
59
],
[
49,
68
],
[
69,
100
],
[
57,
46
],
[
97,
46
],
[
43,
15
]
],
"solution": [
0,
5,
4,
3,
6,
8,
2,
1,
7,
0
],
"obj": 330.0013999938965,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 9,
"nodes": [
{
"id": "A",
"x": 100,
"y": 73
},
{
"id": "B",
"x": 73,
"y": 23
},
{
"id": "C",
"x": 56,
"y": 0
},
{
"id": "D",
"x": 0,
"y": 59
},
{
"id": "E",
"x": 49,
"y": 68
},
{
"id": "F",
"x": 69,
"y": 100
},
{
"id": "G",
"x": 57,
"y": 46
},
{
"id": "H",
"x": 97,
"y": 46
},
{
"id": "I",
"x": 43,
"y": 15
}
],
"depot": "A"
},
"solution_variant": [
"A",
"F",
"E",
"D",
"G",
"I",
"C",
"B",
"H",
"A"
],
"context_index": 14,
"input_format": "csv",
"input_index_base": "names"
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "My friend is organizing a small tour: kick off at home, play each venue once (no repeats), and finish back at home. The choice comes down to the order of shows β the best route is the one that keeps overall travel to a minimum, which you can calculate by adding the distance between every consecutive stop in the itinerary, plus the trips from home to the first stop and from the last stop back home. The concrete details for the venues are included below.\n\n# total_locations=6\n# home_base_id=1\nlocation_id,x_coord,y_coord\n1,26,100\n2,100,58\n3,78,56\n4,37,36\n5,30,0\n6,0,17\n\nOh β and when you reply, please use this simple JSON layout for the route:\n\n{\n \"solution\": [depot_id, location_id, ..., depot_id]\n}\n\nThink of it like a little form: \"solution\" is the ordered list of stops starting and ending at your home base. The placeholder depot_id marks the home/depot, each location_id stands for a venue on the tour, and the \"...\" just means the rest of the stops in order. This 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": [
[
26,
100
],
[
100,
58
],
[
78,
56
],
[
37,
36
],
[
30,
0
],
[
0,
17
]
],
"solution": [
0,
1,
2,
3,
4,
5,
0
],
"obj": 310.9300117492676,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 6,
"nodes": [
{
"id": 1,
"x": 26,
"y": 100
},
{
"id": 2,
"x": 100,
"y": 58
},
{
"id": 3,
"x": 78,
"y": 56
},
{
"id": 4,
"x": 37,
"y": 36
},
{
"id": 5,
"x": 30,
"y": 0
},
{
"id": 6,
"x": 0,
"y": 17
}
],
"depot": 1
},
"solution_variant": [
1,
2,
3,
4,
5,
6,
1
],
"context_index": 15,
"input_format": "csv",
"input_index_base": 1
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "Recently the inspectorβs rounds were being reorganized: the plan is to leave the municipal office, visit each property exactly once for inspection, and end the day back at the office. The trick is picking the order so the total distance traveled is as small as possible β total distance equals the sum of distances between each stop in the chosen order. No revisits and no omissions are allowed. The concrete site details and coordinates are listed below.\n\nThere are 5 locations in total, with the municipal office identified as 1.\n\n| location_id | coord_x | coord_y |\n|---|---|---|\n| 1 | 49 | 100 |\n| 2 | 0 | 100 |\n| 3 | 33 | 100 |\n| 4 | 100 | 0 |\n| 5 | 0 | 6 |\n\nEnsure the tour starts and ends at 1 and covers all 5 locations.\n\nI'll return the planned route in a small JSON sketch so it's easy to parse β something like this is the shape I expect you to use when giving me the route:\n\n{\n \"solution\": [\"office_id\", \"property_id\", \"...\", \"office_id\"]\n}\n\nIn that little example, \"solution\" is the ordered list of stops: start with the office (the depot), list each property once in the inspection order, and finish back at the office. It's just a sketch of the shape I want, not the actual route.\n\nPlease be sure 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": [
[
49,
100
],
[
0,
100
],
[
33,
100
],
[
100,
0
],
[
0,
6
]
],
"solution": [
0,
2,
1,
4,
3,
0
],
"obj": 355.4340133666992,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 5,
"nodes": [
{
"id": 1,
"x": 49,
"y": 100
},
{
"id": 2,
"x": 0,
"y": 100
},
{
"id": 3,
"x": 33,
"y": 100
},
{
"id": 4,
"x": 100,
"y": 0
},
{
"id": 5,
"x": 0,
"y": 6
}
],
"depot": 1
},
"solution_variant": [
1,
3,
2,
5,
4,
1
],
"context_index": 16,
"input_format": "markdown_table",
"input_index_base": 1
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "Thereβs a charity van that needs to go out, call on every donor once, and come back to the warehouse at the end of the day. The decision is about the order of visits: the aim is to make the route as short as possible β simply add up the length of each leg between stops, including the final trip home β and itβs important that no donor is left out or visited more than once. The concrete pickup details and location info are shown below.\n\n{\n \"total_stops\": 5,\n \"nodes\": [\n {\n \"stop_id\": \"A\",\n \"x_coord\": 65,\n \"y_coord\": 50\n },\n {\n \"stop_id\": \"B\",\n \"x_coord\": 100,\n \"y_coord\": 100\n },\n {\n \"stop_id\": \"C\",\n \"x_coord\": 0,\n \"y_coord\": 0\n },\n {\n \"stop_id\": \"D\",\n \"x_coord\": 41,\n \"y_coord\": 0\n },\n {\n \"stop_id\": \"E\",\n \"x_coord\": 16,\n \"y_coord\": 4\n }\n ],\n \"warehouse_stop_id\": \"A\"\n}\n\nOh β one more thing: when you send the tour back, it helps to put it in a tiny JSON snippet like this so it's clear and easy to read.\n\n{\n \"solution\": [\"warehouse_id\", \"donor_id\", \"...\", \"warehouse_id\"]\n}\n\nJust so it's clear: \"solution\" should be a list that starts at the warehouse, shows each donor in the order the van will visit them, and ends back at the warehouse. The strings above are placeholders β replace them with the actual IDs from the instance; this is just a sketch of the shape I expect, not the real answer.\n\nPlease use the identifiers exactly as they appear in 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": [
[
65,
50
],
[
100,
100
],
[
0,
0
],
[
41,
0
],
[
16,
4
]
],
"solution": [
0,
1,
2,
4,
3,
0
],
"obj": 299.7262325286865,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 5,
"nodes": [
{
"id": "A",
"x": 65,
"y": 50
},
{
"id": "B",
"x": 100,
"y": 100
},
{
"id": "C",
"x": 0,
"y": 0
},
{
"id": "D",
"x": 41,
"y": 0
},
{
"id": "E",
"x": 16,
"y": 4
}
],
"depot": "A"
},
"solution_variant": [
"A",
"B",
"C",
"E",
"D",
"A"
],
"context_index": 17,
"input_format": "json",
"input_index_base": "names"
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "On a typical scouting morning the antique buyer wants a tidy route: depart the showroom, hit all the listed prospects one after another without repeating any, then return to the showroom. The choice is the order of the visits, and the measure of success is how small the total miles driven turns out to be β calculated by adding up the miles between every pair of consecutive stops along the loop (final leg back included). Every location must be checked once and only once. The exact stops and distances appear below.\n\nBelow are 6 locations, with the showroom labeled A.\nLocation A: coordinates (100, 88) in miles.\nLocation B: coordinates (97, 49) in miles.\nLocation C: coordinates (4, 0) in miles.\nLocation D: coordinates (68, 36) in miles.\nLocation E: coordinates (0, 100) in miles.\nLocation F: coordinates (100, 16) in miles.\nThe antique buyer needs a loop visiting each of the 6 locations once and returning to showroom A.\n\nWhen you send the route back, just use a little JSON object so it's easy to parse. Something like this:\n\n{\n \"solution\": [showroom_id, prospect_id, ..., showroom_id]\n}\n\nThe \"solution\" array is simply the visit order: start at the showroom (showroom_id), list each prospect in the order you plan to visit them (each prospect_id), and finish back at the showroom. This is only a sketch of the shape I expect, not the actual route.\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": [
[
100,
88
],
[
97,
49
],
[
4,
0
],
[
68,
36
],
[
0,
100
],
[
100,
16
]
],
"solution": [
0,
1,
5,
3,
2,
4,
0
],
"obj": 384.21485900878906,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 6,
"nodes": [
{
"id": "A",
"x": 100,
"y": 88
},
{
"id": "B",
"x": 97,
"y": 49
},
{
"id": "C",
"x": 4,
"y": 0
},
{
"id": "D",
"x": 68,
"y": 36
},
{
"id": "E",
"x": 0,
"y": 100
},
{
"id": "F",
"x": 100,
"y": 16
}
],
"depot": "A"
},
"solution_variant": [
"A",
"B",
"F",
"D",
"C",
"E",
"A"
],
"context_index": 18,
"input_format": "nl",
"input_index_base": "names"
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "Someone managing the milk subscriptions needs a driving plan that starts at the depot, hits every household once, and then returns to where it started. The decision is really about ordering the stops so the total distance driven β obtained by adding up the lengths of all the legs between stops including the last one home β is as low as possible, while never skipping or repeating a delivery. The full set of location details appears below.\n\n# total_locations_count=9\n# depot_node_id=0\nlocation_id,coord_x,coord_y\n0,19,100\n1,55,68\n2,0,72\n3,89,0\n4,28,99\n5,89,0\n6,100,70\n7,14,0\n8,46,21\n\nWhen you send the route back, just use this relaxed JSON shape so it's easy to parse:\n\n{\n \"solution\": [milk_depot_id, household_id, ..., milk_depot_id]\n}\n\nThink of \"solution\" as the ordered list of stops: it should start at the depot, list every household once in the order you'll drive to them, and finish back at the depot. The names like milk_depot_id and household_id are placeholders showing where to drop in the actual identifiers from the instance; the \"...\" just means \"and so on\" for the rest of the stops. This is only a sketch of the expected shape, not the actual answer.\n\nPlease use the 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": [
[
19,
100
],
[
55,
68
],
[
0,
72
],
[
89,
0
],
[
28,
99
],
[
89,
0
],
[
100,
70
],
[
14,
0
],
[
46,
21
]
],
"solution": [
0,
2,
7,
8,
5,
3,
6,
1,
4,
0
],
"obj": 359.3840217590332,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 9,
"nodes": [
{
"id": 0,
"x": 19,
"y": 100
},
{
"id": 1,
"x": 55,
"y": 68
},
{
"id": 2,
"x": 0,
"y": 72
},
{
"id": 3,
"x": 89,
"y": 0
},
{
"id": 4,
"x": 28,
"y": 99
},
{
"id": 5,
"x": 89,
"y": 0
},
{
"id": 6,
"x": 100,
"y": 70
},
{
"id": 7,
"x": 14,
"y": 0
},
{
"id": 8,
"x": 46,
"y": 21
}
],
"depot": 0
},
"solution_variant": [
0,
2,
7,
8,
5,
3,
6,
1,
4,
0
],
"context_index": 19,
"input_format": "csv",
"input_index_base": 0
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "On a busy day the van should leave the shop, swing through every scheduled driveway once, and finish back where it started. The decision is simply which sequence to follow; the best sequence is the one that leads to the lowest overall driving distance, calculated by summing each segment between stops and the return trip. Each address must be visited one time only. The specific addresses and coordinates appear below.\n\nThere are 6 locations to include in the closed route, with the shop depot identified as 0.\nStop 0 is located at coordinates (89, 0).\nStop 1 is located at coordinates (74, 88).\nStop 2 is located at coordinates (89, 37).\nStop 3 is located at coordinates (100, 24).\nStop 4 is located at coordinates (14, 37).\nStop 5 is located at coordinates (0, 100).\nUse these 6 locations, starting and ending at 0, to determine the sequence that minimizes the total driving distance.\n\nWhen you send back the chosen sequence, just pop it into this little JSON sketch so it's easy to read and use:\n\n{\n \"solution\": [depot_id, location_id, ..., depot_id]\n}\n\n\"solution\" is just the ordered list of stop IDs: start at the depot, visit each driveway once, and finish back at the depot. Think of it like filling in a simple checklist of IDs in the order the van will drive them. This JSON block is only the shape I want β it's a template, not the actual route.\n\nAll identifiers must be 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": [
[
89,
0
],
[
74,
88
],
[
89,
37
],
[
100,
24
],
[
14,
37
],
[
0,
100
]
],
"solution": [
0,
3,
2,
1,
5,
4,
0
],
"obj": 319.72388648986816,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 6,
"nodes": [
{
"id": 0,
"x": 89,
"y": 0
},
{
"id": 1,
"x": 74,
"y": 88
},
{
"id": 2,
"x": 89,
"y": 37
},
{
"id": 3,
"x": 100,
"y": 24
},
{
"id": 4,
"x": 14,
"y": 37
},
{
"id": 5,
"x": 0,
"y": 100
}
],
"depot": 0
},
"solution_variant": [
0,
3,
2,
1,
5,
4,
0
],
"context_index": 20,
"input_format": "nl",
"input_index_base": 0
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "Weβve got a weekday routine where pickups start at my house, go to each activity drop-off one time only, and then come back home, and I need to choose the order of visits. A good plan is simply the one that makes the total miles driven for the full loop as small as possible β that total is just the sum of each leg of the trip β and no location can be left out or visited twice. Iβll show the exact places and numbers down below.\n\n{\n \"total_locations\": 7,\n \"nodes\": [\n {\n \"location_id\": 0,\n \"x_coordinate\": 22,\n \"y_coordinate\": 18\n },\n {\n \"location_id\": 1,\n \"x_coordinate\": 100,\n \"y_coordinate\": 22\n },\n {\n \"location_id\": 2,\n \"x_coordinate\": 0,\n \"y_coordinate\": 0\n },\n {\n \"location_id\": 3,\n \"x_coordinate\": 64,\n \"y_coordinate\": 33\n },\n {\n \"location_id\": 4,\n \"x_coordinate\": 61,\n \"y_coordinate\": 18\n },\n {\n \"location_id\": 5,\n \"x_coordinate\": 16,\n \"y_coordinate\": 28\n },\n {\n \"location_id\": 6,\n \"x_coordinate\": 71,\n \"y_coordinate\": 100\n }\n ],\n \"home_node_id\": 0\n}\n\nAlso, when you give me the route, please use this simple JSON layout so it's easy to read and reuse:\n\n{\n \"solution\": [\"home_id\", \"stop_id\", ..., \"home_id\"]\n}\n\nThis just means \"solution\" is a list showing the order of visits: start at your house (home_id), go to each stop once (stop_id entries), and come back home. The \"...\" is just standing in for the rest of the stops in order. It's a sketch of the shape I need, not the actual route.\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": [
[
22,
18
],
[
100,
22
],
[
0,
0
],
[
64,
33
],
[
61,
18
],
[
16,
28
],
[
71,
100
]
],
"solution": [
0,
2,
5,
6,
1,
3,
4,
0
],
"obj": 326.43460273742676,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 7,
"nodes": [
{
"id": 0,
"x": 22,
"y": 18
},
{
"id": 1,
"x": 100,
"y": 22
},
{
"id": 2,
"x": 0,
"y": 0
},
{
"id": 3,
"x": 64,
"y": 33
},
{
"id": 4,
"x": 61,
"y": 18
},
{
"id": 5,
"x": 16,
"y": 28
},
{
"id": 6,
"x": 71,
"y": 100
}
],
"depot": 0
},
"solution_variant": [
0,
2,
5,
6,
1,
3,
4,
0
],
"context_index": 21,
"input_format": "json",
"input_index_base": 0
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "Thereβs a warehouse that needs one smooth loop β the driver departs, hits every delivery point once, then returns to where they started β and the aim is to make that loop as short as possible. Concretely, thatβs done by summing the distances between each pair of successive stops in the chosen route, including the final leg home, and choosing the route with the least total miles. Every address must be called exactly once. The concrete stops and distances appear below.\n\nThere are 7 stops listed below, with the warehouse identified as 1.\n\n| stop_id | x_coord | y_coord |\n|---|---|---|\n| 1 | 2 | 14 |\n| 2 | 60 | 100 |\n| 3 | 58 | 80 |\n| 4 | 0 | 0 |\n| 5 | 100 | 39 |\n| 6 | 44 | 92 |\n| 7 | 96 | 72 |\n\nThe tour must visit every stop exactly once and return to 1.\n\nAlso, when you send the route back, please use this little JSON sketch so it's easy to read and check:\n\n{\n \"solution\": [warehouse_id, stop_id, ..., warehouse_id]\n}\n\nHere \"solution\" is just the ordered list of stops: start at the warehouse (warehouse_id), visit each delivery stop once (each stop_id), and come back to the warehouse at the end. Think of it like filling out a short form: put the starting place first, then the stops in the order the driver will visit them, and finish with the starting place again.\n\nThis JSON is only a sketch of the expected shape β not the actual route answer.\n\nPlease use the exact identifiers given in the instance input β do not rename them or invent 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": [
[
2,
14
],
[
60,
100
],
[
58,
80
],
[
0,
0
],
[
100,
39
],
[
44,
92
],
[
96,
72
]
],
"solution": [
0,
3,
4,
6,
2,
1,
5,
0
],
"obj": 320.12980461120605,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 7,
"nodes": [
{
"id": 1,
"x": 2,
"y": 14
},
{
"id": 2,
"x": 60,
"y": 100
},
{
"id": 3,
"x": 58,
"y": 80
},
{
"id": 4,
"x": 0,
"y": 0
},
{
"id": 5,
"x": 100,
"y": 39
},
{
"id": 6,
"x": 44,
"y": 92
},
{
"id": 7,
"x": 96,
"y": 72
}
],
"depot": 1
},
"solution_variant": [
1,
4,
5,
7,
3,
2,
6,
1
],
"context_index": 22,
"input_format": "markdown_table",
"input_index_base": 1
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "Every week the salon schedules home appointments, and the task is to plan a trip that starts at the salon, stops at every clientβs home one time only, and ends at the salon. The ordering matters because a better order means fewer miles on the road β total driving distance is found by adding together the lengths of all the legs of the trip, including the last leg back to the salon. The concrete client details and coordinates are listed below.\n\n{\n \"total_locations_count\": 7,\n \"nodes\": [\n {\n \"stop_id\": 0,\n \"location_longitude_like\": 40,\n \"location_latitude_like\": 100\n },\n {\n \"stop_id\": 1,\n \"location_longitude_like\": 99,\n \"location_latitude_like\": 1\n },\n {\n \"stop_id\": 2,\n \"location_longitude_like\": 50,\n \"location_latitude_like\": 91\n },\n {\n \"stop_id\": 3,\n \"location_longitude_like\": 0,\n \"location_latitude_like\": 0\n },\n {\n \"stop_id\": 4,\n \"location_longitude_like\": 45,\n \"location_latitude_like\": 54\n },\n {\n \"stop_id\": 5,\n \"location_longitude_like\": 70,\n \"location_latitude_like\": 88\n },\n {\n \"stop_id\": 6,\n \"location_longitude_like\": 100,\n \"location_latitude_like\": 99\n }\n ],\n \"salon_node_id\": 0\n}\n\nAlso, when you send the route back, please stick to a simple JSON layout so itβs easy to read and plug in. Something like this:\n\n{\n \"solution\": [salon_id, client_id, ..., salon_id]\n}\n\nThis just means the \"solution\" is the trip as an ordered list: start at the salon, list each clientβs location once in the order you want to visit them, and finish back at the salon. Think of the placeholders (salon_id, client_id, ...) as showing the shape of the reply β theyβre not the real IDs.\n\nThe JSON above is only a sketch of the expected shape, not the actual route.\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": [
[
40,
100
],
[
99,
1
],
[
50,
91
],
[
0,
0
],
[
45,
54
],
[
70,
88
],
[
100,
99
]
],
"solution": [
0,
2,
5,
6,
1,
3,
4,
0
],
"obj": 379.2038049697876,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 7,
"nodes": [
{
"id": 0,
"x": 40,
"y": 100
},
{
"id": 1,
"x": 99,
"y": 1
},
{
"id": 2,
"x": 50,
"y": 91
},
{
"id": 3,
"x": 0,
"y": 0
},
{
"id": 4,
"x": 45,
"y": 54
},
{
"id": 5,
"x": 70,
"y": 88
},
{
"id": 6,
"x": 100,
"y": 99
}
],
"depot": 0
},
"solution_variant": [
0,
2,
5,
6,
1,
3,
4,
0
],
"context_index": 23,
"input_format": "json",
"input_index_base": 0
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "A rep needs a plan that begins at the office, touches every clinic on the list exactly once, and returns to the office at the end. The decision is the order to visit the clinics so the day isnβt wasted on extra driving. The way to compare plans is straightforward: add up the distance of every leg in the proposed route, including the trip back to the office, and prefer the route with the smallest total. Nothing can be skipped or repeated, and the exact clinic locations and distances are shown below.\n\n# total_locations=10\n# office_id=0\nlocation_id,x_coordinate,y_coordinate\n0,54,100\n1,14,83\n2,71,100\n3,22,26\n4,23,54\n5,11,83\n6,100,0\n7,72,23\n8,75,76\n9,0,79\n\nOh, and when you send the route back, you can just follow this simple JSON shape so it's easy to read and check:\n\n{\n \"solution\": [office_id, clinic_id, ..., office_id]\n}\n\nThink of it like a little form: \"solution\" is the ordered list of stops. The first and last entry are the office, and everything between is the clinics in the order you plan to visit them. This is just the expected shape β not the actual route itself.\n\nPlease make sure to 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": [
[
54,
100
],
[
14,
83
],
[
71,
100
],
[
22,
26
],
[
23,
54
],
[
11,
83
],
[
100,
0
],
[
72,
23
],
[
75,
76
],
[
0,
79
]
],
"solution": [
0,
1,
5,
9,
4,
3,
7,
6,
8,
2,
0
],
"obj": 327.81831455230713,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 10,
"nodes": [
{
"id": 0,
"x": 54,
"y": 100
},
{
"id": 1,
"x": 14,
"y": 83
},
{
"id": 2,
"x": 71,
"y": 100
},
{
"id": 3,
"x": 22,
"y": 26
},
{
"id": 4,
"x": 23,
"y": 54
},
{
"id": 5,
"x": 11,
"y": 83
},
{
"id": 6,
"x": 100,
"y": 0
},
{
"id": 7,
"x": 72,
"y": 23
},
{
"id": 8,
"x": 75,
"y": 76
},
{
"id": 9,
"x": 0,
"y": 79
}
],
"depot": 0
},
"solution_variant": [
0,
1,
5,
9,
4,
3,
7,
6,
8,
2,
0
],
"context_index": 24,
"input_format": "csv",
"input_index_base": 0
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "Iβm planning a run to pick up a pile of antiques: start at the storage unit, swing by every sellerβs address one time only, and come back to the storage unit at the end. The decision is the order to visit those seller addresses; a better order means less driving overall, which is measured by adding up the miles (or minutes) between each stop on the loop. Nothing can be skipped or visited twice, and the exact addresses and map points are shown below.\n\n{\n \"total_locations\": 7,\n \"nodes\": [\n {\n \"stop_node_id\": 1,\n \"longitude_like_coordinate\": 0,\n \"latitude_like_coordinate\": 61\n },\n {\n \"stop_node_id\": 2,\n \"longitude_like_coordinate\": 78,\n \"latitude_like_coordinate\": 100\n },\n {\n \"stop_node_id\": 3,\n \"longitude_like_coordinate\": 7,\n \"latitude_like_coordinate\": 12\n },\n {\n \"stop_node_id\": 4,\n \"longitude_like_coordinate\": 47,\n \"latitude_like_coordinate\": 0\n },\n {\n \"stop_node_id\": 5,\n \"longitude_like_coordinate\": 100,\n \"latitude_like_coordinate\": 54\n },\n {\n \"stop_node_id\": 6,\n \"longitude_like_coordinate\": 23,\n \"latitude_like_coordinate\": 92\n },\n {\n \"stop_node_id\": 7,\n \"longitude_like_coordinate\": 43,\n \"latitude_like_coordinate\": 73\n }\n ],\n \"storage_unit_node_id\": 1\n}\n\nOh, and when you send the answer back, just stick to this simple JSON layout so it's easy to read and check:\n\n{\n \"solution\": [storage_unit_id, seller_id, ..., storage_unit_id]\n}\n\nHere \"solution\" is the loop: start at the storage unit placeholder, list each seller placeholder in the order you visit them, and end back at the storage unit placeholder. Think of it like filling in the blanks on a route card β just the sequence of stop IDs, nothing else.\n\nQuick reminder: 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": [
[
0,
61
],
[
78,
100
],
[
7,
12
],
[
47,
0
],
[
100,
54
],
[
23,
92
],
[
43,
73
]
],
"solution": [
0,
2,
3,
4,
1,
6,
5,
0
],
"obj": 328.3034420013428,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 7,
"nodes": [
{
"id": 1,
"x": 0,
"y": 61
},
{
"id": 2,
"x": 78,
"y": 100
},
{
"id": 3,
"x": 7,
"y": 12
},
{
"id": 4,
"x": 47,
"y": 0
},
{
"id": 5,
"x": 100,
"y": 54
},
{
"id": 6,
"x": 23,
"y": 92
},
{
"id": 7,
"x": 43,
"y": 73
}
],
"depot": 1
},
"solution_variant": [
1,
3,
4,
5,
2,
7,
6,
1
],
"context_index": 25,
"input_format": "json",
"input_index_base": 1
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "Iβm picturing the community kitchen loading up meals and sending a driver out to hit every recipientβs house once before coming back to the kitchen β the question is what order to visit the stops so the whole trip covers as few miles as possible. In practice that means choosing a route that starts at the kitchen, goes to every address exactly one time (no skipping, no doubling back), then returns to the kitchen, and the βscoreβ of a route is just the total distance you get by adding up each stretch between consecutive stops (including the final leg home). The specific addresses and distances are shown below.\n\n{\n \"total_stops\": 5,\n \"nodes\": [\n {\n \"stop_id\": 0,\n \"stop_x\": 93,\n \"stop_y\": 0\n },\n {\n \"stop_id\": 1,\n \"stop_x\": 0,\n \"stop_y\": 82\n },\n {\n \"stop_id\": 2,\n \"stop_x\": 100,\n \"stop_y\": 63\n },\n {\n \"stop_id\": 3,\n \"stop_x\": 41,\n \"stop_y\": 75\n },\n {\n \"stop_id\": 4,\n \"stop_x\": 78,\n \"stop_y\": 100\n }\n ],\n \"kitchen_node\": 0\n}\n\nOh, and when you reply, just toss the route into a tiny JSON snippet like this β it's just the shape I expect:\n\n{\n \"solution\": [kitchen_id, recipient_id, ..., kitchen_id]\n}\n\nThis \"solution\" array is the order the driver will visit stops: start at the kitchen, go through each recipient once, and come back to the kitchen. The first and last entries are the kitchen, and the ... just means the other stops go in between. It's just a sketch of the format β not your final answer.\n\nImportant: when you fill in that JSON, use the identifiers exactly as they appear in the instance input β don't rename them or make up 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": [
[
93,
0
],
[
0,
82
],
[
100,
63
],
[
41,
75
],
[
78,
100
]
],
"solution": [
0,
1,
3,
4,
2,
0
],
"obj": 316.6695785522461,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 5,
"nodes": [
{
"id": 0,
"x": 93,
"y": 0
},
{
"id": 1,
"x": 0,
"y": 82
},
{
"id": 2,
"x": 100,
"y": 63
},
{
"id": 3,
"x": 41,
"y": 75
},
{
"id": 4,
"x": 78,
"y": 100
}
],
"depot": 0
},
"solution_variant": [
0,
1,
3,
4,
2,
0
],
"context_index": 26,
"input_format": "json",
"input_index_base": 0
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "Someone from the moving crew put together a list of pickups and the truck has to handle them all in a single tour: depart the depot, visit each pickup location one time, and return to the depot. The task is picking the visiting order. A preferred order is the one that keeps the total driving to a minimum β total distance equals the sum of distances between each successive stop plus the final leg home. No duplicates, no skips. The exact points and coordinates are given below.\n\nThere are 6 distinct stops; begin and end the tour at depot 1.\n\n| location_node_id | x_coordinate | y_coordinate |\n|---|---|---|\n| 1 | 0 | 30 |\n| 2 | 100 | 49 |\n| 3 | 91 | 100 |\n| 4 | 91 | 6 |\n| 5 | 91 | 62 |\n| 6 | 96 | 0 |\n\nConfirm the tour visits all 6 stops and returns to 1.\n\nAlso, when you give the answer, please stick to this simple JSON layout:\n\n{\n \"solution\": [depot_id, location_id, ..., depot_id]\n}\n\nThink of \"solution\" as just the list of stops in order: start at the depot, go to each pickup once, and come back to the depot. The words depot_id and location_id above are placeholders β you'll replace them with the actual IDs from the instance when you provide the real route. This JSON is just a sketch of the shape I need, not the final tour.\n\nPlease make sure to 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": [
[
0,
30
],
[
100,
49
],
[
91,
100
],
[
91,
6
],
[
91,
62
],
[
96,
0
]
],
"solution": [
0,
2,
4,
1,
5,
3,
0
],
"obj": 319.70479822158813,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 6,
"nodes": [
{
"id": 1,
"x": 0,
"y": 30
},
{
"id": 2,
"x": 100,
"y": 49
},
{
"id": 3,
"x": 91,
"y": 100
},
{
"id": 4,
"x": 91,
"y": 6
},
{
"id": 5,
"x": 91,
"y": 62
},
{
"id": 6,
"x": 96,
"y": 0
}
],
"depot": 1
},
"solution_variant": [
1,
3,
5,
2,
6,
4,
1
],
"context_index": 27,
"input_format": "markdown_table",
"input_index_base": 1
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "In our town the distributor needs a simple route plan: the driver leaves the regional warehouse, goes to each shop one time only, and comes back to the warehouse when finished. What separates a good plan from a bad one is how much driving it forces β compare plans by adding together the distances from stop to stop (and the final leg home); the lower that sum, the better the route β and itβs mandatory that every retail outlet is served once and only once. The exact stops and coordinates are shown below.\n\nThe tour includes 5 stops and begins and ends at warehouse 1.\nStop 1: longitude 72, latitude 45.\nStop 2: longitude 71, latitude 100.\nStop 3: longitude 100, latitude 91.\nStop 4: longitude 95, latitude 27.\nStop 5: longitude 0, latitude 0.\nEach retail outlet must be visited once and only once, and the driver returns to 1.\n\nIf you want to send the route back to me, just use this little JSON sketch for the shape of the answer:\n\n{\n \"solution\": [warehouse_id, shop_id, ..., warehouse_id]\n}\n\nThink of \"solution\" as the ordered list of stops β you start at the warehouse (the first placeholder), go to each shop once (the middle placeholders), and then come back to the warehouse (the last placeholder). This is just the expected shape of the reply, not the actual route β you'll replace those placeholders with the real IDs from the instance.\n\nPlease be sure to 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": [
[
72,
45
],
[
71,
100
],
[
100,
91
],
[
95,
27
],
[
0,
0
]
],
"solution": [
0,
3,
2,
1,
4,
0
],
"obj": 331.3132152557373,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 5,
"nodes": [
{
"id": 1,
"x": 72,
"y": 45
},
{
"id": 2,
"x": 71,
"y": 100
},
{
"id": 3,
"x": 100,
"y": 91
},
{
"id": 4,
"x": 95,
"y": 27
},
{
"id": 5,
"x": 0,
"y": 0
}
],
"depot": 1
},
"solution_variant": [
1,
4,
3,
2,
5,
1
],
"context_index": 28,
"input_format": "nl",
"input_index_base": 1
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "Thereβs a daily juggling act at the pest control office: a technician has a stack of client addresses and needs to visit each home exactly once, starting from the office and finishing back there. The trick is picking the order of visits so the van covers the least distance overall β calculate that by adding the length of each leg of the journey in the chosen order, including the return leg. No house can be left out or checked twice. The concrete details will be shown below.\n\n# total_stops=9\n# office_node_id=A\nlocation_id,x_coordinate,y_coordinate\nA,82,51\nB,84,10\nC,90,44\nD,17,21\nE,95,20\nF,60,81\nG,95,79\nH,100,100\nI,0,0\n\nAlso β when you send the route back, please follow this little JSON shape so it's easy to read and check:\n\n{\n \"solution\": [office_id, house_id, ..., office_id]\n}\n\nThis just means \"solution\" holds the ordered list of stops: start at the office, visit each house once in the chosen order, and return to the office at the end. Think of it like filling in a simple itinerary form β the array is the visit sequence. It's just a sketch of the shape I need, not the actual route.\n\nPlease make sure you use the exact identifiers from the instance input β don't rename them or invent new ones.\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": [
[
82,
51
],
[
84,
10
],
[
90,
44
],
[
17,
21
],
[
95,
20
],
[
60,
81
],
[
95,
79
],
[
100,
100
],
[
0,
0
]
],
"solution": [
0,
2,
4,
1,
8,
3,
5,
7,
6,
0
],
"obj": 332.1814317703247,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 9,
"nodes": [
{
"id": "A",
"x": 82,
"y": 51
},
{
"id": "B",
"x": 84,
"y": 10
},
{
"id": "C",
"x": 90,
"y": 44
},
{
"id": "D",
"x": 17,
"y": 21
},
{
"id": "E",
"x": 95,
"y": 20
},
{
"id": "F",
"x": 60,
"y": 81
},
{
"id": "G",
"x": 95,
"y": 79
},
{
"id": "H",
"x": 100,
"y": 100
},
{
"id": "I",
"x": 0,
"y": 0
}
],
"depot": "A"
},
"solution_variant": [
"A",
"C",
"E",
"B",
"I",
"D",
"F",
"H",
"G",
"A"
],
"context_index": 29,
"input_format": "csv",
"input_index_base": "names"
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "Many people think of delivery as just driving until the jobβs done, but this press wants the truck to visit every newsstand exactly once and return, using the least total miles. The decision is the visiting order, and the performance is judged by adding up the distances along that loop (stop-to-stop and back to the press); smaller totals are better, and no stand may be skipped or doubled. The specific instance information follows below.\n\nThere are 6 locations, with the press at 1.\nLocation 1 is at (0, 0).\nLocation 2 is at (38, 42).\nLocation 3 is at (41, 56).\nLocation 4 is at (66, 20).\nLocation 5 is at (100, 100).\nLocation 6 is at (3, 19).\nList each of the 6 locations once so the route starts and ends at 1 and the total loop miles can be computed.\n\nAlso, when you send the visiting order back, just use a tiny JSON snippet like this so it's easy to parse:\n\n{\n \"solution\": [depot_id, location_id, ..., depot_id]\n}\n\nThis simply shows the sequence of stops in order β the array is the order the truck visits each newsstand, starting and ending at the depot. Think of it as filling in the blanks with the labels you were given for the depot and each stand. This JSON is just a sketch of the shape I need, not your actual answer.\n\nPlease be sure to use the exact identifiers from the instance input β donβt rename them or invent 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": [
[
0,
0
],
[
38,
42
],
[
41,
56
],
[
66,
20
],
[
100,
100
],
[
3,
19
]
],
"solution": [
0,
3,
4,
2,
1,
5,
0
],
"obj": 304.9232769012451,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 6,
"nodes": [
{
"id": 1,
"x": 0,
"y": 0
},
{
"id": 2,
"x": 38,
"y": 42
},
{
"id": 3,
"x": 41,
"y": 56
},
{
"id": 4,
"x": 66,
"y": 20
},
{
"id": 5,
"x": 100,
"y": 100
},
{
"id": 6,
"x": 3,
"y": 19
}
],
"depot": 1
},
"solution_variant": [
1,
4,
5,
3,
2,
6,
1
],
"context_index": 30,
"input_format": "nl",
"input_index_base": 1
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "There's an ice cream truck driver staring at a map deciding the best sequence to visit a bunch of parks: the truck must pull out of the garage, stop at every park one time only, and end the day back at the garage. What counts as βbestβ is the route that uses the least amount of driving β calculated by adding the distances between each stop along the whole loop. The specific parks and distances are shown below.\n\n# total_locations_including_garage=10\n# garage_location_id=1\nlocation_id,map_x_coordinate,map_y_coordinate\n1,21,41\n2,66,30\n3,64,51\n4,7,23\n5,0,100\n6,45,52\n7,93,68\n8,71,9\n9,74,14\n10,100,0\n\nOh, and if you want to hand me the route (or if I return one), please follow this little JSON layout so everything stays neat and machine-friendly:\n\n{\n \"solution\": [depot_id, location_id, ..., depot_id]\n}\n\nThink of \"solution\" as a simple list that shows the loop: the first item is the depot (the garage), then every park you visit in order, and the last item is the depot again to show the truck came home. This is just the shape I expect β a sketch, not the actual answer.\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": [
[
21,
41
],
[
66,
30
],
[
64,
51
],
[
7,
23
],
[
0,
100
],
[
45,
52
],
[
93,
68
],
[
71,
9
],
[
74,
14
],
[
100,
0
]
],
"solution": [
0,
3,
4,
6,
9,
7,
8,
1,
2,
5,
0
],
"obj": 387.43781661987305,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 10,
"nodes": [
{
"id": 1,
"x": 21,
"y": 41
},
{
"id": 2,
"x": 66,
"y": 30
},
{
"id": 3,
"x": 64,
"y": 51
},
{
"id": 4,
"x": 7,
"y": 23
},
{
"id": 5,
"x": 0,
"y": 100
},
{
"id": 6,
"x": 45,
"y": 52
},
{
"id": 7,
"x": 93,
"y": 68
},
{
"id": 8,
"x": 71,
"y": 9
},
{
"id": 9,
"x": 74,
"y": 14
},
{
"id": 10,
"x": 100,
"y": 0
}
],
"depot": 1
},
"solution_variant": [
1,
4,
5,
7,
10,
8,
9,
2,
3,
6,
1
],
"context_index": 31,
"input_format": "csv",
"input_index_base": 1
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "Iβve been helping the city figure out the inspectorβs day: start at city hall, swing by every construction site once (no skipping, no double-checking), and come back to city hall at the end. The choice to make is the order of the stops so the inspector doesnβt drive more than necessary β the plan thatβs better is the one with the smallest total driving distance, which is just the sum of each drive between consecutive stops on the route. The exact sites and map are shown below.\n\nThere are 7 locations in total, and the depot (city hall) is node A.\n\n| location_id | map_x_coordinate | map_y_coordinate |\n|---|---|---|\n| A | 22 | 6 |\n| B | 16 | 93 |\n| C | 100 | 15 |\n| D | 16 | 0 |\n| E | 28 | 61 |\n| F | 100 | 0 |\n| G | 0 | 100 |\n\nI'll use these to compute the route that minimizes the total driving distance and returns to city hall.\n\nOh, and when you send the planned route back, a tiny JSON snippet like this works nicely:\n\n{\n \"solution\": [city_hall_id, site_id, ..., city_hall_id]\n}\n\n\"solution\" is just the ordered list of stops: start at city hall, visit each construction site once, and come back to city hall. The placeholders (city_hall_id, site_id, ...) are just showing the shape β you'll replace them with the actual IDs from the instance when you give the real route. This is only a sketch of the format, not the actual answer.\n\nPlease make sure 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": [
[
22,
6
],
[
16,
93
],
[
100,
15
],
[
16,
0
],
[
28,
61
],
[
100,
0
],
[
0,
100
]
],
"solution": [
0,
3,
6,
1,
4,
2,
5,
0
],
"obj": 340.06792640686035,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 7,
"nodes": [
{
"id": "A",
"x": 22,
"y": 6
},
{
"id": "B",
"x": 16,
"y": 93
},
{
"id": "C",
"x": 100,
"y": 15
},
{
"id": "D",
"x": 16,
"y": 0
},
{
"id": "E",
"x": 28,
"y": 61
},
{
"id": "F",
"x": 100,
"y": 0
},
{
"id": "G",
"x": 0,
"y": 100
}
],
"depot": "A"
},
"solution_variant": [
"A",
"D",
"G",
"B",
"E",
"C",
"F",
"A"
],
"context_index": 32,
"input_format": "markdown_table",
"input_index_base": "names"
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "On a typical morning the plan is to drive out from the farmhouse, check every plot one by one without doubling back, and finish at the farmhouse. Choosing the order of checks is the only decision; a smarter order trims the total driving distance, which is found by summing all the segments between stops and the final drive home. Every plot has to be included exactly once β no skipping, no repeats. The detailed plot info is provided below.\n\nThere are 7 locations in total, and the farmhouse is node 0.\n\n| plot_node_id | plot_x_coordinate | plot_y_coordinate |\n|---|---|---|\n| 0 | 0 | 100 |\n| 1 | 56 | 59 |\n| 2 | 38 | 94 |\n| 3 | 51 | 60 |\n| 4 | 8 | 91 |\n| 5 | 62 | 84 |\n| 6 | 100 | 0 |\n\nMake a closed loop visiting each plot once so all 7 locations are checked and the tour finishes back at node 0.\n\nYou can just hand me the tour in a tiny JSON blob like this β nothing fancy, just the order of stops.\n\n{\n \"solution\": [\"farmhouse_id\", \"plot_id\", ..., \"farmhouse_id\"]\n}\n\nThink of that array as the driving order: start at the farmhouse_id, go to each plot_id once in the listed order, and finish back at the farmhouse_id. Itβs just a sketch of the shape I expect β donβt treat this as the real answer, just the format to follow when you give the route.\n\nPlease make sure to use the exact identifiers from the instance input β donβt rename them or invent new ones. \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": [
[
0,
100
],
[
56,
59
],
[
38,
94
],
[
51,
60
],
[
8,
91
],
[
62,
84
],
[
100,
0
]
],
"solution": [
0,
2,
5,
6,
1,
3,
4,
0
],
"obj": 300.416531085968,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 7,
"nodes": [
{
"id": 0,
"x": 0,
"y": 100
},
{
"id": 1,
"x": 56,
"y": 59
},
{
"id": 2,
"x": 38,
"y": 94
},
{
"id": 3,
"x": 51,
"y": 60
},
{
"id": 4,
"x": 8,
"y": 91
},
{
"id": 5,
"x": 62,
"y": 84
},
{
"id": 6,
"x": 100,
"y": 0
}
],
"depot": 0
},
"solution_variant": [
0,
2,
5,
6,
1,
3,
4,
0
],
"context_index": 33,
"input_format": "markdown_table",
"input_index_base": 0
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "Thereβs a practical puzzle in the dog-walking rounds: start at the central park, stop by every clientβs house once without doubling back, and finish back at the park. What makes one plan better than another is how many miles youβll end up walking β count up the distances between the consecutive stops (and donβt forget the walk out from the park and the walk back) to get that total. The specific locations and details are shown below.\n\n{\n \"total_locations_count\": 9,\n \"nodes\": [\n {\n \"location_id\": 0,\n \"x_coordinate\": 21,\n \"y_coordinate\": 40\n },\n {\n \"location_id\": 1,\n \"x_coordinate\": 0,\n \"y_coordinate\": 100\n },\n {\n \"location_id\": 2,\n \"x_coordinate\": 61,\n \"y_coordinate\": 0\n },\n {\n \"location_id\": 3,\n \"x_coordinate\": 100,\n \"y_coordinate\": 73\n },\n {\n \"location_id\": 4,\n \"x_coordinate\": 67,\n \"y_coordinate\": 98\n },\n {\n \"location_id\": 5,\n \"x_coordinate\": 45,\n \"y_coordinate\": 8\n },\n {\n \"location_id\": 6,\n \"x_coordinate\": 99,\n \"y_coordinate\": 71\n },\n {\n \"location_id\": 7,\n \"x_coordinate\": 91,\n \"y_coordinate\": 6\n },\n {\n \"location_id\": 8,\n \"x_coordinate\": 16,\n \"y_coordinate\": 100\n }\n ],\n \"central_park_id\": 0\n}\n\nWhen you send the route back, just stick to this simple JSON layout so it's easy to read and check.\n\n{\n \"solution\": [park_id, client_id, ..., park_id]\n}\n\n\"solution\" is the list of stops in the order you'll walk them: start at the park, visit each client once, and come back to the park at the end. Think of the array as the itinerary β each entry is the identifier for that spot in the sequence. This block is just a sketch of the shape I need, not the final tour 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": [
[
21,
40
],
[
0,
100
],
[
61,
0
],
[
100,
73
],
[
67,
98
],
[
45,
8
],
[
99,
71
],
[
91,
6
],
[
16,
100
]
],
"solution": [
0,
1,
8,
4,
3,
6,
7,
2,
5,
0
],
"obj": 328.21772503852844,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 9,
"nodes": [
{
"id": 0,
"x": 21,
"y": 40
},
{
"id": 1,
"x": 0,
"y": 100
},
{
"id": 2,
"x": 61,
"y": 0
},
{
"id": 3,
"x": 100,
"y": 73
},
{
"id": 4,
"x": 67,
"y": 98
},
{
"id": 5,
"x": 45,
"y": 8
},
{
"id": 6,
"x": 99,
"y": 71
},
{
"id": 7,
"x": 91,
"y": 6
},
{
"id": 8,
"x": 16,
"y": 100
}
],
"depot": 0
},
"solution_variant": [
0,
1,
8,
4,
3,
6,
7,
2,
5,
0
],
"context_index": 34,
"input_format": "json",
"input_index_base": 0
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "At the office thereβs a map with pins for each client and the task is to draw a single loop that starts and ends at the office and visits every pin exactly once. The route thatβs preferred is the one with the smallest sum of driving distances along the loop β just add the distance between each consecutive stop in that order and include the drive back to the office. Every pin must be included and none can be repeated; the full coordinates and site list are below.\n\n{\n \"total_locations\": 10,\n \"nodes\": [\n {\n \"location_id\": 0,\n \"x_coordinate\": 0,\n \"y_coordinate\": 49\n },\n {\n \"location_id\": 1,\n \"x_coordinate\": 98,\n \"y_coordinate\": 42\n },\n {\n \"location_id\": 2,\n \"x_coordinate\": 72,\n \"y_coordinate\": 46\n },\n {\n \"location_id\": 3,\n \"x_coordinate\": 25,\n \"y_coordinate\": 38\n },\n {\n \"location_id\": 4,\n \"x_coordinate\": 39,\n \"y_coordinate\": 0\n },\n {\n \"location_id\": 5,\n \"x_coordinate\": 80,\n \"y_coordinate\": 64\n },\n {\n \"location_id\": 6,\n \"x_coordinate\": 100,\n \"y_coordinate\": 76\n },\n {\n \"location_id\": 7,\n \"x_coordinate\": 64,\n \"y_coordinate\": 57\n },\n {\n \"location_id\": 8,\n \"x_coordinate\": 7,\n \"y_coordinate\": 100\n },\n {\n \"location_id\": 9,\n \"x_coordinate\": 57,\n \"y_coordinate\": 69\n }\n ],\n \"office_node_id\": 0\n}\n\nAlso, when you send the final loop back, just drop it into this little JSON shape so itβs easy to parse:\n\n{\n \"solution\": [office_id, client_id, ..., office_id]\n}\n\n\"solution\" is the ordered list of stops: start with the office identifier, list each client once in the order youβll visit them, and end back at the office. Think of it like filling out a simple form β the JSON above is just a sketch of the shape I expect, 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": [
[
0,
49
],
[
98,
42
],
[
72,
46
],
[
25,
38
],
[
39,
0
],
[
80,
64
],
[
100,
76
],
[
64,
57
],
[
7,
100
],
[
57,
69
]
],
"solution": [
0,
3,
4,
2,
1,
6,
5,
7,
9,
8,
0
],
"obj": 349.77621364593506,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 10,
"nodes": [
{
"id": 0,
"x": 0,
"y": 49
},
{
"id": 1,
"x": 98,
"y": 42
},
{
"id": 2,
"x": 72,
"y": 46
},
{
"id": 3,
"x": 25,
"y": 38
},
{
"id": 4,
"x": 39,
"y": 0
},
{
"id": 5,
"x": 80,
"y": 64
},
{
"id": 6,
"x": 100,
"y": 76
},
{
"id": 7,
"x": 64,
"y": 57
},
{
"id": 8,
"x": 7,
"y": 100
},
{
"id": 9,
"x": 57,
"y": 69
}
],
"depot": 0
},
"solution_variant": [
0,
3,
4,
2,
1,
6,
5,
7,
9,
8,
0
],
"context_index": 35,
"input_format": "json",
"input_index_base": 0
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "On route-planning day the librarian sketches a loop that leaves the branch, stops at each book drop exactly once, and comes back to the branch β no repeats, no missed drops. The puzzle is ordering the stops so the van travels as little as possible; for any chosen order, the total distance is just the sum of the distances between each stop in the loop (include the first leg out of the branch and the final leg returning). The detailed list of drop locations and distances is given below.\n\nThere are 9 total locations in this run, and the van begins and ends its loop at A.\n\n| location_id | x_coordinate | y_coordinate |\n|---|---|---|\n| A | 77 | 13 |\n| B | 90 | 27 |\n| C | 25 | 70 |\n| D | 23 | 100 |\n| E | 56 | 33 |\n| F | 87 | 85 |\n| G | 0 | 96 |\n| H | 44 | 55 |\n| I | 100 | 0 |\n\nEnsure the list covers every location so the van visits all 9 points and returns to A.\n\nWhen you return the chosen loop, tuck it into this little JSON shape so it's easy to read and process:\n\n{\n \"solution\": [branch_id, drop_id, ..., branch_id]\n}\n\nThink of that as a simple form: \"solution\" is the ordered list of stops starting from the branch, going to each book drop once, and coming back to the branch at the end. Itβs just a sketch of the shape we want β replace those placeholders with the actual stop identifiers from the instance when you submit the answer.\n\nPlease be sure to use the identifiers exactly as they appear in the instance input β donβt rename them or invent new labels. For example: \"Valid identifiers look like plain numbers such as \"1\" or \"23\", single capital letters like \"A\" or \"B\", or a capital letter followed by digits like \"A1\" or \"X7\".\"",
"instance": [
[
77,
13
],
[
90,
27
],
[
25,
70
],
[
23,
100
],
[
56,
33
],
[
87,
85
],
[
0,
96
],
[
44,
55
],
[
100,
0
]
],
"solution": [
0,
4,
7,
2,
6,
3,
5,
1,
8,
0
],
"obj": 316.70587730407715,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 9,
"nodes": [
{
"id": "A",
"x": 77,
"y": 13
},
{
"id": "B",
"x": 90,
"y": 27
},
{
"id": "C",
"x": 25,
"y": 70
},
{
"id": "D",
"x": 23,
"y": 100
},
{
"id": "E",
"x": 56,
"y": 33
},
{
"id": "F",
"x": 87,
"y": 85
},
{
"id": "G",
"x": 0,
"y": 96
},
{
"id": "H",
"x": 44,
"y": 55
},
{
"id": "I",
"x": 100,
"y": 0
}
],
"depot": "A"
},
"solution_variant": [
"A",
"E",
"H",
"C",
"G",
"D",
"F",
"B",
"I",
"A"
],
"context_index": 36,
"input_format": "markdown_table",
"input_index_base": "names"
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "Recently a musician decided to do a looped busking circuit: start at home, visit a set list of plazas one by one, and then return home at the end of the day. The planning task is to pick the sequence of plazas so the total amount of walking is minimized β less total walking means more time playing and less tired feet. To see which sequence is best, go through the route and add up each stretch of walking (home to first stop, then between each stop, and finally back home); the route with the lowest total walking distance is the goal. All listed plazas must be visited exactly once before finishing the loop. The concrete route details are shown below.\n\n# total_locations_count=9\n# home_location_id=1\nlocation_id,x_coordinate,y_coordinate\n1,0,51\n2,96,100\n3,0,42\n4,100,51\n5,55,3\n6,59,94\n7,9,0\n8,36,94\n9,50,44\n\nOh, and when you send the answer back, please use a little JSON outline so it's easy to check automatically. Something casual like this works fine:\n\n{\n \"solution\": [home_id, plaza_id, ..., home_id]\n}\n\nThink of \"solution\" as the ordered list of stops for the day: start with your home id, then each plaza id in the order you plan to visit them, and finish by listing your home id again. It's just a sketch of the shape I need, not the actual route.\n\nPlease make sure to use the exact identifiers given 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": [
[
0,
51
],
[
96,
100
],
[
0,
42
],
[
100,
51
],
[
55,
3
],
[
59,
94
],
[
9,
0
],
[
36,
94
],
[
50,
44
]
],
"solution": [
0,
2,
6,
4,
8,
3,
1,
5,
7,
0
],
"obj": 355.5691833496094,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 9,
"nodes": [
{
"id": 1,
"x": 0,
"y": 51
},
{
"id": 2,
"x": 96,
"y": 100
},
{
"id": 3,
"x": 0,
"y": 42
},
{
"id": 4,
"x": 100,
"y": 51
},
{
"id": 5,
"x": 55,
"y": 3
},
{
"id": 6,
"x": 59,
"y": 94
},
{
"id": 7,
"x": 9,
"y": 0
},
{
"id": 8,
"x": 36,
"y": 94
},
{
"id": 9,
"x": 50,
"y": 44
}
],
"depot": 1
},
"solution_variant": [
1,
3,
7,
5,
9,
4,
2,
6,
8,
1
],
"context_index": 37,
"input_format": "csv",
"input_index_base": 1
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "Weβve got an open-house circuit to arrange: start at the brokerage, swing by every property on the list exactly once, and finish back at the brokerage at the end of the day. The decision is the sequence of stops β the one that wins is the route with the least total miles or total drive time. Figure that out by summing the distances (or times) between each consecutive stop all the way around the loop. Each listing must be visited once, with no repeats and no omissions. The concrete stop details are listed below.\n\n# total_stops=10\n# brokerage_id=0\nstop_id,coord_x,coord_y\n0,100,12\n1,93,31\n2,5,31\n3,95,45\n4,95,27\n5,93,0\n6,7,100\n7,0,0\n8,95,63\n9,7,27\n\nWhen you send back the route, just follow this simple JSON layout so it's easy to read and check.\n\n{\n \"solution\": [brokerage_id, property_id, ..., brokerage_id]\n}\n\nThis just shows an ordered list under \"solution\": start at the brokerage, list each property once in the order you plan to visit them, and finish back at the brokerage. Think of each placeholder as the exact stop ID from the instance β itβs just a little form to fill in with the route.\n\nThe JSON above is only a sketch of the shape I expect, not the actual route.\n\nPlease 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": [
[
100,
12
],
[
93,
31
],
[
5,
31
],
[
95,
45
],
[
95,
27
],
[
93,
0
],
[
7,
100
],
[
0,
0
],
[
95,
63
],
[
7,
27
]
],
"solution": [
0,
4,
1,
3,
8,
6,
2,
9,
7,
5,
0
],
"obj": 356.1739025115967,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 10,
"nodes": [
{
"id": 0,
"x": 100,
"y": 12
},
{
"id": 1,
"x": 93,
"y": 31
},
{
"id": 2,
"x": 5,
"y": 31
},
{
"id": 3,
"x": 95,
"y": 45
},
{
"id": 4,
"x": 95,
"y": 27
},
{
"id": 5,
"x": 93,
"y": 0
},
{
"id": 6,
"x": 7,
"y": 100
},
{
"id": 7,
"x": 0,
"y": 0
},
{
"id": 8,
"x": 95,
"y": 63
},
{
"id": 9,
"x": 7,
"y": 27
}
],
"depot": 0
},
"solution_variant": [
0,
4,
1,
3,
8,
6,
2,
9,
7,
5,
0
],
"context_index": 38,
"input_format": "csv",
"input_index_base": 0
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "Iβve got to sketch out the lab vanβs day: it leaves the hospital, swings by every clinic to pick up samples, and comes back to the lab at the end. The choice to make is the order the van visits those clinics β one order might be a short, efficient loop, another might double back and add lots of miles. The better plan is simply the one that results in the fewest total miles driven; that total is found by adding up the distances for each leg of the trip (from the lab to the first clinic, between each pair of clinics in sequence, and from the last clinic back to the lab). Itβs also important that no clinic is skipped or visited more than once. The exact list of clinic locations and distances are shown below.\n\nSo here are the stops I need to work with β 7 total stops, with the hospital lab depot identified as 1.\n\n| stop_id | longitude | latitude |\n|---|---|---|\n| 1 | 31 | 27 |\n| 2 | 2 | 25 |\n| 3 | 100 | 9 |\n| 4 | 51 | 0 |\n| 5 | 15 | 25 |\n| 6 | 76 | 54 |\n| 7 | 0 | 100 |\n\nI'll use these stop entries to sum the leg distances and pick the shortest loop for the van.\n\nAlso, when you send back the chosen route, just use this little JSON layout so it's clear and tidy:\n\n{\n \"solution\": [lab_id, clinic_id, ..., lab_id]\n}\n\nHere, \"solution\" is the ordered list the van will drive: start at the lab (the first lab_id), go to each clinic once (each clinic_id in order), and return to the lab at the end (the last lab_id). This block is just a sketch of the shape Iβm expecting, not the actual route.\n\nPlease make sure you use the exact identifiers from the instance input β donβt rename them and donβt invent 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": [
[
31,
27
],
[
2,
25
],
[
100,
9
],
[
51,
0
],
[
15,
25
],
[
76,
54
],
[
0,
100
]
],
"solution": [
0,
3,
2,
5,
6,
1,
4,
0
],
"obj": 327.4083786010742,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 7,
"nodes": [
{
"id": 1,
"x": 31,
"y": 27
},
{
"id": 2,
"x": 2,
"y": 25
},
{
"id": 3,
"x": 100,
"y": 9
},
{
"id": 4,
"x": 51,
"y": 0
},
{
"id": 5,
"x": 15,
"y": 25
},
{
"id": 6,
"x": 76,
"y": 54
},
{
"id": 7,
"x": 0,
"y": 100
}
],
"depot": 1
},
"solution_variant": [
1,
4,
3,
6,
7,
2,
5,
1
],
"context_index": 39,
"input_format": "markdown_table",
"input_index_base": 1
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "Thereβs a neighborhood audit coming up where an inspector will start at the town depot, walk or drive past every mailbox to inspect them, and finally head back to where they began. The choice to make is the sequence of mailboxes to visit β it needs to include every mailbox without revisiting any. A route is better if the inspector ends up covering fewer miles overall; thatβs measured by adding up the lengths of each step from one stop to the next, plus the return trip to the depot. Details of the specific stops follow below.\n\nThere are 5 stops in total, and the inspector will start and finish at depot A.\n\n| location_id | x_coord | y_coord |\n|---|---|---|\n| A | 86 | 100 |\n| B | 100 | 91 |\n| C | 27 | 20 |\n| D | 30 | 74 |\n| E | 0 | 0 |\n\nThe inspector must visit all 5 stops exactly once and return to depot A.\n\nOh, and when you send the route back, please follow this simple JSON shape so it's easy to check:\n\n{\n \"solution\": [depot_id, location_id, ..., depot_id]\n}\n\nThis just means the answer should be a list: start at the depot, list each mailbox in the order you want them visited, and finish at the depot again. Think of each placeholder as the label you'll see in the instance input β it's just a little form showing the order, not the actual numbers or coordinates.\n\nThe JSON above is only a sketch of the expected shape, not the real route β replace the placeholders with the exact identifiers from the instance input.\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": [
[
86,
100
],
[
100,
91
],
[
27,
20
],
[
30,
74
],
[
0,
0
]
],
"solution": [
0,
1,
2,
4,
3,
0
],
"obj": 293.66836738586426,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 5,
"nodes": [
{
"id": "A",
"x": 86,
"y": 100
},
{
"id": "B",
"x": 100,
"y": 91
},
{
"id": "C",
"x": 27,
"y": 20
},
{
"id": "D",
"x": 30,
"y": 74
},
{
"id": "E",
"x": 0,
"y": 0
}
],
"depot": "A"
},
"solution_variant": [
"A",
"B",
"C",
"E",
"D",
"A"
],
"context_index": 40,
"input_format": "markdown_table",
"input_index_base": "names"
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "Someone on the team is figuring out which lawns the gardeners should hit first, second, third, etc., knowing the route must start at the equipment shed and finish there after visiting every customerβs garden once. The core choice is the visit order for the day. A cleaner plan is the one that results in the fewest miles on the van, measured by summing the distance between every pair of consecutive stops in the loop, including the return leg. Every customer must be included exactly once β no omissions, no double-dips. The concrete details are shown below.\n\n{\n \"total_stops\": 5,\n \"nodes\": [\n {\n \"location_id\": 0,\n \"x_coord\": 97,\n \"y_coord\": 100\n },\n {\n \"location_id\": 1,\n \"x_coord\": 5,\n \"y_coord\": 0\n },\n {\n \"location_id\": 2,\n \"x_coord\": 0,\n \"y_coord\": 34\n },\n {\n \"location_id\": 3,\n \"x_coord\": 97,\n \"y_coord\": 0\n },\n {\n \"location_id\": 4,\n \"x_coord\": 100,\n \"y_coord\": 40\n }\n ],\n \"equipment_shed\": 0\n}\n\nWhen you reply with the planned route, please use this simple JSON shape so it's easy to parse:\n\n{\n \"solution\": [depot_id, location_id, ..., depot_id]\n}\n\n\"solution\" is just the ordered list of stops for the day β start at the equipment shed (the depot), visit every garden once, and finish back at the shed. The placeholders (depot_id, location_id, etc.) stand in for the actual location identifiers from the instance. This is only a sketch of the expected shape, not the real answer.\n\nPlease make sure to use the identifiers exactly as they appear in the instance input β do not 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": [
[
97,
100
],
[
5,
0
],
[
0,
34
],
[
97,
0
],
[
100,
40
]
],
"solution": [
0,
2,
1,
3,
4,
0
],
"obj": 343.87731170654297,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 5,
"nodes": [
{
"id": 0,
"x": 97,
"y": 100
},
{
"id": 1,
"x": 5,
"y": 0
},
{
"id": 2,
"x": 0,
"y": 34
},
{
"id": 3,
"x": 97,
"y": 0
},
{
"id": 4,
"x": 100,
"y": 40
}
],
"depot": 0
},
"solution_variant": [
0,
2,
1,
3,
4,
0
],
"context_index": 41,
"input_format": "json",
"input_index_base": 0
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "Picture this: the municipal garage is the launch point for a sign inspection run that has to touch every sign exactly once and then come home, with no returning to any already-visited location. Whatβs being chosen is the visiting order, and the calm, sensible choice is the order that leads to the least total driving β the amount youβd get by adding up the distance between every consecutive stop on the tour. The detailed sign list and route data are shown below.\n\n{\n \"total_locations\": 5,\n \"nodes\": [\n {\n \"location_id\": \"A\",\n \"x_coordinate\": 35,\n \"y_coordinate\": 0\n },\n {\n \"location_id\": \"B\",\n \"x_coordinate\": 10,\n \"y_coordinate\": 100\n },\n {\n \"location_id\": \"C\",\n \"x_coordinate\": 100,\n \"y_coordinate\": 0\n },\n {\n \"location_id\": \"D\",\n \"x_coordinate\": 37,\n \"y_coordinate\": 0\n },\n {\n \"location_id\": \"E\",\n \"x_coordinate\": 0,\n \"y_coordinate\": 100\n }\n ],\n \"garage_node_id\": \"A\"\n}\n\nAlso, when you hand the route back, just put it in this little JSON shape so it's easy to parse:\n\n{\n \"solution\": [garage_id, sign_id, ..., garage_id]\n}\n\nThink of it like a simple form: \"solution\" is the ordered list of stops β start at the garage (garage_id), then each sign in the order you visit them (sign_id), and finally back to the garage. This is only a sketch of the expected shape, not the actual route.\n\nPlease use the exact identifiers from the instance input β don't rename them or invent new ones. Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.",
"instance": [
[
35,
0
],
[
10,
100
],
[
100,
0
],
[
37,
0
],
[
0,
100
]
],
"solution": [
0,
3,
2,
1,
4,
0
],
"obj": 315.48433685302734,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 5,
"nodes": [
{
"id": "A",
"x": 35,
"y": 0
},
{
"id": "B",
"x": 10,
"y": 100
},
{
"id": "C",
"x": 100,
"y": 0
},
{
"id": "D",
"x": 37,
"y": 0
},
{
"id": "E",
"x": 0,
"y": 100
}
],
"depot": "A"
},
"solution_variant": [
"A",
"D",
"C",
"B",
"E",
"A"
],
"context_index": 42,
"input_format": "json",
"input_index_base": "names"
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "Recently the festival team had to sort out how to restock all the stalls from one storage tent: the supplier must go out, visit each booth once to top up stock, and come straight back at the end. What counts as a smarter choice here is simply keeping the overall travel distance minimal β just add up the distances for each segment of the trip to see which route is shortest. The detailed booth coordinates and distances are provided below.\n\n{\n \"total_locations\": 9,\n \"nodes\": [\n {\n \"location_id\": 0,\n \"x_coord\": 100,\n \"y_coord\": 100\n },\n {\n \"location_id\": 1,\n \"x_coord\": 68,\n \"y_coord\": 14\n },\n {\n \"location_id\": 2,\n \"x_coord\": 16,\n \"y_coord\": 0\n },\n {\n \"location_id\": 3,\n \"x_coord\": 4,\n \"y_coord\": 26\n },\n {\n \"location_id\": 4,\n \"x_coord\": 0,\n \"y_coord\": 27\n },\n {\n \"location_id\": 5,\n \"x_coord\": 70,\n \"y_coord\": 20\n },\n {\n \"location_id\": 6,\n \"x_coord\": 59,\n \"y_coord\": 43\n },\n {\n \"location_id\": 7,\n \"x_coord\": 41,\n \"y_coord\": 46\n },\n {\n \"location_id\": 8,\n \"x_coord\": 37,\n \"y_coord\": 17\n }\n ],\n \"storage_tent_id\": 0\n}\n\nAlso, when you send the route back, just stick to this simple JSON layout so it's easy to parse:\n\n{\n \"solution\": [storage_tent_id, booth_id, ..., storage_tent_id]\n}\n\n\"solution\" is just the ordered list of stops: start at the storage tent, list each booth once in the order youβll visit them, and finish back at the storage tent. Think of it like filling in a little form that says \"start here, then these booths, then back here.\"\n\nThis is only a sketch of the shape I expect, not the actual route β please fill it in with the exact identifiers from the instance input. All identifiers must be used exactly as they appear in the input β no renaming and no new labels.\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": [
[
100,
100
],
[
68,
14
],
[
16,
0
],
[
4,
26
],
[
0,
27
],
[
70,
20
],
[
59,
43
],
[
41,
46
],
[
37,
17
]
],
"solution": [
0,
5,
1,
8,
2,
4,
3,
7,
6,
0
],
"obj": 315.9574761390686,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 9,
"nodes": [
{
"id": 0,
"x": 100,
"y": 100
},
{
"id": 1,
"x": 68,
"y": 14
},
{
"id": 2,
"x": 16,
"y": 0
},
{
"id": 3,
"x": 4,
"y": 26
},
{
"id": 4,
"x": 0,
"y": 27
},
{
"id": 5,
"x": 70,
"y": 20
},
{
"id": 6,
"x": 59,
"y": 43
},
{
"id": 7,
"x": 41,
"y": 46
},
{
"id": 8,
"x": 37,
"y": 17
}
],
"depot": 0
},
"solution_variant": [
0,
5,
1,
8,
2,
4,
3,
7,
6,
0
],
"context_index": 43,
"input_format": "json",
"input_index_base": 0
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "Iβm picturing a bike courier leaving dispatch with a stack of pickup slips and a list of offices to visit. The job is to pick up from every office exactly once and come back to dispatch at the end, so the question is which order to ride in. A better plan is simply the one that makes the total ride shorter β add up the distances between each consecutive stop, including the ride back to dispatch, and that total should be as small as possible. Nothing can be skipped or visited twice. The concrete details will be shown below.\n\n{\n \"total_stops_count\": 7,\n \"nodes\": [\n {\n \"stop_id\": 0,\n \"x_coord\": 100,\n \"y_coord\": 35\n },\n {\n \"stop_id\": 1,\n \"x_coord\": 67,\n \"y_coord\": 68\n },\n {\n \"stop_id\": 2,\n \"x_coord\": 2,\n \"y_coord\": 81\n },\n {\n \"stop_id\": 3,\n \"x_coord\": 33,\n \"y_coord\": 100\n },\n {\n \"stop_id\": 4,\n \"x_coord\": 48,\n \"y_coord\": 59\n },\n {\n \"stop_id\": 5,\n \"x_coord\": 100,\n \"y_coord\": 8\n },\n {\n \"stop_id\": 6,\n \"x_coord\": 0,\n \"y_coord\": 0\n }\n ],\n \"dispatch_id\": 0\n}\n\nWhile we're on the same page about what to return, it helps to have a tiny example of the shape I expect β just a simple JSON sketch that lists the stops in order. Something like this:\n\n{\n \"solution\": [depot_id, location_id, ..., depot_id]\n}\n\nThink of \"solution\" as the ordered list of stops: start at the depot, go visit each place once in the order shown, and finish back at the depot. This little block is just the form I want β it's a sketch of the shape, not the actual route.\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": [
[
100,
35
],
[
67,
68
],
[
2,
81
],
[
33,
100
],
[
48,
59
],
[
100,
8
],
[
0,
0
]
],
"solution": [
0,
1,
4,
3,
2,
6,
5,
0
],
"obj": 356.0541000366211,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 7,
"nodes": [
{
"id": 0,
"x": 100,
"y": 35
},
{
"id": 1,
"x": 67,
"y": 68
},
{
"id": 2,
"x": 2,
"y": 81
},
{
"id": 3,
"x": 33,
"y": 100
},
{
"id": 4,
"x": 48,
"y": 59
},
{
"id": 5,
"x": 100,
"y": 8
},
{
"id": 6,
"x": 0,
"y": 0
}
],
"depot": 0
},
"solution_variant": [
0,
1,
4,
3,
2,
6,
5,
0
],
"context_index": 44,
"input_format": "json",
"input_index_base": 0
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "Thereβs a service van parked up that needs to go out, visit every client building one time, and then roll back to the lot β the trick is deciding in which order to visit them. The measure of success is straightforward: add up the distance traveled from stop to stop throughout the whole loop (including the return leg) and keep that total as low as you can. No building gets left out or visited twice. The concrete route details appear below.\n\n{\n \"total_locations\": 9,\n \"nodes\": [\n {\n \"location_id\": 1,\n \"x_coord\": 8,\n \"y_coord\": 42\n },\n {\n \"location_id\": 2,\n \"x_coord\": 8,\n \"y_coord\": 32\n },\n {\n \"location_id\": 3,\n \"x_coord\": 4,\n \"y_coord\": 58\n },\n {\n \"location_id\": 4,\n \"x_coord\": 86,\n \"y_coord\": 58\n },\n {\n \"location_id\": 5,\n \"x_coord\": 9,\n \"y_coord\": 42\n },\n {\n \"location_id\": 6,\n \"x_coord\": 0,\n \"y_coord\": 0\n },\n {\n \"location_id\": 7,\n \"x_coord\": 100,\n \"y_coord\": 57\n },\n {\n \"location_id\": 8,\n \"x_coord\": 82,\n \"y_coord\": 64\n },\n {\n \"location_id\": 9,\n \"x_coord\": 83,\n \"y_coord\": 100\n }\n ],\n \"depot_id\": 1\n}\n\nAlso, when you send the final route back, just use a tiny JSON snippet like this so itβs easy to check:\n\n{\n \"solution\": [depot_id, location_id, ..., depot_id]\n}\n\nThink of \"solution\" as the ordered list of stops the van will make β start at the depot, visit each client once, and come back to the depot. The JSON above is just a sketch of the shape I expect, not the actual route.\n\nPlease make sure all identifiers in that list match the instance input exactly β 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": [
[
8,
42
],
[
8,
32
],
[
4,
58
],
[
86,
58
],
[
9,
42
],
[
0,
0
],
[
100,
57
],
[
82,
64
],
[
83,
100
]
],
"solution": [
0,
2,
8,
6,
3,
7,
5,
1,
4,
0
],
"obj": 321.50231742858887,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 9,
"nodes": [
{
"id": 1,
"x": 8,
"y": 42
},
{
"id": 2,
"x": 8,
"y": 32
},
{
"id": 3,
"x": 4,
"y": 58
},
{
"id": 4,
"x": 86,
"y": 58
},
{
"id": 5,
"x": 9,
"y": 42
},
{
"id": 6,
"x": 0,
"y": 0
},
{
"id": 7,
"x": 100,
"y": 57
},
{
"id": 8,
"x": 82,
"y": 64
},
{
"id": 9,
"x": 83,
"y": 100
}
],
"depot": 1
},
"solution_variant": [
1,
3,
9,
7,
4,
8,
6,
2,
5,
1
],
"context_index": 45,
"input_format": "json",
"input_index_base": 1
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "Recently thereβs been a request to craft a drive that starts and ends at the office, visiting each house on the showing list only once. The goal is simple in plain terms: pick the route with the smallest total miles, which you get by adding up the distances for each hop from one stop to the next and finally back to the office. Leave no house out and donβt circle back to any place. The detailed info is provided below.\n\n{\n \"total_locations\": 8,\n \"nodes\": [\n {\n \"stop_id\": 1,\n \"x_coord\": 2,\n \"y_coord\": 60\n },\n {\n \"stop_id\": 2,\n \"x_coord\": 78,\n \"y_coord\": 100\n },\n {\n \"stop_id\": 3,\n \"x_coord\": 83,\n \"y_coord\": 41\n },\n {\n \"stop_id\": 4,\n \"x_coord\": 28,\n \"y_coord\": 0\n },\n {\n \"stop_id\": 5,\n \"x_coord\": 0,\n \"y_coord\": 18\n },\n {\n \"stop_id\": 6,\n \"x_coord\": 100,\n \"y_coord\": 66\n },\n {\n \"stop_id\": 7,\n \"x_coord\": 93,\n \"y_coord\": 48\n },\n {\n \"stop_id\": 8,\n \"x_coord\": 30,\n \"y_coord\": 80\n }\n ],\n \"office_id\": 1\n}\n\nAlso, when you hand the route back, please use this simple JSON layout so it's easy to parse:\n\n{\n \"solution\": [office_id, house_id, ..., office_id]\n}\n\nThink of this like a short form: \"solution\" holds the ordered list of stops for the drive β start at the office, go to each house on the list exactly once, and return to the office at the end. The names in the array are just placeholders showing the shape I expect; replace them with the actual stop identifiers from the instance when you give the real route.\n\nThis JSON is only a sketch of the expected shape, not the actual answer. Please make sure to use the exact identifiers from the instance input β do not 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": [
[
2,
60
],
[
78,
100
],
[
83,
41
],
[
28,
0
],
[
0,
18
],
[
100,
66
],
[
93,
48
],
[
30,
80
]
],
"solution": [
0,
4,
3,
2,
6,
5,
1,
7,
0
],
"obj": 302.3604917526245,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 8,
"nodes": [
{
"id": 1,
"x": 2,
"y": 60
},
{
"id": 2,
"x": 78,
"y": 100
},
{
"id": 3,
"x": 83,
"y": 41
},
{
"id": 4,
"x": 28,
"y": 0
},
{
"id": 5,
"x": 0,
"y": 18
},
{
"id": 6,
"x": 100,
"y": 66
},
{
"id": 7,
"x": 93,
"y": 48
},
{
"id": 8,
"x": 30,
"y": 80
}
],
"depot": 1
},
"solution_variant": [
1,
5,
4,
3,
7,
6,
2,
8,
1
],
"context_index": 46,
"input_format": "json",
"input_index_base": 1
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "On a busy morning the shop wants a single circular run: the rider leaves the shop, stops at every delivery address one time only, and then rides back to the shop. Choosing the route means picking the sequence of stops; every address must be covered exactly once and cannot be revisited. The simplest way to tell which sequence is best is to add together the distances of all the legs between stops (donβt forget the return leg) and go with the sequence that gives the smallest total distance. The concrete stop list and coordinates follow below.\n\nThe list contains 7 locations, with the shop as node 1.\n\n| stop_id | x_coord | y_coord |\n|---|---|---|\n| 1 | 54 | 0 |\n| 2 | 12 | 83 |\n| 3 | 100 | 0 |\n| 4 | 44 | 23 |\n| 5 | 76 | 29 |\n| 6 | 19 | 52 |\n| 7 | 0 | 100 |\n\nCompute straight-line distances between these 7 stops (starting and ending at node 1) to determine the shortest circular route.\n\nIf you'd like the route in a simple, machine-friendly form, you can return it in this little JSON sketch:\n\n{\n \"solution\": [shop_id, stop_id, ..., shop_id]\n}\n\nThink of \"solution\" as just the list of stops in order: start at the shop, visit every delivery once, and come back to the shop at the end. The placeholders above just show the shape β you'll replace them with the actual stop identifiers from the instance.\n\nPlease 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": [
[
54,
0
],
[
12,
83
],
[
100,
0
],
[
44,
23
],
[
76,
29
],
[
19,
52
],
[
0,
100
]
],
"solution": [
0,
2,
4,
6,
1,
5,
3,
0
],
"obj": 303.6052665710449,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 7,
"nodes": [
{
"id": 1,
"x": 54,
"y": 0
},
{
"id": 2,
"x": 12,
"y": 83
},
{
"id": 3,
"x": 100,
"y": 0
},
{
"id": 4,
"x": 44,
"y": 23
},
{
"id": 5,
"x": 76,
"y": 29
},
{
"id": 6,
"x": 19,
"y": 52
},
{
"id": 7,
"x": 0,
"y": 100
}
],
"depot": 1
},
"solution_variant": [
1,
3,
5,
7,
2,
6,
4,
1
],
"context_index": 47,
"input_format": "markdown_table",
"input_index_base": 1
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "Back when the shoot schedule was being mapped out, the brief said to start at the studio, visit each selected landmark a single time for photos, and come back to base. What makes one itinerary better than another is how little you end up driving; tally the distances between consecutive stops and the route with the smallest total is the one to pick. No repeats or omissions are allowed. The full set of landmark details is provided below.\n\n{\n \"total_stops\": 8,\n \"nodes\": [\n {\n \"stop_id\": 1,\n \"x_coordinate\": 0,\n \"y_coordinate\": 26\n },\n {\n \"stop_id\": 2,\n \"x_coordinate\": 22,\n \"y_coordinate\": 100\n },\n {\n \"stop_id\": 3,\n \"x_coordinate\": 43,\n \"y_coordinate\": 52\n },\n {\n \"stop_id\": 4,\n \"x_coordinate\": 48,\n \"y_coordinate\": 43\n },\n {\n \"stop_id\": 5,\n \"x_coordinate\": 39,\n \"y_coordinate\": 78\n },\n {\n \"stop_id\": 6,\n \"x_coordinate\": 74,\n \"y_coordinate\": 91\n },\n {\n \"stop_id\": 7,\n \"x_coordinate\": 48,\n \"y_coordinate\": 70\n },\n {\n \"stop_id\": 8,\n \"x_coordinate\": 100,\n \"y_coordinate\": 0\n }\n ],\n \"studio_node_id\": 1\n}\n\nWhen you send back the planned route, just use this little JSON layout so it's easy to read and parse:\n\n{\n \"solution\": [studio_id, landmark_id, ..., studio_id]\n}\n\nThis just shows the order of stops: start at the studio_id, visit each landmark_id once in the listed sequence, and return to the studio_id at the end. It's a sketch of the shape I want β not the actual route yet.\n\nPlease make sure to use the exact identifiers from the instance input β don't rename them or make up new labels. Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.",
"instance": [
[
0,
26
],
[
22,
100
],
[
43,
52
],
[
48,
43
],
[
39,
78
],
[
74,
91
],
[
48,
70
],
[
100,
0
]
],
"solution": [
0,
3,
2,
6,
4,
1,
5,
7,
0
],
"obj": 370.48240661621094,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 8,
"nodes": [
{
"id": 1,
"x": 0,
"y": 26
},
{
"id": 2,
"x": 22,
"y": 100
},
{
"id": 3,
"x": 43,
"y": 52
},
{
"id": 4,
"x": 48,
"y": 43
},
{
"id": 5,
"x": 39,
"y": 78
},
{
"id": 6,
"x": 74,
"y": 91
},
{
"id": 7,
"x": 48,
"y": 70
},
{
"id": 8,
"x": 100,
"y": 0
}
],
"depot": 1
},
"solution_variant": [
1,
4,
3,
7,
5,
2,
6,
8,
1
],
"context_index": 48,
"input_format": "json",
"input_index_base": 1
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "Recently the service team needed a single-route plan: the truck should roll out from the depot, go to each customer once, and finish back at the depot. The choice to make is the sequence of customers; the most efficient sequence is the one that keeps the total driving distance as low as possible β that total is the sum of all the individual legs between stops, counting the trip home β and no address can be skipped or visited more than once. The concrete numbers and locations appear below.\n\n{\n \"total_stops\": 5,\n \"nodes\": [\n {\n \"stop_id\": 0,\n \"x_coord\": 62,\n \"y_coord\": 84\n },\n {\n \"stop_id\": 1,\n \"x_coord\": 77,\n \"y_coord\": 51\n },\n {\n \"stop_id\": 2,\n \"x_coord\": 0,\n \"y_coord\": 62\n },\n {\n \"stop_id\": 3,\n \"x_coord\": 5,\n \"y_coord\": 100\n },\n {\n \"stop_id\": 4,\n \"x_coord\": 100,\n \"y_coord\": 0\n }\n ],\n \"depot_node\": 0\n}\n\nOh, and when you send the final route back, please use this simple JSON layout so it's easy to parse:\n\n{\n \"solution\": [depot_id, location_id, ..., depot_id]\n}\n\nThis just sketches the shape I need: \"solution\" is the ordered list of stops β start at the depot, list each customer in the order they should be visited, and finish at the depot again. The placeholders in the array are just that, placeholders showing the type of identifier I expect; this block is an example of the format, not the actual route.\n\nPlease be sure to use the identifiers exactly as they appear in the instance input β no renaming and no new labels. Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.",
"instance": [
[
62,
84
],
[
77,
51
],
[
0,
62
],
[
5,
100
],
[
100,
0
]
],
"solution": [
0,
1,
4,
2,
3,
0
],
"obj": 307.3866500854492,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 5,
"nodes": [
{
"id": 0,
"x": 62,
"y": 84
},
{
"id": 1,
"x": 77,
"y": 51
},
{
"id": 2,
"x": 0,
"y": 62
},
{
"id": 3,
"x": 5,
"y": 100
},
{
"id": 4,
"x": 100,
"y": 0
}
],
"depot": 0
},
"solution_variant": [
0,
1,
4,
2,
3,
0
],
"context_index": 49,
"input_format": "json",
"input_index_base": 0
},
{
"task_name": "TSP",
"problem_type": "TSP",
"instruction": "Thereβs a little plan to stroll from the flat, swing by several public squares, and return home without doubling back on any square. The choice to make is which square to go to next each time. What makes one plan better than another is simply the total distance walked β add up each segment of the walk (home to first square, each square-to-square walk, and last square back to home) and pick the plan with the smallest sum. Every listed square needs to be visited once and only once, and the walk must start and finish at the apartment. The concrete details are shown below.\n\n{\n \"total_locations_count\": 6,\n \"nodes\": [\n {\n \"location_id\": \"A\",\n \"x_coordinate\": 91,\n \"y_coordinate\": 6\n },\n {\n \"location_id\": \"B\",\n \"x_coordinate\": 12,\n \"y_coordinate\": 59\n },\n {\n \"location_id\": \"C\",\n \"x_coordinate\": 80,\n \"y_coordinate\": 68\n },\n {\n \"location_id\": \"D\",\n \"x_coordinate\": 12,\n \"y_coordinate\": 0\n },\n {\n \"location_id\": \"E\",\n \"x_coordinate\": 0,\n \"y_coordinate\": 100\n },\n {\n \"location_id\": \"F\",\n \"x_coordinate\": 100,\n \"y_coordinate\": 12\n }\n ],\n \"apartment_id\": \"A\"\n}\n\nOh, and when you send the route back, just use this simple JSON layout so it's easy to read and use:\n\n{\n \"solution\": [home_id, square_id, ..., home_id]\n}\n\nHere \"solution\" is just the ordered list of places in the walk: start at the apartment (home_id), hit each public square (square_id) once in the order shown, and finish back at the apartment (home_id). It's just a sketch of the shape I expect β not the actual route.\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": [
[
91,
6
],
[
12,
59
],
[
80,
68
],
[
12,
0
],
[
0,
100
],
[
100,
12
]
],
"solution": [
0,
3,
1,
4,
2,
5,
0
],
"obj": 337.39110946655273,
"instance_variant": {
"problem_type": "TSP",
"num_nodes": 6,
"nodes": [
{
"id": "A",
"x": 91,
"y": 6
},
{
"id": "B",
"x": 12,
"y": 59
},
{
"id": "C",
"x": 80,
"y": 68
},
{
"id": "D",
"x": 12,
"y": 0
},
{
"id": "E",
"x": 0,
"y": 100
},
{
"id": "F",
"x": 100,
"y": 12
}
],
"depot": "A"
},
"solution_variant": [
"A",
"D",
"B",
"E",
"C",
"F",
"A"
],
"context_index": 50,
"input_format": "json",
"input_index_base": "names"
}
] |