File size: 155,644 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 | task_name,problem_type,instruction,instance,solution,obj,instance_variant,solution_variant,context_index,input_format,input_index_base
MAXCUT,MAXCUT,"Someone is organizing a reunion and wants to seat people left versus right so that friends are separated across the table as much as possible β the stronger the plan, the more friendship pairs will be across the left-right split. Every attendee must be assigned to one side only, with no repeats or omissions. The success of a seating is simply the count of friend-pairs that sit on opposite sides; more counted pairs means a better seating. The detailed guest list and their friendships follow below.
There are 11 guests and 19 friendship pairs listed below.
Guests 7 and 1 are friends.
Guests 7 and 2 are friends.
Guests 7 and 9 are friends.
Guests 5 and 8 are friends.
Guests 5 and 10 are friends.
Guests 5 and 11 are friends.
Guests 9 and 3 are friends.
Guests 9 and 4 are friends.
Guests 3 and 4 are friends.
Guests 3 and 8 are friends.
Guests 3 and 10 are friends.
Guests 2 and 1 are friends.
Guests 2 and 4 are friends.
Guests 2 and 10 are friends.
Guests 2 and 11 are friends.
Guests 4 and 10 are friends.
Guests 1 and 6 are friends.
Guests 1 and 11 are friends.
Guests 11 and 6 are friends.
Assign each of the 11 guests to left or right to maximize how many of the 19 friendships sit across the split.
Also, when you send back a seating plan, please use this simple JSON shape so it's easy to read and check automatically:
{
""solution"": [
[""guest_id"", ""guest_id"", ...],
[""guest_id"", ""guest_id"", ...]
]
}
This just means ""solution"" contains two lists: the first list is everyone seated on the left side, the second list is everyone seated on the right side. Think of each ""guest_id"" as the exact label for a person from the guest list β it's just a placeholder here to show the shape. This JSON is only a sketch of the expected shape, not the actual seating.
Please make sure to use the exact identifiers from the instance input β no renaming and no new labels.
- for example: ""Valid identifiers look like plain numbers such as ""1"" or ""23"", single capital letters like ""A"" or ""B"", or a capital letter followed by digits like ""A1"" or ""X7"".""","{'problem_type': 'MAXCUT', 'num_nodes': 11, 'num_edges': 19, 'edges': [{'u': 7, 'v': 1}, {'u': 7, 'v': 2}, {'u': 7, 'v': 9}, {'u': 5, 'v': 8}, {'u': 5, 'v': 10}, {'u': 5, 'v': 11}, {'u': 9, 'v': 3}, {'u': 9, 'v': 4}, {'u': 3, 'v': 4}, {'u': 3, 'v': 8}, {'u': 3, 'v': 10}, {'u': 2, 'v': 1}, {'u': 2, 'v': 4}, {'u': 2, 'v': 10}, {'u': 2, 'v': 11}, {'u': 4, 'v': 10}, {'u': 1, 'v': 6}, {'u': 1, 'v': 11}, {'u': 11, 'v': 6}], 'source_file': 'wv2010.mtx', 'density': 0.34545454545454546, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0000.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0000.png', 'edge_connectivity': 2}","[[1, 2, 3, 5, 6, 9], [4, 7, 8, 10, 11]]",15.0,"{'num_nodes': 11, 'num_edges': 19, 'edges': [{'u': 7, 'v': 1}, {'u': 7, 'v': 2}, {'u': 7, 'v': 9}, {'u': 5, 'v': 8}, {'u': 5, 'v': 10}, {'u': 5, 'v': 11}, {'u': 9, 'v': 3}, {'u': 9, 'v': 4}, {'u': 3, 'v': 4}, {'u': 3, 'v': 8}, {'u': 3, 'v': 10}, {'u': 2, 'v': 1}, {'u': 2, 'v': 4}, {'u': 2, 'v': 10}, {'u': 2, 'v': 11}, {'u': 4, 'v': 10}, {'u': 1, 'v': 6}, {'u': 1, 'v': 11}, {'u': 11, 'v': 6}]}","[[1, 2, 3, 5, 6, 9], [4, 7, 8, 10, 11]]",1,nl,1
MAXCUT,MAXCUT,"I have a stack of books that need to go on either the left shelf or the right shelf, and the trick is to place every single title on exactly one shelf so nothing is left out or duplicated. The goal is to arrange them so as many citation links as possible run from a book on one shelf to a book on the other shelf β count those cross-shelf links and try to make that count as big as possible. The exact list of books and which ones cite which will be shown below.
Here are the 9 books and the 12 citation links:
A citation link connects book 1 and book 3.
A citation link connects book 1 and book 4.
A citation link connects book 1 and book 5.
A citation link connects book 3 and book 7.
A citation link connects book 6 and book 0.
A citation link connects book 6 and book 4.
A citation link connects book 6 and book 8.
A citation link connects book 7 and book 0.
A citation link connects book 7 and book 4.
A citation link connects book 8 and book 2.
A citation link connects book 2 and book 4.
A citation link connects book 2 and book 5.
Each book must be placed on exactly one shelf so as many of these citation links as possible run between shelves.
Also, when you send back your placement, it'd be great if you follow a tiny JSON layout so it's easy to check. Something simple like this will do:
{
""solution"": [
[""book_id"", ""book_id"", ...],
[""book_id"", ""book_id"", ...]
]
}
Think of the first inner list as the left shelf and the second inner list as the right shelf, and each ""book_id"" is just a placeholder where you'll put the actual book identifier from the instance. This is just the shape I expect β not the actual answer.
Please use the identifiers exactly as they appear in the instance input β no renaming and no new labels.
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β.
Make sure every book appears exactly once, in one of the two lists.","{'problem_type': 'MAXCUT', 'num_nodes': 9, 'num_edges': 12, 'edges': [{'u': 2, 'v': 4}, {'u': 2, 'v': 5}, {'u': 2, 'v': 6}, {'u': 4, 'v': 8}, {'u': 7, 'v': 1}, {'u': 7, 'v': 5}, {'u': 7, 'v': 9}, {'u': 8, 'v': 1}, {'u': 8, 'v': 5}, {'u': 9, 'v': 3}, {'u': 3, 'v': 5}, {'u': 3, 'v': 6}], 'source_file': 'wi2010.mtx', 'density': 0.3333333333333333, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0001.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0001.png', 'edge_connectivity': 2}","[[1, 4, 5, 6, 9], [2, 3, 7, 8]]",12.0,"{'num_nodes': 9, 'num_edges': 12, 'edges': [{'u': 1, 'v': 3}, {'u': 1, 'v': 4}, {'u': 1, 'v': 5}, {'u': 3, 'v': 7}, {'u': 6, 'v': 0}, {'u': 6, 'v': 4}, {'u': 6, 'v': 8}, {'u': 7, 'v': 0}, {'u': 7, 'v': 4}, {'u': 8, 'v': 2}, {'u': 2, 'v': 4}, {'u': 2, 'v': 5}]}","[[0, 3, 4, 5, 8], [1, 2, 6, 7]]",2,nl,0
MAXCUT,MAXCUT,"Someone in the club suggested dividing members into a pro-debate group and a con-debate group, and they wanted the split to separate as many acquainted pairs as possible. For every pair of people who know each other, it counts as a βcrossedβ pair if they end up on different sides; the aim is to get as many of those crossed pairs as possible. Each person must go to either the pro side or the con side and canβt be in both or left out. The full details of the class and the relationships are shown below.
There are 11 students and 20 acquaintance relationships.
Student 2 and student 7 know each other.
Student 2 and student 8 know each other.
Student 2 and student 9 know each other.
Student 2 and student 10 know each other.
Student 2 and student 11 know each other.
Student 10 and student 1 know each other.
Student 10 and student 4 know each other.
Student 10 and student 8 know each other.
Student 9 and student 4 know each other.
Student 9 and student 5 know each other.
Student 9 and student 8 know each other.
Student 11 and student 8 know each other.
Student 8 and student 1 know each other.
Student 8 and student 3 know each other.
Student 8 and student 5 know each other.
Student 8 and student 6 know each other.
Student 8 and student 7 know each other.
Student 6 and student 1 know each other.
Student 6 and student 3 know each other.
Student 5 and student 3 know each other.
Each student must be assigned to either the pro side or the con side to maximize crossed acquainted pairs.
Oh, and when you send back the split, please stick to this little JSON layout so it's easy to check:
{
""solution"": [
[""member_id"", ""member_id"", ...],
[""member_id"", ""member_id"", ...]
]
}
Think of it like a simple form: ""solution"" holds two lists β the first list is everyone on the pro-debate side, the second list is everyone on the con-debate side. Each item should be the exact person identifier from the instance. This JSON is just a sketch of the shape I want, not the actual answer.
Please make sure to use the identifiers exactly as they appear in the problem 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"".","{'problem_type': 'MAXCUT', 'num_nodes': 11, 'num_edges': 20, 'edges': [{'u': 2, 'v': 7}, {'u': 2, 'v': 8}, {'u': 2, 'v': 9}, {'u': 2, 'v': 10}, {'u': 2, 'v': 11}, {'u': 10, 'v': 1}, {'u': 10, 'v': 4}, {'u': 10, 'v': 8}, {'u': 9, 'v': 4}, {'u': 9, 'v': 5}, {'u': 9, 'v': 8}, {'u': 11, 'v': 8}, {'u': 8, 'v': 1}, {'u': 8, 'v': 3}, {'u': 8, 'v': 5}, {'u': 8, 'v': 6}, {'u': 8, 'v': 7}, {'u': 6, 'v': 1}, {'u': 6, 'v': 3}, {'u': 5, 'v': 3}], 'source_file': 'wv2010.mtx', 'density': 0.36363636363636365, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0002.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0002.png', 'edge_connectivity': 2}","[[5, 6, 7, 9, 10, 11], [1, 2, 3, 4, 8]]",16.0,"{'num_nodes': 11, 'num_edges': 20, 'edges': [{'u': 2, 'v': 7}, {'u': 2, 'v': 8}, {'u': 2, 'v': 9}, {'u': 2, 'v': 10}, {'u': 2, 'v': 11}, {'u': 10, 'v': 1}, {'u': 10, 'v': 4}, {'u': 10, 'v': 8}, {'u': 9, 'v': 4}, {'u': 9, 'v': 5}, {'u': 9, 'v': 8}, {'u': 11, 'v': 8}, {'u': 8, 'v': 1}, {'u': 8, 'v': 3}, {'u': 8, 'v': 5}, {'u': 8, 'v': 6}, {'u': 8, 'v': 7}, {'u': 6, 'v': 1}, {'u': 6, 'v': 3}, {'u': 5, 'v': 3}]}","[[5, 6, 7, 9, 10, 11], [1, 2, 3, 4, 8]]",3,nl,1
MAXCUT,MAXCUT,"Someone needed to rearrange equipment so that half the gear went into the left rack and the rest into the right rack, with the rule that every server must be placed in one of the two racks and none duplicated. The simple takeaway was to try to make as many cables as possible span the gap between racks β each time a cable connects a server in the left to a server in the right, it gets counted toward how good the arrangement is. The specific details of the case are shown below.
# total_servers=10
# total_cables=21
server_endpoint_u,server_endpoint_v
7,1
7,3
7,6
7,8
7,9
2,4
2,5
2,8
8,1
8,3
8,5
8,9
0,1
0,3
0,6
9,3
3,4
3,5
3,6
4,5
6,1
Iβll just say up front how Iβd like the answer packaged β a tiny JSON object with two lists: the servers that go in the left rack and the ones that go in the right rack. Something that looks like this:
{
""solution"": [
[""server_id"", ""server_id"", ...],
[""server_id"", ""server_id"", ...]
]
}
The first inner list is the set of server IDs youβd put in the left rack, and the second list is the servers for the right rack. Itβs just a sketch of the shape I expect, not the actual placement β the real reply should fill those lists with the exact server identifiers from the instance.
Please 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β.""","{'problem_type': 'MAXCUT', 'num_nodes': 10, 'num_edges': 21, 'edges': [{'u': 8, 'v': 2}, {'u': 8, 'v': 4}, {'u': 8, 'v': 7}, {'u': 8, 'v': 9}, {'u': 8, 'v': 10}, {'u': 3, 'v': 5}, {'u': 3, 'v': 6}, {'u': 3, 'v': 9}, {'u': 9, 'v': 2}, {'u': 9, 'v': 4}, {'u': 9, 'v': 6}, {'u': 9, 'v': 10}, {'u': 1, 'v': 2}, {'u': 1, 'v': 4}, {'u': 1, 'v': 7}, {'u': 10, 'v': 4}, {'u': 4, 'v': 5}, {'u': 4, 'v': 6}, {'u': 4, 'v': 7}, {'u': 5, 'v': 6}, {'u': 7, 'v': 2}], 'source_file': 'vt2010.mtx', 'density': 0.4666666666666667, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0003.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0003.png', 'edge_connectivity': 3}","[[2, 3, 4, 7, 10], [1, 5, 6, 8, 9]]",15.0,"{'num_nodes': 10, 'num_edges': 21, 'edges': [{'u': 7, 'v': 1}, {'u': 7, 'v': 3}, {'u': 7, 'v': 6}, {'u': 7, 'v': 8}, {'u': 7, 'v': 9}, {'u': 2, 'v': 4}, {'u': 2, 'v': 5}, {'u': 2, 'v': 8}, {'u': 8, 'v': 1}, {'u': 8, 'v': 3}, {'u': 8, 'v': 5}, {'u': 8, 'v': 9}, {'u': 0, 'v': 1}, {'u': 0, 'v': 3}, {'u': 0, 'v': 6}, {'u': 9, 'v': 3}, {'u': 3, 'v': 4}, {'u': 3, 'v': 5}, {'u': 3, 'v': 6}, {'u': 4, 'v': 5}, {'u': 6, 'v': 1}]}","[[1, 2, 3, 6, 9], [0, 4, 5, 7, 8]]",4,csv,0
MAXCUT,MAXCUT,"At the garden club meeting someone sketched a plan: take every plant and put it in either the front bed or the back bed, making sure each plant is assigned once and only once, and try to arrange them so the most pollination pairs have their members on different beds. To judge any layout, go down the pairing list and count how many pairs are split between front and back; a higher count means a better split. The concrete list of plants and the pollination pairs follows below.
# total_plants=12
# total_pollination_pairs=20
plant_a,plant_b
K,G
K,H
K,J
A,C
A,D
A,L
H,J
I,D
I,F
I,G
G,B
G,E
D,B
D,L
F,B
E,J
L,C
B,C
B,J
C,J
If you want to hand me a layout, just follow this little JSON sketch so I can read it easilyβtwo lists, one for each bed.
{
""solution"": [
[""plant_id"", ""plant_id"", ...],
[""plant_id"", ""plant_id"", ...]
]
}
The first inner list is the plants you put in the front bed, the second inner list is the plants you put in the back bed. Each ""plant_id"" is a placeholder for a plant identifier from the instance (so put the actual IDs there, separated by commas). This is just the expected shape of the answerβnot your final filled-in layout.
Please use the exact identifiers as they appear in the instance input β do not rename them or invent new labels.
- for example: ""Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.""","{'problem_type': 'MAXCUT', 'num_nodes': 12, 'num_edges': 20, 'edges': [{'u': 11, 'v': 7}, {'u': 11, 'v': 8}, {'u': 11, 'v': 10}, {'u': 1, 'v': 3}, {'u': 1, 'v': 4}, {'u': 1, 'v': 12}, {'u': 8, 'v': 10}, {'u': 9, 'v': 4}, {'u': 9, 'v': 6}, {'u': 9, 'v': 7}, {'u': 7, 'v': 2}, {'u': 7, 'v': 5}, {'u': 4, 'v': 2}, {'u': 4, 'v': 12}, {'u': 6, 'v': 2}, {'u': 5, 'v': 10}, {'u': 12, 'v': 3}, {'u': 2, 'v': 3}, {'u': 2, 'v': 10}, {'u': 3, 'v': 10}], 'source_file': 'wy2010.mtx', 'density': 0.30303030303030304, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0004.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0004.png', 'edge_connectivity': 2}","[[3, 4, 6, 7, 10], [1, 2, 5, 8, 9, 11, 12]]",17.0,"{'num_nodes': 12, 'num_edges': 20, 'edges': [{'u': 'K', 'v': 'G'}, {'u': 'K', 'v': 'H'}, {'u': 'K', 'v': 'J'}, {'u': 'A', 'v': 'C'}, {'u': 'A', 'v': 'D'}, {'u': 'A', 'v': 'L'}, {'u': 'H', 'v': 'J'}, {'u': 'I', 'v': 'D'}, {'u': 'I', 'v': 'F'}, {'u': 'I', 'v': 'G'}, {'u': 'G', 'v': 'B'}, {'u': 'G', 'v': 'E'}, {'u': 'D', 'v': 'B'}, {'u': 'D', 'v': 'L'}, {'u': 'F', 'v': 'B'}, {'u': 'E', 'v': 'J'}, {'u': 'L', 'v': 'C'}, {'u': 'B', 'v': 'C'}, {'u': 'B', 'v': 'J'}, {'u': 'C', 'v': 'J'}]}","[['C', 'D', 'F', 'G', 'J'], ['A', 'B', 'E', 'H', 'I', 'K', 'L']]",5,csv,names
MAXCUT,MAXCUT,"Weβve got a two-sided display to set up: every photograph gets mounted either on the inner ring or the outer ring, exactly once. Some photos belong together in pairs, and the goal is to get as many of those pairs separated between the inner and outer walls as possible. A layoutβs quality is simply the number of related pairs that end up on opposite walls β tally those split pairs to compare layouts. The exact list of photos and their pairings appears below.
{
""total_photos"": 11,
""total_related_pairs"": 19,
""edges"": [
{
""photo_a"": 9,
""photo_b"": 5
},
{
""photo_a"": 9,
""photo_b"": 8
},
{
""photo_a"": 1,
""photo_b"": 8
},
{
""photo_a"": 2,
""photo_b"": 0
},
{
""photo_a"": 2,
""photo_b"": 7
},
{
""photo_a"": 2,
""photo_b"": 10
},
{
""photo_a"": 6,
""photo_b"": 7
},
{
""photo_a"": 7,
""photo_b"": 0
},
{
""photo_a"": 7,
""photo_b"": 3
},
{
""photo_a"": 7,
""photo_b"": 4
},
{
""photo_a"": 7,
""photo_b"": 5
},
{
""photo_a"": 7,
""photo_b"": 8
},
{
""photo_a"": 7,
""photo_b"": 10
},
{
""photo_a"": 10,
""photo_b"": 0
},
{
""photo_a"": 10,
""photo_b"": 8
},
{
""photo_a"": 8,
""photo_b"": 0
},
{
""photo_a"": 8,
""photo_b"": 3
},
{
""photo_a"": 5,
""photo_b"": 3
},
{
""photo_a"": 4,
""photo_b"": 0
}
]
}
When you send back a layout, just use a simple JSON object in that same shape so it's easy to parse. Something like this:
{
""solution"": [
[""photo_id"", ""photo_id"", ...],
[""photo_id"", ""photo_id"", ...]
]
}
The first inner list is the photos you put on the inner ring, the second is the photos on the outer ring β each string is a photo identifier. Think of it as a little form: list the inner ones, then the outer ones. This JSON is only a sketch of the shape I expect, not the actual answer.
Please make sure to use the exact identifiers from the instance input β no renaming and no new labels. Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.","{'problem_type': 'MAXCUT', 'num_nodes': 11, 'num_edges': 19, 'edges': [{'u': 10, 'v': 6}, {'u': 10, 'v': 9}, {'u': 2, 'v': 9}, {'u': 3, 'v': 1}, {'u': 3, 'v': 8}, {'u': 3, 'v': 11}, {'u': 7, 'v': 8}, {'u': 8, 'v': 1}, {'u': 8, 'v': 4}, {'u': 8, 'v': 5}, {'u': 8, 'v': 6}, {'u': 8, 'v': 9}, {'u': 8, 'v': 11}, {'u': 11, 'v': 1}, {'u': 11, 'v': 9}, {'u': 9, 'v': 1}, {'u': 9, 'v': 4}, {'u': 6, 'v': 4}, {'u': 5, 'v': 1}], 'source_file': 'wa2010.mtx', 'density': 0.34545454545454546, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0005.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0005.png', 'edge_connectivity': 1}","[[1, 2, 4, 8, 10, 11], [3, 5, 6, 7, 9]]",15.0,"{'num_nodes': 11, 'num_edges': 19, 'edges': [{'u': 9, 'v': 5}, {'u': 9, 'v': 8}, {'u': 1, 'v': 8}, {'u': 2, 'v': 0}, {'u': 2, 'v': 7}, {'u': 2, 'v': 10}, {'u': 6, 'v': 7}, {'u': 7, 'v': 0}, {'u': 7, 'v': 3}, {'u': 7, 'v': 4}, {'u': 7, 'v': 5}, {'u': 7, 'v': 8}, {'u': 7, 'v': 10}, {'u': 10, 'v': 0}, {'u': 10, 'v': 8}, {'u': 8, 'v': 0}, {'u': 8, 'v': 3}, {'u': 5, 'v': 3}, {'u': 4, 'v': 0}]}","[[0, 1, 3, 7, 9, 10], [2, 4, 5, 6, 8]]",6,json,0
MAXCUT,MAXCUT,"Back at the kitchen bench, the line cooks were assigning every ingredient to either table A or table B, trying to set things up so recipe pairings ended up on opposite tables as often as possible. A better setup is the one that separates more pairings, and its score comes from counting each pairing whose members sit on different tables. Each ingredient has to be placed on one of the two tables and cannot be placed twice or left out. The concrete ingredients and pairing details follow below.
{
""total_ingredients"": 12,
""total_pairings"": 23,
""edges"": [
{
""ingredient_a"": ""G"",
""ingredient_b"": ""F""
},
{
""ingredient_a"": ""G"",
""ingredient_b"": ""K""
},
{
""ingredient_a"": ""J"",
""ingredient_b"": ""C""
},
{
""ingredient_a"": ""J"",
""ingredient_b"": ""K""
},
{
""ingredient_a"": ""E"",
""ingredient_b"": ""A""
},
{
""ingredient_a"": ""E"",
""ingredient_b"": ""B""
},
{
""ingredient_a"": ""E"",
""ingredient_b"": ""D""
},
{
""ingredient_a"": ""E"",
""ingredient_b"": ""H""
},
{
""ingredient_a"": ""B"",
""ingredient_b"": ""A""
},
{
""ingredient_a"": ""B"",
""ingredient_b"": ""D""
},
{
""ingredient_a"": ""B"",
""ingredient_b"": ""F""
},
{
""ingredient_a"": ""B"",
""ingredient_b"": ""I""
},
{
""ingredient_a"": ""L"",
""ingredient_b"": ""A""
},
{
""ingredient_a"": ""L"",
""ingredient_b"": ""C""
},
{
""ingredient_a"": ""L"",
""ingredient_b"": ""F""
},
{
""ingredient_a"": ""L"",
""ingredient_b"": ""I""
},
{
""ingredient_a"": ""L"",
""ingredient_b"": ""K""
},
{
""ingredient_a"": ""C"",
""ingredient_b"": ""A""
},
{
""ingredient_a"": ""C"",
""ingredient_b"": ""H""
},
{
""ingredient_a"": ""K"",
""ingredient_b"": ""F""
},
{
""ingredient_a"": ""F"",
""ingredient_b"": ""I""
},
{
""ingredient_a"": ""I"",
""ingredient_b"": ""A""
},
{
""ingredient_a"": ""A"",
""ingredient_b"": ""H""
}
]
}
Oh, and when youβre ready to hand me the seating plan, just drop it in this little JSON shape so I can read it easily:
{
""solution"": [
[""ingredient_id"", ""ingredient_id"", ...],
[""ingredient_id"", ""ingredient_id"", ...]
]
}
Think of it like a simple form: ""solution"" holds two lists β the first list is whatever ingredients you put on table A, and the second list is the ingredients on table B. Each entry should be the ingredient identifier exactly as given in the instance. This is just a sketch of the expected shape, not the actual answer.
Please use the same identifiers exactly as they appear in the instance input β do not rename them or invent new labels.
- for example: ""Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.""","{'problem_type': 'MAXCUT', 'num_nodes': 12, 'num_edges': 23, 'edges': [{'u': 7, 'v': 6}, {'u': 7, 'v': 11}, {'u': 10, 'v': 3}, {'u': 10, 'v': 11}, {'u': 5, 'v': 1}, {'u': 5, 'v': 2}, {'u': 5, 'v': 4}, {'u': 5, 'v': 8}, {'u': 2, 'v': 1}, {'u': 2, 'v': 4}, {'u': 2, 'v': 6}, {'u': 2, 'v': 9}, {'u': 12, 'v': 1}, {'u': 12, 'v': 3}, {'u': 12, 'v': 6}, {'u': 12, 'v': 9}, {'u': 12, 'v': 11}, {'u': 3, 'v': 1}, {'u': 3, 'v': 8}, {'u': 11, 'v': 6}, {'u': 6, 'v': 9}, {'u': 9, 'v': 1}, {'u': 1, 'v': 8}], 'source_file': 'wy2010.mtx', 'density': 0.3484848484848485, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0006.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0006.png', 'edge_connectivity': 2}","[[1, 2, 7, 8, 10, 12], [3, 4, 5, 6, 9, 11]]",17.0,"{'num_nodes': 12, 'num_edges': 23, 'edges': [{'u': 'G', 'v': 'F'}, {'u': 'G', 'v': 'K'}, {'u': 'J', 'v': 'C'}, {'u': 'J', 'v': 'K'}, {'u': 'E', 'v': 'A'}, {'u': 'E', 'v': 'B'}, {'u': 'E', 'v': 'D'}, {'u': 'E', 'v': 'H'}, {'u': 'B', 'v': 'A'}, {'u': 'B', 'v': 'D'}, {'u': 'B', 'v': 'F'}, {'u': 'B', 'v': 'I'}, {'u': 'L', 'v': 'A'}, {'u': 'L', 'v': 'C'}, {'u': 'L', 'v': 'F'}, {'u': 'L', 'v': 'I'}, {'u': 'L', 'v': 'K'}, {'u': 'C', 'v': 'A'}, {'u': 'C', 'v': 'H'}, {'u': 'K', 'v': 'F'}, {'u': 'F', 'v': 'I'}, {'u': 'I', 'v': 'A'}, {'u': 'A', 'v': 'H'}]}","[['A', 'B', 'G', 'H', 'J', 'L'], ['C', 'D', 'E', 'F', 'I', 'K']]",7,json,names
MAXCUT,MAXCUT,"At my place I imagined moving each household appliance into either the kitchen side or the living side, aiming to have as many utility links as possible go from one room to the other. You judge a layout by counting how many of those connections cross the room divide β higher counts mean a preferable setup. Every appliance must be placed in one of the two rooms and none can be duplicated or skipped. The detailed list of appliances and which ones are connected is shown below.
# num_appliances=12
# num_utility_links=24
appliance_a,appliance_b
11,3
11,4
11,6
8,4
8,5
8,9
8,10
5,2
5,4
9,2
9,4
9,6
9,7
9,10
2,0
2,3
7,1
7,6
6,1
6,3
6,4
10,4
1,4
3,0
You can hand me the placement in a tiny JSON shape like this β nothing fancy, just two lists inside a ""solution"" field:
{
""solution"": [
[""appliance_id"", ""appliance_id"", ...],
[""appliance_id"", ""appliance_id"", ...]
]
}
Think of it like a quick form: the first list is everything you drop on the kitchen side, the second list is everything you drop on the living side. Each item is an appliance identifier (just use the same exact labels from the instance). This JSON is only a sketch of the shape I expect, not the final answer.
- 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β"".
Please be sure to use the identifiers exactly as they appear in the instance input β no renaming and no new labels.","{'problem_type': 'MAXCUT', 'num_nodes': 12, 'num_edges': 24, 'edges': [{'u': 12, 'v': 4}, {'u': 12, 'v': 5}, {'u': 12, 'v': 7}, {'u': 9, 'v': 5}, {'u': 9, 'v': 6}, {'u': 9, 'v': 10}, {'u': 9, 'v': 11}, {'u': 6, 'v': 3}, {'u': 6, 'v': 5}, {'u': 10, 'v': 3}, {'u': 10, 'v': 5}, {'u': 10, 'v': 7}, {'u': 10, 'v': 8}, {'u': 10, 'v': 11}, {'u': 3, 'v': 1}, {'u': 3, 'v': 4}, {'u': 8, 'v': 2}, {'u': 8, 'v': 7}, {'u': 7, 'v': 2}, {'u': 7, 'v': 4}, {'u': 7, 'v': 5}, {'u': 11, 'v': 5}, {'u': 2, 'v': 5}, {'u': 4, 'v': 1}], 'source_file': 'wa2010.mtx', 'density': 0.36363636363636365, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0007.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0007.png', 'edge_connectivity': 2}","[[1, 3, 5, 7, 8, 9], [2, 4, 6, 10, 11, 12]]",18.0,"{'num_nodes': 12, 'num_edges': 24, 'edges': [{'u': 11, 'v': 3}, {'u': 11, 'v': 4}, {'u': 11, 'v': 6}, {'u': 8, 'v': 4}, {'u': 8, 'v': 5}, {'u': 8, 'v': 9}, {'u': 8, 'v': 10}, {'u': 5, 'v': 2}, {'u': 5, 'v': 4}, {'u': 9, 'v': 2}, {'u': 9, 'v': 4}, {'u': 9, 'v': 6}, {'u': 9, 'v': 7}, {'u': 9, 'v': 10}, {'u': 2, 'v': 0}, {'u': 2, 'v': 3}, {'u': 7, 'v': 1}, {'u': 7, 'v': 6}, {'u': 6, 'v': 1}, {'u': 6, 'v': 3}, {'u': 6, 'v': 4}, {'u': 10, 'v': 4}, {'u': 1, 'v': 4}, {'u': 3, 'v': 0}]}","[[0, 2, 4, 6, 7, 8], [1, 3, 5, 9, 10, 11]]",8,csv,0
MAXCUT,MAXCUT,"In a small theater the stage manager needs to assign every musician to either the left or right wing of the stage. What makes one assignment better than another is how many known collaboration pairs get separated by that split β simply count the pairs where one person is left and the other is right; the higher that number, the more successful the placement. Everyone must be placed once and only once, and the specific musicians and their collaborating partners are listed below.
{
""total_musicians"": 11,
""total_collaborations"": 23,
""edges"": [
{
""musician_id_a"": 9,
""musician_id_b"": 0
},
{
""musician_id_a"": 9,
""musician_id_b"": 1
},
{
""musician_id_a"": 9,
""musician_id_b"": 3
},
{
""musician_id_a"": 9,
""musician_id_b"": 4
},
{
""musician_id_a"": 9,
""musician_id_b"": 6
},
{
""musician_id_a"": 9,
""musician_id_b"": 7
},
{
""musician_id_a"": 9,
""musician_id_b"": 8
},
{
""musician_id_a"": 9,
""musician_id_b"": 10
},
{
""musician_id_a"": 3,
""musician_id_b"": 2
},
{
""musician_id_a"": 3,
""musician_id_b"": 4
},
{
""musician_id_a"": 3,
""musician_id_b"": 5
},
{
""musician_id_a"": 3,
""musician_id_b"": 10
},
{
""musician_id_a"": 0,
""musician_id_b"": 1
},
{
""musician_id_a"": 0,
""musician_id_b"": 2
},
{
""musician_id_a"": 0,
""musician_id_b"": 8
},
{
""musician_id_a"": 4,
""musician_id_b"": 2
},
{
""musician_id_a"": 4,
""musician_id_b"": 5
},
{
""musician_id_a"": 4,
""musician_id_b"": 8
},
{
""musician_id_a"": 1,
""musician_id_b"": 2
},
{
""musician_id_a"": 2,
""musician_id_b"": 5
},
{
""musician_id_a"": 2,
""musician_id_b"": 7
},
{
""musician_id_a"": 2,
""musician_id_b"": 8
},
{
""musician_id_a"": 2,
""musician_id_b"": 10
}
]
}
Oh β when you send back the placement, please use this simple JSON shape so it's easy to read and check:
{
""solution"": [
[""musician_id"", ""musician_id"", ...],
[""musician_id"", ""musician_id"", ...]
]
}
Here ""solution"" holds two lists: the first list is the musicians assigned to the left wing, the second list is the musicians assigned to the right wing. The ""musician_id"" entries are just placeholders showing where each musician's exact identifier from the input should go. This is only a sketch of the shape I expect β not the actual assignment.
Please make sure to use the identifiers exactly as they appear in the instance input β do not rename them or invent new labels. For example: Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.","{'problem_type': 'MAXCUT', 'num_nodes': 11, 'num_edges': 23, 'edges': [{'u': 10, 'v': 1}, {'u': 10, 'v': 2}, {'u': 10, 'v': 4}, {'u': 10, 'v': 5}, {'u': 10, 'v': 7}, {'u': 10, 'v': 8}, {'u': 10, 'v': 9}, {'u': 10, 'v': 11}, {'u': 4, 'v': 3}, {'u': 4, 'v': 5}, {'u': 4, 'v': 6}, {'u': 4, 'v': 11}, {'u': 1, 'v': 2}, {'u': 1, 'v': 3}, {'u': 1, 'v': 9}, {'u': 5, 'v': 3}, {'u': 5, 'v': 6}, {'u': 5, 'v': 9}, {'u': 2, 'v': 3}, {'u': 3, 'v': 6}, {'u': 3, 'v': 8}, {'u': 3, 'v': 9}, {'u': 3, 'v': 11}], 'source_file': 'wv2010.mtx', 'density': 0.41818181818181815, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0008.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0008.png', 'edge_connectivity': 1}","[[2, 5, 6, 7, 8, 9, 11], [1, 3, 4, 10]]",17.0,"{'num_nodes': 11, 'num_edges': 23, 'edges': [{'u': 9, 'v': 0}, {'u': 9, 'v': 1}, {'u': 9, 'v': 3}, {'u': 9, 'v': 4}, {'u': 9, 'v': 6}, {'u': 9, 'v': 7}, {'u': 9, 'v': 8}, {'u': 9, 'v': 10}, {'u': 3, 'v': 2}, {'u': 3, 'v': 4}, {'u': 3, 'v': 5}, {'u': 3, 'v': 10}, {'u': 0, 'v': 1}, {'u': 0, 'v': 2}, {'u': 0, 'v': 8}, {'u': 4, 'v': 2}, {'u': 4, 'v': 5}, {'u': 4, 'v': 8}, {'u': 1, 'v': 2}, {'u': 2, 'v': 5}, {'u': 2, 'v': 7}, {'u': 2, 'v': 8}, {'u': 2, 'v': 10}]}","[[1, 4, 5, 6, 7, 8, 10], [0, 2, 3, 9]]",9,json,0
MAXCUT,MAXCUT,"I set up a little office challenge: everyone gets put on either Team Red or Team Blue, and the idea is to arrange people so as many working pairs as possible end up split across the two teams. The way to judge a setup is simple β count every working relationship where one person is on Red and the other is on Blue, and try to make that count as big as possible. Make sure every staff member is on one team or the other β nobody left unassigned and nobody on both. The concrete list of who works with whom is shown below.
I've listed 8 staff and 14 working relationships below:
Working pair: A β C.
Working pair: A β F.
Working pair: D β C.
Working pair: D β G.
Working pair: B β C.
Working pair: B β H.
Working pair: E β C.
Working pair: E β G.
Working pair: E β H.
Working pair: C β F.
Working pair: C β G.
Working pair: C β H.
Working pair: H β G.
Working pair: G β F.
Arrange everyone so as many of these 14 working pairs as possible end up split between Team Red and Team Blue.
Also, when you send the team assignment back, please use this simple JSON layout so it's easy to check β two lists inside ""solution"", one list per team.
{
""solution"": [
[""staff_id"", ""staff_id"", ...],
[""staff_id"", ""staff_id"", ...]
]
}
This just shows the shape I expect: the first inner list is the people on Team Red, the second is Team Blue. Put each person's identifier (exactly as it appears in the instance) as a string in one of the lists β everyone should appear once and only once. The JSON above is just a sketch of the format, not the actual answer.
Please make sure to use the identifiers exactly as given in the instance input β no renaming and no new labels.
- for example: ""Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.""","{'problem_type': 'MAXCUT', 'num_nodes': 8, 'num_edges': 14, 'edges': [{'u': 1, 'v': 3}, {'u': 1, 'v': 6}, {'u': 4, 'v': 3}, {'u': 4, 'v': 7}, {'u': 2, 'v': 3}, {'u': 2, 'v': 8}, {'u': 5, 'v': 3}, {'u': 5, 'v': 7}, {'u': 5, 'v': 8}, {'u': 3, 'v': 6}, {'u': 3, 'v': 7}, {'u': 3, 'v': 8}, {'u': 8, 'v': 7}, {'u': 7, 'v': 6}], 'source_file': 'wv2010.mtx', 'density': 0.5, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0009.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0009.png', 'edge_connectivity': 2}","[[1, 4, 5, 6, 8], [2, 3, 7]]",10.0,"{'num_nodes': 8, 'num_edges': 14, 'edges': [{'u': 'A', 'v': 'C'}, {'u': 'A', 'v': 'F'}, {'u': 'D', 'v': 'C'}, {'u': 'D', 'v': 'G'}, {'u': 'B', 'v': 'C'}, {'u': 'B', 'v': 'H'}, {'u': 'E', 'v': 'C'}, {'u': 'E', 'v': 'G'}, {'u': 'E', 'v': 'H'}, {'u': 'C', 'v': 'F'}, {'u': 'C', 'v': 'G'}, {'u': 'C', 'v': 'H'}, {'u': 'H', 'v': 'G'}, {'u': 'G', 'v': 'F'}]}","[['A', 'D', 'E', 'F', 'H'], ['B', 'C', 'G']]",10,nl,names
MAXCUT,MAXCUT,"Someone in the production office wants the cast split into leads and supporting players in a way that maximizes the number of scenes where a lead is paired with a support. To compare different splits, just tally up how many scenes involve actors from different sides β the bigger that tally, the better the split. Each actor must be assigned to exactly one side; nobody can be left out or duplicated. The exact roster and scene map are listed below.
# total_actors=12
# total_scenes=17
actor_a,actor_b
6,1
6,8
6,10
7,2
9,1
9,2
9,3
5,1
5,2
5,10
5,11
10,0
10,11
11,0
11,4
1,3
2,4
If you want to send me a proposed split, just drop it in a little JSON blob like this:
{
""solution"": [
[""actor_id"", ""actor_id"", ...],
[""actor_id"", ""actor_id"", ...]
]
}
Think of that as: the ""solution"" field holds two lists β the first list is the actors youβd call the leads, the second list is the supporting players. Each entry is an actor identifier from the instance (I put ""actor_id"" as a placeholder here). This is just the shape I need, not the actual assignment β fill in the real actor IDs from the scene map when you reply.
Please use the exact identifiers given in the instance input β no renaming, 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β.","{'problem_type': 'MAXCUT', 'num_nodes': 12, 'num_edges': 17, 'edges': [{'u': 7, 'v': 2}, {'u': 7, 'v': 9}, {'u': 7, 'v': 11}, {'u': 8, 'v': 3}, {'u': 10, 'v': 2}, {'u': 10, 'v': 3}, {'u': 10, 'v': 4}, {'u': 6, 'v': 2}, {'u': 6, 'v': 3}, {'u': 6, 'v': 11}, {'u': 6, 'v': 12}, {'u': 11, 'v': 1}, {'u': 11, 'v': 12}, {'u': 12, 'v': 1}, {'u': 12, 'v': 5}, {'u': 2, 'v': 4}, {'u': 3, 'v': 5}], 'source_file': 'wi2010.mtx', 'density': 0.25757575757575757, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0010.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0010.png', 'edge_connectivity': 1}","[[1, 4, 5, 6, 7, 8, 10], [2, 3, 9, 11, 12]]",15.0,"{'num_nodes': 12, 'num_edges': 17, 'edges': [{'u': 6, 'v': 1}, {'u': 6, 'v': 8}, {'u': 6, 'v': 10}, {'u': 7, 'v': 2}, {'u': 9, 'v': 1}, {'u': 9, 'v': 2}, {'u': 9, 'v': 3}, {'u': 5, 'v': 1}, {'u': 5, 'v': 2}, {'u': 5, 'v': 10}, {'u': 5, 'v': 11}, {'u': 10, 'v': 0}, {'u': 10, 'v': 11}, {'u': 11, 'v': 0}, {'u': 11, 'v': 4}, {'u': 1, 'v': 3}, {'u': 2, 'v': 4}]}","[[0, 3, 4, 5, 6, 7, 9], [1, 2, 8, 10, 11]]",11,csv,0
MAXCUT,MAXCUT,"We gathered a bunch of variable icons on a canvas and need to split them into two groups, left and right, so that the strongest relationships fall across the divide instead of sitting inside the same group. That means making a choice for every variable (each one goes in exactly one group), then tallying up the number of strong correlations that connect a variable on the left with a variable on the right β the goal is to make that tally as large as possible. The concrete details will be shown below.
# total_variables=11
# total_strong_correlations=22
variable_a_id,variable_b_id
D,I
D,J
K,A
K,I
I,A
I,C
I,E
I,F
I,H
I,J
J,A
J,B
J,C
J,G
J,H
F,A
A,B
A,E
A,G
E,B
C,B
G,H
You can just drop the two groups into this simple JSON shape when you reply β keeps things tidy and easy to read:
{
""solution"": [
[""variable_id"", ""variable_id"", ...],
[""variable_id"", ""variable_id"", ...]
]
}
Each of the two inner lists is one side of the split (left and right), and each placeholder is where you'd put a variable's identifier. Think of it like a form: first list = left group, second list = right group. This is just the expected shape β not the actual solution itself.
Please use the exact identifiers given in the instance input β do not rename them or invent new ones.
- for example: ""Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.""","{'problem_type': 'MAXCUT', 'num_nodes': 11, 'num_edges': 22, 'edges': [{'u': 4, 'v': 9}, {'u': 4, 'v': 10}, {'u': 11, 'v': 1}, {'u': 11, 'v': 9}, {'u': 9, 'v': 1}, {'u': 9, 'v': 3}, {'u': 9, 'v': 5}, {'u': 9, 'v': 6}, {'u': 9, 'v': 8}, {'u': 9, 'v': 10}, {'u': 10, 'v': 1}, {'u': 10, 'v': 2}, {'u': 10, 'v': 3}, {'u': 10, 'v': 7}, {'u': 10, 'v': 8}, {'u': 6, 'v': 1}, {'u': 1, 'v': 2}, {'u': 1, 'v': 5}, {'u': 1, 'v': 7}, {'u': 5, 'v': 2}, {'u': 3, 'v': 2}, {'u': 7, 'v': 8}], 'source_file': 'wv2010.mtx', 'density': 0.4, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0011.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0011.png', 'edge_connectivity': 2}","[[2, 6, 7, 9, 10, 11], [1, 3, 4, 5, 8]]",16.0,"{'num_nodes': 11, 'num_edges': 22, 'edges': [{'u': 'D', 'v': 'I'}, {'u': 'D', 'v': 'J'}, {'u': 'K', 'v': 'A'}, {'u': 'K', 'v': 'I'}, {'u': 'I', 'v': 'A'}, {'u': 'I', 'v': 'C'}, {'u': 'I', 'v': 'E'}, {'u': 'I', 'v': 'F'}, {'u': 'I', 'v': 'H'}, {'u': 'I', 'v': 'J'}, {'u': 'J', 'v': 'A'}, {'u': 'J', 'v': 'B'}, {'u': 'J', 'v': 'C'}, {'u': 'J', 'v': 'G'}, {'u': 'J', 'v': 'H'}, {'u': 'F', 'v': 'A'}, {'u': 'A', 'v': 'B'}, {'u': 'A', 'v': 'E'}, {'u': 'A', 'v': 'G'}, {'u': 'E', 'v': 'B'}, {'u': 'C', 'v': 'B'}, {'u': 'G', 'v': 'H'}]}","[['B', 'F', 'G', 'I', 'J', 'K'], ['A', 'C', 'D', 'E', 'H']]",12,csv,names
MAXCUT,MAXCUT,"I live on a long street with buildings on both sides, and the town wants to label each building as either part of the north block or the south block. The job is to decide, for every single building, whether it belongs to the north side or the south side β no building can be skipped or put in both places. What makes one assignment better than another is how many utility lines end up running between a north building and a south building: count every line that links a building on the north block to one on the south block, and try to make that count as big as possible. Concrete details of the street layout are shown below.
# num_buildings=9
# num_utility_lines=15
building_u_id,building_v_id
8,1
8,2
8,4
8,9
3,2
3,4
3,9
2,9
7,4
7,5
7,9
4,5
5,9
6,9
1,9
Oh, and when you send back the assignment, it helps a lot if you stick to a tiny JSON shape like this so it's easy to read:
{
""solution"": [
[""building_id"", ""building_id"", ...],
[""building_id"", ""building_id"", ...]
]
}
The two inner lists are the two sides of the street (one list for the north block, one for the south block). Each quoted placeholder is just showing where a building identifier goes β in your real reply, swap those placeholders for the actual building IDs from the instance. This is just a sketch of the format I expect, not the actual answer.
Please use the identifiers exactly as they appear in the instance input β do not rename them or invent new labels.
- for example: Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.","{'problem_type': 'MAXCUT', 'num_nodes': 9, 'num_edges': 15, 'edges': [{'u': 8, 'v': 1}, {'u': 8, 'v': 2}, {'u': 8, 'v': 4}, {'u': 8, 'v': 9}, {'u': 3, 'v': 2}, {'u': 3, 'v': 4}, {'u': 3, 'v': 9}, {'u': 2, 'v': 9}, {'u': 7, 'v': 4}, {'u': 7, 'v': 5}, {'u': 7, 'v': 9}, {'u': 4, 'v': 5}, {'u': 5, 'v': 9}, {'u': 6, 'v': 9}, {'u': 1, 'v': 9}], 'source_file': 'wv2010.mtx', 'density': 0.4166666666666667, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0012.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0012.png', 'edge_connectivity': 1}","[[1, 2, 4, 9], [3, 5, 6, 7, 8]]",12.0,"{'num_nodes': 9, 'num_edges': 15, 'edges': [{'u': 8, 'v': 1}, {'u': 8, 'v': 2}, {'u': 8, 'v': 4}, {'u': 8, 'v': 9}, {'u': 3, 'v': 2}, {'u': 3, 'v': 4}, {'u': 3, 'v': 9}, {'u': 2, 'v': 9}, {'u': 7, 'v': 4}, {'u': 7, 'v': 5}, {'u': 7, 'v': 9}, {'u': 4, 'v': 5}, {'u': 5, 'v': 9}, {'u': 6, 'v': 9}, {'u': 1, 'v': 9}]}","[[1, 2, 4, 9], [3, 5, 6, 7, 8]]",13,csv,1
MAXCUT,MAXCUT,"I run the small dog room at a daycare and the task is simple-sounding: every dog has to live either in the indoor run or the outdoor run, and certain pairs of dogs are marked as compatible. The aim is to split the pack so that as many of those compatible pairs as possible end up in different runs β the βscoreβ for any arrangement is just the count of compatible pairs that are separated between indoor and outdoor. Every dog has to be placed in exactly one of the two runs (no dog left out and none put in both). The exact list of dogs and their compatibility pairs is shown below.
# num_dogs=12
# num_compatibility_pairs=23
dog_u_id,dog_v_id
D,C
D,I
D,J
A,E
A,F
A,J
A,K
A,L
G,B
G,E
G,H
F,L
J,C
J,I
J,L
I,C
I,E
I,K
K,E
E,B
E,C
E,H
C,B
If you want to hand me the final split in a computer-friendly way, just drop it in a tiny JSON like this:
{
""solution"": [
[""dog_id"", ""dog_id"", ...],
[""dog_id"", ""dog_id"", ...]
]
}
Think of the first list as the dogs you put in the indoor run and the second list as the dogs in the outdoor run. Each entry should be the exact dog identifier from the instance (this JSON is just the shape I need, not the actual assignment).
Please make sure you use the identifiers exactly as they appear in the input β no renaming and no invented labels.
- for example: ""Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.""","{'problem_type': 'MAXCUT', 'num_nodes': 12, 'num_edges': 23, 'edges': [{'u': 4, 'v': 3}, {'u': 4, 'v': 9}, {'u': 4, 'v': 10}, {'u': 1, 'v': 5}, {'u': 1, 'v': 6}, {'u': 1, 'v': 10}, {'u': 1, 'v': 11}, {'u': 1, 'v': 12}, {'u': 7, 'v': 2}, {'u': 7, 'v': 5}, {'u': 7, 'v': 8}, {'u': 6, 'v': 12}, {'u': 10, 'v': 3}, {'u': 10, 'v': 9}, {'u': 10, 'v': 12}, {'u': 9, 'v': 3}, {'u': 9, 'v': 5}, {'u': 9, 'v': 11}, {'u': 11, 'v': 5}, {'u': 5, 'v': 2}, {'u': 5, 'v': 3}, {'u': 5, 'v': 8}, {'u': 3, 'v': 2}], 'source_file': 'wa2010.mtx', 'density': 0.3484848484848485, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0013.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0013.png', 'edge_connectivity': 2}","[[2, 4, 5, 6, 10, 11], [1, 3, 7, 8, 9, 12]]",17.0,"{'num_nodes': 12, 'num_edges': 23, 'edges': [{'u': 'D', 'v': 'C'}, {'u': 'D', 'v': 'I'}, {'u': 'D', 'v': 'J'}, {'u': 'A', 'v': 'E'}, {'u': 'A', 'v': 'F'}, {'u': 'A', 'v': 'J'}, {'u': 'A', 'v': 'K'}, {'u': 'A', 'v': 'L'}, {'u': 'G', 'v': 'B'}, {'u': 'G', 'v': 'E'}, {'u': 'G', 'v': 'H'}, {'u': 'F', 'v': 'L'}, {'u': 'J', 'v': 'C'}, {'u': 'J', 'v': 'I'}, {'u': 'J', 'v': 'L'}, {'u': 'I', 'v': 'C'}, {'u': 'I', 'v': 'E'}, {'u': 'I', 'v': 'K'}, {'u': 'K', 'v': 'E'}, {'u': 'E', 'v': 'B'}, {'u': 'E', 'v': 'C'}, {'u': 'E', 'v': 'H'}, {'u': 'C', 'v': 'B'}]}","[['B', 'D', 'E', 'F', 'J', 'K'], ['A', 'C', 'G', 'H', 'I', 'L']]",14,csv,names
MAXCUT,MAXCUT,"Recently the curator asked for a simple plan: every painting must live on either the east gallery wall or the west gallery wall (no skipping or repeating), and certain works are connected in pairs. The goal was to split as many of those connected pairs across the two walls as possible. Evaluate any arrangement by counting how many pairs are split between east and west β the count is the measure of success. The detailed inventory and pairings are provided below.
There are 12 paintings and 24 thematic pairs to place.
Painting 4 is thematically linked with painting 0.
Painting 4 is thematically linked with painting 1.
Painting 4 is thematically linked with painting 5.
Painting 4 is thematically linked with painting 7.
Painting 4 is thematically linked with painting 10.
Painting 4 is thematically linked with painting 11.
Painting 6 is thematically linked with painting 3.
Painting 6 is thematically linked with painting 5.
Painting 0 is thematically linked with painting 5.
Painting 0 is thematically linked with painting 11.
Painting 8 is thematically linked with painting 2.
Painting 8 is thematically linked with painting 5.
Painting 8 is thematically linked with painting 10.
Painting 1 is thematically linked with painting 5.
Painting 1 is thematically linked with painting 7.
Painting 5 is thematically linked with painting 2.
Painting 5 is thematically linked with painting 3.
Painting 5 is thematically linked with painting 7.
Painting 5 is thematically linked with painting 10.
Painting 5 is thematically linked with painting 11.
Painting 7 is thematically linked with painting 10.
Painting 9 is thematically linked with painting 10.
Painting 10 is thematically linked with painting 2.
Painting 10 is thematically linked with painting 3.
Score an arrangement by counting how many of these 24 pairs are assigned to opposite walls.
Oh, and when you reply with an arrangement, please follow this simple JSON layout:
{
""solution"": [
[""painting_id"", ""painting_id"", ...],
[""painting_id"", ""painting_id"", ...]
]
}
This just sketches the shape I need: ""solution"" contains two lists β the first list is the paintings assigned to the east wall, the second list is the paintings assigned to the west wall. Each entry is a painting identifier (just the IDs from the instance).
This JSON is only a sketch of the expected shape, not the actual answer.
Also, please make sure all identifiers are used exactly as they appear in the instance input β no renaming and no new labels.
- for example: ""Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.""","{'problem_type': 'MAXCUT', 'num_nodes': 12, 'num_edges': 24, 'edges': [{'u': 5, 'v': 1}, {'u': 5, 'v': 2}, {'u': 5, 'v': 6}, {'u': 5, 'v': 8}, {'u': 5, 'v': 11}, {'u': 5, 'v': 12}, {'u': 7, 'v': 4}, {'u': 7, 'v': 6}, {'u': 1, 'v': 6}, {'u': 1, 'v': 12}, {'u': 9, 'v': 3}, {'u': 9, 'v': 6}, {'u': 9, 'v': 11}, {'u': 2, 'v': 6}, {'u': 2, 'v': 8}, {'u': 6, 'v': 3}, {'u': 6, 'v': 4}, {'u': 6, 'v': 8}, {'u': 6, 'v': 11}, {'u': 6, 'v': 12}, {'u': 8, 'v': 11}, {'u': 10, 'v': 11}, {'u': 11, 'v': 3}, {'u': 11, 'v': 4}], 'source_file': 'wi2010.mtx', 'density': 0.36363636363636365, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0014.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0014.png', 'edge_connectivity': 1}","[[4, 5, 6, 9, 10], [1, 2, 3, 7, 8, 11, 12]]",17.0,"{'num_nodes': 12, 'num_edges': 24, 'edges': [{'u': 4, 'v': 0}, {'u': 4, 'v': 1}, {'u': 4, 'v': 5}, {'u': 4, 'v': 7}, {'u': 4, 'v': 10}, {'u': 4, 'v': 11}, {'u': 6, 'v': 3}, {'u': 6, 'v': 5}, {'u': 0, 'v': 5}, {'u': 0, 'v': 11}, {'u': 8, 'v': 2}, {'u': 8, 'v': 5}, {'u': 8, 'v': 10}, {'u': 1, 'v': 5}, {'u': 1, 'v': 7}, {'u': 5, 'v': 2}, {'u': 5, 'v': 3}, {'u': 5, 'v': 7}, {'u': 5, 'v': 10}, {'u': 5, 'v': 11}, {'u': 7, 'v': 10}, {'u': 9, 'v': 10}, {'u': 10, 'v': 2}, {'u': 10, 'v': 3}]}","[[3, 4, 5, 8, 9], [0, 1, 2, 6, 7, 10, 11]]",15,nl,0
MAXCUT,MAXCUT,"We have a stack of exam items and a list of question pairs that are related, and the job is to divide the questions between a morning booklet and an afternoon booklet. A layout is better the more of those related pairs are separated between the two booklets; to tell which layout is better you just count how many related pairs end up with one question in each booklet. All questions need to be assigned to one booklet only β none can be skipped or duplicated. The exact questions and their links are given below.
# num_questions=11
# num_related_pairs=22
question_a_id,question_b_id
A,B
A,E
A,J
K,F
K,G
K,H
K,J
J,C
J,D
J,E
J,F
J,G
J,I
C,E
C,F
H,G
H,I
D,B
D,I
I,B
I,G
E,B
If you'd like to give the layout in a neat machine-friendly way, you can use this simple JSON shape β nothing fancy, just two lists inside ""solution"":
{
""solution"": [
[""question_id"", ""question_id"", ...],
[""question_id"", ""question_id"", ...]
]
}
Think of it like a little form: the first inner list is the set of questions that go into the morning booklet, the second inner list is the afternoon booklet, and each entry is the identifier for a question. The ""question_id"" strings above are just placeholders showing the format β you'll replace them with the actual IDs from the instance.
This JSON is only a sketch of the expected shape, not the actual assignment.
Please make sure to use the exact identifiers from the instance input β do not rename them or invent new ones.
- for example: ""Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.""","{'problem_type': 'MAXCUT', 'num_nodes': 11, 'num_edges': 22, 'edges': [{'u': 1, 'v': 2}, {'u': 1, 'v': 5}, {'u': 1, 'v': 10}, {'u': 11, 'v': 6}, {'u': 11, 'v': 7}, {'u': 11, 'v': 8}, {'u': 11, 'v': 10}, {'u': 10, 'v': 3}, {'u': 10, 'v': 4}, {'u': 10, 'v': 5}, {'u': 10, 'v': 6}, {'u': 10, 'v': 7}, {'u': 10, 'v': 9}, {'u': 3, 'v': 5}, {'u': 3, 'v': 6}, {'u': 8, 'v': 7}, {'u': 8, 'v': 9}, {'u': 4, 'v': 2}, {'u': 4, 'v': 9}, {'u': 9, 'v': 2}, {'u': 9, 'v': 7}, {'u': 5, 'v': 2}], 'source_file': 'vt2010.mtx', 'density': 0.4, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0015.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0015.png', 'edge_connectivity': 3}","[[2, 5, 6, 7, 8, 10], [1, 3, 4, 9, 11]]",16.0,"{'num_nodes': 11, 'num_edges': 22, 'edges': [{'u': 'A', 'v': 'B'}, {'u': 'A', 'v': 'E'}, {'u': 'A', 'v': 'J'}, {'u': 'K', 'v': 'F'}, {'u': 'K', 'v': 'G'}, {'u': 'K', 'v': 'H'}, {'u': 'K', 'v': 'J'}, {'u': 'J', 'v': 'C'}, {'u': 'J', 'v': 'D'}, {'u': 'J', 'v': 'E'}, {'u': 'J', 'v': 'F'}, {'u': 'J', 'v': 'G'}, {'u': 'J', 'v': 'I'}, {'u': 'C', 'v': 'E'}, {'u': 'C', 'v': 'F'}, {'u': 'H', 'v': 'G'}, {'u': 'H', 'v': 'I'}, {'u': 'D', 'v': 'B'}, {'u': 'D', 'v': 'I'}, {'u': 'I', 'v': 'B'}, {'u': 'I', 'v': 'G'}, {'u': 'E', 'v': 'B'}]}","[['B', 'E', 'F', 'G', 'H', 'J'], ['A', 'C', 'D', 'I', 'K']]",16,csv,names
MAXCUT,MAXCUT,"Recently the network team needed to divide client devices into VLAN A versus VLAN B so the network would have as many active peer links as possible running between the two VLANs. To evaluate any division, just count the active links that land on different VLANs; the division with the larger count is preferred. Be sure every device is assigned to one VLAN only; no device can be left out or duplicated. The full list of devices and links is shown below.
{
""total_devices"": 12,
""total_active_peer_links"": 22,
""edges"": [
{
""endpoint_device_u"": 8,
""endpoint_device_v"": 3
},
{
""endpoint_device_u"": 8,
""endpoint_device_v"": 5
},
{
""endpoint_device_u"": 8,
""endpoint_device_v"": 6
},
{
""endpoint_device_u"": 8,
""endpoint_device_v"": 10
},
{
""endpoint_device_u"": 6,
""endpoint_device_v"": 2
},
{
""endpoint_device_u"": 6,
""endpoint_device_v"": 5
},
{
""endpoint_device_u"": 6,
""endpoint_device_v"": 10
},
{
""endpoint_device_u"": 9,
""endpoint_device_v"": 0
},
{
""endpoint_device_u"": 9,
""endpoint_device_v"": 2
},
{
""endpoint_device_u"": 9,
""endpoint_device_v"": 4
},
{
""endpoint_device_u"": 0,
""endpoint_device_v"": 2
},
{
""endpoint_device_u"": 5,
""endpoint_device_v"": 2
},
{
""endpoint_device_u"": 2,
""endpoint_device_v"": 1
},
{
""endpoint_device_u"": 2,
""endpoint_device_v"": 4
},
{
""endpoint_device_u"": 2,
""endpoint_device_v"": 10
},
{
""endpoint_device_u"": 2,
""endpoint_device_v"": 11
},
{
""endpoint_device_u"": 10,
""endpoint_device_v"": 1
},
{
""endpoint_device_u"": 10,
""endpoint_device_v"": 3
},
{
""endpoint_device_u"": 10,
""endpoint_device_v"": 7
},
{
""endpoint_device_u"": 10,
""endpoint_device_v"": 11
},
{
""endpoint_device_u"": 3,
""endpoint_device_v"": 7
},
{
""endpoint_device_u"": 1,
""endpoint_device_v"": 7
}
]
}
If you want to send over a candidate division, just use this simple JSON shape β makes it easy for me to read and for whatever tooling you might have to pick up:
{
""solution"": [
[""device_id"", ""device_id"", ...],
[""device_id"", ""device_id"", ...]
]
}
Friendly note: the first list is the devices you want in VLAN A, the second list is the devices for VLAN B. Each ""device_id"" is a placeholder for one exact device identifier from the instance. This is just a sketch of the shape I expect, not the actual answer itself.
Please be sure to use the identifiers exactly as they appear in the instance input β do not rename them or invent new labels.
- for example: ""Valid identifiers look like plain numbers such as ""1"" or ""23"", single capital letters like ""A"" or ""B"", or a capital letter followed by digits like ""A1"" or ""X7"".","{'problem_type': 'MAXCUT', 'num_nodes': 12, 'num_edges': 22, 'edges': [{'u': 9, 'v': 4}, {'u': 9, 'v': 6}, {'u': 9, 'v': 7}, {'u': 9, 'v': 11}, {'u': 7, 'v': 3}, {'u': 7, 'v': 6}, {'u': 7, 'v': 11}, {'u': 10, 'v': 1}, {'u': 10, 'v': 3}, {'u': 10, 'v': 5}, {'u': 1, 'v': 3}, {'u': 6, 'v': 3}, {'u': 3, 'v': 2}, {'u': 3, 'v': 5}, {'u': 3, 'v': 11}, {'u': 3, 'v': 12}, {'u': 11, 'v': 2}, {'u': 11, 'v': 4}, {'u': 11, 'v': 8}, {'u': 11, 'v': 12}, {'u': 4, 'v': 8}, {'u': 2, 'v': 8}], 'source_file': 'wy2010.mtx', 'density': 0.3333333333333333, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0016.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0016.png', 'edge_connectivity': 2}","[[1, 2, 4, 5, 6, 7, 12], [3, 8, 9, 10, 11]]",17.0,"{'num_nodes': 12, 'num_edges': 22, 'edges': [{'u': 8, 'v': 3}, {'u': 8, 'v': 5}, {'u': 8, 'v': 6}, {'u': 8, 'v': 10}, {'u': 6, 'v': 2}, {'u': 6, 'v': 5}, {'u': 6, 'v': 10}, {'u': 9, 'v': 0}, {'u': 9, 'v': 2}, {'u': 9, 'v': 4}, {'u': 0, 'v': 2}, {'u': 5, 'v': 2}, {'u': 2, 'v': 1}, {'u': 2, 'v': 4}, {'u': 2, 'v': 10}, {'u': 2, 'v': 11}, {'u': 10, 'v': 1}, {'u': 10, 'v': 3}, {'u': 10, 'v': 7}, {'u': 10, 'v': 11}, {'u': 3, 'v': 7}, {'u': 1, 'v': 7}]}","[[0, 1, 3, 4, 5, 6, 11], [2, 7, 8, 9, 10]]",17,json,0
MAXCUT,MAXCUT,"There's a simple challenge at practice: divide the players into two groups β offense and defense β and choose where each person stands so as many passing relationships as possible end up bridging the two groups. Every player must belong to one side only and get a spot on the layout, and the way to tell which arrangement wins is to tally how many passes connect someone on one side with someone on the other. The full lineup and the passing relationships are shown below.
{
""total_players"": 9,
""total_pass_relationships"": 12,
""edges"": [
{
""player_a"": 1,
""player_b"": 0
},
{
""player_a"": 1,
""player_b"": 7
},
{
""player_a"": 8,
""player_b"": 0
},
{
""player_a"": 8,
""player_b"": 5
},
{
""player_a"": 8,
""player_b"": 6
},
{
""player_a"": 6,
""player_b"": 0
},
{
""player_a"": 3,
""player_b"": 0
},
{
""player_a"": 3,
""player_b"": 4
},
{
""player_a"": 4,
""player_b"": 0
},
{
""player_a"": 7,
""player_b"": 0
},
{
""player_a"": 0,
""player_b"": 2
},
{
""player_a"": 0,
""player_b"": 5
}
]
}
Oh, and if you want to send the answer back in a compact machine-friendly way, a little JSON sketch like this works fine:
{
""solution"": [
[""player_id"", ""player_id"", ...],
[""player_id"", ""player_id"", ...]
]
}
The idea here is simple: the top array is one side (say offense), the bottom array is the other side (defense), and each string is a player identifier to place on that side. It's just a template for the shape I expect β not the actual assignment.
Please make sure to use the exact identifiers from the instance input β don't rename them or invent new labels.
- for example: ""Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.""","{'problem_type': 'MAXCUT', 'num_nodes': 9, 'num_edges': 12, 'edges': [{'u': 2, 'v': 1}, {'u': 2, 'v': 8}, {'u': 9, 'v': 1}, {'u': 9, 'v': 6}, {'u': 9, 'v': 7}, {'u': 7, 'v': 1}, {'u': 4, 'v': 1}, {'u': 4, 'v': 5}, {'u': 5, 'v': 1}, {'u': 8, 'v': 1}, {'u': 1, 'v': 3}, {'u': 1, 'v': 6}], 'source_file': 'vt2010.mtx', 'density': 0.3333333333333333, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0017.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0017.png', 'edge_connectivity': 1}","[[1, 4, 8, 9], [2, 3, 5, 6, 7]]",9.0,"{'num_nodes': 9, 'num_edges': 12, 'edges': [{'u': 1, 'v': 0}, {'u': 1, 'v': 7}, {'u': 8, 'v': 0}, {'u': 8, 'v': 5}, {'u': 8, 'v': 6}, {'u': 6, 'v': 0}, {'u': 3, 'v': 0}, {'u': 3, 'v': 4}, {'u': 4, 'v': 0}, {'u': 7, 'v': 0}, {'u': 0, 'v': 2}, {'u': 0, 'v': 5}]}","[[0, 3, 7, 8], [1, 2, 4, 5, 6]]",18,json,0
MAXCUT,MAXCUT,"I was tidying up a mock social network in my head: every user needs to go on either the public roster or the private roster, and the fun part is trying to put people on opposite lists whenever theyβre friends. The better the split, the more friendship pairs end up linking someone on public with someone on private β you just count how many friend connections cross between the two lists to see how well it worked. Every account has to be assigned to one of the two lists and can't be left out or duplicated. The exact list of accounts and whoβs friends with whom is shown below.
There are 9 accounts in total and 15 friendships.
| account_a | account_b |
|---|---|
| F | C |
| F | E |
| F | G |
| F | H |
| C | D |
| C | H |
| C | I |
| I | A |
| I | D |
| E | A |
| E | B |
| E | G |
| E | H |
| H | A |
| B | A |
If you want to pass the split back in a neat format, hereβs a little JSON sketch you can follow:
{
""solution"": [
[""user_id"", ""user_id"", ...],
[""user_id"", ""user_id"", ...]
]
}
Think of ""solution"" as the two rosters: the first inner list is everyone on the public roster, the second is everyone on the private roster. Each placeholder like ""user_id"" stands in for an account identifier β just list each account once, in whichever roster it belongs. This is just the shape I expect, not the actual answer.
Please use the identifiers exactly as they appear in the problem input β no renaming, 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"".","{'problem_type': 'MAXCUT', 'num_nodes': 9, 'num_edges': 15, 'edges': [{'u': 6, 'v': 3}, {'u': 6, 'v': 5}, {'u': 6, 'v': 7}, {'u': 6, 'v': 8}, {'u': 3, 'v': 4}, {'u': 3, 'v': 8}, {'u': 3, 'v': 9}, {'u': 9, 'v': 1}, {'u': 9, 'v': 4}, {'u': 5, 'v': 1}, {'u': 5, 'v': 2}, {'u': 5, 'v': 7}, {'u': 5, 'v': 8}, {'u': 8, 'v': 1}, {'u': 2, 'v': 1}], 'source_file': 'wa2010.mtx', 'density': 0.4166666666666667, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0018.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0018.png', 'edge_connectivity': 2}","[[1, 4, 5, 6], [2, 3, 7, 8, 9]]",11.0,"{'num_nodes': 9, 'num_edges': 15, 'edges': [{'u': 'F', 'v': 'C'}, {'u': 'F', 'v': 'E'}, {'u': 'F', 'v': 'G'}, {'u': 'F', 'v': 'H'}, {'u': 'C', 'v': 'D'}, {'u': 'C', 'v': 'H'}, {'u': 'C', 'v': 'I'}, {'u': 'I', 'v': 'A'}, {'u': 'I', 'v': 'D'}, {'u': 'E', 'v': 'A'}, {'u': 'E', 'v': 'B'}, {'u': 'E', 'v': 'G'}, {'u': 'E', 'v': 'H'}, {'u': 'H', 'v': 'A'}, {'u': 'B', 'v': 'A'}]}","[['A', 'D', 'E', 'F'], ['B', 'C', 'G', 'H', 'I']]",19,markdown_table,names
MAXCUT,MAXCUT,"Someone set up two boxes β one labeled bedroom, one playroom β and dumped out a bunch of toys that are connected in pairs. The task is to pick which box each toy goes into so that most paired toys end up apart; you can compare arrangements by counting how many pairs are across the two boxes. Every toy has to go into one box only; nothing should be left out or copied. The exact toys and which ones are paired appear below.
# total_toys=11
# total_pairs=18
toy_one,toy_two
I,E
I,G
G,C
G,E
G,F
G,K
E,B
E,H
E,J
E,K
H,D
F,C
F,D
F,J
F,K
J,D
J,K
A,K
You can give the final arrangement in a simple JSON shape like this β just two lists inside ""solution"", one for each box:
{
""solution"": [
[""toy_id"", ""toy_id"", ...],
[""toy_id"", ""toy_id"", ...]
]
}
Think of the first inner list as the toys that go in the bedroom box and the second inner list as the toys that go in the playroom box. This JSON is just a little template showing the shape I expect, not the actual placement β fill in the exact toy identifiers from the instance.
Please use the identifiers exactly as they appear in the instance input β do not rename them or invent new labels. Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.","{'problem_type': 'MAXCUT', 'num_nodes': 11, 'num_edges': 18, 'edges': [{'u': 9, 'v': 5}, {'u': 9, 'v': 7}, {'u': 7, 'v': 3}, {'u': 7, 'v': 5}, {'u': 7, 'v': 6}, {'u': 7, 'v': 11}, {'u': 5, 'v': 2}, {'u': 5, 'v': 8}, {'u': 5, 'v': 10}, {'u': 5, 'v': 11}, {'u': 8, 'v': 4}, {'u': 6, 'v': 3}, {'u': 6, 'v': 4}, {'u': 6, 'v': 10}, {'u': 6, 'v': 11}, {'u': 10, 'v': 4}, {'u': 10, 'v': 11}, {'u': 1, 'v': 11}], 'source_file': 'vt2010.mtx', 'density': 0.32727272727272727, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0019.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0019.png', 'edge_connectivity': 1}","[[2, 3, 8, 9, 10, 11], [1, 4, 5, 6, 7]]",14.0,"{'num_nodes': 11, 'num_edges': 18, 'edges': [{'u': 'I', 'v': 'E'}, {'u': 'I', 'v': 'G'}, {'u': 'G', 'v': 'C'}, {'u': 'G', 'v': 'E'}, {'u': 'G', 'v': 'F'}, {'u': 'G', 'v': 'K'}, {'u': 'E', 'v': 'B'}, {'u': 'E', 'v': 'H'}, {'u': 'E', 'v': 'J'}, {'u': 'E', 'v': 'K'}, {'u': 'H', 'v': 'D'}, {'u': 'F', 'v': 'C'}, {'u': 'F', 'v': 'D'}, {'u': 'F', 'v': 'J'}, {'u': 'F', 'v': 'K'}, {'u': 'J', 'v': 'D'}, {'u': 'J', 'v': 'K'}, {'u': 'A', 'v': 'K'}]}","[['B', 'C', 'H', 'I', 'J', 'K'], ['A', 'D', 'E', 'F', 'G']]",20,csv,names
MAXCUT,MAXCUT,"There's a little puzzle behind the counter: every product has to go either on the front shelf or the back shelf, only one spot per item. What makes one arrangement better than another is how many complementary product pairs end up divided between the two shelvesβeach pair thatβs split counts as a win. So judging a setup is straightforward: tally up all the complementary pairs that end up with one on the front and one on the back, and more is better. The exact products and their complementary links will be shown below.
There are 12 products in total and 16 complementary pairs.
| product_a_id | product_b_id |
|---|---|
| 1 | 5 |
| 1 | 6 |
| 2 | 4 |
| 2 | 5 |
| 6 | 5 |
| 6 | 9 |
| 9 | 3 |
| 9 | 7 |
| 9 | 8 |
| 3 | 0 |
| 3 | 4 |
| 3 | 5 |
| 4 | 10 |
| 10 | 0 |
| 8 | 0 |
| 11 | 0 |
If you want to reply with a layout, a small JSON sketch like the one below is easiest to work with β nothing fancy, just two lists showing which products go on each shelf.
{
""solution"": [
[""product_id"", ""product_id"", ...],
[""product_id"", ""product_id"", ...]
]
}
Think of the first list as the front shelf and the second list as the back shelf β drop each product's id into one of the lists. This is just the shape I expect, not the actual answer.
Please use the identifiers exactly as they appear in the instance input β no renaming and no new labels.
- for example: ""Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.""","{'problem_type': 'MAXCUT', 'num_nodes': 12, 'num_edges': 16, 'edges': [{'u': 2, 'v': 6}, {'u': 2, 'v': 7}, {'u': 3, 'v': 5}, {'u': 3, 'v': 6}, {'u': 7, 'v': 6}, {'u': 7, 'v': 10}, {'u': 10, 'v': 4}, {'u': 10, 'v': 8}, {'u': 10, 'v': 9}, {'u': 4, 'v': 1}, {'u': 4, 'v': 5}, {'u': 4, 'v': 6}, {'u': 5, 'v': 11}, {'u': 11, 'v': 1}, {'u': 9, 'v': 1}, {'u': 12, 'v': 1}], 'source_file': 'wa2010.mtx', 'density': 0.24242424242424243, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0020.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0020.png', 'edge_connectivity': 1}","[[2, 3, 4, 7, 8, 9, 11, 12], [1, 5, 6, 10]]",15.0,"{'num_nodes': 12, 'num_edges': 16, 'edges': [{'u': 1, 'v': 5}, {'u': 1, 'v': 6}, {'u': 2, 'v': 4}, {'u': 2, 'v': 5}, {'u': 6, 'v': 5}, {'u': 6, 'v': 9}, {'u': 9, 'v': 3}, {'u': 9, 'v': 7}, {'u': 9, 'v': 8}, {'u': 3, 'v': 0}, {'u': 3, 'v': 4}, {'u': 3, 'v': 5}, {'u': 4, 'v': 10}, {'u': 10, 'v': 0}, {'u': 8, 'v': 0}, {'u': 11, 'v': 0}]}","[[1, 2, 3, 6, 7, 8, 10, 11], [0, 4, 5, 9]]",21,markdown_table,0
MAXCUT,MAXCUT,"Many people on the crew are sorting tracks into two playlists called Alpha and Beta, and the rule is each track goes to exactly one playlist β nothingβs left out or repeated. The point is to separate collaborators across the two lists as often as possible; measure how well that works by counting how many collaboration pairs are split between Alpha and Beta, with larger counts indicating a better arrangement. The detailed track and collaboration info is shown below.
{
""total_tracks"": 11,
""total_collaboration_links"": 17,
""edges"": [
{
""track_u_id"": ""J"",
""track_v_id"": ""B""
},
{
""track_u_id"": ""J"",
""track_v_id"": ""D""
},
{
""track_u_id"": ""J"",
""track_v_id"": ""K""
},
{
""track_u_id"": ""K"",
""track_v_id"": ""A""
},
{
""track_u_id"": ""K"",
""track_v_id"": ""D""
},
{
""track_u_id"": ""K"",
""track_v_id"": ""I""
},
{
""track_u_id"": ""E"",
""track_v_id"": ""C""
},
{
""track_u_id"": ""E"",
""track_v_id"": ""D""
},
{
""track_u_id"": ""E"",
""track_v_id"": ""H""
},
{
""track_u_id"": ""E"",
""track_v_id"": ""I""
},
{
""track_u_id"": ""B"",
""track_v_id"": ""D""
},
{
""track_u_id"": ""C"",
""track_v_id"": ""H""
},
{
""track_u_id"": ""H"",
""track_v_id"": ""D""
},
{
""track_u_id"": ""I"",
""track_v_id"": ""D""
},
{
""track_u_id"": ""D"",
""track_v_id"": ""A""
},
{
""track_u_id"": ""D"",
""track_v_id"": ""F""
},
{
""track_u_id"": ""D"",
""track_v_id"": ""G""
}
]
}
If you want to return the final split, just drop it into this simple JSON layout so it's easy to parse:
{
""solution"": [
[""vertex_id"", ""vertex_id"", ...],
[""vertex_id"", ""vertex_id"", ...]
]
}
Think of the first inner list as the tracks that go into the Alpha playlist and the second inner list as the tracks that go into Beta β each track appears in exactly one of the two lists. This JSON is just a sketch of the shape I need, not the actual answer.
Please make sure you use the exact identifiers from the instance input β no renaming, no new labels.
- for example: ""Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.""","{'problem_type': 'MAXCUT', 'num_nodes': 11, 'num_edges': 17, 'edges': [{'u': 10, 'v': 2}, {'u': 10, 'v': 4}, {'u': 10, 'v': 11}, {'u': 11, 'v': 1}, {'u': 11, 'v': 4}, {'u': 11, 'v': 9}, {'u': 5, 'v': 3}, {'u': 5, 'v': 4}, {'u': 5, 'v': 8}, {'u': 5, 'v': 9}, {'u': 2, 'v': 4}, {'u': 3, 'v': 8}, {'u': 8, 'v': 4}, {'u': 9, 'v': 4}, {'u': 4, 'v': 1}, {'u': 4, 'v': 6}, {'u': 4, 'v': 7}], 'source_file': 'wv2010.mtx', 'density': 0.3090909090909091, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0021.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0021.png', 'edge_connectivity': 1}","[[3, 4, 9, 10], [1, 2, 5, 6, 7, 8, 11]]",13.0,"{'num_nodes': 11, 'num_edges': 17, 'edges': [{'u': 'J', 'v': 'B'}, {'u': 'J', 'v': 'D'}, {'u': 'J', 'v': 'K'}, {'u': 'K', 'v': 'A'}, {'u': 'K', 'v': 'D'}, {'u': 'K', 'v': 'I'}, {'u': 'E', 'v': 'C'}, {'u': 'E', 'v': 'D'}, {'u': 'E', 'v': 'H'}, {'u': 'E', 'v': 'I'}, {'u': 'B', 'v': 'D'}, {'u': 'C', 'v': 'H'}, {'u': 'H', 'v': 'D'}, {'u': 'I', 'v': 'D'}, {'u': 'D', 'v': 'A'}, {'u': 'D', 'v': 'F'}, {'u': 'D', 'v': 'G'}]}","[['C', 'D', 'I', 'J'], ['A', 'B', 'E', 'F', 'G', 'H', 'K']]",22,json,names
MAXCUT,MAXCUT,"Recently the ops team wanted a quick way to separate machines into two camps: tag each server as Segment X or Segment Y, making sure each server has exactly one tag, and pick the tagging that makes the greatest number of links run from one camp to the other. A tagging wins when it produces more cross-camp connections; you can judge it by counting how many links connect different tags. The full list of servers and their links follows below.
There are 8 servers in total and 11 links.
| server_a | server_b |
|---|---|
| C | A |
| C | B |
| C | E |
| C | F |
| C | G |
| C | H |
| F | A |
| F | B |
| E | D |
| H | B |
| G | D |
Also, if you want to hand me the tagging in a machine-friendly way, just follow this little JSON sketch for the shape of the reply:
{
""solution"": [
[""server_id"", ""server_id"", ...],
[""server_id"", ""server_id"", ...]
]
}
Think of it like a simple form: ""solution"" contains two lists β the first list is all the servers you tag as Segment X, the second list is all the servers you tag as Segment Y. Keep it light and just drop the server identifiers into the appropriate list. This JSON is only a sketch of the expected shape, not the actual answer.
Please use the identifiers exactly as they appear in the instance input β no renaming and no new labels.
- for example: ""Valid identifiers look like plain numbers such as ""1"" or ""23"", single capital letters like ""A"" or ""B"", or a capital letter followed by digits like ""A1"" or ""X7"".""","{'problem_type': 'MAXCUT', 'num_nodes': 8, 'num_edges': 11, 'edges': [{'u': 3, 'v': 1}, {'u': 3, 'v': 2}, {'u': 3, 'v': 5}, {'u': 3, 'v': 6}, {'u': 3, 'v': 7}, {'u': 3, 'v': 8}, {'u': 6, 'v': 1}, {'u': 6, 'v': 2}, {'u': 5, 'v': 4}, {'u': 8, 'v': 2}, {'u': 7, 'v': 4}], 'source_file': 'wv2010.mtx', 'density': 0.39285714285714285, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0022.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0022.png', 'edge_connectivity': 2}","[[1, 5, 6, 7, 8], [2, 3, 4]]",9.0,"{'num_nodes': 8, 'num_edges': 11, 'edges': [{'u': 'C', 'v': 'A'}, {'u': 'C', 'v': 'B'}, {'u': 'C', 'v': 'E'}, {'u': 'C', 'v': 'F'}, {'u': 'C', 'v': 'G'}, {'u': 'C', 'v': 'H'}, {'u': 'F', 'v': 'A'}, {'u': 'F', 'v': 'B'}, {'u': 'E', 'v': 'D'}, {'u': 'H', 'v': 'B'}, {'u': 'G', 'v': 'D'}]}","[['A', 'E', 'F', 'G', 'H'], ['B', 'C', 'D']]",23,markdown_table,names
MAXCUT,MAXCUT,"Recently the school tried a fun exercise: assign each student to either House Red or House Blue (no overlaps, nobody left unassigned) and set it up so as many friend pairs as possible end up on opposite sides. To evaluate any assignment, simply tally all friendships that connect a Red student with a Blue student β that tally tells you how well the split did. The exact list of students and whoβs friends with whom appears below.
{
""num_students"": 11,
""num_friendships"": 22,
""edges"": [
{
""student_a"": 1,
""student_b"": 7
},
{
""student_a"": 1,
""student_b"": 9
},
{
""student_a"": 1,
""student_b"": 10
},
{
""student_a"": 10,
""student_b"": 3
},
{
""student_a"": 10,
""student_b"": 4
},
{
""student_a"": 10,
""student_b"": 5
},
{
""student_a"": 10,
""student_b"": 6
},
{
""student_a"": 10,
""student_b"": 8
},
{
""student_a"": 10,
""student_b"": 9
},
{
""student_a"": 10,
""student_b"": 11
},
{
""student_a"": 7,
""student_b"": 3
},
{
""student_a"": 7,
""student_b"": 6
},
{
""student_a"": 4,
""student_b"": 2
},
{
""student_a"": 4,
""student_b"": 8
},
{
""student_a"": 6,
""student_b"": 2
},
{
""student_a"": 6,
""student_b"": 3
},
{
""student_a"": 6,
""student_b"": 5
},
{
""student_a"": 6,
""student_b"": 8
},
{
""student_a"": 6,
""student_b"": 11
},
{
""student_a"": 2,
""student_b"": 3
},
{
""student_a"": 9,
""student_b"": 5
},
{
""student_a"": 11,
""student_b"": 5
}
]
}
If you want to hand me a proposed split, just put it in this simple JSON shape:
{
""solution"": [
[""student_id"", ""student_id"", ...],
[""student_id"", ""student_id"", ...]
]
}
Pretty straightforward: ""solution"" holds two lists β the first list is everyone you put in House Red, the second list is everyone you put in House Blue. Each entry should be the exact student identifier from the instance (this is just the shape/example, not the actual answer).
Please make sure to use the identifiers exactly as they appear in the instance input β no renaming and no new labels.
- for example: ""Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.""","{'problem_type': 'MAXCUT', 'num_nodes': 11, 'num_edges': 22, 'edges': [{'u': 1, 'v': 7}, {'u': 1, 'v': 9}, {'u': 1, 'v': 10}, {'u': 10, 'v': 3}, {'u': 10, 'v': 4}, {'u': 10, 'v': 5}, {'u': 10, 'v': 6}, {'u': 10, 'v': 8}, {'u': 10, 'v': 9}, {'u': 10, 'v': 11}, {'u': 7, 'v': 3}, {'u': 7, 'v': 6}, {'u': 4, 'v': 2}, {'u': 4, 'v': 8}, {'u': 6, 'v': 2}, {'u': 6, 'v': 3}, {'u': 6, 'v': 5}, {'u': 6, 'v': 8}, {'u': 6, 'v': 11}, {'u': 2, 'v': 3}, {'u': 9, 'v': 5}, {'u': 11, 'v': 5}], 'source_file': 'wa2010.mtx', 'density': 0.4, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0023.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0023.png', 'edge_connectivity': 3}","[[1, 3, 4, 5, 6], [2, 7, 8, 9, 10, 11]]",17.0,"{'num_nodes': 11, 'num_edges': 22, 'edges': [{'u': 1, 'v': 7}, {'u': 1, 'v': 9}, {'u': 1, 'v': 10}, {'u': 10, 'v': 3}, {'u': 10, 'v': 4}, {'u': 10, 'v': 5}, {'u': 10, 'v': 6}, {'u': 10, 'v': 8}, {'u': 10, 'v': 9}, {'u': 10, 'v': 11}, {'u': 7, 'v': 3}, {'u': 7, 'v': 6}, {'u': 4, 'v': 2}, {'u': 4, 'v': 8}, {'u': 6, 'v': 2}, {'u': 6, 'v': 3}, {'u': 6, 'v': 5}, {'u': 6, 'v': 8}, {'u': 6, 'v': 11}, {'u': 2, 'v': 3}, {'u': 9, 'v': 5}, {'u': 11, 'v': 5}]}","[[1, 3, 4, 5, 6], [2, 7, 8, 9, 10, 11]]",24,json,1
MAXCUT,MAXCUT,"I was helping the museum team figure out which pieces should go in Room North and which in Room South. Every exhibit has to sit in exactly one room β nothing can be left out or put in both β and the fun part is arranging them so the most thematic links run between the two rooms. To see which arrangement is better, just count how many pairs of exhibits that are connected by theme end up in different rooms; the higher that count, the better the layout. The concrete list of exhibits and their links is shown below.
There are 8 exhibits in total and 11 thematic connections.
| exhibit_a | exhibit_b |
|---|---|
| 4 | 0 |
| 4 | 6 |
| 3 | 0 |
| 2 | 0 |
| 2 | 1 |
| 2 | 6 |
| 6 | 0 |
| 6 | 1 |
| 6 | 5 |
| 6 | 7 |
| 1 | 0 |
Oh, and if you want to reply with a layout, just put it in this simple JSON shape so it's easy to read:
{
""solution"": [
[""exhibit_id"", ""exhibit_id"", ...],
[""exhibit_id"", ""exhibit_id"", ...]
]
}
Here the first list is the exhibits that go in Room North and the second list is the exhibits that go in Room South β each entry is just the exhibit identifier from the instance. This is just a sketch of the shape I expect, not the actual answer.
Please use the exact identifiers from the instance input β no renaming and no new labels.
- for example: ""Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.
(Also: I used the placeholder ""exhibit_id"" above to match the story, but in your real response use the identifiers exactly as they appear in the instance.)","{'problem_type': 'MAXCUT', 'num_nodes': 8, 'num_edges': 11, 'edges': [{'u': 5, 'v': 1}, {'u': 5, 'v': 7}, {'u': 4, 'v': 1}, {'u': 3, 'v': 1}, {'u': 3, 'v': 2}, {'u': 3, 'v': 7}, {'u': 7, 'v': 1}, {'u': 7, 'v': 2}, {'u': 7, 'v': 6}, {'u': 7, 'v': 8}, {'u': 2, 'v': 1}], 'source_file': 'wy2010.mtx', 'density': 0.39285714285714285, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0024.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0024.png', 'edge_connectivity': 1}","[[2, 3, 4, 5, 6, 8], [1, 7]]",9.0,"{'num_nodes': 8, 'num_edges': 11, 'edges': [{'u': 4, 'v': 0}, {'u': 4, 'v': 6}, {'u': 3, 'v': 0}, {'u': 2, 'v': 0}, {'u': 2, 'v': 1}, {'u': 2, 'v': 6}, {'u': 6, 'v': 0}, {'u': 6, 'v': 1}, {'u': 6, 'v': 5}, {'u': 6, 'v': 7}, {'u': 1, 'v': 0}]}","[[1, 2, 3, 4, 5, 7], [0, 6]]",25,markdown_table,0
MAXCUT,MAXCUT,"We set up two rectangular beds and a stack of plant labels: every species gets assigned to either Bed A or Bed B. The decision is which bed each label goes on, and the βbetterβ layouts are the ones where as many interacting species as possible are separated between the two beds. To see how well a placement does, count how many interacting pairs fall into different beds β thatβs the number to maximize. No species is skipped or placed in both beds; each one belongs to a single bed. The concrete planting details are given below.
We have 10 species and 13 interacting pairs to place across the two beds.
We note an interaction between species J and A.
We note an interaction between species J and I.
We note an interaction between species I and A.
We note an interaction between species E and A.
We note an interaction between species E and B.
We note an interaction between species F and A.
We note an interaction between species F and B.
We note an interaction between species A and B.
We note an interaction between species A and C.
We note an interaction between species A and D.
We note an interaction between species A and G.
We note an interaction between species A and H.
We note an interaction between species H and C.
We aim to maximize how many of these 13 pairs end up separated between Bed A and Bed B.
If you want the answer in a machine-friendly format, just put the two beds as two lists in a little JSON object like this β nothing fancy, just a sketch of the shape I expect:
{
""solution"": [
[""plant_id"", ""plant_id"", ...],
[""plant_id"", ""plant_id"", ...]
]
}
Think of the first inner list as the labels that go in Bed A and the second inner list as the labels that go in Bed B. Each entry is a plant label (use the exact label text from the instance), and the ""..."" just means you can list as many as you need. This is just the expected shape β not the actual planting plan.
Please use the identifiers exactly as they appear in the instance input β do not rename them or invent new ones.
- for example: ""Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β. ""","{'problem_type': 'MAXCUT', 'num_nodes': 10, 'num_edges': 13, 'edges': [{'u': 10, 'v': 1}, {'u': 10, 'v': 9}, {'u': 9, 'v': 1}, {'u': 5, 'v': 1}, {'u': 5, 'v': 2}, {'u': 6, 'v': 1}, {'u': 6, 'v': 2}, {'u': 1, 'v': 2}, {'u': 1, 'v': 3}, {'u': 1, 'v': 4}, {'u': 1, 'v': 7}, {'u': 1, 'v': 8}, {'u': 8, 'v': 3}], 'source_file': 'wa2010.mtx', 'density': 0.28888888888888886, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0025.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0025.png', 'edge_connectivity': 1}","[[1, 2, 8, 9], [3, 4, 5, 6, 7, 10]]",10.0,"{'num_nodes': 10, 'num_edges': 13, 'edges': [{'u': 'J', 'v': 'A'}, {'u': 'J', 'v': 'I'}, {'u': 'I', 'v': 'A'}, {'u': 'E', 'v': 'A'}, {'u': 'E', 'v': 'B'}, {'u': 'F', 'v': 'A'}, {'u': 'F', 'v': 'B'}, {'u': 'A', 'v': 'B'}, {'u': 'A', 'v': 'C'}, {'u': 'A', 'v': 'D'}, {'u': 'A', 'v': 'G'}, {'u': 'A', 'v': 'H'}, {'u': 'H', 'v': 'C'}]}","[['A', 'B', 'H', 'I'], ['C', 'D', 'E', 'F', 'G', 'J']]",26,nl,names
MAXCUT,MAXCUT,"Many people on the team want to see a layout that highlights cross-section collaborations: assign every article to either Opinion or Features, but not both and not neither. What weβre aiming for is as many shared-author links as possible to land with one article in Opinion and the other in Features; to evaluate any assignment, go through each pair of articles that share an author and count it if theyβre in opposite sections β the total number is the measure of success. The detailed article and contributor info comes next below.
{
""total_articles"": 10,
""total_shared_author_pairs"": 15,
""edges"": [
{
""article_a_id"": 2,
""article_b_id"": 1
},
{
""article_a_id"": 2,
""article_b_id"": 10
},
{
""article_a_id"": 5,
""article_b_id"": 6
},
{
""article_a_id"": 5,
""article_b_id"": 7
},
{
""article_a_id"": 5,
""article_b_id"": 9
},
{
""article_a_id"": 5,
""article_b_id"": 10
},
{
""article_a_id"": 6,
""article_b_id"": 4
},
{
""article_a_id"": 6,
""article_b_id"": 9
},
{
""article_a_id"": 9,
""article_b_id"": 7
},
{
""article_a_id"": 9,
""article_b_id"": 8
},
{
""article_a_id"": 3,
""article_b_id"": 1
},
{
""article_a_id"": 8,
""article_b_id"": 1
},
{
""article_a_id"": 8,
""article_b_id"": 4
},
{
""article_a_id"": 1,
""article_b_id"": 4
},
{
""article_a_id"": 10,
""article_b_id"": 4
}
]
}
Also, when you hand me the final split, please stick to this simple JSON layout:
{
""solution"": [
[""article_id"", ""article_id"", ...],
[""article_id"", ""article_id"", ...]
]
}
Think of it like a tiny form: the first list is the set of articles you want in Opinion, the second list is the set you want in Features, and each quoted placeholder is where an article identifier goes. I used the placeholder article_id here to match the story (replace each with the actual article IDs). This is just the shape I need β not the real assignment itself.
Please use the identifiers exactly as they appear in the instance input β no renaming and no new labels.
- for example: ""Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.""","{'problem_type': 'MAXCUT', 'num_nodes': 10, 'num_edges': 15, 'edges': [{'u': 2, 'v': 1}, {'u': 2, 'v': 10}, {'u': 5, 'v': 6}, {'u': 5, 'v': 7}, {'u': 5, 'v': 9}, {'u': 5, 'v': 10}, {'u': 6, 'v': 4}, {'u': 6, 'v': 9}, {'u': 9, 'v': 7}, {'u': 9, 'v': 8}, {'u': 3, 'v': 1}, {'u': 8, 'v': 1}, {'u': 8, 'v': 4}, {'u': 1, 'v': 4}, {'u': 10, 'v': 4}], 'source_file': 'vt2010.mtx', 'density': 0.3333333333333333, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0026.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0026.png', 'edge_connectivity': 1}","[[1, 6, 7, 8, 10], [2, 3, 4, 5, 9]]",13.0,"{'num_nodes': 10, 'num_edges': 15, 'edges': [{'u': 2, 'v': 1}, {'u': 2, 'v': 10}, {'u': 5, 'v': 6}, {'u': 5, 'v': 7}, {'u': 5, 'v': 9}, {'u': 5, 'v': 10}, {'u': 6, 'v': 4}, {'u': 6, 'v': 9}, {'u': 9, 'v': 7}, {'u': 9, 'v': 8}, {'u': 3, 'v': 1}, {'u': 8, 'v': 1}, {'u': 8, 'v': 4}, {'u': 1, 'v': 4}, {'u': 10, 'v': 4}]}","[[1, 6, 7, 8, 10], [2, 3, 4, 5, 9]]",27,json,1
MAXCUT,MAXCUT,"At a meetup the organizer set up two sides, Alpha and Beta, and the task is to place every attendee into one of them so that as many acquaintance pairs as possible are separated. To evaluate any placement, go down the list of known pairs and count those where the two people are in different groups β that count tells how successful the split is. Everyone must be on one side only; no one gets left out or put in both. The detailed list of attendees and their acquaintances is shown below.
There are 12 num attendees in total and 24 num acquaintance pairs.
| attendee_u | attendee_v |
|---|---|
| 5 | 0 |
| 5 | 1 |
| 5 | 2 |
| 5 | 3 |
| 5 | 4 |
| 5 | 6 |
| 5 | 7 |
| 5 | 9 |
| 5 | 10 |
| 5 | 11 |
| 6 | 2 |
| 6 | 3 |
| 6 | 8 |
| 2 | 3 |
| 3 | 8 |
| 3 | 11 |
| 8 | 1 |
| 8 | 11 |
| 1 | 11 |
| 11 | 4 |
| 11 | 10 |
| 0 | 7 |
| 10 | 4 |
| 9 | 7 |
If you want to send me a proposed split, just use this simple JSON layout so I can pick out who goes on each side:
{
""solution"": [
[""vertex_id"", ""vertex_id"", ...],
[""vertex_id"", ""vertex_id"", ...]
]
}
Think of that as two lists: the first inner list is everyone you put on Alpha, the second inner list is everyone you put on Beta. Each item is just the attendee identifier from the instance.
This is just a sketch of the shape I expect, not the actual answer β fill the lists with the real IDs from the instance when you reply.
Please make sure to use the identifiers exactly as they appear in the input β no renaming and no new labels.
For example: ""Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β"".","{'problem_type': 'MAXCUT', 'num_nodes': 12, 'num_edges': 24, 'edges': [{'u': 6, 'v': 1}, {'u': 6, 'v': 2}, {'u': 6, 'v': 3}, {'u': 6, 'v': 4}, {'u': 6, 'v': 5}, {'u': 6, 'v': 7}, {'u': 6, 'v': 8}, {'u': 6, 'v': 10}, {'u': 6, 'v': 11}, {'u': 6, 'v': 12}, {'u': 7, 'v': 3}, {'u': 7, 'v': 4}, {'u': 7, 'v': 9}, {'u': 3, 'v': 4}, {'u': 4, 'v': 9}, {'u': 4, 'v': 12}, {'u': 9, 'v': 2}, {'u': 9, 'v': 12}, {'u': 2, 'v': 12}, {'u': 12, 'v': 5}, {'u': 12, 'v': 11}, {'u': 1, 'v': 8}, {'u': 11, 'v': 5}, {'u': 10, 'v': 8}], 'source_file': 'wy2010.mtx', 'density': 0.36363636363636365, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0027.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0027.png', 'edge_connectivity': 2}","[[3, 6, 8, 9, 12], [1, 2, 4, 5, 7, 10, 11]]",18.0,"{'num_nodes': 12, 'num_edges': 24, 'edges': [{'u': 5, 'v': 0}, {'u': 5, 'v': 1}, {'u': 5, 'v': 2}, {'u': 5, 'v': 3}, {'u': 5, 'v': 4}, {'u': 5, 'v': 6}, {'u': 5, 'v': 7}, {'u': 5, 'v': 9}, {'u': 5, 'v': 10}, {'u': 5, 'v': 11}, {'u': 6, 'v': 2}, {'u': 6, 'v': 3}, {'u': 6, 'v': 8}, {'u': 2, 'v': 3}, {'u': 3, 'v': 8}, {'u': 3, 'v': 11}, {'u': 8, 'v': 1}, {'u': 8, 'v': 11}, {'u': 1, 'v': 11}, {'u': 11, 'v': 4}, {'u': 11, 'v': 10}, {'u': 0, 'v': 7}, {'u': 10, 'v': 4}, {'u': 9, 'v': 7}]}","[[2, 5, 7, 8, 11], [0, 1, 3, 4, 6, 9, 10]]",28,markdown_table,0
MAXCUT,MAXCUT,"Iβm coaching a session where the plan is to split the roster into Squad A and Squad B. The trick is to put every player on one and only one squad, then try to arrange the teams so that as many regular passing pairs as possible end up on opposite squads. To see how well a split works, just count each passing partnership that ends up split between the two squads β the bigger that count, the better the lineup. The exact list of players and who usually passes to whom is shown below.
Iβm working with 9 players and 16 passing partnerships.
I note that 4 and 3 form a regular passing partnership.
I note that 4 and 6 form a regular passing partnership.
I note that 4 and 7 form a regular passing partnership.
I note that 4 and 8 form a regular passing partnership.
I note that 6 and 0 form a regular passing partnership.
I note that 6 and 3 form a regular passing partnership.
I note that 6 and 5 form a regular passing partnership.
I note that 2 and 3 form a regular passing partnership.
I note that 2 and 5 form a regular passing partnership.
I note that 7 and 3 form a regular passing partnership.
I note that 7 and 8 form a regular passing partnership.
I note that 8 and 0 form a regular passing partnership.
I note that 8 and 3 form a regular passing partnership.
I note that 1 and 3 form a regular passing partnership.
I note that 0 and 3 form a regular passing partnership.
I note that 5 and 3 form a regular passing partnership.
Iβll use this list to evaluate splits and try to maximize how many of the 16 partnerships fall across Squad A and Squad B.
If you want to propose a split, just send it in this simple JSON shape so I can read it easily.
{
""solution"": [
[""player_id"", ""player_id"", ...],
[""player_id"", ""player_id"", ...]
]
}
Pretty straightforward: ""solution"" holds two lists β the first list is Squad A, the second is Squad B β and each entry is a player identifier from the instance. This is just a sketch of the expected shape, not the actual lineup.
Please make sure you use the exact identifiers as they appear in the instance input β no renaming and no new labels.
- for example: ""Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.""","{'problem_type': 'MAXCUT', 'num_nodes': 9, 'num_edges': 16, 'edges': [{'u': 5, 'v': 4}, {'u': 5, 'v': 7}, {'u': 5, 'v': 8}, {'u': 5, 'v': 9}, {'u': 7, 'v': 1}, {'u': 7, 'v': 4}, {'u': 7, 'v': 6}, {'u': 3, 'v': 4}, {'u': 3, 'v': 6}, {'u': 8, 'v': 4}, {'u': 8, 'v': 9}, {'u': 9, 'v': 1}, {'u': 9, 'v': 4}, {'u': 2, 'v': 4}, {'u': 1, 'v': 4}, {'u': 6, 'v': 4}], 'source_file': 'wy2010.mtx', 'density': 0.4444444444444444, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0028.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0028.png', 'edge_connectivity': 1}","[[2, 3, 7, 8, 9], [1, 4, 5, 6]]",12.0,"{'num_nodes': 9, 'num_edges': 16, 'edges': [{'u': 4, 'v': 3}, {'u': 4, 'v': 6}, {'u': 4, 'v': 7}, {'u': 4, 'v': 8}, {'u': 6, 'v': 0}, {'u': 6, 'v': 3}, {'u': 6, 'v': 5}, {'u': 2, 'v': 3}, {'u': 2, 'v': 5}, {'u': 7, 'v': 3}, {'u': 7, 'v': 8}, {'u': 8, 'v': 0}, {'u': 8, 'v': 3}, {'u': 1, 'v': 3}, {'u': 0, 'v': 3}, {'u': 5, 'v': 3}]}","[[1, 2, 6, 7, 8], [0, 3, 4, 5]]",29,nl,0
MAXCUT,MAXCUT,"Someone in town suggested a quirky challenge: every block must be given a single color, green or yellow, and then tally up every street that runs between a green and a yellow block. You canβt leave any block without a color or color it twice, and the goal is to end up with the largest possible number of those cross-color streets. The concrete block map and connections are shown below.
There are 11 blocks in total and 20 street links.
| block_u_id | block_v_id |
|---|---|
| 1 | 5 |
| 1 | 6 |
| 1 | 11 |
| 10 | 7 |
| 10 | 9 |
| 10 | 11 |
| 11 | 2 |
| 11 | 4 |
| 11 | 5 |
| 11 | 6 |
| 11 | 8 |
| 11 | 9 |
| 2 | 7 |
| 2 | 8 |
| 2 | 9 |
| 9 | 7 |
| 3 | 4 |
| 3 | 6 |
| 3 | 8 |
| 4 | 8 |
If you'd like to hand in a coloring, just pop it into a tiny JSON snippet like this:
{
""solution"": [
[""block_id"", ""block_id"", ...],
[""block_id"", ""block_id"", ...]
]
}
Think of the two inner lists as the two color groups β the first list might be all the green blocks, the second all the yellow ones. Each entry is a block identifier from the map. This is just a sketch of the shape I expect, not your actual answer.
Please make sure to use the exact identifiers shown 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β.""","{'problem_type': 'MAXCUT', 'num_nodes': 11, 'num_edges': 20, 'edges': [{'u': 1, 'v': 5}, {'u': 1, 'v': 6}, {'u': 1, 'v': 11}, {'u': 10, 'v': 7}, {'u': 10, 'v': 9}, {'u': 10, 'v': 11}, {'u': 11, 'v': 2}, {'u': 11, 'v': 4}, {'u': 11, 'v': 5}, {'u': 11, 'v': 6}, {'u': 11, 'v': 8}, {'u': 11, 'v': 9}, {'u': 2, 'v': 7}, {'u': 2, 'v': 8}, {'u': 2, 'v': 9}, {'u': 9, 'v': 7}, {'u': 3, 'v': 4}, {'u': 3, 'v': 6}, {'u': 3, 'v': 8}, {'u': 4, 'v': 8}], 'source_file': 'wi2010.mtx', 'density': 0.36363636363636365, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0029.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0029.png', 'edge_connectivity': 2}","[[2, 4, 5, 6, 10], [1, 3, 7, 8, 9, 11]]",15.0,"{'num_nodes': 11, 'num_edges': 20, 'edges': [{'u': 1, 'v': 5}, {'u': 1, 'v': 6}, {'u': 1, 'v': 11}, {'u': 10, 'v': 7}, {'u': 10, 'v': 9}, {'u': 10, 'v': 11}, {'u': 11, 'v': 2}, {'u': 11, 'v': 4}, {'u': 11, 'v': 5}, {'u': 11, 'v': 6}, {'u': 11, 'v': 8}, {'u': 11, 'v': 9}, {'u': 2, 'v': 7}, {'u': 2, 'v': 8}, {'u': 2, 'v': 9}, {'u': 9, 'v': 7}, {'u': 3, 'v': 4}, {'u': 3, 'v': 6}, {'u': 3, 'v': 8}, {'u': 4, 'v': 8}]}","[[2, 4, 5, 6, 10], [1, 3, 7, 8, 9, 11]]",30,markdown_table,1
MAXCUT,MAXCUT,"We set up two stations for prepping and every single ingredient must be put at exactly one station, never at both and never skipped. The aim is to place them so that as many pairs of ingredients as possible end up separated β to measure that, go through all possible ingredient pairs and add one for each pair that sits at different stations; the higher the sum, the better the split. The concrete details of which ingredients and which pairs matter are shown below.
There are 10 ingredients and 17 relevant ingredient pairs listed below.
Ingredients 4 and 1 form a pair that contributes 1 if we place them at different stations.
Ingredients 4 and 5 form a pair that contributes 1 if we place them at different stations.
Ingredients 4 and 9 form a pair that contributes 1 if we place them at different stations.
Ingredients 7 and 2 form a pair that contributes 1 if we place them at different stations.
Ingredients 7 and 3 form a pair that contributes 1 if we place them at different stations.
Ingredients 7 and 8 form a pair that contributes 1 if we place them at different stations.
Ingredients 7 and 9 form a pair that contributes 1 if we place them at different stations.
Ingredients 3 and 9 form a pair that contributes 1 if we place them at different stations.
Ingredients 9 and 1 form a pair that contributes 1 if we place them at different stations.
Ingredients 9 and 2 form a pair that contributes 1 if we place them at different stations.
Ingredients 9 and 5 form a pair that contributes 1 if we place them at different stations.
Ingredients 9 and 6 form a pair that contributes 1 if we place them at different stations.
Ingredients 9 and 8 form a pair that contributes 1 if we place them at different stations.
Ingredients 9 and 10 form a pair that contributes 1 if we place them at different stations.
Ingredients 8 and 2 form a pair that contributes 1 if we place them at different stations.
Ingredients 8 and 10 form a pair that contributes 1 if we place them at different stations.
Ingredients 6 and 2 form a pair that contributes 1 if we place them at different stations.
We will sum the contributions from the 17 listed pairs to obtain the final separation score.
When you send back the solution, stick it into a tiny JSON snippet so it's easy to read and parse. Here's the shape I expect:
{
""solution"": [
[""ingredient_id"", ""ingredient_id"", ...],
[""ingredient_id"", ""ingredient_id"", ...]
]
}
Think of the two inner lists as the two prep stations β just list which ingredient IDs go to station one and which go to station two. This is just a sketch of the expected shape, not the actual answer.
Please make sure to use the exact identifiers from the instance input β don't rename them and don't invent new labels.
Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.","{'problem_type': 'MAXCUT', 'num_nodes': 10, 'num_edges': 17, 'edges': [{'u': 4, 'v': 1}, {'u': 4, 'v': 5}, {'u': 4, 'v': 9}, {'u': 7, 'v': 2}, {'u': 7, 'v': 3}, {'u': 7, 'v': 8}, {'u': 7, 'v': 9}, {'u': 3, 'v': 9}, {'u': 9, 'v': 1}, {'u': 9, 'v': 2}, {'u': 9, 'v': 5}, {'u': 9, 'v': 6}, {'u': 9, 'v': 8}, {'u': 9, 'v': 10}, {'u': 8, 'v': 2}, {'u': 8, 'v': 10}, {'u': 6, 'v': 2}], 'source_file': 'wa2010.mtx', 'density': 0.37777777777777777, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0030.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0030.png', 'edge_connectivity': 2}","[[1, 3, 5, 6, 8], [2, 4, 7, 9, 10]]",12.0,"{'num_nodes': 10, 'num_edges': 17, 'edges': [{'u': 4, 'v': 1}, {'u': 4, 'v': 5}, {'u': 4, 'v': 9}, {'u': 7, 'v': 2}, {'u': 7, 'v': 3}, {'u': 7, 'v': 8}, {'u': 7, 'v': 9}, {'u': 3, 'v': 9}, {'u': 9, 'v': 1}, {'u': 9, 'v': 2}, {'u': 9, 'v': 5}, {'u': 9, 'v': 6}, {'u': 9, 'v': 8}, {'u': 9, 'v': 10}, {'u': 8, 'v': 2}, {'u': 8, 'v': 10}, {'u': 6, 'v': 2}]}","[[1, 3, 5, 6, 8], [2, 4, 7, 9, 10]]",31,nl,1
MAXCUT,MAXCUT,"Recently the gallery decided to use only two walls β East and West β and every portrait must be assigned to one of them, with each portrait appearing on just a single wall and none repeated. The fun part is trying to separate collaborators: for every pair of photographers who worked together, see whether their portraits end up on opposite walls and count those instances; the arrangement with the largest count of separated pairs is the one that stands out. The full list of portraits and who collaborated with whom is shown below.
# total_portraits=11
# total_collaboration_pairs=20
portrait_a,portrait_b
7,1
7,2
7,8
7,9
6,2
6,4
6,10
4,8
4,9
4,10
5,1
5,3
1,2
1,8
2,3
2,9
2,10
2,11
9,10
11,3
Oh, and when you send back the arrangement, please use this simple JSON shape so it's easy to read:
{
""solution"": [
[""portrait_id"", ""portrait_id"", ...],
[""portrait_id"", ""portrait_id"", ...]
]
}
Think of it like a little form: the first list inside ""solution"" is the East wall, the second list is the West wall, and each ""portrait_id"" is just the exact identifier for a portrait from the instance. This is just a sketch of the expected shape β not the actual answer.
Please make sure to use the identifiers exactly as they appear in the instance input β no renaming and no new labels. 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β.","{'problem_type': 'MAXCUT', 'num_nodes': 11, 'num_edges': 20, 'edges': [{'u': 7, 'v': 1}, {'u': 7, 'v': 2}, {'u': 7, 'v': 8}, {'u': 7, 'v': 9}, {'u': 6, 'v': 2}, {'u': 6, 'v': 4}, {'u': 6, 'v': 10}, {'u': 4, 'v': 8}, {'u': 4, 'v': 9}, {'u': 4, 'v': 10}, {'u': 5, 'v': 1}, {'u': 5, 'v': 3}, {'u': 1, 'v': 2}, {'u': 1, 'v': 8}, {'u': 2, 'v': 3}, {'u': 2, 'v': 9}, {'u': 2, 'v': 10}, {'u': 2, 'v': 11}, {'u': 9, 'v': 10}, {'u': 11, 'v': 3}], 'source_file': 'wy2010.mtx', 'density': 0.36363636363636365, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0031.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0031.png', 'edge_connectivity': 2}","[[1, 3, 6, 8, 9], [2, 4, 5, 7, 10, 11]]",15.0,"{'num_nodes': 11, 'num_edges': 20, 'edges': [{'u': 7, 'v': 1}, {'u': 7, 'v': 2}, {'u': 7, 'v': 8}, {'u': 7, 'v': 9}, {'u': 6, 'v': 2}, {'u': 6, 'v': 4}, {'u': 6, 'v': 10}, {'u': 4, 'v': 8}, {'u': 4, 'v': 9}, {'u': 4, 'v': 10}, {'u': 5, 'v': 1}, {'u': 5, 'v': 3}, {'u': 1, 'v': 2}, {'u': 1, 'v': 8}, {'u': 2, 'v': 3}, {'u': 2, 'v': 9}, {'u': 2, 'v': 10}, {'u': 2, 'v': 11}, {'u': 9, 'v': 10}, {'u': 11, 'v': 3}]}","[[1, 3, 6, 8, 9], [2, 4, 5, 7, 10, 11]]",32,csv,1
MAXCUT,MAXCUT,"Someone in charge of bench layout had to put every experiment on either Bench Alpha or Bench Beta, making sure nothing was left out or cloned across benches. There were many interdependent experiment pairs, and each time a linked pair ended up on different benches it helped the setup, so the task became finding an assignment that separates as many linked pairs as possible. To judge any layout, tally up how many linked pairs are split across the two benches β the higher the tally, the better the placement. The detailed list of experiments and their dependencies appears below.
The list enumerates 11 distinct experiments and 17 interdependent pairs.
A dependency pair links experiment 8 and experiment 2.
A dependency pair links experiment 8 and experiment 6.
A dependency pair links experiment 8 and experiment 7.
A dependency pair links experiment 8 and experiment 10.
A dependency pair links experiment 1 and experiment 5.
A dependency pair links experiment 1 and experiment 9.
A dependency pair links experiment 10 and experiment 2.
A dependency pair links experiment 10 and experiment 3.
A dependency pair links experiment 10 and experiment 7.
A dependency pair links experiment 9 and experiment 2.
A dependency pair links experiment 9 and experiment 3.
A dependency pair links experiment 9 and experiment 5.
A dependency pair links experiment 5 and experiment 0.
A dependency pair links experiment 2 and experiment 0.
A dependency pair links experiment 3 and experiment 4.
A dependency pair links experiment 4 and experiment 7.
A dependency pair links experiment 0 and experiment 6.
The goal remains to maximize how many of the 17 pairs are split across the two benches.
If you want to give a proposed layout, just drop it in a tiny JSON like this so it's easy to read and check:
{
""solution"": [
[""experiment_id"", ""experiment_id"", ...],
[""experiment_id"", ""experiment_id"", ...]
]
}
Think of it as two lists: the first inner list is the experiments on one bench, the second inner list is the experiments on the other bench. Keep it simple β just list the experiment identifiers you picked for each bench. This is only a sketch of the shape I expect, not the actual answer.
Please make sure to use the exact identifiers from the instance input β don't rename them or invent new labels.
- for example: ""Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.""","{'problem_type': 'MAXCUT', 'num_nodes': 11, 'num_edges': 17, 'edges': [{'u': 9, 'v': 3}, {'u': 9, 'v': 7}, {'u': 9, 'v': 8}, {'u': 9, 'v': 11}, {'u': 2, 'v': 6}, {'u': 2, 'v': 10}, {'u': 11, 'v': 3}, {'u': 11, 'v': 4}, {'u': 11, 'v': 8}, {'u': 10, 'v': 3}, {'u': 10, 'v': 4}, {'u': 10, 'v': 6}, {'u': 6, 'v': 1}, {'u': 3, 'v': 1}, {'u': 4, 'v': 5}, {'u': 5, 'v': 8}, {'u': 1, 'v': 7}], 'source_file': 'vt2010.mtx', 'density': 0.3090909090909091, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0032.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0032.png', 'edge_connectivity': 2}","[[3, 4, 6, 7, 8], [1, 2, 5, 9, 10, 11]]",15.0,"{'num_nodes': 11, 'num_edges': 17, 'edges': [{'u': 8, 'v': 2}, {'u': 8, 'v': 6}, {'u': 8, 'v': 7}, {'u': 8, 'v': 10}, {'u': 1, 'v': 5}, {'u': 1, 'v': 9}, {'u': 10, 'v': 2}, {'u': 10, 'v': 3}, {'u': 10, 'v': 7}, {'u': 9, 'v': 2}, {'u': 9, 'v': 3}, {'u': 9, 'v': 5}, {'u': 5, 'v': 0}, {'u': 2, 'v': 0}, {'u': 3, 'v': 4}, {'u': 4, 'v': 7}, {'u': 0, 'v': 6}]}","[[2, 3, 5, 6, 7], [0, 1, 4, 8, 9, 10]]",33,nl,0
MAXCUT,MAXCUT,"Weβre trying to organize two walking patrols, Red and Blue, and every household has to be assigned to exactly one of them β nothing gets skipped and no house can belong to both teams. A strong arrangement is one where lots of the βwatch linksβ between neighboring houses run between the two teams, so measure a plan by counting how many adjacent house pairs are on different patrols; the higher that number, the more effective the split. The concrete map and list of houses are shown below.
There are 9 houses in total and 15 watch links.
| house_one | house_two |
|---|---|
| 6 | 4 |
| 6 | 7 |
| 1 | 3 |
| 1 | 4 |
| 1 | 5 |
| 1 | 7 |
| 4 | 0 |
| 4 | 5 |
| 4 | 7 |
| 5 | 0 |
| 5 | 2 |
| 5 | 3 |
| 3 | 2 |
| 3 | 8 |
| 8 | 7 |
You can just hand the final partition back in a tiny JSON object like this so it's easy to parse:
{
""solution"": [
[""house_id"", ""house_id"", ...],
[""house_id"", ""house_id"", ...]
]
}
The two inner lists are the two patrols β first list = Red, second list = Blue β and each entry is a house identifier that gets assigned to that patrol. This is just the expected shape (a sketch), not the actual assignment.
Please make sure you use the exact identifiers from the instance input β don't rename them or invent new ones.
- for example: ""Valid identifiers look like plain numbers such as ""1"" or ""23"", single capital letters like ""A"" or ""B"", or a capital letter followed by digits like ""A1"" or ""X7"".""","{'problem_type': 'MAXCUT', 'num_nodes': 9, 'num_edges': 15, 'edges': [{'u': 7, 'v': 5}, {'u': 7, 'v': 8}, {'u': 2, 'v': 4}, {'u': 2, 'v': 5}, {'u': 2, 'v': 6}, {'u': 2, 'v': 8}, {'u': 5, 'v': 1}, {'u': 5, 'v': 6}, {'u': 5, 'v': 8}, {'u': 6, 'v': 1}, {'u': 6, 'v': 3}, {'u': 6, 'v': 4}, {'u': 4, 'v': 3}, {'u': 4, 'v': 9}, {'u': 9, 'v': 8}], 'source_file': 'vt2010.mtx', 'density': 0.4166666666666667, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0033.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0033.png', 'edge_connectivity': 2}","[[4, 5, 6, 8], [1, 2, 3, 7, 9]]",12.0,"{'num_nodes': 9, 'num_edges': 15, 'edges': [{'u': 6, 'v': 4}, {'u': 6, 'v': 7}, {'u': 1, 'v': 3}, {'u': 1, 'v': 4}, {'u': 1, 'v': 5}, {'u': 1, 'v': 7}, {'u': 4, 'v': 0}, {'u': 4, 'v': 5}, {'u': 4, 'v': 7}, {'u': 5, 'v': 0}, {'u': 5, 'v': 2}, {'u': 5, 'v': 3}, {'u': 3, 'v': 2}, {'u': 3, 'v': 8}, {'u': 8, 'v': 7}]}","[[3, 4, 5, 7], [0, 1, 2, 6, 8]]",34,markdown_table,0
MAXCUT,MAXCUT,"Many people walk past the shop and notice when pairs of outfits are displayed across the two mannequins, so the plan is to put each outfit on either Mannequin Left or Mannequin Right, once apiece. There are known pairwise style connections between specific outfits, and the aim is to maximize how many of those connections end up straddling the mannequins; thatβs determined by counting how many pair connections have their two outfits on different mannequins. No outfit is omitted or duplicated. The full list of outfits and pairings is shown below.
There are 9 outfits in total and 15 style pairings.
| outfit_u | outfit_v |
|---|---|
| 4 | 2 |
| 4 | 3 |
| 4 | 8 |
| 5 | 2 |
| 5 | 6 |
| 5 | 8 |
| 6 | 2 |
| 6 | 8 |
| 7 | 0 |
| 7 | 8 |
| 1 | 8 |
| 3 | 2 |
| 3 | 8 |
| 0 | 8 |
| 8 | 2 |
Oh, and when you send the placement back, a simple JSON like this works β two lists inside ""solution"", one list per mannequin:
{
""solution"": [
[""outfit_id"", ""outfit_id"", ...],
[""outfit_id"", ""outfit_id"", ...]
]
}
The first inner list would be the outfits you put on Mannequin Left, and the second list is the outfits for Mannequin Right. Think of it like filling out a short form: each quoted placeholder is where an outfit identifier goes. This is just the expected shape β not the actual answer.
Please use the exact outfit identifiers from the instance input β do not rename them or add 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β.","{'problem_type': 'MAXCUT', 'num_nodes': 9, 'num_edges': 15, 'edges': [{'u': 5, 'v': 3}, {'u': 5, 'v': 4}, {'u': 5, 'v': 9}, {'u': 6, 'v': 3}, {'u': 6, 'v': 7}, {'u': 6, 'v': 9}, {'u': 7, 'v': 3}, {'u': 7, 'v': 9}, {'u': 8, 'v': 1}, {'u': 8, 'v': 9}, {'u': 2, 'v': 9}, {'u': 4, 'v': 3}, {'u': 4, 'v': 9}, {'u': 1, 'v': 9}, {'u': 9, 'v': 3}], 'source_file': 'wv2010.mtx', 'density': 0.4166666666666667, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0034.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0034.png', 'edge_connectivity': 1}","[[1, 3, 9], [2, 4, 5, 6, 7, 8]]",11.0,"{'num_nodes': 9, 'num_edges': 15, 'edges': [{'u': 4, 'v': 2}, {'u': 4, 'v': 3}, {'u': 4, 'v': 8}, {'u': 5, 'v': 2}, {'u': 5, 'v': 6}, {'u': 5, 'v': 8}, {'u': 6, 'v': 2}, {'u': 6, 'v': 8}, {'u': 7, 'v': 0}, {'u': 7, 'v': 8}, {'u': 1, 'v': 8}, {'u': 3, 'v': 2}, {'u': 3, 'v': 8}, {'u': 0, 'v': 8}, {'u': 8, 'v': 2}]}","[[0, 2, 8], [1, 3, 4, 5, 6, 7]]",35,markdown_table,0
MAXCUT,MAXCUT,"Many people joked that Oak and Pine should be like rival teams, so the plan became: put everyone into one of the two rooms (no double-booking, everyone somewhere) and arrange it so as many habitual collaboration pairs are split between the rooms. Score each arrangement by counting collaborator pairs that land in different rooms β more such cross-room pairs means the split is doing its job. Concrete details are given below.
{
""total_employees"": 12,
""total_collaboration_pairs"": 22,
""edges"": [
{
""employee_a_id"": 11,
""employee_b_id"": 1
},
{
""employee_a_id"": 11,
""employee_b_id"": 6
},
{
""employee_a_id"": 11,
""employee_b_id"": 8
},
{
""employee_a_id"": 11,
""employee_b_id"": 10
},
{
""employee_a_id"": 3,
""employee_b_id"": 2
},
{
""employee_a_id"": 3,
""employee_b_id"": 6
},
{
""employee_a_id"": 3,
""employee_b_id"": 7
},
{
""employee_a_id"": 3,
""employee_b_id"": 9
},
{
""employee_a_id"": 9,
""employee_b_id"": 6
},
{
""employee_a_id"": 9,
""employee_b_id"": 7
},
{
""employee_a_id"": 9,
""employee_b_id"": 10
},
{
""employee_a_id"": 10,
""employee_b_id"": 1
},
{
""employee_a_id"": 10,
""employee_b_id"": 2
},
{
""employee_a_id"": 10,
""employee_b_id"": 5
},
{
""employee_a_id"": 10,
""employee_b_id"": 6
},
{
""employee_a_id"": 4,
""employee_b_id"": 6
},
{
""employee_a_id"": 4,
""employee_b_id"": 12
},
{
""employee_a_id"": 5,
""employee_b_id"": 2
},
{
""employee_a_id"": 12,
""employee_b_id"": 6
},
{
""employee_a_id"": 8,
""employee_b_id"": 6
},
{
""employee_a_id"": 6,
""employee_b_id"": 2
},
{
""employee_a_id"": 6,
""employee_b_id"": 7
}
]
}
Oh, and when you send the split back, it'd be easiest if you drop it into a tiny JSON snippet like this:
{
""solution"": [
[""person_id"", ""person_id"", ...],
[""person_id"", ""person_id"", ...]
]
}
Think of ""solution"" as just two lists: the first list is everyone who goes in one room, the second list is everyone who goes in the other room. It's just a sketch of the shape I need β not the final content itself.
Please make sure to use the exact identifiers from the instance input β don't rename them or invent new labels. Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.","{'problem_type': 'MAXCUT', 'num_nodes': 12, 'num_edges': 22, 'edges': [{'u': 11, 'v': 1}, {'u': 11, 'v': 6}, {'u': 11, 'v': 8}, {'u': 11, 'v': 10}, {'u': 3, 'v': 2}, {'u': 3, 'v': 6}, {'u': 3, 'v': 7}, {'u': 3, 'v': 9}, {'u': 9, 'v': 6}, {'u': 9, 'v': 7}, {'u': 9, 'v': 10}, {'u': 10, 'v': 1}, {'u': 10, 'v': 2}, {'u': 10, 'v': 5}, {'u': 10, 'v': 6}, {'u': 4, 'v': 6}, {'u': 4, 'v': 12}, {'u': 5, 'v': 2}, {'u': 12, 'v': 6}, {'u': 8, 'v': 6}, {'u': 6, 'v': 2}, {'u': 6, 'v': 7}], 'source_file': 'wv2010.mtx', 'density': 0.3333333333333333, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0035.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0035.png', 'edge_connectivity': 2}","[[2, 4, 7, 8, 9, 10, 11], [1, 3, 5, 6, 12]]",15.0,"{'num_nodes': 12, 'num_edges': 22, 'edges': [{'u': 11, 'v': 1}, {'u': 11, 'v': 6}, {'u': 11, 'v': 8}, {'u': 11, 'v': 10}, {'u': 3, 'v': 2}, {'u': 3, 'v': 6}, {'u': 3, 'v': 7}, {'u': 3, 'v': 9}, {'u': 9, 'v': 6}, {'u': 9, 'v': 7}, {'u': 9, 'v': 10}, {'u': 10, 'v': 1}, {'u': 10, 'v': 2}, {'u': 10, 'v': 5}, {'u': 10, 'v': 6}, {'u': 4, 'v': 6}, {'u': 4, 'v': 12}, {'u': 5, 'v': 2}, {'u': 12, 'v': 6}, {'u': 8, 'v': 6}, {'u': 6, 'v': 2}, {'u': 6, 'v': 7}]}","[[2, 4, 7, 8, 9, 10, 11], [1, 3, 5, 6, 12]]",36,json,1
MAXCUT,MAXCUT,"I work at a small office where we need to split everyone into two opposing shifts. The idea is to decide, for each person, which of the two shifts theyβll be on so that as many pairs of coworkers as possible end up on different shifts. You can tell how good a split is by going through every pair of colleagues and counting one point for each pair that lands on opposite shifts β the higher that count, the better. Everyone has to be on exactly one of the two shifts (no one left unassigned or put on both). The concrete list of people and who interacts with whom is shown below.
# total_people=11
# total_interactions=16
person_a,person_b
E,F
E,G
E,H
J,C
J,I
A,B
A,C
A,F
D,B
B,F
B,G
B,K
H,C
H,I
F,C
I,C
Oh, and if you want to send the split back in a tidy form, you can just follow this little JSON sketch for the layout:
{
""solution"": [
[""employee_id"", ""employee_id"", ...],
[""employee_id"", ""employee_id"", ...]
]
}
The first inner list is one shift, the second inner list is the opposing shift β just put each person's identifier in one of the lists. This is just a shape guide, not the final answer; replace the placeholders with the actual identifiers from the instance.
Please use the exact identifiers as they appear in the instance input β do not rename them or invent new labels. For example: ""Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.""","{'problem_type': 'MAXCUT', 'num_nodes': 11, 'num_edges': 16, 'edges': [{'u': 5, 'v': 6}, {'u': 5, 'v': 7}, {'u': 5, 'v': 8}, {'u': 10, 'v': 3}, {'u': 10, 'v': 9}, {'u': 1, 'v': 2}, {'u': 1, 'v': 3}, {'u': 1, 'v': 6}, {'u': 4, 'v': 2}, {'u': 2, 'v': 6}, {'u': 2, 'v': 7}, {'u': 2, 'v': 11}, {'u': 8, 'v': 3}, {'u': 8, 'v': 9}, {'u': 6, 'v': 3}, {'u': 9, 'v': 3}], 'source_file': 'wv2010.mtx', 'density': 0.2909090909090909, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0036.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0036.png', 'edge_connectivity': 1}","[[1, 4, 6, 7, 8, 10, 11], [2, 3, 5, 9]]",14.0,"{'num_nodes': 11, 'num_edges': 16, 'edges': [{'u': 'E', 'v': 'F'}, {'u': 'E', 'v': 'G'}, {'u': 'E', 'v': 'H'}, {'u': 'J', 'v': 'C'}, {'u': 'J', 'v': 'I'}, {'u': 'A', 'v': 'B'}, {'u': 'A', 'v': 'C'}, {'u': 'A', 'v': 'F'}, {'u': 'D', 'v': 'B'}, {'u': 'B', 'v': 'F'}, {'u': 'B', 'v': 'G'}, {'u': 'B', 'v': 'K'}, {'u': 'H', 'v': 'C'}, {'u': 'H', 'v': 'I'}, {'u': 'F', 'v': 'C'}, {'u': 'I', 'v': 'C'}]}","[['A', 'D', 'F', 'G', 'H', 'J', 'K'], ['B', 'C', 'E', 'I']]",37,csv,names
MAXCUT,MAXCUT,"Imagine arranging a wedding where every guest must be put on either the north or south side of the hall, and the aim is to have as many pairs of people who know each other as possible sitting on different sides. The choice to make is the side assignment for each guest, and a seating is better when it yields a larger number of acquaintance pairs separated across the room. You determine how good any arrangement is by counting all acquaintance pairs that end up with one person on each side β higher counts are better. Everyone gets exactly one seat; nobody can be left out or assigned twice. The concrete seating details follow below.
There are 10 num guests in total and 19 num acquaintance pairs.
| guest_id_a | guest_id_b |
|---|---|
| J | A |
| J | H |
| I | B |
| I | D |
| I | G |
| I | H |
| E | A |
| E | F |
| E | G |
| E | H |
| F | B |
| F | G |
| F | H |
| C | D |
| C | H |
| D | A |
| D | G |
| A | H |
| B | H |
You can just send the seating as a small JSON snippet β nothing fancy β that shows which guests go on each side. Hereβs the little shape I expect:
{
""solution"": [
[""guest_id"", ""guest_id"", ...],
[""guest_id"", ""guest_id"", ...]
]
}
Think of the first inner list as the north side of the hall and the second inner list as the south side. Each ""guest_id"" placeholder stands for one guest (you'd replace those placeholders with the actual IDs from the instance). This is just a sketch of the shape I want, not the actual seating plan.
Please use the exact identifiers given in the instance input β don't rename them or make up new ones. For example:
- Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.","{'problem_type': 'MAXCUT', 'num_nodes': 10, 'num_edges': 19, 'edges': [{'u': 10, 'v': 1}, {'u': 10, 'v': 8}, {'u': 9, 'v': 2}, {'u': 9, 'v': 4}, {'u': 9, 'v': 7}, {'u': 9, 'v': 8}, {'u': 5, 'v': 1}, {'u': 5, 'v': 6}, {'u': 5, 'v': 7}, {'u': 5, 'v': 8}, {'u': 6, 'v': 2}, {'u': 6, 'v': 7}, {'u': 6, 'v': 8}, {'u': 3, 'v': 4}, {'u': 3, 'v': 8}, {'u': 4, 'v': 1}, {'u': 4, 'v': 7}, {'u': 1, 'v': 8}, {'u': 2, 'v': 8}], 'source_file': 'wv2010.mtx', 'density': 0.4222222222222222, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0037.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0037.png', 'edge_connectivity': 2}","[[1, 2, 4, 7, 8], [3, 5, 6, 9, 10]]",14.0,"{'num_nodes': 10, 'num_edges': 19, 'edges': [{'u': 'J', 'v': 'A'}, {'u': 'J', 'v': 'H'}, {'u': 'I', 'v': 'B'}, {'u': 'I', 'v': 'D'}, {'u': 'I', 'v': 'G'}, {'u': 'I', 'v': 'H'}, {'u': 'E', 'v': 'A'}, {'u': 'E', 'v': 'F'}, {'u': 'E', 'v': 'G'}, {'u': 'E', 'v': 'H'}, {'u': 'F', 'v': 'B'}, {'u': 'F', 'v': 'G'}, {'u': 'F', 'v': 'H'}, {'u': 'C', 'v': 'D'}, {'u': 'C', 'v': 'H'}, {'u': 'D', 'v': 'A'}, {'u': 'D', 'v': 'G'}, {'u': 'A', 'v': 'H'}, {'u': 'B', 'v': 'H'}]}","[['A', 'B', 'D', 'G', 'H'], ['C', 'E', 'F', 'I', 'J']]",38,markdown_table,names
MAXCUT,MAXCUT,"The class organizer is arranging two opposing debate squads and aims to split up as many study buddies as they can. The decision is who goes into Squad 1 and who goes into Squad 2 for every single student, and the quality of a given split is just how many study-pair links land on opposite squads β you get that number by counting the split pairs. Everyone must be assigned to one squad only; no one gets left off or duplicated. The specific roster and study-pair information are shown below.
# total_students=8
# total_study_pairs=8
student_a,student_b
3,7
6,0
6,1
6,2
6,4
6,5
6,7
0,2
Oh, and when you send back the actual split, please follow this little JSON layout so it's easy to read and parse:
{
""solution"": [
[""student_id"", ""student_id"", ...],
[""student_id"", ""student_id"", ...]
]
}
The first inner list is who goes into Squad 1, the second inner list is Squad 2. Think of those ""student_id"" placeholders as just showing the shape β you'll replace them with the real student identifiers from the instance.
This JSON is only a sketch of the expected shape, not the actual answer. Also, make sure you use the identifiers exactly as they appear in the instance input β no renaming and no new labels.
- for example: ""Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.""","{'problem_type': 'MAXCUT', 'num_nodes': 8, 'num_edges': 8, 'edges': [{'u': 4, 'v': 8}, {'u': 7, 'v': 1}, {'u': 7, 'v': 2}, {'u': 7, 'v': 3}, {'u': 7, 'v': 5}, {'u': 7, 'v': 6}, {'u': 7, 'v': 8}, {'u': 1, 'v': 3}], 'source_file': 'wi2010.mtx', 'density': 0.2857142857142857, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0038.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0038.png', 'edge_connectivity': 1}","[[1, 2, 3, 5, 6, 8], [4, 7]]",7.0,"{'num_nodes': 8, 'num_edges': 8, 'edges': [{'u': 3, 'v': 7}, {'u': 6, 'v': 0}, {'u': 6, 'v': 1}, {'u': 6, 'v': 2}, {'u': 6, 'v': 4}, {'u': 6, 'v': 5}, {'u': 6, 'v': 7}, {'u': 0, 'v': 2}]}","[[0, 1, 2, 4, 5, 7], [3, 6]]",39,csv,0
MAXCUT,MAXCUT,"Many people on the program committee want two opposing panels that separate collaborators, so the job is to split the speakers into two groups with that in mind. The decision is who goes in Group 1 and who goes in Group 2; the only practical constraint is that every speaker must belong to one and only one group. A split is better if it leaves more collaborating pairs on opposite sides; to see which split is best, count how many pairs of collaborators are on different panels β higher count wins. The concrete speaker list and collaboration pairs are shown below.
# total_speakers=11
# total_collaboration_pairs=17
speaker_a,speaker_b
A,C
A,E
A,F
A,J
H,G
B,D
B,K
G,F
G,I
G,J
D,E
D,K
C,E
E,J
E,K
I,K
J,K
If you want to hand me the split in a machine-friendly way, just follow this little JSON shape:
{
""solution"": [
[""speaker_id"", ""speaker_id"", ...],
[""speaker_id"", ""speaker_id"", ...]
]
}
The ""solution"" field holds two lists: the first list is everyone you put in Group 1, the second is everyone in Group 2. Each entry is a speaker identifier (just paste the exact ID from the instance). This is just a sketch of the expected shape β not the actual answer.
Please use the identifiers exactly as they appear in the instance input β no renaming and no new labels.
- 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β.""","{'problem_type': 'MAXCUT', 'num_nodes': 11, 'num_edges': 17, 'edges': [{'u': 1, 'v': 3}, {'u': 1, 'v': 5}, {'u': 1, 'v': 6}, {'u': 1, 'v': 10}, {'u': 8, 'v': 7}, {'u': 2, 'v': 4}, {'u': 2, 'v': 11}, {'u': 7, 'v': 6}, {'u': 7, 'v': 9}, {'u': 7, 'v': 10}, {'u': 4, 'v': 5}, {'u': 4, 'v': 11}, {'u': 3, 'v': 5}, {'u': 5, 'v': 10}, {'u': 5, 'v': 11}, {'u': 9, 'v': 11}, {'u': 10, 'v': 11}], 'source_file': 'wi2010.mtx', 'density': 0.3090909090909091, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0039.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0039.png', 'edge_connectivity': 1}","[[2, 3, 4, 6, 8, 9, 10], [1, 5, 7, 11]]",14.0,"{'num_nodes': 11, 'num_edges': 17, 'edges': [{'u': 'A', 'v': 'C'}, {'u': 'A', 'v': 'E'}, {'u': 'A', 'v': 'F'}, {'u': 'A', 'v': 'J'}, {'u': 'H', 'v': 'G'}, {'u': 'B', 'v': 'D'}, {'u': 'B', 'v': 'K'}, {'u': 'G', 'v': 'F'}, {'u': 'G', 'v': 'I'}, {'u': 'G', 'v': 'J'}, {'u': 'D', 'v': 'E'}, {'u': 'D', 'v': 'K'}, {'u': 'C', 'v': 'E'}, {'u': 'E', 'v': 'J'}, {'u': 'E', 'v': 'K'}, {'u': 'I', 'v': 'K'}, {'u': 'J', 'v': 'K'}]}","[['B', 'C', 'D', 'F', 'H', 'I', 'J'], ['A', 'E', 'G', 'K']]",40,csv,names
MAXCUT,MAXCUT,"Thereβs a seating challenge at the reunion: two benches, a pile of relatives, and a decision to make for each person about which bench they take. The goal is to have as many pairs of relatives as possible sitting on different benches β judge any seating by counting how many related pairs are split. Everyone must be seated exactly once, with no repeats or omissions. The specific names and relationships are shown below.
{
""total_relatives"": 8,
""total_related_pairs"": 12,
""edges"": [
{
""relative_a"": ""C"",
""relative_b"": ""A""
},
{
""relative_a"": ""C"",
""relative_b"": ""B""
},
{
""relative_a"": ""C"",
""relative_b"": ""E""
},
{
""relative_a"": ""C"",
""relative_b"": ""F""
},
{
""relative_a"": ""C"",
""relative_b"": ""G""
},
{
""relative_a"": ""G"",
""relative_b"": ""E""
},
{
""relative_a"": ""G"",
""relative_b"": ""H""
},
{
""relative_a"": ""H"",
""relative_b"": ""D""
},
{
""relative_a"": ""F"",
""relative_b"": ""B""
},
{
""relative_a"": ""E"",
""relative_b"": ""D""
},
{
""relative_a"": ""B"",
""relative_b"": ""A""
},
{
""relative_a"": ""A"",
""relative_b"": ""D""
}
]
}
If you want to give the seating as a quick snippet, hereβs the simple JSON shape Iβm expecting β two lists (one per bench) under the solution key.
{
""solution"": [
[""person_id"", ""person_id"", ...],
[""person_id"", ""person_id"", ...]
]
}
The first inner list is everyone sitting on the first bench, the second inner list is everyone on the other bench. The ""person_id"" items are just placeholders showing where each person's identifier goes β replace them with the exact IDs from the instance when you send the actual seating. This JSON is just a sketch of the shape I need, not the real answer.
Please use the identifiers exactly as they appear in the instance input β no renaming and no new labels.
For example: Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.","{'problem_type': 'MAXCUT', 'num_nodes': 8, 'num_edges': 12, 'edges': [{'u': 3, 'v': 1}, {'u': 3, 'v': 2}, {'u': 3, 'v': 5}, {'u': 3, 'v': 6}, {'u': 3, 'v': 7}, {'u': 7, 'v': 5}, {'u': 7, 'v': 8}, {'u': 8, 'v': 4}, {'u': 6, 'v': 2}, {'u': 5, 'v': 4}, {'u': 2, 'v': 1}, {'u': 1, 'v': 4}], 'source_file': 'wa2010.mtx', 'density': 0.42857142857142855, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0040.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0040.png', 'edge_connectivity': 2}","[[1, 5, 6, 8], [2, 3, 4, 7]]",10.0,"{'num_nodes': 8, 'num_edges': 12, 'edges': [{'u': 'C', 'v': 'A'}, {'u': 'C', 'v': 'B'}, {'u': 'C', 'v': 'E'}, {'u': 'C', 'v': 'F'}, {'u': 'C', 'v': 'G'}, {'u': 'G', 'v': 'E'}, {'u': 'G', 'v': 'H'}, {'u': 'H', 'v': 'D'}, {'u': 'F', 'v': 'B'}, {'u': 'E', 'v': 'D'}, {'u': 'B', 'v': 'A'}, {'u': 'A', 'v': 'D'}]}","[['A', 'E', 'F', 'H'], ['B', 'C', 'D', 'G']]",41,json,names
MAXCUT,MAXCUT,"Out on the block thereβs a team of volunteers and the plan is to run two opposing canvass routes; now someone has to sort everyone into one route or the other. Each volunteer needs to be placed on exactly one route (no omissions and no duplicate placements), and the aim is to arrange things so friends often end up on different routes. To judge any arrangement, count the number of friendly neighbor pairs that end up split between the two routes β the larger that count, the stronger the split. The exact roster and friendship connections follow below.
# num_volunteers=12
# num_friendly_pairs=20
volunteer_a_id,volunteer_b_id
4,1
4,7
4,9
2,7
2,10
9,1
9,6
9,7
10,7
10,8
11,3
11,7
11,12
7,3
7,5
7,6
7,8
7,12
1,6
12,6
Also, when you send the grouping back, keep it in this little JSON layout so it's easy to check:
{
""solution"": [
[""volunteer_id"", ""volunteer_id"", ...],
[""volunteer_id"", ""volunteer_id"", ...]
]
}
The first inner list is the folks assigned to one canvass route, the second list is the other route. Each string is a volunteer identifier β just list everyone once, and that's your proposed split. This is just the shape I need you to follow, not the actual final assignment.
Please make sure to use the exact identifiers 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β.","{'problem_type': 'MAXCUT', 'num_nodes': 12, 'num_edges': 20, 'edges': [{'u': 4, 'v': 1}, {'u': 4, 'v': 7}, {'u': 4, 'v': 9}, {'u': 2, 'v': 7}, {'u': 2, 'v': 10}, {'u': 9, 'v': 1}, {'u': 9, 'v': 6}, {'u': 9, 'v': 7}, {'u': 10, 'v': 7}, {'u': 10, 'v': 8}, {'u': 11, 'v': 3}, {'u': 11, 'v': 7}, {'u': 11, 'v': 12}, {'u': 7, 'v': 3}, {'u': 7, 'v': 5}, {'u': 7, 'v': 6}, {'u': 7, 'v': 8}, {'u': 7, 'v': 12}, {'u': 1, 'v': 6}, {'u': 12, 'v': 6}], 'source_file': 'wa2010.mtx', 'density': 0.30303030303030304, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0041.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0041.png', 'edge_connectivity': 1}","[[1, 7, 10, 11], [2, 3, 4, 5, 6, 8, 9, 12]]",15.0,"{'num_nodes': 12, 'num_edges': 20, 'edges': [{'u': 4, 'v': 1}, {'u': 4, 'v': 7}, {'u': 4, 'v': 9}, {'u': 2, 'v': 7}, {'u': 2, 'v': 10}, {'u': 9, 'v': 1}, {'u': 9, 'v': 6}, {'u': 9, 'v': 7}, {'u': 10, 'v': 7}, {'u': 10, 'v': 8}, {'u': 11, 'v': 3}, {'u': 11, 'v': 7}, {'u': 11, 'v': 12}, {'u': 7, 'v': 3}, {'u': 7, 'v': 5}, {'u': 7, 'v': 6}, {'u': 7, 'v': 8}, {'u': 7, 'v': 12}, {'u': 1, 'v': 6}, {'u': 12, 'v': 6}]}","[[1, 7, 10, 11], [2, 3, 4, 5, 6, 8, 9, 12]]",42,csv,1
MAXCUT,MAXCUT,"At the study site the coordinator has to divide the entire roster into two opposing cohorts using a list of who has been in contact with whom. The point is to separate as many known-contact pairs as possible between the two cohorts β measure a split by counting how many contact-pairs fall on opposite sides, and the split with the larger count wins. Every single participant must be assigned to one cohort only, with no repeats or omissions. The concrete participant list and contact pairs are provided below.
# total_participants=12
# contact_pairs_count=20
participant_a_id,participant_b_id
10,1
10,7
10,9
11,6
11,7
3,7
6,0
6,5
6,7
0,5
0,9
1,7
1,9
9,5
9,7
5,7
7,2
7,4
7,8
8,4
Also, when you send back the split, please use this simple JSON shape so it's easy to check automatically:
{
""solution"": [
[""vertex_id"", ""vertex_id"", ...],
[""vertex_id"", ""vertex_id"", ...]
]
}
Think of it like a form: ""solution"" holds two lists β the first list is everyone assigned to cohort A, the second list is everyone assigned to cohort B. Each entry is just the participant identifier exactly as given in the instance. This is just a sketch 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.
- 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β.""","{'problem_type': 'MAXCUT', 'num_nodes': 12, 'num_edges': 20, 'edges': [{'u': 11, 'v': 2}, {'u': 11, 'v': 8}, {'u': 11, 'v': 10}, {'u': 12, 'v': 7}, {'u': 12, 'v': 8}, {'u': 4, 'v': 8}, {'u': 7, 'v': 1}, {'u': 7, 'v': 6}, {'u': 7, 'v': 8}, {'u': 1, 'v': 6}, {'u': 1, 'v': 10}, {'u': 2, 'v': 8}, {'u': 2, 'v': 10}, {'u': 10, 'v': 6}, {'u': 10, 'v': 8}, {'u': 6, 'v': 8}, {'u': 8, 'v': 3}, {'u': 8, 'v': 5}, {'u': 8, 'v': 9}, {'u': 9, 'v': 5}], 'source_file': 'wi2010.mtx', 'density': 0.30303030303030304, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0042.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0042.png', 'edge_connectivity': 1}","[[1, 2, 3, 4, 6, 9, 11, 12], [5, 7, 8, 10]]",15.0,"{'num_nodes': 12, 'num_edges': 20, 'edges': [{'u': 10, 'v': 1}, {'u': 10, 'v': 7}, {'u': 10, 'v': 9}, {'u': 11, 'v': 6}, {'u': 11, 'v': 7}, {'u': 3, 'v': 7}, {'u': 6, 'v': 0}, {'u': 6, 'v': 5}, {'u': 6, 'v': 7}, {'u': 0, 'v': 5}, {'u': 0, 'v': 9}, {'u': 1, 'v': 7}, {'u': 1, 'v': 9}, {'u': 9, 'v': 5}, {'u': 9, 'v': 7}, {'u': 5, 'v': 7}, {'u': 7, 'v': 2}, {'u': 7, 'v': 4}, {'u': 7, 'v': 8}, {'u': 8, 'v': 4}]}","[[0, 1, 2, 3, 5, 8, 10, 11], [4, 6, 7, 9]]",43,csv,0
MAXCUT,MAXCUT,"Someone on the planning team wants the acts split between two stages so that connected duos and groups are mostly performing on opposite stages β the task is to decide which stage each performer will get. The way to judge any arrangement is simple: count the performer pairs from the list that end up on different stages; the higher that number, the better the split. Each performer needs to be placed exactly once, with no duplicates or omissions. The concrete performer list and pairings follow below.
{
""num_performers"": 9,
""num_performer_pairs"": 13,
""edges"": [
{
""performer_a"": ""A"",
""performer_b"": ""B""
},
{
""performer_a"": ""A"",
""performer_b"": ""C""
},
{
""performer_a"": ""A"",
""performer_b"": ""D""
},
{
""performer_a"": ""A"",
""performer_b"": ""F""
},
{
""performer_a"": ""H"",
""performer_b"": ""D""
},
{
""performer_a"": ""H"",
""performer_b"": ""F""
},
{
""performer_a"": ""H"",
""performer_b"": ""I""
},
{
""performer_a"": ""E"",
""performer_b"": ""B""
},
{
""performer_a"": ""E"",
""performer_b"": ""C""
},
{
""performer_a"": ""E"",
""performer_b"": ""G""
},
{
""performer_a"": ""E"",
""performer_b"": ""I""
},
{
""performer_a"": ""F"",
""performer_b"": ""C""
},
{
""performer_a"": ""I"",
""performer_b"": ""C""
}
]
}
You can just reply with a small JSON object showing which performers go on each stage. Something like this is the shape I expect:
{
""solution"": [
[""performer_id"", ""performer_id"", ...],
[""performer_id"", ""performer_id"", ...]
]
}
The first inner list is everyone assigned to one stage, and the second inner list is everyone assigned to the other stage. Think of it like a simple sign-up sheet β each performer appears exactly once, and the two lists together are the full lineup. This JSON is just a sketch of the format I need, not the actual assignment.
Please make sure to use the performer identifiers exactly as they appear in the instance input β do not rename them or invent new labels.
For example: ""Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.""","{'problem_type': 'MAXCUT', 'num_nodes': 9, 'num_edges': 13, 'edges': [{'u': 1, 'v': 2}, {'u': 1, 'v': 3}, {'u': 1, 'v': 4}, {'u': 1, 'v': 6}, {'u': 8, 'v': 4}, {'u': 8, 'v': 6}, {'u': 8, 'v': 9}, {'u': 5, 'v': 2}, {'u': 5, 'v': 3}, {'u': 5, 'v': 7}, {'u': 5, 'v': 9}, {'u': 6, 'v': 3}, {'u': 9, 'v': 3}], 'source_file': 'wy2010.mtx', 'density': 0.3611111111111111, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0043.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0043.png', 'edge_connectivity': 1}","[[2, 4, 6, 7, 9], [1, 3, 5, 8]]",11.0,"{'num_nodes': 9, 'num_edges': 13, 'edges': [{'u': 'A', 'v': 'B'}, {'u': 'A', 'v': 'C'}, {'u': 'A', 'v': 'D'}, {'u': 'A', 'v': 'F'}, {'u': 'H', 'v': 'D'}, {'u': 'H', 'v': 'F'}, {'u': 'H', 'v': 'I'}, {'u': 'E', 'v': 'B'}, {'u': 'E', 'v': 'C'}, {'u': 'E', 'v': 'G'}, {'u': 'E', 'v': 'I'}, {'u': 'F', 'v': 'C'}, {'u': 'I', 'v': 'C'}]}","[['B', 'D', 'F', 'G', 'I'], ['A', 'C', 'E', 'H']]",44,json,names
MAXCUT,MAXCUT,"Recently the team set up two review groups and needed to figure out who goes where: everyone has to be assigned to one of the two groups, and the point is to arrange the split so that the greatest number of known collaborator pairs end up separated between the groups. The decision is purely who joins which group, and what makes one arrangement superior is that it splits more of those pairs. To judge any arrangement, count the number of pairs that ended up on opposite sides β a bigger count means a better split. No contributor should be omitted or put into both groups. The detailed list of contributors and their pairings is shown below.
{
""total_contributors"": 8,
""total_collaboration_pairs"": 13,
""edges"": [
{
""contributor_a"": ""E"",
""contributor_b"": ""A""
},
{
""contributor_a"": ""E"",
""contributor_b"": ""F""
},
{
""contributor_a"": ""B"",
""contributor_b"": ""D""
},
{
""contributor_a"": ""B"",
""contributor_b"": ""F""
},
{
""contributor_a"": ""D"",
""contributor_b"": ""F""
},
{
""contributor_a"": ""D"",
""contributor_b"": ""G""
},
{
""contributor_a"": ""D"",
""contributor_b"": ""H""
},
{
""contributor_a"": ""H"",
""contributor_b"": ""C""
},
{
""contributor_a"": ""H"",
""contributor_b"": ""G""
},
{
""contributor_a"": ""A"",
""contributor_b"": ""C""
},
{
""contributor_a"": ""G"",
""contributor_b"": ""C""
},
{
""contributor_a"": ""G"",
""contributor_b"": ""F""
},
{
""contributor_a"": ""F"",
""contributor_b"": ""C""
}
]
}
Oh β and when you send back the split, please use this simple JSON layout so it's easy to check automatically. Something like:
{
""solution"": [
[""contributor_id"", ""contributor_id"", ...],
[""contributor_id"", ""contributor_id"", ...]
]
}
Here the two inner lists are the two review groups, and each placeholder like ""contributor_id"" stands for one personβs identifier from the instance. Think of it like a little form: list who goes in group one, then list who goes in group two. This is just the shape I need, not the actual grouping β you'll fill in the real IDs.
Please make sure to use the exact identifiers from the instance input β do not rename them or introduce new labels.
Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.","{'problem_type': 'MAXCUT', 'num_nodes': 8, 'num_edges': 13, 'edges': [{'u': 5, 'v': 1}, {'u': 5, 'v': 6}, {'u': 2, 'v': 4}, {'u': 2, 'v': 6}, {'u': 4, 'v': 6}, {'u': 4, 'v': 7}, {'u': 4, 'v': 8}, {'u': 8, 'v': 3}, {'u': 8, 'v': 7}, {'u': 1, 'v': 3}, {'u': 7, 'v': 3}, {'u': 7, 'v': 6}, {'u': 6, 'v': 3}], 'source_file': 'wi2010.mtx', 'density': 0.4642857142857143, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0044.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0044.png', 'edge_connectivity': 2}","[[2, 3, 5, 7], [1, 4, 6, 8]]",10.0,"{'num_nodes': 8, 'num_edges': 13, 'edges': [{'u': 'E', 'v': 'A'}, {'u': 'E', 'v': 'F'}, {'u': 'B', 'v': 'D'}, {'u': 'B', 'v': 'F'}, {'u': 'D', 'v': 'F'}, {'u': 'D', 'v': 'G'}, {'u': 'D', 'v': 'H'}, {'u': 'H', 'v': 'C'}, {'u': 'H', 'v': 'G'}, {'u': 'A', 'v': 'C'}, {'u': 'G', 'v': 'C'}, {'u': 'G', 'v': 'F'}, {'u': 'F', 'v': 'C'}]}","[['B', 'C', 'E', 'G'], ['A', 'D', 'F', 'H']]",45,json,names
MAXCUT,MAXCUT,"I was thinking about a little retail puzzle: a bunch of products need to be split between the left and right sides of a shop, and some products are known to be paired together (people often buy them together). The task is to decide which side each product goes on so that as many of those paired items as possible end up on opposite sides. The way to tell if one layout is better than another is straightforward β count how many of the known pairs sit on different sides β higher counts are better. Every product has to be placed on one side or the other, nothing gets skipped or copied. The concrete list of products and pairings is shown below.
# total_products=11
# total_product_pairs=17
product_a_id,product_b_id
1,3
1,6
4,5
4,6
4,8
4,9
6,3
6,5
6,7
6,10
2,5
2,10
0,5
0,10
10,3
8,3
8,9
If you want to send the layout back, just use a tiny JSON snippet with the two sides listed. Something like this:
{
""solution"": [
[""product_id"", ""product_id"", ...],
[""product_id"", ""product_id"", ...]
]
}
Pretty simple: the outer ""solution"" is a pair of lists β the first inner list is everything you put on the left side, the second inner list is everything on the right side. Put each product's identifier (exactly as it appears in the instance) into one of the lists. This JSON is just a sketch of the shape I expect, not the actual placement.
Please make sure to use the identifiers exactly as they appear in the instance input β no renaming and no new labels.
- for example: ""Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.""","{'problem_type': 'MAXCUT', 'num_nodes': 11, 'num_edges': 17, 'edges': [{'u': 2, 'v': 4}, {'u': 2, 'v': 7}, {'u': 5, 'v': 6}, {'u': 5, 'v': 7}, {'u': 5, 'v': 9}, {'u': 5, 'v': 10}, {'u': 7, 'v': 4}, {'u': 7, 'v': 6}, {'u': 7, 'v': 8}, {'u': 7, 'v': 11}, {'u': 3, 'v': 6}, {'u': 3, 'v': 11}, {'u': 1, 'v': 6}, {'u': 1, 'v': 11}, {'u': 11, 'v': 4}, {'u': 9, 'v': 4}, {'u': 9, 'v': 10}], 'source_file': 'wa2010.mtx', 'density': 0.3090909090909091, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0045.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0045.png', 'edge_connectivity': 1}","[[1, 3, 4, 7, 10], [2, 5, 6, 8, 9, 11]]",14.0,"{'num_nodes': 11, 'num_edges': 17, 'edges': [{'u': 1, 'v': 3}, {'u': 1, 'v': 6}, {'u': 4, 'v': 5}, {'u': 4, 'v': 6}, {'u': 4, 'v': 8}, {'u': 4, 'v': 9}, {'u': 6, 'v': 3}, {'u': 6, 'v': 5}, {'u': 6, 'v': 7}, {'u': 6, 'v': 10}, {'u': 2, 'v': 5}, {'u': 2, 'v': 10}, {'u': 0, 'v': 5}, {'u': 0, 'v': 10}, {'u': 10, 'v': 3}, {'u': 8, 'v': 3}, {'u': 8, 'v': 9}]}","[[0, 2, 3, 6, 9], [1, 4, 5, 7, 8, 10]]",46,csv,0
MAXCUT,MAXCUT,"Iβm helping organize a book club exercise where everyone splits into two opposite discussion circles, and the fun is in trying to separate as many friend-pairs as possible β you pick which circle each reader goes to, making sure every person is in exactly one circle and nobody is duplicated or left out, and the score is just how many pairs of readers end up in different circles; the exact list of members and their pairings is shown below.
Below are the 9 readers and the 15 friend-pairs:
5 and 0 are friends β you can try to place them in opposite circles.
5 and 2 are friends β you can try to place them in opposite circles.
5 and 7 are friends β you can try to place them in opposite circles.
5 and 8 are friends β you can try to place them in opposite circles.
2 and 4 are friends β you can try to place them in opposite circles.
2 and 7 are friends β you can try to place them in opposite circles.
8 and 1 are friends β you can try to place them in opposite circles.
8 and 6 are friends β you can try to place them in opposite circles.
8 and 7 are friends β you can try to place them in opposite circles.
0 and 1 are friends β you can try to place them in opposite circles.
0 and 6 are friends β you can try to place them in opposite circles.
7 and 4 are friends β you can try to place them in opposite circles.
7 and 6 are friends β you can try to place them in opposite circles.
3 and 6 are friends β you can try to place them in opposite circles.
6 and 4 are friends β you can try to place them in opposite circles.
Assign every one of the 9 readers to exactly one circle; the score is how many of the 15 pairs you successfully separate.
If you want to hand back a proposed split, just use this small JSON layout so it's easy to read and check:
{
""solution"": [
[""reader_id"", ""reader_id"", ...],
[""reader_id"", ""reader_id"", ...]
]
}
Think of it like a simple form: ""solution"" holds two lists β the first list is everyone you put in one circle, the second list is everyone in the opposite circle. Each entry is a reader identifier (leave them as they appear in the instance).
This is just a sketch of the shape I need, not the actual answer β please fill in the real identifiers from the instance.
Please make sure you use the identifiers exactly as they appear in the input β no renaming, no new labels.
- for example: Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.","{'problem_type': 'MAXCUT', 'num_nodes': 9, 'num_edges': 15, 'edges': [{'u': 6, 'v': 1}, {'u': 6, 'v': 3}, {'u': 6, 'v': 8}, {'u': 6, 'v': 9}, {'u': 3, 'v': 5}, {'u': 3, 'v': 8}, {'u': 9, 'v': 2}, {'u': 9, 'v': 7}, {'u': 9, 'v': 8}, {'u': 1, 'v': 2}, {'u': 1, 'v': 7}, {'u': 8, 'v': 5}, {'u': 8, 'v': 7}, {'u': 4, 'v': 7}, {'u': 7, 'v': 5}], 'source_file': 'wy2010.mtx', 'density': 0.4166666666666667, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0046.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0046.png', 'edge_connectivity': 1}","[[1, 3, 4, 8, 9], [2, 5, 6, 7]]",12.0,"{'num_nodes': 9, 'num_edges': 15, 'edges': [{'u': 5, 'v': 0}, {'u': 5, 'v': 2}, {'u': 5, 'v': 7}, {'u': 5, 'v': 8}, {'u': 2, 'v': 4}, {'u': 2, 'v': 7}, {'u': 8, 'v': 1}, {'u': 8, 'v': 6}, {'u': 8, 'v': 7}, {'u': 0, 'v': 1}, {'u': 0, 'v': 6}, {'u': 7, 'v': 4}, {'u': 7, 'v': 6}, {'u': 3, 'v': 6}, {'u': 6, 'v': 4}]}","[[0, 2, 3, 7, 8], [1, 4, 5, 6]]",47,nl,0
MAXCUT,MAXCUT,"The organizers sketched out a plan to put fans into two opposing stands so that a maximum number of specified fan-pairs would be separated across the field. For any seating plan, you count how many of the listed pairs end up on opposite stands β that count is the measure of how good the plan is. Itβs important that each fan is assigned to exactly one stand, with nobody assigned twice or forgotten. The exact list of fans and which pairs matter will be shown below.
# total_fans=8
# total_specified_pairs=8
fan_id_one,fan_id_two
A,F
A,G
E,G
F,G
D,G
C,G
G,B
G,H
Oh, and when you send me the seating plan, please stick to this simple JSON shape so I can read it easily:
{
""solution"": [
[""fan_id"", ""fan_id"", ...],
[""fan_id"", ""fan_id"", ...]
]
}
Think of the two inner lists as the two stands β just list which fan IDs sit in the left stand and which sit in the right stand. This is just a sketch of the expected shape, not the actual answer itself.
Please make sure you use the exact identifiers from the instance input β don't rename them or invent new ones.
- for example: ""Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.""","{'problem_type': 'MAXCUT', 'num_nodes': 8, 'num_edges': 8, 'edges': [{'u': 1, 'v': 6}, {'u': 1, 'v': 7}, {'u': 5, 'v': 7}, {'u': 6, 'v': 7}, {'u': 4, 'v': 7}, {'u': 3, 'v': 7}, {'u': 7, 'v': 2}, {'u': 7, 'v': 8}], 'source_file': 'wy2010.mtx', 'density': 0.2857142857142857, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0047.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0047.png', 'edge_connectivity': 1}","[[6, 7], [1, 2, 3, 4, 5, 8]]",7.0,"{'num_nodes': 8, 'num_edges': 8, 'edges': [{'u': 'A', 'v': 'F'}, {'u': 'A', 'v': 'G'}, {'u': 'E', 'v': 'G'}, {'u': 'F', 'v': 'G'}, {'u': 'D', 'v': 'G'}, {'u': 'C', 'v': 'G'}, {'u': 'G', 'v': 'B'}, {'u': 'G', 'v': 'H'}]}","[['F', 'G'], ['A', 'B', 'C', 'D', 'E', 'H']]",48,csv,names
MAXCUT,MAXCUT,"We had to divide the dorm into two opposing cleaning teams and try to make roommates work on different shifts whenever possible. The decision is which half of the residents are on shift A and which are on shift B, and a smarter split is the one that ends up separating the most roommate pairs. To check any split, just count the number of roommate-pairs that land on different teams. Every resident must belong to one of the two shifts and cannot be on both or omitted. The specific roster and roommate pairings are listed below.
There are 10 residents in total and 15 roommate pairs.
| resident_u | resident_v |
|---|---|
| 4 | 2 |
| 4 | 7 |
| 4 | 9 |
| 9 | 5 |
| 1 | 0 |
| 1 | 3 |
| 1 | 5 |
| 2 | 3 |
| 2 | 5 |
| 2 | 8 |
| 0 | 5 |
| 7 | 8 |
| 3 | 5 |
| 3 | 6 |
| 6 | 8 |
You can just hand me a proposed split in a little JSON form like this so I know which people go on shift A and which go on shift B.
{
""solution"": [
[""resident_id"", ""resident_id"", ...],
[""resident_id"", ""resident_id"", ...]
]
}
Think of the first list as everyone on shift A and the second list as everyone on shift B β just put each resident's identifier in the appropriate list. This JSON is only a sketch of the shape I need, not the actual answer itself.
Please use the exact identifiers from the instance input β don't rename them or make up new ones.
- for example: ""Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.""","{'problem_type': 'MAXCUT', 'num_nodes': 10, 'num_edges': 15, 'edges': [{'u': 5, 'v': 3}, {'u': 5, 'v': 8}, {'u': 5, 'v': 10}, {'u': 10, 'v': 6}, {'u': 2, 'v': 1}, {'u': 2, 'v': 4}, {'u': 2, 'v': 6}, {'u': 3, 'v': 4}, {'u': 3, 'v': 6}, {'u': 3, 'v': 9}, {'u': 1, 'v': 6}, {'u': 8, 'v': 9}, {'u': 4, 'v': 6}, {'u': 4, 'v': 7}, {'u': 7, 'v': 9}], 'source_file': 'wy2010.mtx', 'density': 0.3333333333333333, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0048.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0048.png', 'edge_connectivity': 2}","[[1, 2, 3, 7, 8, 10], [4, 5, 6, 9]]",13.0,"{'num_nodes': 10, 'num_edges': 15, 'edges': [{'u': 4, 'v': 2}, {'u': 4, 'v': 7}, {'u': 4, 'v': 9}, {'u': 9, 'v': 5}, {'u': 1, 'v': 0}, {'u': 1, 'v': 3}, {'u': 1, 'v': 5}, {'u': 2, 'v': 3}, {'u': 2, 'v': 5}, {'u': 2, 'v': 8}, {'u': 0, 'v': 5}, {'u': 7, 'v': 8}, {'u': 3, 'v': 5}, {'u': 3, 'v': 6}, {'u': 6, 'v': 8}]}","[[0, 1, 2, 6, 7, 9], [3, 4, 5, 8]]",49,markdown_table,0
MAXCUT,MAXCUT,"Weβre trying to organize a mailing setup where the whole address book gets split into two opposing lists. The decision is simply assigning each contact to either List 1 or List 2, and the aim is to maximize the number of connections that cross between the lists β in other words, the better arrangement is the one that results in more linked pairs sitting in different lists. To measure success, just count how many connected pairs span the two groups. Every person must appear on one list only, with no duplicates or omissions. The specific contacts and their ties are listed below.
{
""total_contacts"": 11,
""total_connections"": 14,
""edges"": [
{
""contact_u"": 5,
""contact_v"": 3
},
{
""contact_u"": 5,
""contact_v"": 4
},
{
""contact_u"": 5,
""contact_v"": 6
},
{
""contact_u"": 5,
""contact_v"": 11
},
{
""contact_u"": 11,
""contact_v"": 9
},
{
""contact_u"": 2,
""contact_v"": 7
},
{
""contact_u"": 2,
""contact_v"": 10
},
{
""contact_u"": 8,
""contact_v"": 7
},
{
""contact_u"": 9,
""contact_v"": 1
},
{
""contact_u"": 9,
""contact_v"": 6
},
{
""contact_u"": 6,
""contact_v"": 7
},
{
""contact_u"": 6,
""contact_v"": 10
},
{
""contact_u"": 4,
""contact_v"": 7
},
{
""contact_u"": 10,
""contact_v"": 1
}
]
}
Oh, and when you send back your assignment, please use a simple JSON layout like this so it's easy to read and check:
{
""solution"": [
[""contact_id"", ""contact_id"", ...],
[""contact_id"", ""contact_id"", ...]
]
}
The idea is straightforward: ""solution"" holds two lists β the first inner list is everyone you put on List 1, the second inner list is everyone you put on List 2. Each item is a contact identifier (just the exact ID from the instance), and every contact should appear once and only once. This JSON is just a sketch of the shape I expect, not the actual answer.
Also, please use the identifiers exactly as they appear in the instance input β no renaming and no new labels.
- ""Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.""","{'problem_type': 'MAXCUT', 'num_nodes': 11, 'num_edges': 14, 'edges': [{'u': 5, 'v': 3}, {'u': 5, 'v': 4}, {'u': 5, 'v': 6}, {'u': 5, 'v': 11}, {'u': 11, 'v': 9}, {'u': 2, 'v': 7}, {'u': 2, 'v': 10}, {'u': 8, 'v': 7}, {'u': 9, 'v': 1}, {'u': 9, 'v': 6}, {'u': 6, 'v': 7}, {'u': 6, 'v': 10}, {'u': 4, 'v': 7}, {'u': 10, 'v': 1}], 'source_file': 'wa2010.mtx', 'density': 0.2545454545454545, 'viz_instance': 'generated_data/MAXCUT/viz/MAXCUT_S/instance_0049.png', 'viz_solution': 'generated_data/MAXCUT/viz/MAXCUT_S/solution_0049.png', 'edge_connectivity': 1}","[[1, 2, 3, 4, 6, 8, 11], [5, 7, 9, 10]]",14.0,"{'num_nodes': 11, 'num_edges': 14, 'edges': [{'u': 5, 'v': 3}, {'u': 5, 'v': 4}, {'u': 5, 'v': 6}, {'u': 5, 'v': 11}, {'u': 11, 'v': 9}, {'u': 2, 'v': 7}, {'u': 2, 'v': 10}, {'u': 8, 'v': 7}, {'u': 9, 'v': 1}, {'u': 9, 'v': 6}, {'u': 6, 'v': 7}, {'u': 6, 'v': 10}, {'u': 4, 'v': 7}, {'u': 10, 'v': 1}]}","[[1, 2, 3, 4, 6, 8, 11], [5, 7, 9, 10]]",50,json,1
|