File size: 148,657 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 | task_name,problem_type,instruction,instance,solution,obj,instance_variant,solution_variant,context_index,input_format,input_index_base
MIS,MIS,"Recently the wedding coordinator decided to make a carefully spaced display of centerpieces: pick as many tables to dress as possible but avoid picking any tables that are next to each other on the floor map. Success is just the number of dressed tables β add them up β and no table gets picked twice or left in an ambiguous state. The detailed layout is provided below.
There are 8 tables and 14 adjacency pairs in the layout below.
Tables 1 and 3 are adjacent and cannot both be dressed.
Tables 1 and 4 are adjacent and cannot both be dressed.
Tables 1 and 8 are adjacent and cannot both be dressed.
Tables 3 and 6 are adjacent and cannot both be dressed.
Tables 3 and 7 are adjacent and cannot both be dressed.
Tables 8 and 4 are adjacent and cannot both be dressed.
Tables 8 and 5 are adjacent and cannot both be dressed.
Tables 8 and 6 are adjacent and cannot both be dressed.
Tables 4 and 2 are adjacent and cannot both be dressed.
Tables 4 and 5 are adjacent and cannot both be dressed.
Tables 5 and 2 are adjacent and cannot both be dressed.
Tables 5 and 6 are adjacent and cannot both be dressed.
Tables 5 and 7 are adjacent and cannot both be dressed.
Tables 7 and 6 are adjacent and cannot both be dressed.
Refer to the 8 tables and 14 adjacency pairs to choose a maximal set of non-adjacent tables.
Also, when you send back which tables you picked, just put them in a tiny JSON snippet like this so it's clear and easy to check:
{
""solution"": [""table_id"", ""table_id"", ...]
}
Quick note: ""solution"" is the list of table identifiers you chose to dress for the display. Each entry in that array should be a single table id from the floor plan (the ""table_id"" placeholders above just show the shape β replace them with the actual ids). The little ellipsis means you can list as many ids as needed.
This JSON is just a sketch of the expected shape, not the actual answer itself β please return the real ids from the instance.
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': 'MIS', 'num_nodes': 8, 'num_edges': 14, 'edges': [{'u': 1, 'v': 3}, {'u': 1, 'v': 4}, {'u': 1, 'v': 8}, {'u': 3, 'v': 6}, {'u': 3, 'v': 7}, {'u': 8, 'v': 4}, {'u': 8, 'v': 5}, {'u': 8, 'v': 6}, {'u': 4, 'v': 2}, {'u': 4, 'v': 5}, {'u': 5, 'v': 2}, {'u': 5, 'v': 6}, {'u': 5, 'v': 7}, {'u': 7, 'v': 6}], 'source_file': 'vt2010.mtx', 'density': 0.5, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0000.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0000.png', 'edge_connectivity': 2}","[2, 7, 8]",3.0,"{'num_nodes': 8, 'num_edges': 14, 'edges': [{'u': 1, 'v': 3}, {'u': 1, 'v': 4}, {'u': 1, 'v': 8}, {'u': 3, 'v': 6}, {'u': 3, 'v': 7}, {'u': 8, 'v': 4}, {'u': 8, 'v': 5}, {'u': 8, 'v': 6}, {'u': 4, 'v': 2}, {'u': 4, 'v': 5}, {'u': 5, 'v': 2}, {'u': 5, 'v': 6}, {'u': 5, 'v': 7}, {'u': 7, 'v': 6}]}","[2, 7, 8]",1,nl,1
MIS,MIS,"Iβm setting up the front display at the library and want to pick as many interesting books as I can, but Iβm careful not to put two chosen books right next to each other on the shelf. The better a selection is, the more books end up on that display β so the simple way to judge a pick is to count how many distinct books are placed there. Each book can only be chosen once and every choice must respect the βno neighborsβ rule on the shelf. The exact shelf layout and details are shown below.
# total_books_on_shelf=8
# num_adjacent_book_pairs=15
book_id_a,book_id_b
2,0
2,1
2,3
2,5
2,6
2,7
5,0
5,1
5,4
6,0
6,3
0,4
0,7
7,1
4,3
If you want to pass me the selection in a neat, machine-friendly way, you can just use a little JSON like this:
{
""solution"": [""book_id"", ""book_id"", ...]
}
Here ""solution"" is the list of the books you put on the front display β each entry should be the exact ID for a book from the instance (so one entry per chosen book, and don't list two books that are neighbors). This JSON is just a sketch of the shape I expect, not the actual final answer.
All identifiers must be used exactly as they appear in the instance input β no renaming and no new labels.
Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.","{'problem_type': 'MIS', 'num_nodes': 8, 'num_edges': 15, 'edges': [{'u': 3, 'v': 1}, {'u': 3, 'v': 2}, {'u': 3, 'v': 4}, {'u': 3, 'v': 6}, {'u': 3, 'v': 7}, {'u': 3, 'v': 8}, {'u': 6, 'v': 1}, {'u': 6, 'v': 2}, {'u': 6, 'v': 5}, {'u': 7, 'v': 1}, {'u': 7, 'v': 4}, {'u': 1, 'v': 5}, {'u': 1, 'v': 8}, {'u': 8, 'v': 2}, {'u': 5, 'v': 4}], 'source_file': 'wi2010.mtx', 'density': 0.5357142857142857, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0001.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0001.png', 'edge_connectivity': 3}","[5, 7, 8]",3.0,"{'num_nodes': 8, 'num_edges': 15, 'edges': [{'u': 2, 'v': 0}, {'u': 2, 'v': 1}, {'u': 2, 'v': 3}, {'u': 2, 'v': 5}, {'u': 2, 'v': 6}, {'u': 2, 'v': 7}, {'u': 5, 'v': 0}, {'u': 5, 'v': 1}, {'u': 5, 'v': 4}, {'u': 6, 'v': 0}, {'u': 6, 'v': 3}, {'u': 0, 'v': 4}, {'u': 0, 'v': 7}, {'u': 7, 'v': 1}, {'u': 4, 'v': 3}]}","[4, 6, 7]",2,csv,0
MIS,MIS,"Iβm the radio tech staring at a wall of channel knobs: each one can be switched on or left off, but some pairs clash and canβt be on at the same time. The job is to flip as many knobs to βonβ as possible without ever turning on two channels that interfere with each other. How to tell which plan is better? Just count how many channels are on β the higher the count, the better. Every channel is decided once (on or off) and canβt be duplicated, and the specific interference pairs and channels are listed below.
# total_channels=10
# total_interference_pairs=15
channel_one,channel_two
9,2
9,5
9,6
9,7
9,8
0,2
7,4
7,5
1,3
1,6
3,2
4,5
6,2
6,8
2,8
Oh, and when you give the answer, just put it in this little JSON shape so it's easy to read and parse:
{
""solution"": [""channel_id"", ""channel_id"", ...]
}
Pretty straightforward: ""solution"" is the list of channels you want switched on (one entry per channel). The example uses the placeholder ""channel_id"" to show the format β replace those placeholders with the actual channel identifiers from the instance when you answer. This JSON is just a sketch of the shape I expect, not the final selection.
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': 'MIS', 'num_nodes': 10, 'num_edges': 15, 'edges': [{'u': 10, 'v': 3}, {'u': 10, 'v': 6}, {'u': 10, 'v': 7}, {'u': 10, 'v': 8}, {'u': 10, 'v': 9}, {'u': 1, 'v': 3}, {'u': 8, 'v': 5}, {'u': 8, 'v': 6}, {'u': 2, 'v': 4}, {'u': 2, 'v': 7}, {'u': 4, 'v': 3}, {'u': 5, 'v': 6}, {'u': 7, 'v': 3}, {'u': 7, 'v': 9}, {'u': 3, 'v': 9}], 'source_file': 'wa2010.mtx', 'density': 0.3333333333333333, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0002.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0002.png', 'edge_connectivity': 1}","[1, 4, 5, 9]",4.0,"{'num_nodes': 10, 'num_edges': 15, 'edges': [{'u': 9, 'v': 2}, {'u': 9, 'v': 5}, {'u': 9, 'v': 6}, {'u': 9, 'v': 7}, {'u': 9, 'v': 8}, {'u': 0, 'v': 2}, {'u': 7, 'v': 4}, {'u': 7, 'v': 5}, {'u': 1, 'v': 3}, {'u': 1, 'v': 6}, {'u': 3, 'v': 2}, {'u': 4, 'v': 5}, {'u': 6, 'v': 2}, {'u': 6, 'v': 8}, {'u': 2, 'v': 8}]}","[0, 3, 4, 8]",3,csv,0
MIS,MIS,"We had a small exhibition to plan and the curatorial team was trying to squeeze in as many pieces as they could. The idea was simple: choose the biggest collection of paintings to display, while making sure none of the selected works are placed on panels that are next to each other. How well the team did is measured by the final count of displayed paintings β just add them up β and each piece can only be used once and must occupy its own panel. The specific panel map and the list of paintings are shown below.
{
""total_panels"": 9,
""adjacent_panel_pairs"": 17,
""edges"": [
{
""panel_a"": ""F"",
""panel_b"": ""B""
},
{
""panel_a"": ""F"",
""panel_b"": ""G""
},
{
""panel_a"": ""F"",
""panel_b"": ""I""
},
{
""panel_a"": ""H"",
""panel_b"": ""A""
},
{
""panel_a"": ""H"",
""panel_b"": ""B""
},
{
""panel_a"": ""H"",
""panel_b"": ""G""
},
{
""panel_a"": ""A"",
""panel_b"": ""B""
},
{
""panel_a"": ""A"",
""panel_b"": ""C""
},
{
""panel_a"": ""A"",
""panel_b"": ""D""
},
{
""panel_a"": ""A"",
""panel_b"": ""G""
},
{
""panel_a"": ""B"",
""panel_b"": ""D""
},
{
""panel_a"": ""C"",
""panel_b"": ""D""
},
{
""panel_a"": ""C"",
""panel_b"": ""I""
},
{
""panel_a"": ""I"",
""panel_b"": ""D""
},
{
""panel_a"": ""I"",
""panel_b"": ""E""
},
{
""panel_a"": ""I"",
""panel_b"": ""G""
},
{
""panel_a"": ""D"",
""panel_b"": ""E""
}
]
}
If you want to hand me the chosen panels in a neat, machine-friendly way, just return them in this little JSON shape.
{
""solution"": [""vertex_id"", ""vertex_id"", ...]
}
Think of ""solution"" as the list of panels where the chosen paintings will hang β just put each panel's identifier in that array. It's just a sketch of the shape I expect, not the final answer itself.
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': 'MIS', 'num_nodes': 9, 'num_edges': 17, 'edges': [{'u': 6, 'v': 2}, {'u': 6, 'v': 7}, {'u': 6, 'v': 9}, {'u': 8, 'v': 1}, {'u': 8, 'v': 2}, {'u': 8, 'v': 7}, {'u': 1, 'v': 2}, {'u': 1, 'v': 3}, {'u': 1, 'v': 4}, {'u': 1, 'v': 7}, {'u': 2, 'v': 4}, {'u': 3, 'v': 4}, {'u': 3, 'v': 9}, {'u': 9, 'v': 4}, {'u': 9, 'v': 5}, {'u': 9, 'v': 7}, {'u': 4, 'v': 5}], 'source_file': 'wy2010.mtx', 'density': 0.4722222222222222, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0003.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0003.png', 'edge_connectivity': 2}","[3, 5, 6, 8]",4.0,"{'num_nodes': 9, 'num_edges': 17, 'edges': [{'u': 'F', 'v': 'B'}, {'u': 'F', 'v': 'G'}, {'u': 'F', 'v': 'I'}, {'u': 'H', 'v': 'A'}, {'u': 'H', 'v': 'B'}, {'u': 'H', 'v': 'G'}, {'u': 'A', 'v': 'B'}, {'u': 'A', 'v': 'C'}, {'u': 'A', 'v': 'D'}, {'u': 'A', 'v': 'G'}, {'u': 'B', 'v': 'D'}, {'u': 'C', 'v': 'D'}, {'u': 'C', 'v': 'I'}, {'u': 'I', 'v': 'D'}, {'u': 'I', 'v': 'E'}, {'u': 'I', 'v': 'G'}, {'u': 'D', 'v': 'E'}]}","['C', 'E', 'F', 'H']",4,json,names
MIS,MIS,"Recently the neighborhood organizer took on the task of assembling a guest list for a street party, aiming to invite as many households as possible but not having any invited homes be next-door neighbors. The decision involves picking which households to put on the list; a superior choice is simply the list with the most invited homes β count them to compare β and every chosen pair must avoid being adjacent. Each household must be handled once and only once, so nothing is duplicated or overlooked. The detailed map and instance info are shown below.
{
""total_households"": 9,
""total_adjacent_pairs"": 12,
""edges"": [
{
""household_a"": ""B"",
""household_b"": ""A""
},
{
""household_a"": ""B"",
""household_b"": ""D""
},
{
""household_a"": ""B"",
""household_b"": ""I""
},
{
""household_a"": ""C"",
""household_b"": ""E""
},
{
""household_a"": ""C"",
""household_b"": ""F""
},
{
""household_a"": ""H"",
""household_b"": ""E""
},
{
""household_a"": ""H"",
""household_b"": ""G""
},
{
""household_a"": ""G"",
""household_b"": ""D""
},
{
""household_a"": ""G"",
""household_b"": ""E""
},
{
""household_a"": ""G"",
""household_b"": ""F""
},
{
""household_a"": ""G"",
""household_b"": ""I""
},
{
""household_a"": ""F"",
""household_b"": ""A""
}
]
}
Also, feel free to return the final guest list in this simple JSON layout so it's easy to read programmatically:
{
""solution"": [""household_id"", ""household_id"", ...]
}
Here ""solution"" is just the list of households you've chosen to invite β each entry should be the exact household identifier from the instance (so think of these placeholders as where the real IDs go). This JSON is just a sketch of the shape I need, 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': 'MIS', 'num_nodes': 9, 'num_edges': 12, 'edges': [{'u': 2, 'v': 1}, {'u': 2, 'v': 4}, {'u': 2, 'v': 9}, {'u': 3, 'v': 5}, {'u': 3, 'v': 6}, {'u': 8, 'v': 5}, {'u': 8, 'v': 7}, {'u': 7, 'v': 4}, {'u': 7, 'v': 5}, {'u': 7, 'v': 6}, {'u': 7, 'v': 9}, {'u': 6, 'v': 1}], 'source_file': 'wv2010.mtx', 'density': 0.3333333333333333, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0004.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0004.png', 'edge_connectivity': 2}","[1, 3, 4, 8, 9]",5.0,"{'num_nodes': 9, 'num_edges': 12, 'edges': [{'u': 'B', 'v': 'A'}, {'u': 'B', 'v': 'D'}, {'u': 'B', 'v': 'I'}, {'u': 'C', 'v': 'E'}, {'u': 'C', 'v': 'F'}, {'u': 'H', 'v': 'E'}, {'u': 'H', 'v': 'G'}, {'u': 'G', 'v': 'D'}, {'u': 'G', 'v': 'E'}, {'u': 'G', 'v': 'F'}, {'u': 'G', 'v': 'I'}, {'u': 'F', 'v': 'A'}]}","['A', 'C', 'D', 'H', 'I']",5,json,names
MIS,MIS,"Thereβs a classroom full of kids and the teacher needs to decide who gets solo presentation slots so that no two chosen students are adjacent. The goal is to end up with as many solo presenters as possible; you judge a selection by counting the number of different students in it, and the bigger that number the better. Practical rules: pick distinct students only, and donβt pick any pair that are seated next to each other. The detailed seating chart and options are shown below.
{
""total_students"": 9,
""adjacent_pairs_count"": 16,
""edges"": [
{
""student_u_id"": 4,
""student_v_id"": 0
},
{
""student_u_id"": 4,
""student_v_id"": 1
},
{
""student_u_id"": 4,
""student_v_id"": 2
},
{
""student_u_id"": 4,
""student_v_id"": 3
},
{
""student_u_id"": 4,
""student_v_id"": 5
},
{
""student_u_id"": 4,
""student_v_id"": 6
},
{
""student_u_id"": 4,
""student_v_id"": 7
},
{
""student_u_id"": 4,
""student_v_id"": 8
},
{
""student_u_id"": 0,
""student_v_id"": 2
},
{
""student_u_id"": 5,
""student_v_id"": 3
},
{
""student_u_id"": 5,
""student_v_id"": 8
},
{
""student_u_id"": 6,
""student_v_id"": 2
},
{
""student_u_id"": 3,
""student_v_id"": 1
},
{
""student_u_id"": 3,
""student_v_id"": 7
},
{
""student_u_id"": 3,
""student_v_id"": 8
},
{
""student_u_id"": 8,
""student_v_id"": 1
}
]
}
If you're going to send me a selection, please use this simple JSON layout so I can pick it up reliably. Just list the chosen seats in the array β nothing fancy.
{
""solution"": [""seat_id"", ""seat_id"", ...]
}
Pretty straightforward: the ""solution"" field is an array with one placeholder per chosen solo presenter (replace each placeholder with the actual seat identifier from the instance). This is just a template to show the shape I expect, not your final answer.
Please make sure you use the exact identifiers given 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': 'MIS', 'num_nodes': 9, 'num_edges': 16, 'edges': [{'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': 8}, {'u': 5, 'v': 9}, {'u': 1, 'v': 3}, {'u': 6, 'v': 4}, {'u': 6, 'v': 9}, {'u': 7, 'v': 3}, {'u': 4, 'v': 2}, {'u': 4, 'v': 8}, {'u': 4, 'v': 9}, {'u': 9, 'v': 2}], 'source_file': 'vt2010.mtx', 'density': 0.4444444444444444, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0005.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0005.png', 'edge_connectivity': 2}","[1, 2, 6, 7, 8]",5.0,"{'num_nodes': 9, 'num_edges': 16, 'edges': [{'u': 4, 'v': 0}, {'u': 4, 'v': 1}, {'u': 4, 'v': 2}, {'u': 4, 'v': 3}, {'u': 4, 'v': 5}, {'u': 4, 'v': 6}, {'u': 4, 'v': 7}, {'u': 4, 'v': 8}, {'u': 0, 'v': 2}, {'u': 5, 'v': 3}, {'u': 5, 'v': 8}, {'u': 6, 'v': 2}, {'u': 3, 'v': 1}, {'u': 3, 'v': 7}, {'u': 3, 'v': 8}, {'u': 8, 'v': 1}]}","[0, 1, 5, 6, 7]",6,json,0
MIS,MIS,"Someone at the shop needs to power up a subset of machines so the system has maximum capacity, while making sure no two powered machines are linked by a cable. What makes one choice better than another is purely the total number of servers left running β count them and the larger total is preferable. Each server gets a single decision (on or off) and the exact connectivity details are shown below.
# total_servers=8
# total_cables=13
server_endpoint_u,server_endpoint_v
H,A
H,B
H,C
H,D
H,G
D,B
D,F
E,B
E,F
G,B
G,C
B,F
F,C
If you want to give the answer, just use this little JSON shape so I can read it easily β nothing fancy, just a list of the machines you leave on.
{
""solution"": [""server_id"", ""server_id"", ...]
}
solution: an array with the IDs of the servers you decide to power up (one ID per server). Think of it as ticking boxes on a form β each entry is a machine you left running.
This JSON is just a sketch of the shape I expect, not the actual solution β replace the placeholders with the exact IDs from the instance.
Please use the identifiers exactly as they appear in the problem input β do not rename them or invent new labels.
Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.","{'problem_type': 'MIS', 'num_nodes': 8, 'num_edges': 13, 'edges': [{'u': 8, 'v': 1}, {'u': 8, 'v': 2}, {'u': 8, 'v': 3}, {'u': 8, 'v': 4}, {'u': 8, 'v': 7}, {'u': 4, 'v': 2}, {'u': 4, 'v': 6}, {'u': 5, 'v': 2}, {'u': 5, 'v': 6}, {'u': 7, 'v': 2}, {'u': 7, 'v': 3}, {'u': 2, 'v': 6}, {'u': 6, 'v': 3}], 'source_file': 'wy2010.mtx', 'density': 0.4642857142857143, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0006.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0006.png', 'edge_connectivity': 1}","[1, 4, 5, 7]",4.0,"{'num_nodes': 8, 'num_edges': 13, 'edges': [{'u': 'H', 'v': 'A'}, {'u': 'H', 'v': 'B'}, {'u': 'H', 'v': 'C'}, {'u': 'H', 'v': 'D'}, {'u': 'H', 'v': 'G'}, {'u': 'D', 'v': 'B'}, {'u': 'D', 'v': 'F'}, {'u': 'E', 'v': 'B'}, {'u': 'E', 'v': 'F'}, {'u': 'G', 'v': 'B'}, {'u': 'G', 'v': 'C'}, {'u': 'B', 'v': 'F'}, {'u': 'F', 'v': 'C'}]}","['A', 'D', 'E', 'G']",7,csv,names
MIS,MIS,"On a busy morning the boutique team debated which outfits to put in the window; the rule everyone agreed on was to show as many different garments as possible while avoiding any two chosen items on neighboring hangers. The way to judge a setup is straightforward: count how many garments made it into the window β higher counts are better β and follow the simple ground rules that each chosen hanger shows one unique piece and nothing is doubled. The concrete hanger-by-hanger details are shown below.
# total_hangers=12
# adjacent_hanger_pairs=22
hanger_a,hanger_b
11,1
10,5
10,9
8,0
8,1
8,2
8,4
8,5
8,6
8,7
7,0
7,5
6,1
6,2
6,4
6,5
6,9
4,1
1,9
2,5
9,3
9,5
If you want to send back which hangers make the window, just use this simple JSON shape so everythingβs predictable:
{
""solution"": [""hanger_id"", ""hanger_id"", ...]
}
Think of ""solution"" as the list of hangers you picked to display β one entry per hanger, in the same identifier format the instance uses. This JSON is just a sketch of the expected shape, not the actual answer; fill it with the exact hanger identifiers from the instance when you respond.
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': 'MIS', 'num_nodes': 12, 'num_edges': 22, 'edges': [{'u': 12, 'v': 2}, {'u': 11, 'v': 6}, {'u': 11, 'v': 10}, {'u': 9, 'v': 1}, {'u': 9, 'v': 2}, {'u': 9, 'v': 3}, {'u': 9, 'v': 5}, {'u': 9, 'v': 6}, {'u': 9, 'v': 7}, {'u': 9, 'v': 8}, {'u': 8, 'v': 1}, {'u': 8, 'v': 6}, {'u': 7, 'v': 2}, {'u': 7, 'v': 3}, {'u': 7, 'v': 5}, {'u': 7, 'v': 6}, {'u': 7, 'v': 10}, {'u': 5, 'v': 2}, {'u': 2, 'v': 10}, {'u': 3, 'v': 6}, {'u': 10, 'v': 4}, {'u': 10, 'v': 6}], 'source_file': 'wy2010.mtx', 'density': 0.3333333333333333, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0007.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0007.png', 'edge_connectivity': 1}","[1, 3, 4, 5, 11, 12]",6.0,"{'num_nodes': 12, 'num_edges': 22, 'edges': [{'u': 11, 'v': 1}, {'u': 10, 'v': 5}, {'u': 10, 'v': 9}, {'u': 8, 'v': 0}, {'u': 8, 'v': 1}, {'u': 8, 'v': 2}, {'u': 8, 'v': 4}, {'u': 8, 'v': 5}, {'u': 8, 'v': 6}, {'u': 8, 'v': 7}, {'u': 7, 'v': 0}, {'u': 7, 'v': 5}, {'u': 6, 'v': 1}, {'u': 6, 'v': 2}, {'u': 6, 'v': 4}, {'u': 6, 'v': 5}, {'u': 6, 'v': 9}, {'u': 4, 'v': 1}, {'u': 1, 'v': 9}, {'u': 2, 'v': 5}, {'u': 9, 'v': 3}, {'u': 9, 'v': 5}]}","[0, 2, 3, 4, 10, 11]",8,csv,0
MIS,MIS,"Weβve been asked to schedule bench refurbishments along the waterfront, and the idea is to mark as many benches for work as we can. Plans are judged by how many benches get selected β simply tally the chosen benches, and more is better. One rule: donβt pick a bench that sits next to another picked bench, and every bench can only be chosen once. The concrete details of the promenade are shown below.
There are 8 benches in total and 14 adjacent bench pairs.
| bench_a | bench_b |
|---|---|
| E | B |
| E | C |
| E | D |
| G | A |
| G | B |
| G | F |
| G | H |
| D | A |
| D | B |
| C | B |
| C | H |
| F | H |
| B | A |
| B | H |
When you send the plan back, just stick to this simple JSON shape so I can read it automatically:
{
""solution"": [""bench_id"", ""bench_id"", ...]
}
Think of it as a short form: ""solution"" is the list of benches you want refurbished. The strings in the array are the bench identifiers β in the example above I used the placeholder bench_id so it matches the bench story, but in your reply you should list the actual IDs from the instance. This block is just the expected shape, not the actual answer.
Please make sure to use the identifiers exactly as they appear in the instance input β no renaming and no new labels.
- for example: ""Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β""","{'problem_type': 'MIS', 'num_nodes': 8, 'num_edges': 14, 'edges': [{'u': 5, 'v': 2}, {'u': 5, 'v': 3}, {'u': 5, 'v': 4}, {'u': 7, 'v': 1}, {'u': 7, 'v': 2}, {'u': 7, 'v': 6}, {'u': 7, 'v': 8}, {'u': 4, 'v': 1}, {'u': 4, 'v': 2}, {'u': 3, 'v': 2}, {'u': 3, 'v': 8}, {'u': 6, 'v': 8}, {'u': 2, 'v': 1}, {'u': 2, 'v': 8}], 'source_file': 'wy2010.mtx', 'density': 0.5, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0008.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0008.png', 'edge_connectivity': 2}","[1, 3, 6]",3.0,"{'num_nodes': 8, 'num_edges': 14, 'edges': [{'u': 'E', 'v': 'B'}, {'u': 'E', 'v': 'C'}, {'u': 'E', 'v': 'D'}, {'u': 'G', 'v': 'A'}, {'u': 'G', 'v': 'B'}, {'u': 'G', 'v': 'F'}, {'u': 'G', 'v': 'H'}, {'u': 'D', 'v': 'A'}, {'u': 'D', 'v': 'B'}, {'u': 'C', 'v': 'B'}, {'u': 'C', 'v': 'H'}, {'u': 'F', 'v': 'H'}, {'u': 'B', 'v': 'A'}, {'u': 'B', 'v': 'H'}]}","['A', 'C', 'F']",9,markdown_table,names
MIS,MIS,"Iβm the gardener looking after a narrow border of plants and trying to decide which ones to keep. The idea is simple: pick as many plants as possible to stay in the border, and the success is measured by how many plants end up being kept β just count them. The catch is that any two plants that sit next to each other canβt both be kept, because their roots would interfere, and each plant must be either kept or removed (no doubles or half-choices). The exact layout and plant positions will be shown below.
# border_plant_count=12
# adjacent_plant_pairs=18
plant_one_id,plant_two_id
10,5
10,6
10,8
10,12
5,8
5,11
12,1
12,7
12,8
9,2
9,3
9,4
9,6
4,1
2,11
7,1
11,6
1,6
Oh, and when you reply, it helps if you stick to a simple JSON shape so I can read which plants you decided to keep. Something like this will do:
{
""solution"": [""plant_id"", ""plant_id"", ...]
}
""solution"" is just the list of plants to keep in the border β one identifier per plant. Think of those strings as the exact labels from the plant map you'll get with the instance; this block is just a sketch of the expected shape, not your final answer.
Please use the identifiers exactly as they appear in the instance input β no renaming and no inventing new labels. Valid identifiers look like plain numbers such as ""1"" or ""23"", single capital letters like ""A"" or ""B"", or a capital letter followed by digits like ""A1"" or ""X7"".","{'problem_type': 'MIS', 'num_nodes': 12, 'num_edges': 18, 'edges': [{'u': 10, 'v': 5}, {'u': 10, 'v': 6}, {'u': 10, 'v': 8}, {'u': 10, 'v': 12}, {'u': 5, 'v': 8}, {'u': 5, 'v': 11}, {'u': 12, 'v': 1}, {'u': 12, 'v': 7}, {'u': 12, 'v': 8}, {'u': 9, 'v': 2}, {'u': 9, 'v': 3}, {'u': 9, 'v': 4}, {'u': 9, 'v': 6}, {'u': 4, 'v': 1}, {'u': 2, 'v': 11}, {'u': 7, 'v': 1}, {'u': 11, 'v': 6}, {'u': 1, 'v': 6}], 'source_file': 'wv2010.mtx', 'density': 0.2727272727272727, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0009.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0009.png', 'edge_connectivity': 1}","[2, 3, 4, 5, 6, 7]",6.0,"{'num_nodes': 12, 'num_edges': 18, 'edges': [{'u': 10, 'v': 5}, {'u': 10, 'v': 6}, {'u': 10, 'v': 8}, {'u': 10, 'v': 12}, {'u': 5, 'v': 8}, {'u': 5, 'v': 11}, {'u': 12, 'v': 1}, {'u': 12, 'v': 7}, {'u': 12, 'v': 8}, {'u': 9, 'v': 2}, {'u': 9, 'v': 3}, {'u': 9, 'v': 4}, {'u': 9, 'v': 6}, {'u': 4, 'v': 1}, {'u': 2, 'v': 11}, {'u': 7, 'v': 1}, {'u': 11, 'v': 6}, {'u': 1, 'v': 6}]}","[2, 3, 4, 5, 6, 7]",10,csv,1
MIS,MIS,"Iβm running the festival lineup this year and need to pick which street performers get spots along the parade route so the crowd always has music without shows bumping into each other. The decision is which spots to fill so no two occupied spots sit next to one another, and the aim is to have as many performers as possible β success is just the total number of acts booked, counted by how many spots end up filled. Each spot can hold at most one act and no performer gets booked twice; the specific route and spots will be shown below.
There are 11 spots on route in total and 19 adjacent spot pairs.
| adjacent_spot_u | adjacent_spot_v |
|---|---|
| 3 | 0 |
| 3 | 1 |
| 3 | 5 |
| 3 | 7 |
| 3 | 8 |
| 3 | 9 |
| 3 | 10 |
| 6 | 5 |
| 6 | 8 |
| 4 | 2 |
| 4 | 7 |
| 4 | 10 |
| 5 | 8 |
| 8 | 0 |
| 9 | 1 |
| 9 | 2 |
| 10 | 2 |
| 10 | 7 |
| 2 | 1 |
If you want to hand me the picks, an easy way is to return a tiny JSON snippet like this so I can parse it quickly:
{
""solution"": [""spot_id"", ""spot_id"", ...]
}
This just means ""solution"" should be a list of the spot identifiers you've picked for performers along the route. Think of it like filling out a short form: each entry is the exact spot ID for a booked act. This is only a sketch of the expected shape, not the actual answer you should submit.
Please use the identifiers exactly as they appear in the instance input β don't rename them or invent new labels.
for example: ""Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.""","{'problem_type': 'MIS', 'num_nodes': 11, 'num_edges': 19, 'edges': [{'u': 4, 'v': 1}, {'u': 4, 'v': 2}, {'u': 4, 'v': 6}, {'u': 4, 'v': 8}, {'u': 4, 'v': 9}, {'u': 4, 'v': 10}, {'u': 4, 'v': 11}, {'u': 7, 'v': 6}, {'u': 7, 'v': 9}, {'u': 5, 'v': 3}, {'u': 5, 'v': 8}, {'u': 5, 'v': 11}, {'u': 6, 'v': 9}, {'u': 9, 'v': 1}, {'u': 10, 'v': 2}, {'u': 10, 'v': 3}, {'u': 11, 'v': 3}, {'u': 11, 'v': 8}, {'u': 3, 'v': 2}], 'source_file': 'vt2010.mtx', 'density': 0.34545454545454546, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0010.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0010.png', 'edge_connectivity': 2}","[1, 7, 8, 10]",4.0,"{'num_nodes': 11, 'num_edges': 19, 'edges': [{'u': 3, 'v': 0}, {'u': 3, 'v': 1}, {'u': 3, 'v': 5}, {'u': 3, 'v': 7}, {'u': 3, 'v': 8}, {'u': 3, 'v': 9}, {'u': 3, 'v': 10}, {'u': 6, 'v': 5}, {'u': 6, 'v': 8}, {'u': 4, 'v': 2}, {'u': 4, 'v': 7}, {'u': 4, 'v': 10}, {'u': 5, 'v': 8}, {'u': 8, 'v': 0}, {'u': 9, 'v': 1}, {'u': 9, 'v': 2}, {'u': 10, 'v': 2}, {'u': 10, 'v': 7}, {'u': 2, 'v': 1}]}","[0, 6, 7, 9]",11,markdown_table,0
MIS,MIS,"Weβre planning a private event and want to cordon off as many tables as possible, while making sure any two tables we mark off arenβt side-by-side. What matters is the total number of tables held for the event β the more, the better β so each possible setup is judged by simply counting how many tables got reserved. Each table can only be in or out (no duplicates or half-reservations), and neighboring tables canβt both be selected. The specific floor plan will be shown below.
{
""total_tables"": 8,
""total_adjacent_pairs"": 14,
""edges"": [
{
""adjacent_table_1"": ""H"",
""adjacent_table_2"": ""C""
},
{
""adjacent_table_1"": ""C"",
""adjacent_table_2"": ""A""
},
{
""adjacent_table_1"": ""C"",
""adjacent_table_2"": ""B""
},
{
""adjacent_table_1"": ""C"",
""adjacent_table_2"": ""D""
},
{
""adjacent_table_1"": ""C"",
""adjacent_table_2"": ""E""
},
{
""adjacent_table_1"": ""C"",
""adjacent_table_2"": ""G""
},
{
""adjacent_table_1"": ""B"",
""adjacent_table_2"": ""E""
},
{
""adjacent_table_1"": ""B"",
""adjacent_table_2"": ""G""
},
{
""adjacent_table_1"": ""D"",
""adjacent_table_2"": ""G""
},
{
""adjacent_table_1"": ""F"",
""adjacent_table_2"": ""A""
},
{
""adjacent_table_1"": ""F"",
""adjacent_table_2"": ""G""
},
{
""adjacent_table_1"": ""G"",
""adjacent_table_2"": ""A""
},
{
""adjacent_table_1"": ""G"",
""adjacent_table_2"": ""E""
},
{
""adjacent_table_1"": ""E"",
""adjacent_table_2"": ""A""
}
]
}
When you send your answer back, just drop it into a tiny JSON object like this so it's easy to read and process:
{
""solution"": [""table_id"", ""table_id"", ...]
}
Pretty straightforward β ""solution"" is just the list of tables you're reserving for the event. Think of each ""table_id"" as a placeholder for whatever label appears on the floor plan (I'll replace those with the actual labels when I submit the final selection). This JSON is just a sketch of the shape I expect, not the final answer itself.
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': 'MIS', 'num_nodes': 8, 'num_edges': 14, 'edges': [{'u': 8, 'v': 3}, {'u': 3, 'v': 1}, {'u': 3, 'v': 2}, {'u': 3, 'v': 4}, {'u': 3, 'v': 5}, {'u': 3, 'v': 7}, {'u': 2, 'v': 5}, {'u': 2, 'v': 7}, {'u': 4, 'v': 7}, {'u': 6, 'v': 1}, {'u': 6, 'v': 7}, {'u': 7, 'v': 1}, {'u': 7, 'v': 5}, {'u': 5, 'v': 1}], 'source_file': 'wa2010.mtx', 'density': 0.5, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0011.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0011.png', 'edge_connectivity': 1}","[2, 4, 6, 8]",4.0,"{'num_nodes': 8, 'num_edges': 14, 'edges': [{'u': 'H', 'v': 'C'}, {'u': 'C', 'v': 'A'}, {'u': 'C', 'v': 'B'}, {'u': 'C', 'v': 'D'}, {'u': 'C', 'v': 'E'}, {'u': 'C', 'v': 'G'}, {'u': 'B', 'v': 'E'}, {'u': 'B', 'v': 'G'}, {'u': 'D', 'v': 'G'}, {'u': 'F', 'v': 'A'}, {'u': 'F', 'v': 'G'}, {'u': 'G', 'v': 'A'}, {'u': 'G', 'v': 'E'}, {'u': 'E', 'v': 'A'}]}","['B', 'D', 'F', 'H']",12,json,names
MIS,MIS,"At the museum the registrar faces a packing rule: if an artifact is taken from one compartment, items in compartments directly next to it must stay behind. The job is to choose artifacts so the traveling case ends up holding as many separate objects as possible β success is just counting how many distinct artifacts were selected β and no item can be doubled up or partially selected. The exact layout and items are shown below.
There are 8 compartments in total and 11 adjacent pairs.
| compartment_u | compartment_v |
|---|---|
| 4 | 0 |
| 4 | 5 |
| 0 | 1 |
| 0 | 2 |
| 0 | 7 |
| 1 | 3 |
| 5 | 2 |
| 5 | 6 |
| 5 | 7 |
| 3 | 7 |
| 2 | 7 |
Oh β and when you send back which artifacts to take, please use this little JSON shape so it's easy to read:
{
""solution"": [""compartment_id"", ""compartment_id"", ...]
}
Think of ""solution"" as just a list of the compartment IDs you picked β one entry for each artifact that goes into the traveling case. This is just a sketch of the shape I expect, not the actual answer itself.
Please make sure to use the identifiers exactly as they appear in the instance input β no renaming and no new labels.
- for example: ""Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.""","{'problem_type': 'MIS', 'num_nodes': 8, 'num_edges': 11, 'edges': [{'u': 5, 'v': 1}, {'u': 5, 'v': 6}, {'u': 1, 'v': 2}, {'u': 1, 'v': 3}, {'u': 1, 'v': 8}, {'u': 2, 'v': 4}, {'u': 6, 'v': 3}, {'u': 6, 'v': 7}, {'u': 6, 'v': 8}, {'u': 4, 'v': 8}, {'u': 3, 'v': 8}], 'source_file': 'wi2010.mtx', 'density': 0.39285714285714285, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0012.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0012.png', 'edge_connectivity': 1}","[2, 3, 5, 7]",4.0,"{'num_nodes': 8, 'num_edges': 11, 'edges': [{'u': 4, 'v': 0}, {'u': 4, 'v': 5}, {'u': 0, 'v': 1}, {'u': 0, 'v': 2}, {'u': 0, 'v': 7}, {'u': 1, 'v': 3}, {'u': 5, 'v': 2}, {'u': 5, 'v': 6}, {'u': 5, 'v': 7}, {'u': 3, 'v': 7}, {'u': 2, 'v': 7}]}","[1, 2, 4, 6]",13,markdown_table,0
MIS,MIS,"Recently the venue switched consoles and the new rule is to light up as many microphones as possible for a show, but never two that have direct crosstalk between them. The goal is to maximize the number of mics in use β you measure this by simply counting active channels β while making sure no interfering pair is turned on together. Every channel is a single, indivisible choice (on or off) and canβt be counted twice. The detailed diagram of channel interference is provided below.
{
""total_mic_channels"": 8,
""total_crosstalk_pairs"": 12,
""edges"": [
{
""mic_channel_u"": ""H"",
""mic_channel_v"": ""A""
},
{
""mic_channel_u"": ""H"",
""mic_channel_v"": ""B""
},
{
""mic_channel_u"": ""H"",
""mic_channel_v"": ""C""
},
{
""mic_channel_u"": ""H"",
""mic_channel_v"": ""D""
},
{
""mic_channel_u"": ""H"",
""mic_channel_v"": ""E""
},
{
""mic_channel_u"": ""H"",
""mic_channel_v"": ""F""
},
{
""mic_channel_u"": ""H"",
""mic_channel_v"": ""G""
},
{
""mic_channel_u"": ""E"",
""mic_channel_v"": ""C""
},
{
""mic_channel_u"": ""E"",
""mic_channel_v"": ""G""
},
{
""mic_channel_u"": ""F"",
""mic_channel_v"": ""A""
},
{
""mic_channel_u"": ""F"",
""mic_channel_v"": ""B""
},
{
""mic_channel_u"": ""B"",
""mic_channel_v"": ""C""
}
]
}
Oh, and when you send the final set of channels, please use this simple JSON shape so itβs easy to read and parse:
{
""solution"": [""mic_id"", ""mic_id"", ...]
}
Think of that as a little form: ""solution"" is the list of microphones you want turned on (each entry is one channel identifier). The placeholders are just examples showing the shape β youβll replace them with the actual channel IDs from the instance when you answer.
Please donβt rename or invent any labels β use the identifiers exactly as they appear in the instance input, no changes.
- 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β.""
Again, the JSON above is just a sketch of the expected shape, not the real answer.","{'problem_type': 'MIS', 'num_nodes': 8, 'num_edges': 12, 'edges': [{'u': 8, 'v': 1}, {'u': 8, 'v': 2}, {'u': 8, 'v': 3}, {'u': 8, 'v': 4}, {'u': 8, 'v': 5}, {'u': 8, 'v': 6}, {'u': 8, 'v': 7}, {'u': 5, 'v': 3}, {'u': 5, 'v': 7}, {'u': 6, 'v': 1}, {'u': 6, 'v': 2}, {'u': 2, 'v': 3}], 'source_file': 'wa2010.mtx', 'density': 0.42857142857142855, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0013.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0013.png', 'edge_connectivity': 1}","[1, 2, 4, 7]",4.0,"{'num_nodes': 8, 'num_edges': 12, 'edges': [{'u': 'H', 'v': 'A'}, {'u': 'H', 'v': 'B'}, {'u': 'H', 'v': 'C'}, {'u': 'H', 'v': 'D'}, {'u': 'H', 'v': 'E'}, {'u': 'H', 'v': 'F'}, {'u': 'H', 'v': 'G'}, {'u': 'E', 'v': 'C'}, {'u': 'E', 'v': 'G'}, {'u': 'F', 'v': 'A'}, {'u': 'F', 'v': 'B'}, {'u': 'B', 'v': 'C'}]}","['A', 'B', 'D', 'G']",14,json,names
MIS,MIS,"Many people want to use the communal bike racks, and the person running the place has to pick a group of bikes that will actually fit without crowding. The rule we follow is that no two bikes we allow can occupy adjacent rack slots, so approvals need spacing. Better decisions are those that let the greatest number of bikes in; to figure that out, just count how many bikes would be parked under each selection. Nothing is double-booked and every slot holds at most one bike. The concrete rack layout and bike details appear below.
{
""total_rack_slots"": 9,
""total_adjacent_pairs"": 15,
""edges"": [
{
""slot_u"": 4,
""slot_v"": 8
},
{
""slot_u"": 9,
""slot_v"": 6
},
{
""slot_u"": 9,
""slot_v"": 8
},
{
""slot_u"": 6,
""slot_v"": 5
},
{
""slot_u"": 6,
""slot_v"": 7
},
{
""slot_u"": 6,
""slot_v"": 8
},
{
""slot_u"": 7,
""slot_v"": 3
},
{
""slot_u"": 7,
""slot_v"": 5
},
{
""slot_u"": 5,
""slot_v"": 2
},
{
""slot_u"": 5,
""slot_v"": 3
},
{
""slot_u"": 5,
""slot_v"": 8
},
{
""slot_u"": 8,
""slot_v"": 2
},
{
""slot_u"": 8,
""slot_v"": 3
},
{
""slot_u"": 1,
""slot_v"": 3
},
{
""slot_u"": 3,
""slot_v"": 2
}
]
}
Also, when you hand back the chosen slots, please follow this little JSON sketch so it's easy to read by whoever's checking:
{
""solution"": [""slot_id"", ""slot_id"", ...]
}
This just means ""solution"" is the list of rack slots you're approving for bikes β each entry is a slot identifier from the instance (the slots that get to park). Think of it as filling out a tiny form: put each approved slot's id into that array. It's just a sketch of the expected shape, not the actual answer.
Please make sure to 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': 'MIS', 'num_nodes': 9, 'num_edges': 15, 'edges': [{'u': 4, 'v': 8}, {'u': 9, 'v': 6}, {'u': 9, 'v': 8}, {'u': 6, 'v': 5}, {'u': 6, 'v': 7}, {'u': 6, 'v': 8}, {'u': 7, 'v': 3}, {'u': 7, 'v': 5}, {'u': 5, 'v': 2}, {'u': 5, 'v': 3}, {'u': 5, 'v': 8}, {'u': 8, 'v': 2}, {'u': 8, 'v': 3}, {'u': 1, 'v': 3}, {'u': 3, 'v': 2}], 'source_file': 'vt2010.mtx', 'density': 0.4166666666666667, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0014.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0014.png', 'edge_connectivity': 1}","[1, 2, 4, 7, 9]",5.0,"{'num_nodes': 9, 'num_edges': 15, 'edges': [{'u': 4, 'v': 8}, {'u': 9, 'v': 6}, {'u': 9, 'v': 8}, {'u': 6, 'v': 5}, {'u': 6, 'v': 7}, {'u': 6, 'v': 8}, {'u': 7, 'v': 3}, {'u': 7, 'v': 5}, {'u': 5, 'v': 2}, {'u': 5, 'v': 3}, {'u': 5, 'v': 8}, {'u': 8, 'v': 2}, {'u': 8, 'v': 3}, {'u': 1, 'v': 3}, {'u': 3, 'v': 2}]}","[1, 2, 4, 7, 9]",15,json,1
MIS,MIS,"On a late afternoon the ranger is figuring out which campsites to leave available; the idea is to keep as many as possible but never two that are next to each other. The quality of the plan is simply the number of sites kept open, counted at the end, and each campsite must be decided once (open or closed) with the restriction that no neighboring sites are both open. The campsite specifics and layout are shown below.
There are 9 campsites and 13 adjacent pairs to consider.
Campsites 2 and 3 are adjacent, so the ranger cannot leave both open.
Campsites 2 and 6 are adjacent, so the ranger cannot leave both open.
Campsites 3 and 4 are adjacent, so the ranger cannot leave both open.
Campsites 3 and 5 are adjacent, so the ranger cannot leave both open.
Campsites 0 and 1 are adjacent, so the ranger cannot leave both open.
Campsites 0 and 5 are adjacent, so the ranger cannot leave both open.
Campsites 7 and 5 are adjacent, so the ranger cannot leave both open.
Campsites 7 and 6 are adjacent, so the ranger cannot leave both open.
Campsites 5 and 6 are adjacent, so the ranger cannot leave both open.
Campsites 5 and 8 are adjacent, so the ranger cannot leave both open.
Campsites 8 and 1 are adjacent, so the ranger cannot leave both open.
Campsites 8 and 4 are adjacent, so the ranger cannot leave both open.
Campsites 4 and 1 are adjacent, so the ranger cannot leave both open.
The ranger will use these 13 adjacencies when deciding which of the 9 sites to keep open.
Also, just so everything is easy to parse, please return the chosen open campsites using this simple JSON shape:
{
""solution"": [""site_id"", ""site_id"", ...]
}
""solution"" is just a list of the campsite IDs you'd like to leave open β one string per site. Think of the placeholders above as examples of the format, not the actual choices.
Please use the exact identifiers from the instance input; do not rename them or invent new ones. Valid identifiers look like plain numbers such as ""1"" or ""23"", single capital letters like ""A"" or ""B"", or a capital letter followed by digits like ""A1"" or ""X7"".","{'problem_type': 'MIS', 'num_nodes': 9, 'num_edges': 13, 'edges': [{'u': 3, 'v': 4}, {'u': 3, 'v': 7}, {'u': 4, 'v': 5}, {'u': 4, 'v': 6}, {'u': 1, 'v': 2}, {'u': 1, 'v': 6}, {'u': 8, 'v': 6}, {'u': 8, 'v': 7}, {'u': 6, 'v': 7}, {'u': 6, 'v': 9}, {'u': 9, 'v': 2}, {'u': 9, 'v': 5}, {'u': 5, 'v': 2}], 'source_file': 'vt2010.mtx', 'density': 0.3611111111111111, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0015.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0015.png', 'edge_connectivity': 2}","[1, 3, 8, 9]",4.0,"{'num_nodes': 9, 'num_edges': 13, 'edges': [{'u': 2, 'v': 3}, {'u': 2, 'v': 6}, {'u': 3, 'v': 4}, {'u': 3, 'v': 5}, {'u': 0, 'v': 1}, {'u': 0, 'v': 5}, {'u': 7, 'v': 5}, {'u': 7, 'v': 6}, {'u': 5, 'v': 6}, {'u': 5, 'v': 8}, {'u': 8, 'v': 1}, {'u': 8, 'v': 4}, {'u': 4, 'v': 1}]}","[0, 2, 7, 8]",16,nl,0
MIS,MIS,"Recently the clerk noticed the aisle was cluttered and decided to bring some crates to the front for easier access, but thereβs a catch: crates sitting on neighboring pallets canβt both be moved. The goal is to bring as many crates forward as possible, which is measured by counting how many were moved, and every plan must respect the βno neighboring palletsβ rule and avoid picking the same crate twice. The concrete details are shown below.
# total_crates=12
# neighboring_pallet_pairs_count=23
crate_u_id,crate_v_id
1,2
1,3
1,7
2,3
2,4
2,8
6,3
6,4
6,5
6,7
6,10
6,12
7,3
12,10
11,8
11,10
5,4
5,9
5,10
4,8
4,10
8,10
10,9
You can just send the chosen pallets back in this simple JSON layout so I know which crates to bring forward:
{
""solution"": [""pallet_id"", ""pallet_id"", ...]
}
""solution"" is just a list of the pallet identifiers for the crates you want moved (one entry per crate). Think of it like filling out a small checklist: each string is the exact label of a pallet you picked. This JSON is only a sketch of the shape I expect, not the actual answerβreplace the placeholders with the real IDs from the instance.
All identifiers must be used exactly as they appear in the instance input β no renaming and no new labels.
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': 'MIS', 'num_nodes': 12, 'num_edges': 23, 'edges': [{'u': 1, 'v': 2}, {'u': 1, 'v': 3}, {'u': 1, 'v': 7}, {'u': 2, 'v': 3}, {'u': 2, 'v': 4}, {'u': 2, 'v': 8}, {'u': 6, 'v': 3}, {'u': 6, 'v': 4}, {'u': 6, 'v': 5}, {'u': 6, 'v': 7}, {'u': 6, 'v': 10}, {'u': 6, 'v': 12}, {'u': 7, 'v': 3}, {'u': 12, 'v': 10}, {'u': 11, 'v': 8}, {'u': 11, 'v': 10}, {'u': 5, 'v': 4}, {'u': 5, 'v': 9}, {'u': 5, 'v': 10}, {'u': 4, 'v': 8}, {'u': 4, 'v': 10}, {'u': 8, 'v': 10}, {'u': 10, 'v': 9}], 'source_file': 'wi2010.mtx', 'density': 0.3484848484848485, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0016.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0016.png', 'edge_connectivity': 2}","[4, 7, 9, 11, 12]",5.0,"{'num_nodes': 12, 'num_edges': 23, 'edges': [{'u': 1, 'v': 2}, {'u': 1, 'v': 3}, {'u': 1, 'v': 7}, {'u': 2, 'v': 3}, {'u': 2, 'v': 4}, {'u': 2, 'v': 8}, {'u': 6, 'v': 3}, {'u': 6, 'v': 4}, {'u': 6, 'v': 5}, {'u': 6, 'v': 7}, {'u': 6, 'v': 10}, {'u': 6, 'v': 12}, {'u': 7, 'v': 3}, {'u': 12, 'v': 10}, {'u': 11, 'v': 8}, {'u': 11, 'v': 10}, {'u': 5, 'v': 4}, {'u': 5, 'v': 9}, {'u': 5, 'v': 10}, {'u': 4, 'v': 8}, {'u': 4, 'v': 10}, {'u': 8, 'v': 10}, {'u': 10, 'v': 9}]}","[4, 7, 9, 11, 12]",17,csv,1
MIS,MIS,"Thereβs a convention coming up and the lighting crew wants to spotlight booths, but they donβt want two neighboring booths both under the same lights. The job is to mark as many booths as possible for priority lighting while making sure no two chosen booths sit next to one another. The simplest way to tell which plan is best is to count the marked booths β the plan with the biggest count wins β and every pick has to be a real booth from the plan with no repeats. The specific hall layout appears below.
{
""total_booths"": 12,
""total_adjacency_pairs"": 22,
""edges"": [
{
""adjacent_booth_1"": 8,
""adjacent_booth_2"": 2
},
{
""adjacent_booth_1"": 8,
""adjacent_booth_2"": 5
},
{
""adjacent_booth_1"": 4,
""adjacent_booth_2"": 1
},
{
""adjacent_booth_1"": 4,
""adjacent_booth_2"": 3
},
{
""adjacent_booth_1"": 4,
""adjacent_booth_2"": 5
},
{
""adjacent_booth_1"": 4,
""adjacent_booth_2"": 12
},
{
""adjacent_booth_1"": 9,
""adjacent_booth_2"": 5
},
{
""adjacent_booth_1"": 1,
""adjacent_booth_2"": 5
},
{
""adjacent_booth_1"": 5,
""adjacent_booth_2"": 2
},
{
""adjacent_booth_1"": 5,
""adjacent_booth_2"": 6
},
{
""adjacent_booth_1"": 5,
""adjacent_booth_2"": 7
},
{
""adjacent_booth_1"": 5,
""adjacent_booth_2"": 12
},
{
""adjacent_booth_1"": 6,
""adjacent_booth_2"": 2
},
{
""adjacent_booth_1"": 6,
""adjacent_booth_2"": 7
},
{
""adjacent_booth_1"": 6,
""adjacent_booth_2"": 11
},
{
""adjacent_booth_1"": 7,
""adjacent_booth_2"": 3
},
{
""adjacent_booth_1"": 7,
""adjacent_booth_2"": 10
},
{
""adjacent_booth_1"": 7,
""adjacent_booth_2"": 11
},
{
""adjacent_booth_1"": 10,
""adjacent_booth_2"": 2
},
{
""adjacent_booth_1"": 10,
""adjacent_booth_2"": 11
},
{
""adjacent_booth_1"": 11,
""adjacent_booth_2"": 2
},
{
""adjacent_booth_1"": 12,
""adjacent_booth_2"": 3
}
]
}
I'll return the chosen booths in a tiny JSON snippet so it's easy to read and parse. Something like this:
{
""solution"": [""booth_id"", ""booth_id"", ...]
}
Here ""solution"" is just a list of the booths we're marking for priority lighting β each item is a booth identifier from the hall layout (and no repeats). This JSON is only a sketch of the shape Iβll use, not the actual final selection.
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': 'MIS', 'num_nodes': 12, 'num_edges': 22, 'edges': [{'u': 8, 'v': 2}, {'u': 8, 'v': 5}, {'u': 4, 'v': 1}, {'u': 4, 'v': 3}, {'u': 4, 'v': 5}, {'u': 4, 'v': 12}, {'u': 9, 'v': 5}, {'u': 1, 'v': 5}, {'u': 5, 'v': 2}, {'u': 5, 'v': 6}, {'u': 5, 'v': 7}, {'u': 5, 'v': 12}, {'u': 6, 'v': 2}, {'u': 6, 'v': 7}, {'u': 6, 'v': 11}, {'u': 7, 'v': 3}, {'u': 7, 'v': 10}, {'u': 7, 'v': 11}, {'u': 10, 'v': 2}, {'u': 10, 'v': 11}, {'u': 11, 'v': 2}, {'u': 12, 'v': 3}], 'source_file': 'vt2010.mtx', 'density': 0.3333333333333333, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0017.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0017.png', 'edge_connectivity': 1}","[1, 6, 8, 9, 10, 12]",6.0,"{'num_nodes': 12, 'num_edges': 22, 'edges': [{'u': 8, 'v': 2}, {'u': 8, 'v': 5}, {'u': 4, 'v': 1}, {'u': 4, 'v': 3}, {'u': 4, 'v': 5}, {'u': 4, 'v': 12}, {'u': 9, 'v': 5}, {'u': 1, 'v': 5}, {'u': 5, 'v': 2}, {'u': 5, 'v': 6}, {'u': 5, 'v': 7}, {'u': 5, 'v': 12}, {'u': 6, 'v': 2}, {'u': 6, 'v': 7}, {'u': 6, 'v': 11}, {'u': 7, 'v': 3}, {'u': 7, 'v': 10}, {'u': 7, 'v': 11}, {'u': 10, 'v': 2}, {'u': 10, 'v': 11}, {'u': 11, 'v': 2}, {'u': 12, 'v': 3}]}","[1, 6, 8, 9, 10, 12]",18,json,1
MIS,MIS,"Thereβs a neighborhood parade coming and the volunteer coordinator is trying to pack the route with helpers without putting any two of them side by side. The choice is which positions along the lineup to staff so that the total number of helpers is as high as possible, and the way to judge a plan is simple: count the helpers β more counts mean a better plan. Each chosen spot is used once and nobody gets assigned to two spots; the concrete lineup info is shown below.
{
""total_positions"": 8,
""num_adjacent_pairs"": 13,
""edges"": [
{
""position_u"": 3,
""position_v"": 5
},
{
""position_u"": 3,
""position_v"": 7
},
{
""position_u"": 3,
""position_v"": 8
},
{
""position_u"": 6,
""position_v"": 4
},
{
""position_u"": 6,
""position_v"": 5
},
{
""position_u"": 8,
""position_v"": 5
},
{
""position_u"": 8,
""position_v"": 7
},
{
""position_u"": 4,
""position_v"": 2
},
{
""position_u"": 4,
""position_v"": 5
},
{
""position_u"": 2,
""position_v"": 5
},
{
""position_u"": 2,
""position_v"": 7
},
{
""position_u"": 5,
""position_v"": 1
},
{
""position_u"": 5,
""position_v"": 7
}
]
}
If you want to send back which positions to staff, just use this little JSON shape so it's easy to read and parse:
{
""solution"": [""spot_id"", ""spot_id"", ...]
}
""solution"" is just the list of parade spots you picked for helpers β one entry per chosen position. Think of each string in that array as the exact label for a spot from the lineup (this JSON is just a sketch of the shape I expect, not the actual answer).
Please use the identifiers exactly as they appear in the instance input β do not rename them and do not 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': 'MIS', 'num_nodes': 8, 'num_edges': 13, 'edges': [{'u': 3, 'v': 5}, {'u': 3, 'v': 7}, {'u': 3, 'v': 8}, {'u': 6, 'v': 4}, {'u': 6, 'v': 5}, {'u': 8, 'v': 5}, {'u': 8, 'v': 7}, {'u': 4, 'v': 2}, {'u': 4, 'v': 5}, {'u': 2, 'v': 5}, {'u': 2, 'v': 7}, {'u': 5, 'v': 1}, {'u': 5, 'v': 7}], 'source_file': 'wy2010.mtx', 'density': 0.4642857142857143, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0018.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0018.png', 'edge_connectivity': 1}","[1, 2, 6, 8]",4.0,"{'num_nodes': 8, 'num_edges': 13, 'edges': [{'u': 3, 'v': 5}, {'u': 3, 'v': 7}, {'u': 3, 'v': 8}, {'u': 6, 'v': 4}, {'u': 6, 'v': 5}, {'u': 8, 'v': 5}, {'u': 8, 'v': 7}, {'u': 4, 'v': 2}, {'u': 4, 'v': 5}, {'u': 2, 'v': 5}, {'u': 2, 'v': 7}, {'u': 5, 'v': 1}, {'u': 5, 'v': 7}]}","[1, 2, 6, 8]",19,json,1
MIS,MIS,"Someone at the operations desk is trying to maximize coverage tonight by switching on as many cell sites as possible, while making sure no directly interfering pair is active together. The selection is straightforward: for every pair thatβs directly linked, choose at most one of them to be live, and then tally up how many stations are live β the higher that tally, the better the outcome. Every station needs a definitive on/off decision (no duplicates, no ignoring entries), and the concrete network layout is shown below.
The layout below lists 12 stations and 20 direct interference links:
Interference link between station 10 and station 2: at most one of the two may be live.
Interference link between station 10 and station 7: at most one of the two may be live.
Interference link between station 10 and station 8: at most one of the two may be live.
Interference link between station 11 and station 2: at most one of the two may be live.
Interference link between station 11 and station 5: at most one of the two may be live.
Interference link between station 11 and station 8: at most one of the two may be live.
Interference link between station 2 and station 5: at most one of the two may be live.
Interference link between station 2 and station 8: at most one of the two may be live.
Interference link between station 5 and station 4: at most one of the two may be live.
Interference link between station 5 and station 6: at most one of the two may be live.
Interference link between station 3 and station 0: at most one of the two may be live.
Interference link between station 3 and station 1: at most one of the two may be live.
Interference link between station 3 and station 4: at most one of the two may be live.
Interference link between station 3 and station 7: at most one of the two may be live.
Interference link between station 4 and station 1: at most one of the two may be live.
Interference link between station 4 and station 6: at most one of the two may be live.
Interference link between station 4 and station 9: at most one of the two may be live.
Interference link between station 1 and station 8: at most one of the two may be live.
Interference link between station 7 and station 8: at most one of the two may be live.
Interference link between station 6 and station 9: at most one of the two may be live.
Every station must receive a definitive on/off decision so the operations desk can tally how many are live and maximize coverage tonight.
Also, when you send the final selection back, please use this simple JSON layout so it's easy to parse:
{
""solution"": [""site_id"", ""site_id"", ...]
}
This just means ""solution"" should be a list of the site IDs you want switched on. Think of it like ticking boxes on a form β each quoted entry is the exact station identifier you choose to make live. The JSON above is only a sketch of the shape I expect, 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': 'MIS', 'num_nodes': 12, 'num_edges': 20, 'edges': [{'u': 11, 'v': 3}, {'u': 11, 'v': 8}, {'u': 11, 'v': 9}, {'u': 12, 'v': 3}, {'u': 12, 'v': 6}, {'u': 12, 'v': 9}, {'u': 3, 'v': 6}, {'u': 3, 'v': 9}, {'u': 6, 'v': 5}, {'u': 6, 'v': 7}, {'u': 4, 'v': 1}, {'u': 4, 'v': 2}, {'u': 4, 'v': 5}, {'u': 4, 'v': 8}, {'u': 5, 'v': 2}, {'u': 5, 'v': 7}, {'u': 5, 'v': 10}, {'u': 2, 'v': 9}, {'u': 8, 'v': 9}, {'u': 7, 'v': 10}], 'source_file': 'vt2010.mtx', 'density': 0.30303030303030304, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0019.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0019.png', 'edge_connectivity': 1}","[1, 2, 8, 10, 12]",5.0,"{'num_nodes': 12, 'num_edges': 20, 'edges': [{'u': 10, 'v': 2}, {'u': 10, 'v': 7}, {'u': 10, 'v': 8}, {'u': 11, 'v': 2}, {'u': 11, 'v': 5}, {'u': 11, 'v': 8}, {'u': 2, 'v': 5}, {'u': 2, 'v': 8}, {'u': 5, 'v': 4}, {'u': 5, 'v': 6}, {'u': 3, 'v': 0}, {'u': 3, 'v': 1}, {'u': 3, 'v': 4}, {'u': 3, 'v': 7}, {'u': 4, 'v': 1}, {'u': 4, 'v': 6}, {'u': 4, 'v': 9}, {'u': 1, 'v': 8}, {'u': 7, 'v': 8}, {'u': 6, 'v': 9}]}","[0, 1, 7, 9, 11]",20,nl,0
MIS,MIS,"Iβm the club adviser trying to build the best possible presenter lineup for the school assembly: pick as many students as I can to go on stage, but never pick two who have a time clash with each other. The idea is simple β the better the lineup, the more students are speaking, so count how many presenters are chosen and aim for the highest total. No student can be picked twice, and if two studentsβ schedules overlap, only one of them can be in the final group. The concrete list of students and their schedule conflicts is shown below.
# total_students=9
# total_schedule_conflicts=14
conflicting_student_a,conflicting_student_b
D,F
D,G
D,H
F,C
F,E
F,H
C,A
C,H
G,B
G,I
I,A
I,B
B,A
B,H
You can just send back the final lineup in a tiny JSON snippet like this β super simple and machine-friendly:
{
""solution"": [""presenter_id"", ""presenter_id"", ...]
}
Think of ""solution"" as the box where you list the student IDs you're putting on stage. Each ""presenter_id"" is a placeholder for one chosen student β replace those placeholders with the actual IDs from the instance when you give the real answer. This JSON is just a sketch of the shape I want, not the actual final lineup.
Please be sure to use the exact identifiers from the instance input β don't rename them or invent new labels.
- for example: ""Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.""","{'problem_type': 'MIS', 'num_nodes': 9, 'num_edges': 14, 'edges': [{'u': 4, 'v': 6}, {'u': 4, 'v': 7}, {'u': 4, 'v': 8}, {'u': 6, 'v': 3}, {'u': 6, 'v': 5}, {'u': 6, 'v': 8}, {'u': 3, 'v': 1}, {'u': 3, 'v': 8}, {'u': 7, 'v': 2}, {'u': 7, 'v': 9}, {'u': 9, 'v': 1}, {'u': 9, 'v': 2}, {'u': 2, 'v': 1}, {'u': 2, 'v': 8}], 'source_file': 'wy2010.mtx', 'density': 0.3888888888888889, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0020.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0020.png', 'edge_connectivity': 1}","[3, 4, 5, 9]",4.0,"{'num_nodes': 9, 'num_edges': 14, 'edges': [{'u': 'D', 'v': 'F'}, {'u': 'D', 'v': 'G'}, {'u': 'D', 'v': 'H'}, {'u': 'F', 'v': 'C'}, {'u': 'F', 'v': 'E'}, {'u': 'F', 'v': 'H'}, {'u': 'C', 'v': 'A'}, {'u': 'C', 'v': 'H'}, {'u': 'G', 'v': 'B'}, {'u': 'G', 'v': 'I'}, {'u': 'I', 'v': 'A'}, {'u': 'I', 'v': 'B'}, {'u': 'B', 'v': 'A'}, {'u': 'B', 'v': 'H'}]}","['C', 'D', 'E', 'I']",21,csv,names
MIS,MIS,"On a busy weekend the restaurant wants to offer a generous tasting menu, but ingredient clashes force some tough calls. The task is to select a combination of distinct dishes where no two chosen items clash, and then see how many dishes that gives you β the larger that number, the better the menu. Each dish is either included once or left off the menu. The specific dishes and the pairs that clash are provided below.
{
""total_dishes"": 12,
""total_clashing_pairs"": 22,
""edges"": [
{
""dish_a"": ""E"",
""dish_b"": ""B""
},
{
""dish_a"": ""E"",
""dish_b"": ""F""
},
{
""dish_a"": ""E"",
""dish_b"": ""L""
},
{
""dish_a"": ""L"",
""dish_b"": ""B""
},
{
""dish_a"": ""L"",
""dish_b"": ""F""
},
{
""dish_a"": ""L"",
""dish_b"": ""H""
},
{
""dish_a"": ""L"",
""dish_b"": ""I""
},
{
""dish_a"": ""J"",
""dish_b"": ""F""
},
{
""dish_a"": ""J"",
""dish_b"": ""I""
},
{
""dish_a"": ""K"",
""dish_b"": ""D""
},
{
""dish_a"": ""K"",
""dish_b"": ""F""
},
{
""dish_a"": ""F"",
""dish_b"": ""B""
},
{
""dish_a"": ""F"",
""dish_b"": ""D""
},
{
""dish_a"": ""F"",
""dish_b"": ""G""
},
{
""dish_a"": ""F"",
""dish_b"": ""I""
},
{
""dish_a"": ""H"",
""dish_b"": ""B""
},
{
""dish_a"": ""H"",
""dish_b"": ""C""
},
{
""dish_a"": ""G"",
""dish_b"": ""B""
},
{
""dish_a"": ""D"",
""dish_b"": ""A""
},
{
""dish_a"": ""D"",
""dish_b"": ""B""
},
{
""dish_a"": ""A"",
""dish_b"": ""B""
},
{
""dish_a"": ""C"",
""dish_b"": ""B""
}
]
}
Also, when you send back the chosen dishes, please use this simple JSON layout so I can read it easily:
{
""solution"": [""dish_id"", ""dish_id"", ...]
}
This just means the value for ""solution"" should be a list of the dish identifiers you picked for the menu (one entry per dish). Think of it like filling out a short form β the JSON above is just the shape I expect, not the actual answer.
Please use the identifiers exactly as they appear in the instance input β don't rename them or invent new labels. Valid identifiers look like:
- plain numbers such as ""1"" or ""23""
- single capital letters like ""A"" or ""B""
- a capital letter followed by digits like ""A1"" or ""X7""","{'problem_type': 'MIS', 'num_nodes': 12, 'num_edges': 22, 'edges': [{'u': 5, 'v': 2}, {'u': 5, 'v': 6}, {'u': 5, 'v': 12}, {'u': 12, 'v': 2}, {'u': 12, 'v': 6}, {'u': 12, 'v': 8}, {'u': 12, 'v': 9}, {'u': 10, 'v': 6}, {'u': 10, 'v': 9}, {'u': 11, 'v': 4}, {'u': 11, 'v': 6}, {'u': 6, 'v': 2}, {'u': 6, 'v': 4}, {'u': 6, 'v': 7}, {'u': 6, 'v': 9}, {'u': 8, 'v': 2}, {'u': 8, 'v': 3}, {'u': 7, 'v': 2}, {'u': 4, 'v': 1}, {'u': 4, 'v': 2}, {'u': 1, 'v': 2}, {'u': 3, 'v': 2}], 'source_file': 'wy2010.mtx', 'density': 0.3333333333333333, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0021.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0021.png', 'edge_connectivity': 2}","[1, 3, 5, 7, 10, 11]",6.0,"{'num_nodes': 12, 'num_edges': 22, 'edges': [{'u': 'E', 'v': 'B'}, {'u': 'E', 'v': 'F'}, {'u': 'E', 'v': 'L'}, {'u': 'L', 'v': 'B'}, {'u': 'L', 'v': 'F'}, {'u': 'L', 'v': 'H'}, {'u': 'L', 'v': 'I'}, {'u': 'J', 'v': 'F'}, {'u': 'J', 'v': 'I'}, {'u': 'K', 'v': 'D'}, {'u': 'K', 'v': 'F'}, {'u': 'F', 'v': 'B'}, {'u': 'F', 'v': 'D'}, {'u': 'F', 'v': 'G'}, {'u': 'F', 'v': 'I'}, {'u': 'H', 'v': 'B'}, {'u': 'H', 'v': 'C'}, {'u': 'G', 'v': 'B'}, {'u': 'D', 'v': 'A'}, {'u': 'D', 'v': 'B'}, {'u': 'A', 'v': 'B'}, {'u': 'C', 'v': 'B'}]}","['A', 'C', 'E', 'G', 'J', 'K']",22,json,names
MIS,MIS,"In our neighborhood, putting together the volunteer roster for the fair means trying to get the biggest team we can, but with one rule: donβt sign up any two people whoβve got a personal conflict. The choice is who to roster β one arrangement is better than another if it ends up with a greater number of distinct helpers, so you just count the names to compare. Donβt add anybody twice, only pick from the people who offered, and if two people are known to clash, they canβt both be chosen. The exact details are listed below.
# total_volunteers=11
# total_conflicts=16
volunteer_a,volunteer_b
5,0
5,1
5,2
5,4
5,7
5,8
5,9
5,10
6,1
6,8
8,7
3,1
3,2
10,2
10,4
1,2
Also, when you send the final roster back, please use this simple JSON layout so it's easy to parse:
{
""solution"": [""volunteer_id"", ""volunteer_id"", ...]
}
Think of ""solution"" as the list of people you're choosing for the fair β each string is the identifier for one person from the problem instance (the exact label that showed up in the input). This JSON is just a sketch of the shape I expect, not the final answer 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': 'MIS', 'num_nodes': 11, 'num_edges': 16, 'edges': [{'u': 6, 'v': 1}, {'u': 6, 'v': 2}, {'u': 6, 'v': 3}, {'u': 6, 'v': 5}, {'u': 6, 'v': 8}, {'u': 6, 'v': 9}, {'u': 6, 'v': 10}, {'u': 6, 'v': 11}, {'u': 7, 'v': 2}, {'u': 7, 'v': 9}, {'u': 9, 'v': 8}, {'u': 4, 'v': 2}, {'u': 4, 'v': 3}, {'u': 11, 'v': 3}, {'u': 11, 'v': 5}, {'u': 2, 'v': 3}], 'source_file': 'vt2010.mtx', 'density': 0.2909090909090909, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0022.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0022.png', 'edge_connectivity': 1}","[1, 4, 5, 7, 8, 10]",6.0,"{'num_nodes': 11, 'num_edges': 16, 'edges': [{'u': 5, 'v': 0}, {'u': 5, 'v': 1}, {'u': 5, 'v': 2}, {'u': 5, 'v': 4}, {'u': 5, 'v': 7}, {'u': 5, 'v': 8}, {'u': 5, 'v': 9}, {'u': 5, 'v': 10}, {'u': 6, 'v': 1}, {'u': 6, 'v': 8}, {'u': 8, 'v': 7}, {'u': 3, 'v': 1}, {'u': 3, 'v': 2}, {'u': 10, 'v': 2}, {'u': 10, 'v': 4}, {'u': 1, 'v': 2}]}","[0, 3, 4, 6, 7, 9]",23,csv,0
MIS,MIS,"Someone on the programming team needs to assemble an hour-long set and must avoid putting any two policy-conflicted songs in the same playlist. The choice is which songs to include in that hour so the list contains the highest possible count of distinct tracks while steering clear of any forbidden pairings. A playlist with a higher count of songs is better β evaluate it by tallying the tracks. Repeats arenβt allowed, and the full list of tracks and the stationβs incompatibility notes appear below.
There are 9 distinct candidate tracks available and 16 station-policy incompatibility pairs listed below.
Track E must not appear with track A in the same hour-long playlist.
Track E must not appear with track D in the same hour-long playlist.
Track E must not appear with track F in the same hour-long playlist.
Track E must not appear with track G in the same hour-long playlist.
Track B must not appear with track A in the same hour-long playlist.
Track B must not appear with track G in the same hour-long playlist.
Track I must not appear with track A in the same hour-long playlist.
Track I must not appear with track C in the same hour-long playlist.
Track I must not appear with track F in the same hour-long playlist.
Track C must not appear with track H in the same hour-long playlist.
Track A must not appear with track F in the same hour-long playlist.
Track A must not appear with track G in the same hour-long playlist.
Track G must not appear with track D in the same hour-long playlist.
Track G must not appear with track H in the same hour-long playlist.
Track F must not appear with track D in the same hour-long playlist.
Track H must not appear with track D in the same hour-long playlist.
Assemble the hour-long set to include as many distinct tracks as possible while respecting the listed conflicts.
Also, when you hand the final playlist back, it'd be great if you use a tiny JSON snippet like this so it's easy to parse:
{
""solution"": [""song_id"", ""song_id"", ...]
}
Here ""solution"" is just the list of tracks you're picking for that hour, and each ""song_id"" is a placeholder for a song identifier from the instance (so think of it like filling in the names or IDs of the tracks you chose). This is just the shape I expect β not the real answer itself.
Please make sure to use the exact identifiers from the instance input, with no renaming or extra labels. For example:
- 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': 'MIS', 'num_nodes': 9, 'num_edges': 16, 'edges': [{'u': 5, 'v': 1}, {'u': 5, 'v': 4}, {'u': 5, 'v': 6}, {'u': 5, 'v': 7}, {'u': 2, 'v': 1}, {'u': 2, 'v': 7}, {'u': 9, 'v': 1}, {'u': 9, 'v': 3}, {'u': 9, 'v': 6}, {'u': 3, 'v': 8}, {'u': 1, 'v': 6}, {'u': 1, 'v': 7}, {'u': 7, 'v': 4}, {'u': 7, 'v': 8}, {'u': 6, 'v': 4}, {'u': 8, 'v': 4}], 'source_file': 'wi2010.mtx', 'density': 0.4444444444444444, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0023.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0023.png', 'edge_connectivity': 2}","[2, 5, 8, 9]",4.0,"{'num_nodes': 9, 'num_edges': 16, 'edges': [{'u': 'E', 'v': 'A'}, {'u': 'E', 'v': 'D'}, {'u': 'E', 'v': 'F'}, {'u': 'E', 'v': 'G'}, {'u': 'B', 'v': 'A'}, {'u': 'B', 'v': 'G'}, {'u': 'I', 'v': 'A'}, {'u': 'I', 'v': 'C'}, {'u': 'I', 'v': 'F'}, {'u': 'C', 'v': 'H'}, {'u': 'A', 'v': 'F'}, {'u': 'A', 'v': 'G'}, {'u': 'G', 'v': 'D'}, {'u': 'G', 'v': 'H'}, {'u': 'F', 'v': 'D'}, {'u': 'H', 'v': 'D'}]}","['B', 'E', 'H', 'I']",24,nl,names
MIS,MIS,"I manage a band and need to put together a live set. The trick is to pick the biggest possible group of songs that all work together β if any two songs are a bad match and canβt follow each other, they canβt both be in the set. The better the set, the more songs it contains, so lineups are compared by simply counting how many songs made the cut. Each song is a single, indivisible choice (no repeats allowed), and no pair that conflicts can both be included. The concrete song-by-song details are shown below.
I'm considering 11 songs with 18 incompatible pairs listed below:
Song 2 and song 1 can't follow each other, so they can't both be in the set.
Song 2 and song 5 can't follow each other, so they can't both be in the set.
Song 2 and song 7 can't follow each other, so they can't both be in the set.
Song 2 and song 8 can't follow each other, so they can't both be in the set.
Song 2 and song 10 can't follow each other, so they can't both be in the set.
Song 5 and song 4 can't follow each other, so they can't both be in the set.
Song 5 and song 9 can't follow each other, so they can't both be in the set.
Song 5 and song 10 can't follow each other, so they can't both be in the set.
Song 8 and song 0 can't follow each other, so they can't both be in the set.
Song 8 and song 1 can't follow each other, so they can't both be in the set.
Song 8 and song 6 can't follow each other, so they can't both be in the set.
Song 9 and song 7 can't follow each other, so they can't both be in the set.
Song 6 and song 7 can't follow each other, so they can't both be in the set.
Song 3 and song 1 can't follow each other, so they can't both be in the set.
Song 3 and song 4 can't follow each other, so they can't both be in the set.
Song 3 and song 10 can't follow each other, so they can't both be in the set.
Song 10 and song 1 can't follow each other, so they can't both be in the set.
Song 10 and song 4 can't follow each other, so they can't both be in the set.
I'll pick the largest possible lineup from these 11 songs while avoiding the 18 conflicts.
Also, when you send the final lineup, please stick it into a tiny JSON snippet like this so itβs easy to read and parse:
{
""solution"": [""song_id"", ""song_id"", ...]
}
This just means ""solution"" holds a list of the song identifiers you picked for the set β each entry should be the exact label used in the instance (it's just a sketch of the shape I want, not the actual answer). Use the real song IDs from the input; don't make up new names or change them.
Use 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': 'MIS', 'num_nodes': 11, 'num_edges': 18, 'edges': [{'u': 3, 'v': 2}, {'u': 3, 'v': 6}, {'u': 3, 'v': 8}, {'u': 3, 'v': 9}, {'u': 3, 'v': 11}, {'u': 6, 'v': 5}, {'u': 6, 'v': 10}, {'u': 6, 'v': 11}, {'u': 9, 'v': 1}, {'u': 9, 'v': 2}, {'u': 9, 'v': 7}, {'u': 10, 'v': 8}, {'u': 7, 'v': 8}, {'u': 4, 'v': 2}, {'u': 4, 'v': 5}, {'u': 4, 'v': 11}, {'u': 11, 'v': 2}, {'u': 11, 'v': 5}], 'source_file': 'wa2010.mtx', 'density': 0.32727272727272727, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0024.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0024.png', 'edge_connectivity': 1}","[1, 3, 5, 7, 10]",5.0,"{'num_nodes': 11, 'num_edges': 18, 'edges': [{'u': 2, 'v': 1}, {'u': 2, 'v': 5}, {'u': 2, 'v': 7}, {'u': 2, 'v': 8}, {'u': 2, 'v': 10}, {'u': 5, 'v': 4}, {'u': 5, 'v': 9}, {'u': 5, 'v': 10}, {'u': 8, 'v': 0}, {'u': 8, 'v': 1}, {'u': 8, 'v': 6}, {'u': 9, 'v': 7}, {'u': 6, 'v': 7}, {'u': 3, 'v': 1}, {'u': 3, 'v': 4}, {'u': 3, 'v': 10}, {'u': 10, 'v': 1}, {'u': 10, 'v': 4}]}","[0, 2, 4, 6, 9]",25,nl,0
MIS,MIS,"Thereβs a bit of a puzzle in the office: pick which desks to use so the most people can work on-site without ever placing two folks who clash next to each other. What makes one choice better than another is simple β it seats more people, and thatβs measured by tallying the occupied desks. The rules are straightforward: each desk gets at most one person and any pair marked as βshouldnβt sit togetherβ cannot both be chosen. The specific floorplan and the list of those pairings are shown below.
{
""total_desks"": 12,
""num_conflict_pairs"": 20,
""edges"": [
{
""desk_a"": 8,
""desk_b"": 0
},
{
""desk_a"": 8,
""desk_b"": 1
},
{
""desk_a"": 5,
""desk_b"": 2
},
{
""desk_a"": 5,
""desk_b"": 7
},
{
""desk_a"": 5,
""desk_b"": 10
},
{
""desk_a"": 3,
""desk_b"": 1
},
{
""desk_a"": 3,
""desk_b"": 6
},
{
""desk_a"": 3,
""desk_b"": 9
},
{
""desk_a"": 3,
""desk_b"": 10
},
{
""desk_a"": 11,
""desk_b"": 4
},
{
""desk_a"": 11,
""desk_b"": 7
},
{
""desk_a"": 11,
""desk_b"": 9
},
{
""desk_a"": 9,
""desk_b"": 4
},
{
""desk_a"": 9,
""desk_b"": 6
},
{
""desk_a"": 9,
""desk_b"": 7
},
{
""desk_a"": 9,
""desk_b"": 10
},
{
""desk_a"": 10,
""desk_b"": 1
},
{
""desk_a"": 2,
""desk_b"": 1
},
{
""desk_a"": 1,
""desk_b"": 0
},
{
""desk_a"": 1,
""desk_b"": 6
}
]
}
If you want to give me the chosen desks, a tiny JSON snippet like this is perfect:
{
""solution"": [""desk_id"", ""desk_id"", ...]
}
Think of it like a simple list: ""solution"" holds the desks you picked, and each entry is the exact desk identifier from the floorplan. It's just a sketch of the shape I expect β swap those placeholders out for the real desk IDs when you send 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': 'MIS', 'num_nodes': 12, 'num_edges': 20, 'edges': [{'u': 9, 'v': 1}, {'u': 9, 'v': 2}, {'u': 6, 'v': 3}, {'u': 6, 'v': 8}, {'u': 6, 'v': 11}, {'u': 4, 'v': 2}, {'u': 4, 'v': 7}, {'u': 4, 'v': 10}, {'u': 4, 'v': 11}, {'u': 12, 'v': 5}, {'u': 12, 'v': 8}, {'u': 12, 'v': 10}, {'u': 10, 'v': 5}, {'u': 10, 'v': 7}, {'u': 10, 'v': 8}, {'u': 10, 'v': 11}, {'u': 11, 'v': 2}, {'u': 3, 'v': 2}, {'u': 2, 'v': 1}, {'u': 2, 'v': 7}], 'source_file': 'wv2010.mtx', 'density': 0.30303030303030304, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0025.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0025.png', 'edge_connectivity': 2}","[1, 3, 5, 7, 8, 11]",6.0,"{'num_nodes': 12, 'num_edges': 20, 'edges': [{'u': 8, 'v': 0}, {'u': 8, 'v': 1}, {'u': 5, 'v': 2}, {'u': 5, 'v': 7}, {'u': 5, 'v': 10}, {'u': 3, 'v': 1}, {'u': 3, 'v': 6}, {'u': 3, 'v': 9}, {'u': 3, 'v': 10}, {'u': 11, 'v': 4}, {'u': 11, 'v': 7}, {'u': 11, 'v': 9}, {'u': 9, 'v': 4}, {'u': 9, 'v': 6}, {'u': 9, 'v': 7}, {'u': 9, 'v': 10}, {'u': 10, 'v': 1}, {'u': 2, 'v': 1}, {'u': 1, 'v': 0}, {'u': 1, 'v': 6}]}","[0, 2, 4, 6, 7, 10]",26,json,0
MIS,MIS,"Out at the lake the weekend roster needs putting together, and the brief is to pick as many different activities as possible, with the catch that certain activities conflict and canβt be paired. The task is deciding which activities to slot into the program so none of the chosen ones are in conflict and the overall program is as large as it can be. You tell which plan is better by the number of activities it contains β simply count them to compare. Each activity chosen must be unique and must not clash with any other chosen activity; the concrete activity names and their conflict relationships are listed below.
There are 10 activities in total and 23 conflicts.
| activity_a | activity_b |
|---|---|
| 9 | 0 |
| 9 | 1 |
| 9 | 4 |
| 9 | 6 |
| 5 | 0 |
| 5 | 1 |
| 5 | 3 |
| 5 | 7 |
| 6 | 0 |
| 6 | 1 |
| 6 | 3 |
| 0 | 2 |
| 0 | 3 |
| 0 | 4 |
| 0 | 7 |
| 0 | 8 |
| 2 | 1 |
| 2 | 4 |
| 1 | 3 |
| 1 | 4 |
| 1 | 7 |
| 1 | 8 |
| 7 | 8 |
If you want to hand the answer back in a tidy, machine-friendly way, just drop the chosen activities into a tiny JSON snippet like this:
{
""solution"": [""activity_id"", ""activity_id"", ...]
}
Think of ""solution"" as the list of activities you've picked for the weekend roster β each entry should be the exact identifier for an activity from the instance. This JSON is just a sketch of the shape I expect, not the final filled-in answer.
Please use the identifiers exactly as they appear in the instance input β don't rename them or invent new labels.
- for example: ""Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.""","{'problem_type': 'MIS', 'num_nodes': 10, 'num_edges': 23, 'edges': [{'u': 10, 'v': 1}, {'u': 10, 'v': 2}, {'u': 10, 'v': 5}, {'u': 10, 'v': 7}, {'u': 6, 'v': 1}, {'u': 6, 'v': 2}, {'u': 6, 'v': 4}, {'u': 6, 'v': 8}, {'u': 7, 'v': 1}, {'u': 7, 'v': 2}, {'u': 7, 'v': 4}, {'u': 1, 'v': 3}, {'u': 1, 'v': 4}, {'u': 1, 'v': 5}, {'u': 1, 'v': 8}, {'u': 1, 'v': 9}, {'u': 3, 'v': 2}, {'u': 3, 'v': 5}, {'u': 2, 'v': 4}, {'u': 2, 'v': 5}, {'u': 2, 'v': 8}, {'u': 2, 'v': 9}, {'u': 8, 'v': 9}], 'source_file': 'wi2010.mtx', 'density': 0.5111111111111111, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0026.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0026.png', 'edge_connectivity': 3}","[3, 6, 9, 10]",4.0,"{'num_nodes': 10, 'num_edges': 23, 'edges': [{'u': 9, 'v': 0}, {'u': 9, 'v': 1}, {'u': 9, 'v': 4}, {'u': 9, 'v': 6}, {'u': 5, 'v': 0}, {'u': 5, 'v': 1}, {'u': 5, 'v': 3}, {'u': 5, 'v': 7}, {'u': 6, 'v': 0}, {'u': 6, 'v': 1}, {'u': 6, 'v': 3}, {'u': 0, 'v': 2}, {'u': 0, 'v': 3}, {'u': 0, 'v': 4}, {'u': 0, 'v': 7}, {'u': 0, 'v': 8}, {'u': 2, 'v': 1}, {'u': 2, 'v': 4}, {'u': 1, 'v': 3}, {'u': 1, 'v': 4}, {'u': 1, 'v': 7}, {'u': 1, 'v': 8}, {'u': 7, 'v': 8}]}","[2, 5, 8, 9]",27,markdown_table,0
MIS,MIS,"Iβm organizing the readings for a wedding and need to pick as many pieces as possible for the ceremony, but some of those readings clash with each other and canβt both be used. The job is to assemble the biggest collection of readings that donβt conflict β the better the plan, the more readings it contains, so the plan is judged simply by counting how many are included. Each reading can only be used once and clashing pairs must never both be chosen. The exact list of readings and which ones clash will be shown below.
Below are the 8 readings and 11 clash pairs Iβll consider:
Reading 4 clashes with reading 0 β I canβt include both.
Reading 4 clashes with reading 1 β I canβt include both.
Reading 4 clashes with reading 2 β I canβt include both.
Reading 4 clashes with reading 3 β I canβt include both.
Reading 4 clashes with reading 6 β I canβt include both.
Reading 5 clashes with reading 3 β I canβt include both.
Reading 1 clashes with reading 3 β I canβt include both.
Reading 6 clashes with reading 0 β I canβt include both.
Reading 2 clashes with reading 3 β I canβt include both.
Reading 7 clashes with reading 3 β I canβt include both.
Reading 0 clashes with reading 3 β I canβt include both.
Iβll choose the largest set of non-conflicting readings from these 8 options and 11 clashes.
If you could send your final plan in a tiny, predictable format, that would be great β something like this JSON sketch so I can quickly check which readings you picked:
{
""solution"": [""reading_id"", ""reading_id"", ...]
}
Here ""solution"" is just the list of readings you want to use β each entry should be the reading's identifier from the instance. Think of it like filling in a simple form: put each chosen reading's ID inside the array, comma-separated. This block is just a template showing the shape I expect, not the actual answer.
Please make sure to use the identifiers exactly as they appear in the instance input β no renaming, no made-up labels.
- for example: ""Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.""","{'problem_type': 'MIS', 'num_nodes': 8, 'num_edges': 11, 'edges': [{'u': 5, 'v': 1}, {'u': 5, 'v': 2}, {'u': 5, 'v': 3}, {'u': 5, 'v': 4}, {'u': 5, 'v': 7}, {'u': 6, 'v': 4}, {'u': 2, 'v': 4}, {'u': 7, 'v': 1}, {'u': 3, 'v': 4}, {'u': 8, 'v': 4}, {'u': 1, 'v': 4}], 'source_file': 'wi2010.mtx', 'density': 0.39285714285714285, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0027.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0027.png', 'edge_connectivity': 1}","[2, 3, 6, 7, 8]",5.0,"{'num_nodes': 8, 'num_edges': 11, 'edges': [{'u': 4, 'v': 0}, {'u': 4, 'v': 1}, {'u': 4, 'v': 2}, {'u': 4, 'v': 3}, {'u': 4, 'v': 6}, {'u': 5, 'v': 3}, {'u': 1, 'v': 3}, {'u': 6, 'v': 0}, {'u': 2, 'v': 3}, {'u': 7, 'v': 3}, {'u': 0, 'v': 3}]}","[1, 2, 5, 6, 7]",28,nl,0
MIS,MIS,"Someone at the shelter has to go through the list and pick which animals can go into the communal play area; the aim is to allow as many animals as possible while never putting any pair that fights into the same session. Success is measured by how many animals get the green light β higher is better β and you get that by counting the approved animals. No animal can be approved twice and no selection may include two animals that clash. The concrete details will be shown below.
There are 9 animals listed and 16 fighting pairs to evaluate.
Animals 4 and 7 form a fighting pair and must not be approved together.
Animals 4 and 8 form a fighting pair and must not be approved together.
Animals 5 and 3 form a fighting pair and must not be approved together.
Animals 5 and 6 form a fighting pair and must not be approved together.
Animals 5 and 8 form a fighting pair and must not be approved together.
Animals 5 and 9 form a fighting pair and must not be approved together.
Animals 8 and 1 form a fighting pair and must not be approved together.
Animals 8 and 3 form a fighting pair and must not be approved together.
Animals 8 and 6 form a fighting pair and must not be approved together.
Animals 8 and 7 form a fighting pair and must not be approved together.
Animals 8 and 9 form a fighting pair and must not be approved together.
Animals 2 and 1 form a fighting pair and must not be approved together.
Animals 2 and 9 form a fighting pair and must not be approved together.
Animals 6 and 9 form a fighting pair and must not be approved together.
Animals 3 and 9 form a fighting pair and must not be approved together.
Animals 1 and 9 form a fighting pair and must not be approved together.
Approve as many of the 9 animals as possible while avoiding any of the 16 conflicts.
Also, when you hand back which animals get the green light, please use this simple JSON layout so it's easy to read and validate:
{
""solution"": [""animal_id"", ""animal_id"", ...]
}
Think of ""solution"" as the list of animal IDs you're approving for the communal play area. Each entry in that array should be the exact identifier for an animal from the input (one per animal, no duplicates). This JSON is just a sketch of the expected shape β fill it with the actual IDs when you're ready.
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': 'MIS', 'num_nodes': 9, 'num_edges': 16, 'edges': [{'u': 4, 'v': 7}, {'u': 4, 'v': 8}, {'u': 5, 'v': 3}, {'u': 5, 'v': 6}, {'u': 5, 'v': 8}, {'u': 5, 'v': 9}, {'u': 8, 'v': 1}, {'u': 8, 'v': 3}, {'u': 8, 'v': 6}, {'u': 8, 'v': 7}, {'u': 8, 'v': 9}, {'u': 2, 'v': 1}, {'u': 2, 'v': 9}, {'u': 6, 'v': 9}, {'u': 3, 'v': 9}, {'u': 1, 'v': 9}], 'source_file': 'wi2010.mtx', 'density': 0.4444444444444444, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0028.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0028.png', 'edge_connectivity': 2}","[2, 3, 4, 6]",4.0,"{'num_nodes': 9, 'num_edges': 16, 'edges': [{'u': 4, 'v': 7}, {'u': 4, 'v': 8}, {'u': 5, 'v': 3}, {'u': 5, 'v': 6}, {'u': 5, 'v': 8}, {'u': 5, 'v': 9}, {'u': 8, 'v': 1}, {'u': 8, 'v': 3}, {'u': 8, 'v': 6}, {'u': 8, 'v': 7}, {'u': 8, 'v': 9}, {'u': 2, 'v': 1}, {'u': 2, 'v': 9}, {'u': 6, 'v': 9}, {'u': 3, 'v': 9}, {'u': 1, 'v': 9}]}","[2, 3, 4, 6]",29,nl,1
MIS,MIS,"Thereβs a corner plot everyone loves, and the plan is to plant the most diverse collection of shrubs without sitting together any pair that emit chemicals that hurt each other. The choice is about which shrubs to include so no two conflicting types end up planted side by side. The way to tell if a plan is better is straightforward: count how many different shrubs are in the bed β the higher the count, the better the plan. Each variety can only be used once and every selected plant must actually be in the bed. The concrete details are shown below.
# total_shrub_varieties=11
# total_conflicting_pairs=15
shrub_a_id,shrub_b_id
G,H
G,K
B,I
B,J
I,C
I,F
I,J
E,H
E,J
C,J
D,A
D,J
J,H
J,K
A,H
When you send the planting plan back, just stick to a tiny JSON snippet like this so I can read it easily:
{
""solution"": [""shrub_id"", ""shrub_id"", ...]
}
Here, ""solution"" is the list of shrubs you want in the bed β each entry is just the ID for a shrub. Think of it like filling out a short form: one ID per chosen shrub. This JSON is just the expected shape (a sketch), not the actual answer.
Please use the exact identifiers from the instance input β don't rename them or invent new labels.
- for example: ""Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.""","{'problem_type': 'MIS', 'num_nodes': 11, 'num_edges': 15, 'edges': [{'u': 7, 'v': 8}, {'u': 7, 'v': 11}, {'u': 2, 'v': 9}, {'u': 2, 'v': 10}, {'u': 9, 'v': 3}, {'u': 9, 'v': 6}, {'u': 9, 'v': 10}, {'u': 5, 'v': 8}, {'u': 5, 'v': 10}, {'u': 3, 'v': 10}, {'u': 4, 'v': 1}, {'u': 4, 'v': 10}, {'u': 10, 'v': 8}, {'u': 10, 'v': 11}, {'u': 1, 'v': 8}], 'source_file': 'vt2010.mtx', 'density': 0.2727272727272727, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0029.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0029.png', 'edge_connectivity': 1}","[1, 2, 3, 5, 6, 7]",6.0,"{'num_nodes': 11, 'num_edges': 15, 'edges': [{'u': 'G', 'v': 'H'}, {'u': 'G', 'v': 'K'}, {'u': 'B', 'v': 'I'}, {'u': 'B', 'v': 'J'}, {'u': 'I', 'v': 'C'}, {'u': 'I', 'v': 'F'}, {'u': 'I', 'v': 'J'}, {'u': 'E', 'v': 'H'}, {'u': 'E', 'v': 'J'}, {'u': 'C', 'v': 'J'}, {'u': 'D', 'v': 'A'}, {'u': 'D', 'v': 'J'}, {'u': 'J', 'v': 'H'}, {'u': 'J', 'v': 'K'}, {'u': 'A', 'v': 'H'}]}","['A', 'B', 'C', 'E', 'F', 'G']",30,csv,names
MIS,MIS,"Weβve got one showy mannequin and a pile of accessories to choose from, and the job is to pick the largest possible set that looks harmonious β no two items that clash should be included side by side. Success here is measured by the total number of accessories placed in the window: just tally up the selected pieces and try to make that number as high as possible. Every item is unique (canβt be used twice) and any pair that conflicts must not both be selected. The exact items and the clash notes are given below.
# total_accessories=10
# total_clashes=18
accessory_a,accessory_b
4,1
4,5
4,7
4,9
0,1
0,2
0,5
0,8
7,5
7,9
8,2
2,3
2,5
2,6
5,6
6,3
6,9
3,9
Oh, and when you send back the picks, please use this simple JSON layout so it's easy to check automatically:
{
""solution"": [""accessory_id"", ""accessory_id"", ...]
}
The ""solution"" list should contain the identifiers of the accessories you want in the window β one entry per chosen piece. Think of it like filling out a short form: put each chosen item's ID in that array. This JSON is just a sketch of the shape I need, not the actual final selection.
Please be sure to use the exact identifiers from the instance input β don't rename them or invent new labels.
- for example: ""Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.""","{'problem_type': 'MIS', 'num_nodes': 10, 'num_edges': 18, 'edges': [{'u': 5, 'v': 2}, {'u': 5, 'v': 6}, {'u': 5, 'v': 8}, {'u': 5, 'v': 10}, {'u': 1, 'v': 2}, {'u': 1, 'v': 3}, {'u': 1, 'v': 6}, {'u': 1, 'v': 9}, {'u': 8, 'v': 6}, {'u': 8, 'v': 10}, {'u': 9, 'v': 3}, {'u': 3, 'v': 4}, {'u': 3, 'v': 6}, {'u': 3, 'v': 7}, {'u': 6, 'v': 7}, {'u': 7, 'v': 4}, {'u': 7, 'v': 10}, {'u': 4, 'v': 10}], 'source_file': 'wa2010.mtx', 'density': 0.4, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0030.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0030.png', 'edge_connectivity': 2}","[2, 4, 6, 9]",4.0,"{'num_nodes': 10, 'num_edges': 18, 'edges': [{'u': 4, 'v': 1}, {'u': 4, 'v': 5}, {'u': 4, 'v': 7}, {'u': 4, 'v': 9}, {'u': 0, 'v': 1}, {'u': 0, 'v': 2}, {'u': 0, 'v': 5}, {'u': 0, 'v': 8}, {'u': 7, 'v': 5}, {'u': 7, 'v': 9}, {'u': 8, 'v': 2}, {'u': 2, 'v': 3}, {'u': 2, 'v': 5}, {'u': 2, 'v': 6}, {'u': 5, 'v': 6}, {'u': 6, 'v': 3}, {'u': 6, 'v': 9}, {'u': 3, 'v': 9}]}","[1, 3, 5, 8]",31,csv,0
MIS,MIS,"Recently the conference committee realized a simple rule would make panels smoother: try to include as many speakers as possible without seating together anyone whoβs publicly argued. The βbestβ panel in this sense is the one that ends up with the most individual invitees β just count them β and it canβt contain any pair who have a public disagreement. Every person is either invited or not, and duplicates arenβt allowed. The detailed speaker roster and conflict info are shown below.
There are 10 distinct speakers on the roster and 18 unordered pairs of public disagreements.
Speakers 3 and 1 have a public disagreement and therefore cannot both be invited.
Speakers 3 and 2 have a public disagreement and therefore cannot both be invited.
Speakers 3 and 5 have a public disagreement and therefore cannot both be invited.
Speakers 3 and 6 have a public disagreement and therefore cannot both be invited.
Speakers 3 and 7 have a public disagreement and therefore cannot both be invited.
Speakers 3 and 8 have a public disagreement and therefore cannot both be invited.
Speakers 8 and 0 have a public disagreement and therefore cannot both be invited.
Speakers 8 and 1 have a public disagreement and therefore cannot both be invited.
Speakers 8 and 5 have a public disagreement and therefore cannot both be invited.
Speakers 8 and 6 have a public disagreement and therefore cannot both be invited.
Speakers 8 and 9 have a public disagreement and therefore cannot both be invited.
Speakers 7 and 6 have a public disagreement and therefore cannot both be invited.
Speakers 0 and 4 have a public disagreement and therefore cannot both be invited.
Speakers 0 and 6 have a public disagreement and therefore cannot both be invited.
Speakers 1 and 6 have a public disagreement and therefore cannot both be invited.
Speakers 9 and 4 have a public disagreement and therefore cannot both be invited.
Speakers 4 and 6 have a public disagreement and therefore cannot both be invited.
Speakers 5 and 2 have a public disagreement and therefore cannot both be invited.
Form the panel that maximizes the number of invitees without including any listed conflicting pair.
Oh, and when you send back the final invite list, a tiny JSON snippet like this is easiest to handle:
{
""solution"": [""speaker_id"", ""speaker_id"", ...]
}
Think of ""solution"" as the list of invited speaker IDs β just the IDs, nothing fancy. This JSON is just 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': 'MIS', 'num_nodes': 10, 'num_edges': 18, 'edges': [{'u': 4, 'v': 2}, {'u': 4, 'v': 3}, {'u': 4, 'v': 6}, {'u': 4, 'v': 7}, {'u': 4, 'v': 8}, {'u': 4, 'v': 9}, {'u': 9, 'v': 1}, {'u': 9, 'v': 2}, {'u': 9, 'v': 6}, {'u': 9, 'v': 7}, {'u': 9, 'v': 10}, {'u': 8, 'v': 7}, {'u': 1, 'v': 5}, {'u': 1, 'v': 7}, {'u': 2, 'v': 7}, {'u': 10, 'v': 5}, {'u': 5, 'v': 7}, {'u': 6, 'v': 3}], 'source_file': 'wa2010.mtx', 'density': 0.4, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0031.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0031.png', 'edge_connectivity': 2}","[1, 2, 3, 8, 10]",5.0,"{'num_nodes': 10, 'num_edges': 18, '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': 8, 'v': 0}, {'u': 8, 'v': 1}, {'u': 8, 'v': 5}, {'u': 8, 'v': 6}, {'u': 8, 'v': 9}, {'u': 7, 'v': 6}, {'u': 0, 'v': 4}, {'u': 0, 'v': 6}, {'u': 1, 'v': 6}, {'u': 9, 'v': 4}, {'u': 4, 'v': 6}, {'u': 5, 'v': 2}]}","[0, 1, 2, 7, 9]",32,nl,0
MIS,MIS,"Thereβs a single festival slot to fill and a bunch of short films on the roster, except some titles conflict with each other because of licensing, so they canβt both be programmed. The decision is which combination of films to run so the block contains as many shorts as possible; the measure of success is just the count of films actually scheduled. No title can be duplicated, and any pair that has a licensing conflict has to be kept apart. The concrete details β whoβs in the pool and which pairs conflict β appear below.
# num_films=9
# num_conflicts=14
film_a_id,film_b_id
A,B
A,D
A,E
A,G
C,B
C,D
C,F
F,D
E,B
E,D
D,G
D,I
G,H
G,I
When you tell me which films made the cut, toss the answer back in this little JSON shape so it's easy to read programmatically:
{
""solution"": [""film_id"", ""film_id"", ...]
}
Here ""solution"" is just the list of films you're scheduling in the slot β each entry should be the exact film identifier from the input (order doesn't matter, it's just the chosen set). This block is only a sketch of the shape I want, not the actual selection.
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': 'MIS', 'num_nodes': 9, 'num_edges': 14, 'edges': [{'u': 1, 'v': 2}, {'u': 1, 'v': 4}, {'u': 1, 'v': 5}, {'u': 1, 'v': 7}, {'u': 3, 'v': 2}, {'u': 3, 'v': 4}, {'u': 3, 'v': 6}, {'u': 6, 'v': 4}, {'u': 5, 'v': 2}, {'u': 5, 'v': 4}, {'u': 4, 'v': 7}, {'u': 4, 'v': 9}, {'u': 7, 'v': 8}, {'u': 7, 'v': 9}], 'source_file': 'wv2010.mtx', 'density': 0.3888888888888889, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0032.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0032.png', 'edge_connectivity': 1}","[1, 6, 8, 9]",4.0,"{'num_nodes': 9, 'num_edges': 14, 'edges': [{'u': 'A', 'v': 'B'}, {'u': 'A', 'v': 'D'}, {'u': 'A', 'v': 'E'}, {'u': 'A', 'v': 'G'}, {'u': 'C', 'v': 'B'}, {'u': 'C', 'v': 'D'}, {'u': 'C', 'v': 'F'}, {'u': 'F', 'v': 'D'}, {'u': 'E', 'v': 'B'}, {'u': 'E', 'v': 'D'}, {'u': 'D', 'v': 'G'}, {'u': 'D', 'v': 'I'}, {'u': 'G', 'v': 'H'}, {'u': 'G', 'v': 'I'}]}","['A', 'F', 'H', 'I']",33,csv,names
MIS,MIS,"We were sorting out patrol shifts at the block meeting and the job fell to me: pick the largest crew of partners for evening rounds while making sure no two people whoβve said they wonβt work together end up on the same team. The decision is which combination of folks gives the highest headcount; you judge that by counting team members, and the winning plan is the one with the most people. The must-follow rule is that any pair that refuses to collaborate canβt both be chosen, and nobody is duplicated. The specific names and who canβt pair with whom are listed below.
# total_people=9
# total_conflict_pairs=16
person_a,person_b
B,G
B,H
B,I
E,A
E,C
E,D
C,D
C,G
C,I
D,A
D,H
I,F
F,A
F,H
G,H
A,H
Oh, and when you send back the final pick, could you put it in this simple JSON shape so itβs easy to read by my script?
{
""solution"": [""person_id"", ""person_id"", ...]
}
This just means ""solution"" should be an array listing the chosen people (use their IDs exactly as given). Think of it like a tiny form: the array holds the IDs of the folks you're assigning to the evening patrols.
This JSON is just a sketch of the expected shape β not the actual answer.
Please use the identifiers exactly as they appear in the instance input β donβt rename or invent any 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': 'MIS', 'num_nodes': 9, 'num_edges': 16, 'edges': [{'u': 2, 'v': 7}, {'u': 2, 'v': 8}, {'u': 2, 'v': 9}, {'u': 5, 'v': 1}, {'u': 5, 'v': 3}, {'u': 5, 'v': 4}, {'u': 3, 'v': 4}, {'u': 3, 'v': 7}, {'u': 3, 'v': 9}, {'u': 4, 'v': 1}, {'u': 4, 'v': 8}, {'u': 9, 'v': 6}, {'u': 6, 'v': 1}, {'u': 6, 'v': 8}, {'u': 7, 'v': 8}, {'u': 1, 'v': 8}], 'source_file': 'wi2010.mtx', 'density': 0.4444444444444444, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0033.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0033.png', 'edge_connectivity': 3}","[2, 5, 6]",3.0,"{'num_nodes': 9, 'num_edges': 16, 'edges': [{'u': 'B', 'v': 'G'}, {'u': 'B', 'v': 'H'}, {'u': 'B', 'v': 'I'}, {'u': 'E', 'v': 'A'}, {'u': 'E', 'v': 'C'}, {'u': 'E', 'v': 'D'}, {'u': 'C', 'v': 'D'}, {'u': 'C', 'v': 'G'}, {'u': 'C', 'v': 'I'}, {'u': 'D', 'v': 'A'}, {'u': 'D', 'v': 'H'}, {'u': 'I', 'v': 'F'}, {'u': 'F', 'v': 'A'}, {'u': 'F', 'v': 'H'}, {'u': 'G', 'v': 'H'}, {'u': 'A', 'v': 'H'}]}","['B', 'E', 'F']",34,csv,names
MIS,MIS,"Thereβs a themed chapter to fill, and the editorβs challenge is to pick a collection of recipes thatβs as large as possible but doesnβt contain any duplicates or recipes that contradict one another. A better decision is the one that results in a bigger final list of unique, non-contradictory recipes β success can be checked by counting how many recipes are included. The concrete details appear below.
There are 10 recipes available in total and 17 num conflicting pairs.
| recipe_a_id | recipe_b_id |
|---|---|
| G | A |
| G | H |
| B | A |
| B | C |
| B | J |
| D | A |
| F | A |
| F | I |
| F | J |
| E | A |
| E | C |
| E | I |
| E | J |
| A | H |
| A | I |
| C | J |
| I | J |
Oh, and when you send back the chosen recipes, stick to a tiny JSON layout so it's easy for the editor to read. Something like this:
{
""solution"": [""recipe_id"", ""recipe_id"", ...]
}
Here ""solution"" is the list of recipe identifiers you're including in the chapter β just the IDs, nothing else. This JSON is just a sketch of the shape I expect, not the actual answer.
Please use the exact identifiers from the instance input β don't rename them or invent new labels. Valid identifiers look like plain numbers such as ""1"" or ""23"", single capital letters like ""A"" or ""B"", or a capital letter followed by digits like ""A1"" or ""X7"".","{'problem_type': 'MIS', 'num_nodes': 10, 'num_edges': 17, 'edges': [{'u': 7, 'v': 1}, {'u': 7, 'v': 8}, {'u': 2, 'v': 1}, {'u': 2, 'v': 3}, {'u': 2, 'v': 10}, {'u': 4, 'v': 1}, {'u': 6, 'v': 1}, {'u': 6, 'v': 9}, {'u': 6, 'v': 10}, {'u': 5, 'v': 1}, {'u': 5, 'v': 3}, {'u': 5, 'v': 9}, {'u': 5, 'v': 10}, {'u': 1, 'v': 8}, {'u': 1, 'v': 9}, {'u': 3, 'v': 10}, {'u': 9, 'v': 10}], 'source_file': 'vt2010.mtx', 'density': 0.37777777777777777, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0034.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0034.png', 'edge_connectivity': 1}","[2, 4, 5, 6, 7]",5.0,"{'num_nodes': 10, 'num_edges': 17, 'edges': [{'u': 'G', 'v': 'A'}, {'u': 'G', 'v': 'H'}, {'u': 'B', 'v': 'A'}, {'u': 'B', 'v': 'C'}, {'u': 'B', 'v': 'J'}, {'u': 'D', 'v': 'A'}, {'u': 'F', 'v': 'A'}, {'u': 'F', 'v': 'I'}, {'u': 'F', 'v': 'J'}, {'u': 'E', 'v': 'A'}, {'u': 'E', 'v': 'C'}, {'u': 'E', 'v': 'I'}, {'u': 'E', 'v': 'J'}, {'u': 'A', 'v': 'H'}, {'u': 'A', 'v': 'I'}, {'u': 'C', 'v': 'J'}, {'u': 'I', 'v': 'J'}]}","['B', 'D', 'E', 'F', 'G']",35,markdown_table,names
MIS,MIS,"We were putting together the vendor lineup for a craft market and discovered a few pairs of sellers that just wonβt tolerate each other at the same show. The task became choosing which vendors to invite into that single row so the row holds as many different booths as we can, while making sure no two incompatible vendors end up both accepted. To compare different choices, just count how many vendors are accepted in each; the choice with the highest count wins, and every vendor is considered once β no duplicates. The concrete vendor details and incompatibilities are shown below.
There are 8 vendors in total and 11 num conflict pairs.
| vendor_a | vendor_b |
|---|---|
| 4 | 3 |
| 4 | 7 |
| 3 | 2 |
| 3 | 8 |
| 1 | 5 |
| 1 | 7 |
| 1 | 8 |
| 5 | 6 |
| 5 | 8 |
| 6 | 8 |
| 7 | 8 |
Quick note on the answer format β Iβll keep it simple: give me a JSON object with a single key ""solution"" whose value is a list of the vendor identifiers youβre accepting for the row.
{
""solution"": [""vendor_id"", ""vendor_id"", ...]
}
Here ""solution"" is just the list of accepted vendor IDs in the order you like. Treat this like filling in a form: put each chosen vendor's identifier as a string in that array. This JSON is only a sketch of the shape I need, not the actual final choices.
Please use the identifiers exactly as they appear in the instance input β donβt rename them or invent new labels.
Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.","{'problem_type': 'MIS', 'num_nodes': 8, 'num_edges': 11, 'edges': [{'u': 4, 'v': 3}, {'u': 4, 'v': 7}, {'u': 3, 'v': 2}, {'u': 3, 'v': 8}, {'u': 1, 'v': 5}, {'u': 1, 'v': 7}, {'u': 1, 'v': 8}, {'u': 5, 'v': 6}, {'u': 5, 'v': 8}, {'u': 6, 'v': 8}, {'u': 7, 'v': 8}], 'source_file': 'vt2010.mtx', 'density': 0.39285714285714285, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0035.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0035.png', 'edge_connectivity': 1}","[1, 2, 4, 6]",4.0,"{'num_nodes': 8, 'num_edges': 11, 'edges': [{'u': 4, 'v': 3}, {'u': 4, 'v': 7}, {'u': 3, 'v': 2}, {'u': 3, 'v': 8}, {'u': 1, 'v': 5}, {'u': 1, 'v': 7}, {'u': 1, 'v': 8}, {'u': 5, 'v': 6}, {'u': 5, 'v': 8}, {'u': 6, 'v': 8}, {'u': 7, 'v': 8}]}","[1, 2, 4, 6]",36,markdown_table,1
MIS,MIS,"Iβm the tech lead juggling a stack of feature ideas for the next release, and the task is to pick a pack of features that work together β as many as possible, but never two that clash. The better plan is simply the one that ends up with more features chosen, so success is just counting how many items made the cut. Every picked feature has to come from the list and can only be chosen once, and no pair thatβs known to conflict can be included together. The exact feature list and which features clash will be shown below.
{
""total_feature_ideas"": 8,
""total_conflicting_pairs"": 11,
""edges"": [
{
""feature_a_id"": 6,
""feature_b_id"": 2
},
{
""feature_a_id"": 6,
""feature_b_id"": 7
},
{
""feature_a_id"": 5,
""feature_b_id"": 3
},
{
""feature_a_id"": 5,
""feature_b_id"": 4
},
{
""feature_a_id"": 5,
""feature_b_id"": 7
},
{
""feature_a_id"": 2,
""feature_b_id"": 4
},
{
""feature_a_id"": 2,
""feature_b_id"": 7
},
{
""feature_a_id"": 4,
""feature_b_id"": 7
},
{
""feature_a_id"": 0,
""feature_b_id"": 1
},
{
""feature_a_id"": 0,
""feature_b_id"": 7
},
{
""feature_a_id"": 3,
""feature_b_id"": 7
}
]
}
Also, when you send back your final pick, just drop a tiny JSON snippet in the same shape as below so it's easy to parse:
{
""solution"": [""feature_id"", ""feature_id"", ...]
}
This is just a sketch of the expected shape β ""solution"" is the list of features you want to include in the pack. Treat each string in the array as one chosen feature from the list shown in the instance; it's like ticking boxes on a simple form.
Important: 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': 'MIS', 'num_nodes': 8, 'num_edges': 11, 'edges': [{'u': 7, 'v': 3}, {'u': 7, 'v': 8}, {'u': 6, 'v': 4}, {'u': 6, 'v': 5}, {'u': 6, 'v': 8}, {'u': 3, 'v': 5}, {'u': 3, 'v': 8}, {'u': 5, 'v': 8}, {'u': 1, 'v': 2}, {'u': 1, 'v': 8}, {'u': 4, 'v': 8}], 'source_file': 'wv2010.mtx', 'density': 0.39285714285714285, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0036.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0036.png', 'edge_connectivity': 1}","[2, 4, 5, 7]",4.0,"{'num_nodes': 8, 'num_edges': 11, 'edges': [{'u': 6, 'v': 2}, {'u': 6, 'v': 7}, {'u': 5, 'v': 3}, {'u': 5, 'v': 4}, {'u': 5, 'v': 7}, {'u': 2, 'v': 4}, {'u': 2, 'v': 7}, {'u': 4, 'v': 7}, {'u': 0, 'v': 1}, {'u': 0, 'v': 7}, {'u': 3, 'v': 7}]}","[1, 3, 4, 6]",37,json,0
MIS,MIS,"Someone at the venue office is juggling a long list of bands and soloists and wants to assemble the largest possible show where no two performers have any known personal or contractual beef. The task is to decide who to invite; the winning decision is the one that produces the biggest roster. Success is determined by the number of distinct performers chosen (just add them up), but itβs important that no conflicting pair is included and that each musician appears only once. The specific names and relationships are shown below.
# total_performers_count=11
# total_conflict_pairs_count=19
performer_a,performer_b
10,2
10,5
10,9
11,5
11,6
11,7
9,2
9,4
9,6
9,7
8,5
8,7
1,4
1,6
6,4
6,7
3,5
7,5
5,2
Oh, and when you're ready to give the answer, please use a tiny JSON snippet like this so it's easy to check:
{
""solution"": [""performer_id"", ""performer_id"", ...]
}
Here ""solution"" is just the list of performers you're inviting β each entry is the ID of one musician on the roster. Think of it like filling in a short form: put each performerβs exact ID in the array, and thatβs your final pick. This is only a template showing the expected shape, not the actual lineup.
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': 'MIS', 'num_nodes': 11, 'num_edges': 19, 'edges': [{'u': 10, 'v': 2}, {'u': 10, 'v': 5}, {'u': 10, 'v': 9}, {'u': 11, 'v': 5}, {'u': 11, 'v': 6}, {'u': 11, 'v': 7}, {'u': 9, 'v': 2}, {'u': 9, 'v': 4}, {'u': 9, 'v': 6}, {'u': 9, 'v': 7}, {'u': 8, 'v': 5}, {'u': 8, 'v': 7}, {'u': 1, 'v': 4}, {'u': 1, 'v': 6}, {'u': 6, 'v': 4}, {'u': 6, 'v': 7}, {'u': 3, 'v': 5}, {'u': 7, 'v': 5}, {'u': 5, 'v': 2}], 'source_file': 'wa2010.mtx', 'density': 0.34545454545454546, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0037.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0037.png', 'edge_connectivity': 1}","[1, 3, 8, 10, 11]",5.0,"{'num_nodes': 11, 'num_edges': 19, 'edges': [{'u': 10, 'v': 2}, {'u': 10, 'v': 5}, {'u': 10, 'v': 9}, {'u': 11, 'v': 5}, {'u': 11, 'v': 6}, {'u': 11, 'v': 7}, {'u': 9, 'v': 2}, {'u': 9, 'v': 4}, {'u': 9, 'v': 6}, {'u': 9, 'v': 7}, {'u': 8, 'v': 5}, {'u': 8, 'v': 7}, {'u': 1, 'v': 4}, {'u': 1, 'v': 6}, {'u': 6, 'v': 4}, {'u': 6, 'v': 7}, {'u': 3, 'v': 5}, {'u': 7, 'v': 5}, {'u': 5, 'v': 2}]}","[1, 3, 8, 10, 11]",38,csv,1
MIS,MIS,"Recently a homeowner decided to finally hang up a bunch of frames in the living room and wanted to get as many different pieces up as possible. The catch: if two pictures are known to clash in style, they canβt both be on the wall at the same time. The way to tell which arrangement is best is to count the number of distinct pictures hanging β the higher the number, the better β and make sure each hung item is one of the originals, not a repeat. The exact details about which pictures exist and which pairs conflict are shown below.
There are 8 pictures count in total and 10 clashing pairs count.
| picture_one_id | picture_two_id |
|---|---|
| 2 | 3 |
| 2 | 4 |
| 2 | 7 |
| 1 | 4 |
| 1 | 8 |
| 3 | 5 |
| 4 | 5 |
| 4 | 6 |
| 4 | 7 |
| 4 | 8 |
Oh, and to keep things tidy, please give the final arrangement in this little JSON shape:
{
""solution"": [""picture_id"", ""picture_id"", ...]
}
Pretty simple: ""solution"" is the list of picture IDs you plan to hang (one entry per picture). Think of it as the form the answer should fill out β just the exact IDs listed in the input, nothing else. This JSON is only a sketch of the expected shape, not the actual answer.
Also, 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': 'MIS', 'num_nodes': 8, 'num_edges': 10, 'edges': [{'u': 2, 'v': 3}, {'u': 2, 'v': 4}, {'u': 2, 'v': 7}, {'u': 1, 'v': 4}, {'u': 1, 'v': 8}, {'u': 3, 'v': 5}, {'u': 4, 'v': 5}, {'u': 4, 'v': 6}, {'u': 4, 'v': 7}, {'u': 4, 'v': 8}], 'source_file': 'wi2010.mtx', 'density': 0.35714285714285715, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0038.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0038.png', 'edge_connectivity': 1}","[1, 5, 6, 7]",4.0,"{'num_nodes': 8, 'num_edges': 10, 'edges': [{'u': 2, 'v': 3}, {'u': 2, 'v': 4}, {'u': 2, 'v': 7}, {'u': 1, 'v': 4}, {'u': 1, 'v': 8}, {'u': 3, 'v': 5}, {'u': 4, 'v': 5}, {'u': 4, 'v': 6}, {'u': 4, 'v': 7}, {'u': 4, 'v': 8}]}","[1, 5, 6, 7]",39,markdown_table,1
MIS,MIS,"Recently the backyard was reorganized and the challenge became: fill the mixed bed with as many kinds of plants as possible, while making sure none of the selected species are known enemies in the soil or sunlight. The choice to make is a selection from the available species that gives the highest total number of different plants β simply count them to see which selection is better. Every item is either in or out (no repeats), and any two chosen species must be compatible. The exact species list and which pairs clash are shown below.
# total_species_available=10
# total_conflicting_pairs=17
species_a_id,species_b_id
0,3
0,6
0,7
0,8
2,4
2,7
2,8
9,1
9,3
9,7
1,3
1,4
1,7
6,8
7,5
7,8
8,5
If you want to hand me the final pick, just use the tiny JSON sketch below so it's easy to read and parse β nothing fancy, just the shape I expect.
{
""solution"": [""plant_id"", ""plant_id"", ...]
}
Here that JSON means: put the selected species' IDs into the ""solution"" list β one entry per plant you'd like in the bed. Think of each ""plant_id"" as a placeholder for whatever label the instance uses for a species.
This is only a template showing the expected shape, not the actual answer β you'll replace those placeholders with the real IDs from the instance.
Please make sure to use the identifiers exactly as they appear in the 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': 'MIS', 'num_nodes': 10, 'num_edges': 17, 'edges': [{'u': 1, 'v': 4}, {'u': 1, 'v': 7}, {'u': 1, 'v': 8}, {'u': 1, 'v': 9}, {'u': 3, 'v': 5}, {'u': 3, 'v': 8}, {'u': 3, 'v': 9}, {'u': 10, 'v': 2}, {'u': 10, 'v': 4}, {'u': 10, 'v': 8}, {'u': 2, 'v': 4}, {'u': 2, 'v': 5}, {'u': 2, 'v': 8}, {'u': 7, 'v': 9}, {'u': 8, 'v': 6}, {'u': 8, 'v': 9}, {'u': 9, 'v': 6}], 'source_file': 'wv2010.mtx', 'density': 0.37777777777777777, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0039.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0039.png', 'edge_connectivity': 2}","[3, 4, 6, 7]",4.0,"{'num_nodes': 10, 'num_edges': 17, 'edges': [{'u': 0, 'v': 3}, {'u': 0, 'v': 6}, {'u': 0, 'v': 7}, {'u': 0, 'v': 8}, {'u': 2, 'v': 4}, {'u': 2, 'v': 7}, {'u': 2, 'v': 8}, {'u': 9, 'v': 1}, {'u': 9, 'v': 3}, {'u': 9, 'v': 7}, {'u': 1, 'v': 3}, {'u': 1, 'v': 4}, {'u': 1, 'v': 7}, {'u': 6, 'v': 8}, {'u': 7, 'v': 5}, {'u': 7, 'v': 8}, {'u': 8, 'v': 5}]}","[2, 3, 5, 6]",40,csv,0
MIS,MIS,"Iβm a curator juggling a pile of artifacts and a bulletin of ownership notes β the task is to pick one single exhibit from the collection that shows as many different pieces as possible. The trick is any two items that have provenance or ownership problems canβt be shown together, so the better choice is the set that includes the most non-conflicting items. That βbestβ set is just the one with the highest headcount, which you get by counting how many artifacts are chosen, and each artifact can only be included once or left out. The exact list of items and who conflicts with whom is shown below.
{
""total_artifacts"": 10,
""conflict_pairs"": 17,
""edges"": [
{
""artifact_a"": 7,
""artifact_b"": 3
},
{
""artifact_a"": 7,
""artifact_b"": 4
},
{
""artifact_a"": 7,
""artifact_b"": 9
},
{
""artifact_a"": 8,
""artifact_b"": 0
},
{
""artifact_a"": 8,
""artifact_b"": 2
},
{
""artifact_a"": 8,
""artifact_b"": 4
},
{
""artifact_a"": 0,
""artifact_b"": 1
},
{
""artifact_a"": 0,
""artifact_b"": 6
},
{
""artifact_a"": 4,
""artifact_b"": 1
},
{
""artifact_a"": 4,
""artifact_b"": 2
},
{
""artifact_a"": 4,
""artifact_b"": 3
},
{
""artifact_a"": 4,
""artifact_b"": 5
},
{
""artifact_a"": 4,
""artifact_b"": 6
},
{
""artifact_a"": 4,
""artifact_b"": 9
},
{
""artifact_a"": 9,
""artifact_b"": 1
},
{
""artifact_a"": 6,
""artifact_b"": 1
},
{
""artifact_a"": 2,
""artifact_b"": 5
}
]
}
I'll hand you the result in a tiny, predictable shape so it's easy to plug into whatever you're using next. Something like this will do:
{
""solution"": [""artifact_id"", ""artifact_id"", ...]
}
Here ""solution"" is just the list of artifacts I pick for the exhibition β each entry is an artifact identifier from the instance input. Think of it like filling out a form field called ""solution"" with the IDs of the pieces you want to show. This JSON is only a sketch of the expected shape, not the actual answer.
Please use the exact identifiers from the instance input β do not rename them or invent new labels. Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.","{'problem_type': 'MIS', 'num_nodes': 10, 'num_edges': 17, 'edges': [{'u': 8, 'v': 4}, {'u': 8, 'v': 5}, {'u': 8, 'v': 10}, {'u': 9, 'v': 1}, {'u': 9, 'v': 3}, {'u': 9, 'v': 5}, {'u': 1, 'v': 2}, {'u': 1, 'v': 7}, {'u': 5, 'v': 2}, {'u': 5, 'v': 3}, {'u': 5, 'v': 4}, {'u': 5, 'v': 6}, {'u': 5, 'v': 7}, {'u': 5, 'v': 10}, {'u': 10, 'v': 2}, {'u': 7, 'v': 2}, {'u': 3, 'v': 6}], 'source_file': 'wa2010.mtx', 'density': 0.37777777777777777, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0040.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0040.png', 'edge_connectivity': 2}","[4, 6, 7, 9, 10]",5.0,"{'num_nodes': 10, 'num_edges': 17, 'edges': [{'u': 7, 'v': 3}, {'u': 7, 'v': 4}, {'u': 7, 'v': 9}, {'u': 8, 'v': 0}, {'u': 8, 'v': 2}, {'u': 8, 'v': 4}, {'u': 0, 'v': 1}, {'u': 0, 'v': 6}, {'u': 4, 'v': 1}, {'u': 4, 'v': 2}, {'u': 4, 'v': 3}, {'u': 4, 'v': 5}, {'u': 4, 'v': 6}, {'u': 4, 'v': 9}, {'u': 9, 'v': 1}, {'u': 6, 'v': 1}, {'u': 2, 'v': 5}]}","[3, 5, 6, 8, 9]",41,json,0
MIS,MIS,"Many libraries run into this: a curator wants a front table packed with titles, yet a few specific combinations are off-limits for display together. The curator must pick a set of distinct books, and the better selection is simply the one that results in the greatest number of books on the table while never placing any disallowed pair together. The concrete details will be shown below.
{
""total_books"": 12,
""num_restricted_pairs"": 23,
""edges"": [
{
""book_id_u"": 5,
""book_id_v"": 2
},
{
""book_id_u"": 5,
""book_id_v"": 6
},
{
""book_id_u"": 5,
""book_id_v"": 8
},
{
""book_id_u"": 5,
""book_id_v"": 11
},
{
""book_id_u"": 9,
""book_id_v"": 2
},
{
""book_id_u"": 9,
""book_id_v"": 3
},
{
""book_id_u"": 9,
""book_id_v"": 4
},
{
""book_id_u"": 9,
""book_id_v"": 10
},
{
""book_id_u"": 9,
""book_id_v"": 11
},
{
""book_id_u"": 2,
""book_id_v"": 4
},
{
""book_id_u"": 2,
""book_id_v"": 6
},
{
""book_id_u"": 2,
""book_id_v"": 11
},
{
""book_id_u"": 6,
""book_id_v"": 1
},
{
""book_id_u"": 6,
""book_id_v"": 8
},
{
""book_id_u"": 10,
""book_id_v"": 3
},
{
""book_id_u"": 10,
""book_id_v"": 7
},
{
""book_id_u"": 8,
""book_id_v"": 1
},
{
""book_id_u"": 8,
""book_id_v"": 3
},
{
""book_id_u"": 8,
""book_id_v"": 11
},
{
""book_id_u"": 7,
""book_id_v"": 0
},
{
""book_id_u"": 7,
""book_id_v"": 4
},
{
""book_id_u"": 1,
""book_id_v"": 3
},
{
""book_id_u"": 3,
""book_id_v"": 11
}
]
}
Oh, and to keep things tidy, please send your pick in this simple JSON layout so itβs easy to read and process:
{
""solution"": [""book_id"", ""book_id"", ...]
}
This just means ""solution"" is the list of books youβd put on the front table. Each entry in the array should be the identifier for a book from the instance (you're just filling in the labels). Think of it like a little form β this is the shape I expect, not the actual final answer.
Please use each identifier exactly as it appears in the instance input β donβt rename them or invent new labels. For example:
- plain numbers such as ""1"" or ""23""
- single capital letters like ""A"" or ""B""
- a capital letter followed by digits like ""A1"" or ""X7""","{'problem_type': 'MIS', 'num_nodes': 12, 'num_edges': 23, 'edges': [{'u': 6, 'v': 3}, {'u': 6, 'v': 7}, {'u': 6, 'v': 9}, {'u': 6, 'v': 12}, {'u': 10, 'v': 3}, {'u': 10, 'v': 4}, {'u': 10, 'v': 5}, {'u': 10, 'v': 11}, {'u': 10, 'v': 12}, {'u': 3, 'v': 5}, {'u': 3, 'v': 7}, {'u': 3, 'v': 12}, {'u': 7, 'v': 2}, {'u': 7, 'v': 9}, {'u': 11, 'v': 4}, {'u': 11, 'v': 8}, {'u': 9, 'v': 2}, {'u': 9, 'v': 4}, {'u': 9, 'v': 12}, {'u': 8, 'v': 1}, {'u': 8, 'v': 5}, {'u': 2, 'v': 4}, {'u': 4, 'v': 12}], 'source_file': 'wa2010.mtx', 'density': 0.3484848484848485, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0041.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0041.png', 'edge_connectivity': 1}","[1, 2, 5, 11, 12]",5.0,"{'num_nodes': 12, 'num_edges': 23, 'edges': [{'u': 5, 'v': 2}, {'u': 5, 'v': 6}, {'u': 5, 'v': 8}, {'u': 5, 'v': 11}, {'u': 9, 'v': 2}, {'u': 9, 'v': 3}, {'u': 9, 'v': 4}, {'u': 9, 'v': 10}, {'u': 9, 'v': 11}, {'u': 2, 'v': 4}, {'u': 2, 'v': 6}, {'u': 2, 'v': 11}, {'u': 6, 'v': 1}, {'u': 6, 'v': 8}, {'u': 10, 'v': 3}, {'u': 10, 'v': 7}, {'u': 8, 'v': 1}, {'u': 8, 'v': 3}, {'u': 8, 'v': 11}, {'u': 7, 'v': 0}, {'u': 7, 'v': 4}, {'u': 1, 'v': 3}, {'u': 3, 'v': 11}]}","[0, 1, 4, 10, 11]",42,json,0
MIS,MIS,"Many people forget that plugins can clash, so the adminβs goal is to get as many helpful add-ons running as possible without turning on any two that are incompatible. The decision is about which set to pick so the number of enabled plugins is maximized β measure that by simply counting enabled, distinct plugins, and make sure no conflicting duo is included. The exact list of plugins and the conflict pairs are shown below.
# num_plugins=10
# num_conflicts=17
plugin_a,plugin_b
1,6
1,7
1,8
8,2
8,5
8,9
9,2
9,3
9,5
10,3
10,4
5,3
5,4
5,6
5,7
6,4
6,7
Oh, and when you send the chosen set back, just toss it into a tiny JSON object like this β super simple:
{
""solution"": [""plugin_id"", ""plugin_id"", ...]
}
Here ""solution"" is just the list of plugins you want enabled, and each ""plugin_id"" is a placeholder for one of the actual plugin identifiers from the instance. Think of it like filling out a form: put each chosen pluginβs exact ID into that array. This block is only a sketch of the shape I expect, not the actual answer.
Please use the identifiers exactly as they appear in the instance input β 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': 'MIS', 'num_nodes': 10, 'num_edges': 17, 'edges': [{'u': 1, 'v': 6}, {'u': 1, 'v': 7}, {'u': 1, 'v': 8}, {'u': 8, 'v': 2}, {'u': 8, 'v': 5}, {'u': 8, 'v': 9}, {'u': 9, 'v': 2}, {'u': 9, 'v': 3}, {'u': 9, 'v': 5}, {'u': 10, 'v': 3}, {'u': 10, 'v': 4}, {'u': 5, 'v': 3}, {'u': 5, 'v': 4}, {'u': 5, 'v': 6}, {'u': 5, 'v': 7}, {'u': 6, 'v': 4}, {'u': 6, 'v': 7}], 'source_file': 'wy2010.mtx', 'density': 0.37777777777777777, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0042.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0042.png', 'edge_connectivity': 2}","[1, 2, 5, 10]",4.0,"{'num_nodes': 10, 'num_edges': 17, 'edges': [{'u': 1, 'v': 6}, {'u': 1, 'v': 7}, {'u': 1, 'v': 8}, {'u': 8, 'v': 2}, {'u': 8, 'v': 5}, {'u': 8, 'v': 9}, {'u': 9, 'v': 2}, {'u': 9, 'v': 3}, {'u': 9, 'v': 5}, {'u': 10, 'v': 3}, {'u': 10, 'v': 4}, {'u': 5, 'v': 3}, {'u': 5, 'v': 4}, {'u': 5, 'v': 6}, {'u': 5, 'v': 7}, {'u': 6, 'v': 4}, {'u': 6, 'v': 7}]}","[1, 2, 5, 10]",43,csv,1
MIS,MIS,"At the planning meeting the team wanted to pack the special issue with as many articles as it could hold while respecting that certain pairs were known to overlap and therefore shouldnβt both be included. The decision becomes selecting a collection of pieces that have no mutual overlap marks, and the way to compare collections is straightforward β count how many items are in each and prefer the one with the greatest count. No duplicate acceptances, and any pair flagged as overlapping cannot both appear. The concrete submission details and their overlaps are listed below.
# total_submissions=8
# total_overlap_flags=13
article_a_id,article_b_id
3,1
3,5
1,0
1,4
1,5
1,6
1,7
7,0
7,2
7,6
2,5
4,6
5,0
Oh, and one more thing β when you send back the chosen set, a simple JSON snippet like this is perfect:
{
""solution"": [""article_id"", ""article_id"", ...]
}
Think of ""solution"" as just the list of article IDs you want to include in the special issue β one entry per chosen piece. This is just a sketch of the expected shape, not the actual selection.
Please make sure to use the exact identifiers from the instance input β no renaming and no invented labels.
- for example: ""Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β"".","{'problem_type': 'MIS', 'num_nodes': 8, 'num_edges': 13, 'edges': [{'u': 4, 'v': 2}, {'u': 4, 'v': 6}, {'u': 2, 'v': 1}, {'u': 2, 'v': 5}, {'u': 2, 'v': 6}, {'u': 2, 'v': 7}, {'u': 2, 'v': 8}, {'u': 8, 'v': 1}, {'u': 8, 'v': 3}, {'u': 8, 'v': 7}, {'u': 3, 'v': 6}, {'u': 5, 'v': 7}, {'u': 6, 'v': 1}], 'source_file': 'wv2010.mtx', 'density': 0.4642857142857143, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0043.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0043.png', 'edge_connectivity': 2}","[1, 3, 4, 5]",4.0,"{'num_nodes': 8, 'num_edges': 13, 'edges': [{'u': 3, 'v': 1}, {'u': 3, 'v': 5}, {'u': 1, 'v': 0}, {'u': 1, 'v': 4}, {'u': 1, 'v': 5}, {'u': 1, 'v': 6}, {'u': 1, 'v': 7}, {'u': 7, 'v': 0}, {'u': 7, 'v': 2}, {'u': 7, 'v': 6}, {'u': 2, 'v': 5}, {'u': 4, 'v': 6}, {'u': 5, 'v': 0}]}","[0, 2, 3, 4]",44,csv,0
MIS,MIS,"Someone on the block is trying to deck their house with every cool string of lights they own, but they canβt run certain pairs at the same time because they interfere with each other. The decision is which combination of light sets to put up so the house looks fullest β measured by the total number of distinct sets used β while avoiding any incompatible pair. No set gets duplicated, and every set thatβs chosen must be compatible with all the others; the aim is simply to maximize that count. The exact inventory and the incompatibility notes are shown below.
# total_light_sets=11
# total_incompatible_pairs=18
light_set_id_u,light_set_id_v
J,G
J,H
J,I
K,C
K,I
G,A
G,D
G,F
I,C
I,D
D,C
D,F
B,A
B,C
B,E
B,F
F,C
E,C
If you want to give the answer in a neat, machine-friendly way, just follow this simple JSON shape when you reply β nothing fancy, just a plain list of the light sets you picked:
{
""solution"": [""light_id"", ""light_id"", ...]
}
""solution"" is the list of sets you'll hang up β each entry is the identifier for one of the light sets from the problem. Think of it like filling in a short form: list each chosen set's ID in that array. This block is just a sketch of the shape I expect, not the actual answer itself.
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': 'MIS', 'num_nodes': 11, 'num_edges': 18, 'edges': [{'u': 10, 'v': 7}, {'u': 10, 'v': 8}, {'u': 10, 'v': 9}, {'u': 11, 'v': 3}, {'u': 11, 'v': 9}, {'u': 7, 'v': 1}, {'u': 7, 'v': 4}, {'u': 7, 'v': 6}, {'u': 9, 'v': 3}, {'u': 9, 'v': 4}, {'u': 4, 'v': 3}, {'u': 4, 'v': 6}, {'u': 2, 'v': 1}, {'u': 2, 'v': 3}, {'u': 2, 'v': 5}, {'u': 2, 'v': 6}, {'u': 6, 'v': 3}, {'u': 5, 'v': 3}], 'source_file': 'wi2010.mtx', 'density': 0.32727272727272727, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0044.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0044.png', 'edge_connectivity': 1}","[1, 4, 5, 8, 11]",5.0,"{'num_nodes': 11, 'num_edges': 18, 'edges': [{'u': 'J', 'v': 'G'}, {'u': 'J', 'v': 'H'}, {'u': 'J', 'v': 'I'}, {'u': 'K', 'v': 'C'}, {'u': 'K', 'v': 'I'}, {'u': 'G', 'v': 'A'}, {'u': 'G', 'v': 'D'}, {'u': 'G', 'v': 'F'}, {'u': 'I', 'v': 'C'}, {'u': 'I', 'v': 'D'}, {'u': 'D', 'v': 'C'}, {'u': 'D', 'v': 'F'}, {'u': 'B', 'v': 'A'}, {'u': 'B', 'v': 'C'}, {'u': 'B', 'v': 'E'}, {'u': 'B', 'v': 'F'}, {'u': 'F', 'v': 'C'}, {'u': 'E', 'v': 'C'}]}","['A', 'D', 'E', 'H', 'K']",45,csv,names
MIS,MIS,"Thereβs a festival director juggling invitations: the goal is to invite the largest possible group of filmmakers while making sure no two of them are publicly at odds and would refuse to share the program. The difference between choices is just how many filmmakers end up on the final list β the better plan is the one with the highest count of distinct, non-conflicting guests. Each person on the list has to be a different filmmaker and canβt be paired with someone theyβre feuding with, and the exact lineup options and dispute pairs are shown below.
# total_filmmakers=12
# total_dispute_pairs=24
filmmaker_one_id,filmmaker_two_id
12,3
12,4
12,5
12,11
1,2
1,4
1,10
2,6
2,11
10,4
10,8
10,11
11,3
11,4
11,6
11,8
11,9
7,4
7,5
9,3
9,6
8,4
4,5
5,3
If you want to hand me the final guest list, just drop it in a tiny JSON snippet like this β real simple:
{
""solution"": [""filmmaker_id"", ""filmmaker_id"", ...]
}
Here, ""solution"" is the list of chosen filmmakers (one entry per invited person). Think of each string in the array as the exact ID from the instance β like filling out a short form with the names or codes you were given. This JSON is just a sketch of the shape I expect, not the actual answer.
Please make sure to use the identifiers exactly as they appear in the instance input β don't rename them or invent new labels.
Valid identifiers look like plain numbers such as β1β or β23β, single capital letters like βAβ or βBβ, or a capital letter followed by digits like βA1β or βX7β.","{'problem_type': 'MIS', 'num_nodes': 12, 'num_edges': 24, 'edges': [{'u': 12, 'v': 3}, {'u': 12, 'v': 4}, {'u': 12, 'v': 5}, {'u': 12, 'v': 11}, {'u': 1, 'v': 2}, {'u': 1, 'v': 4}, {'u': 1, 'v': 10}, {'u': 2, 'v': 6}, {'u': 2, 'v': 11}, {'u': 10, 'v': 4}, {'u': 10, 'v': 8}, {'u': 10, 'v': 11}, {'u': 11, 'v': 3}, {'u': 11, 'v': 4}, {'u': 11, 'v': 6}, {'u': 11, 'v': 8}, {'u': 11, 'v': 9}, {'u': 7, 'v': 4}, {'u': 7, 'v': 5}, {'u': 9, 'v': 3}, {'u': 9, 'v': 6}, {'u': 8, 'v': 4}, {'u': 4, 'v': 5}, {'u': 5, 'v': 3}], 'source_file': 'wy2010.mtx', 'density': 0.36363636363636365, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0045.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0045.png', 'edge_connectivity': 2}","[1, 7, 8, 9, 12]",5.0,"{'num_nodes': 12, 'num_edges': 24, 'edges': [{'u': 12, 'v': 3}, {'u': 12, 'v': 4}, {'u': 12, 'v': 5}, {'u': 12, 'v': 11}, {'u': 1, 'v': 2}, {'u': 1, 'v': 4}, {'u': 1, 'v': 10}, {'u': 2, 'v': 6}, {'u': 2, 'v': 11}, {'u': 10, 'v': 4}, {'u': 10, 'v': 8}, {'u': 10, 'v': 11}, {'u': 11, 'v': 3}, {'u': 11, 'v': 4}, {'u': 11, 'v': 6}, {'u': 11, 'v': 8}, {'u': 11, 'v': 9}, {'u': 7, 'v': 4}, {'u': 7, 'v': 5}, {'u': 9, 'v': 3}, {'u': 9, 'v': 6}, {'u': 8, 'v': 4}, {'u': 4, 'v': 5}, {'u': 5, 'v': 3}]}","[1, 7, 8, 9, 12]",46,csv,1
MIS,MIS,"A neighborhood group is trying to form a volunteer team for a fundraiser, trying to cram in as many helpers as they can without putting any two people together who have past disagreements. The decision is picking the final lineup; the superior lineup is the one with more people, determined by counting how many volunteers are on it. Each person may appear only once on the roster and no conflicting pair may both be included; the specific roster choices and conflict notes are detailed below.
There are 8 volunteers and 12 conflict pairs listed below:
Volunteer 4 conflicts with volunteer 0; both cannot be on the roster together.
Volunteer 4 conflicts with volunteer 1; both cannot be on the roster together.
Volunteer 4 conflicts with volunteer 2; both cannot be on the roster together.
Volunteer 4 conflicts with volunteer 3; both cannot be on the roster together.
Volunteer 4 conflicts with volunteer 5; both cannot be on the roster together.
Volunteer 1 conflicts with volunteer 0; both cannot be on the roster together.
Volunteer 0 conflicts with volunteer 2; both cannot be on the roster together.
Volunteer 0 conflicts with volunteer 3; both cannot be on the roster together.
Volunteer 0 conflicts with volunteer 6; both cannot be on the roster together.
Volunteer 7 conflicts with volunteer 2; both cannot be on the roster together.
Volunteer 7 conflicts with volunteer 5; both cannot be on the roster together.
Volunteer 7 conflicts with volunteer 6; both cannot be on the roster together.
Aim for the largest possible roster that avoids including any of these listed conflict pairs.
Also, when you send the final lineup back, please use this simple JSON shape so it's easy to read automatically:
{
""solution"": [""volunteer_id"", ""volunteer_id"", ...]
}
Think of ""solution"" as the roster: a list of volunteer IDs (one per chosen person). The example values are just placeholders showing the shape of the reply β they aren't the actual picks.
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': 'MIS', 'num_nodes': 8, 'num_edges': 12, 'edges': [{'u': 5, 'v': 1}, {'u': 5, 'v': 2}, {'u': 5, 'v': 3}, {'u': 5, 'v': 4}, {'u': 5, 'v': 6}, {'u': 2, 'v': 1}, {'u': 1, 'v': 3}, {'u': 1, 'v': 4}, {'u': 1, 'v': 7}, {'u': 8, 'v': 3}, {'u': 8, 'v': 6}, {'u': 8, 'v': 7}], 'source_file': 'vt2010.mtx', 'density': 0.42857142857142855, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0046.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0046.png', 'edge_connectivity': 2}","[2, 3, 4, 6, 7]",5.0,"{'num_nodes': 8, 'num_edges': 12, 'edges': [{'u': 4, 'v': 0}, {'u': 4, 'v': 1}, {'u': 4, 'v': 2}, {'u': 4, 'v': 3}, {'u': 4, 'v': 5}, {'u': 1, 'v': 0}, {'u': 0, 'v': 2}, {'u': 0, 'v': 3}, {'u': 0, 'v': 6}, {'u': 7, 'v': 2}, {'u': 7, 'v': 5}, {'u': 7, 'v': 6}]}","[1, 2, 3, 5, 6]",47,nl,0
MIS,MIS,"Out in the market, an angel has a shortlist and wants to back the biggest possible group of startups, but some pairs of startups have exclusivity pacts so itβs off-limits to fund both at once. What counts as a better decision is obvious β itβs the one that funds more different startups; to compare plans, simply count how many distinct companies are included. The practical rules are: picks come only from the shortlist, each startup appears only once in the picks, and no two picked startups can be in an exclusivity relationship. The detailed shortlist and the exclusivity pairings follow below.
The shortlist contains 11 startups with 20 exclusivity pacts, listed below:
Startups 7 and 0 are in an exclusivity pact and cannot both be funded.
Startups 7 and 1 are in an exclusivity pact and cannot both be funded.
Startups 7 and 3 are in an exclusivity pact and cannot both be funded.
Startups 7 and 5 are in an exclusivity pact and cannot both be funded.
Startups 7 and 8 are in an exclusivity pact and cannot both be funded.
Startups 10 and 0 are in an exclusivity pact and cannot both be funded.
Startups 10 and 1 are in an exclusivity pact and cannot both be funded.
Startups 10 and 5 are in an exclusivity pact and cannot both be funded.
Startups 10 and 6 are in an exclusivity pact and cannot both be funded.
Startups 9 and 0 are in an exclusivity pact and cannot both be funded.
Startups 9 and 4 are in an exclusivity pact and cannot both be funded.
Startups 9 and 6 are in an exclusivity pact and cannot both be funded.
Startups 2 and 3 are in an exclusivity pact and cannot both be funded.
Startups 2 and 8 are in an exclusivity pact and cannot both be funded.
Startups 3 and 1 are in an exclusivity pact and cannot both be funded.
Startups 3 and 8 are in an exclusivity pact and cannot both be funded.
Startups 4 and 0 are in an exclusivity pact and cannot both be funded.
Startups 4 and 8 are in an exclusivity pact and cannot both be funded.
Startups 0 and 5 are in an exclusivity pact and cannot both be funded.
Startups 0 and 8 are in an exclusivity pact and cannot both be funded.
Consider these 20 exclusivity constraints when choosing the largest compatible subset of the 11 startups.
Oh, and when you send your picks back, just use this simple JSON shape so it's easy to parse:
{
""solution"": [""startup_id"", ""startup_id"", ...]
}
This is just a sketch of the shape I expect: ""solution"" should be an array containing the identifiers of the startups you choose (one entry per startup). Keep it informalβthink of it like filling in a short form listing which startups to back.
Please use the exact identifiers from the instance input with 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': 'MIS', 'num_nodes': 11, 'num_edges': 20, 'edges': [{'u': 8, 'v': 1}, {'u': 8, 'v': 2}, {'u': 8, 'v': 4}, {'u': 8, 'v': 6}, {'u': 8, 'v': 9}, {'u': 11, 'v': 1}, {'u': 11, 'v': 2}, {'u': 11, 'v': 6}, {'u': 11, 'v': 7}, {'u': 10, 'v': 1}, {'u': 10, 'v': 5}, {'u': 10, 'v': 7}, {'u': 3, 'v': 4}, {'u': 3, 'v': 9}, {'u': 4, 'v': 2}, {'u': 4, 'v': 9}, {'u': 5, 'v': 1}, {'u': 5, 'v': 9}, {'u': 1, 'v': 6}, {'u': 1, 'v': 9}], 'source_file': 'wa2010.mtx', 'density': 0.36363636363636365, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0047.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0047.png', 'edge_connectivity': 2}","[2, 3, 5, 6, 7]",5.0,"{'num_nodes': 11, 'num_edges': 20, 'edges': [{'u': 7, 'v': 0}, {'u': 7, 'v': 1}, {'u': 7, 'v': 3}, {'u': 7, 'v': 5}, {'u': 7, 'v': 8}, {'u': 10, 'v': 0}, {'u': 10, 'v': 1}, {'u': 10, 'v': 5}, {'u': 10, 'v': 6}, {'u': 9, 'v': 0}, {'u': 9, 'v': 4}, {'u': 9, 'v': 6}, {'u': 2, 'v': 3}, {'u': 2, 'v': 8}, {'u': 3, 'v': 1}, {'u': 3, 'v': 8}, {'u': 4, 'v': 0}, {'u': 4, 'v': 8}, {'u': 0, 'v': 5}, {'u': 0, 'v': 8}]}","[1, 2, 4, 5, 6]",48,nl,0
MIS,MIS,"Recently the grounds crew was put in charge of picking trees for several new beds and the brief was to maximize diversity. In plain terms: build the largest possible list of distinct tree varieties β the plan with the higher number of unique types is better, so the tally of selected varieties decides it. The limitation is botanical: any pair of varieties that are known to cross-inhibit canβt both be included, and selections must be single, non-repeated entries from the available list. The exact options and which pairs clash follow below.
{
""total_varieties"": 8,
""total_cross_inhibitions"": 14,
""edges"": [
{
""variety_a"": 1,
""variety_b"": 6
},
{
""variety_a"": 1,
""variety_b"": 7
},
{
""variety_a"": 4,
""variety_b"": 0
},
{
""variety_a"": 4,
""variety_b"": 2
},
{
""variety_a"": 4,
""variety_b"": 5
},
{
""variety_a"": 3,
""variety_b"": 0
},
{
""variety_a"": 3,
""variety_b"": 5
},
{
""variety_a"": 3,
""variety_b"": 7
},
{
""variety_a"": 7,
""variety_b"": 2
},
{
""variety_a"": 7,
""variety_b"": 5
},
{
""variety_a"": 7,
""variety_b"": 6
},
{
""variety_a"": 5,
""variety_b"": 0
},
{
""variety_a"": 5,
""variety_b"": 2
},
{
""variety_a"": 2,
""variety_b"": 0
}
]
}
Oh, and when you're ready to send the picks back, please follow this simple JSON layout so it's easy to read and check:
{
""solution"": [""variety_id"", ""variety_id"", ...]
}
This just means ""solution"" is a list of the tree-variety identifiers you've chosen (one identifier per chosen variety). The placeholder variety_id stands for whatever labels the instance uses for each variety β it's just showing the shape we expect, not the real answer.
The JSON above is only a sketch of the expected shape, not your final selection. Make sure to 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': 'MIS', 'num_nodes': 8, 'num_edges': 14, 'edges': [{'u': 2, 'v': 7}, {'u': 2, 'v': 8}, {'u': 5, 'v': 1}, {'u': 5, 'v': 3}, {'u': 5, 'v': 6}, {'u': 4, 'v': 1}, {'u': 4, 'v': 6}, {'u': 4, 'v': 8}, {'u': 8, 'v': 3}, {'u': 8, 'v': 6}, {'u': 8, 'v': 7}, {'u': 6, 'v': 1}, {'u': 6, 'v': 3}, {'u': 3, 'v': 1}], 'source_file': 'wv2010.mtx', 'density': 0.5, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0048.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0048.png', 'edge_connectivity': 2}","[2, 4, 5]",3.0,"{'num_nodes': 8, 'num_edges': 14, 'edges': [{'u': 1, 'v': 6}, {'u': 1, 'v': 7}, {'u': 4, 'v': 0}, {'u': 4, 'v': 2}, {'u': 4, 'v': 5}, {'u': 3, 'v': 0}, {'u': 3, 'v': 5}, {'u': 3, 'v': 7}, {'u': 7, 'v': 2}, {'u': 7, 'v': 5}, {'u': 7, 'v': 6}, {'u': 5, 'v': 0}, {'u': 5, 'v': 2}, {'u': 2, 'v': 0}]}","[1, 3, 4]",49,json,0
MIS,MIS,"Someone in the neighborhood is arranging mantelpieces and wants to show off the most decorations they can without putting any two that interfere side by side. The job is to pick which decorations to display so the mantel ends up with the highest possible number of items, while ensuring no known-wobbly or interfering pair is included at the same time. Every item is considered individually β no duplicates, no half-placements β and the way to tell which setup wins is by counting the number of decorations that remain after removing any arrangements that include a bad pair. The list of actual ornaments and the problem pairs follows below.
# total_ornaments=12
# conflicting_pairs_count=21
ornament_one,ornament_two
G,A
G,C
G,I
G,J
G,K
C,K
C,L
H,E
H,K
H,L
D,A
D,B
D,J
I,A
I,B
I,E
I,K
B,E
B,F
E,F
J,A
Oh, and when you send back your selection, please use this simple JSON shape β it's just the form I expect:
{
""solution"": [""decoration_id"", ""decoration_id"", ...]
}
Think of ""solution"" as the list of decoration IDs you want to display on the mantel. Keep it light and exact: each entry should be the exact ID from the problem input (don't rename them or invent new labels). The JSON above is just a sketch of the shape I need, not the actual answer.
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': 'MIS', 'num_nodes': 12, 'num_edges': 21, 'edges': [{'u': 7, 'v': 1}, {'u': 7, 'v': 3}, {'u': 7, 'v': 9}, {'u': 7, 'v': 10}, {'u': 7, 'v': 11}, {'u': 3, 'v': 11}, {'u': 3, 'v': 12}, {'u': 8, 'v': 5}, {'u': 8, 'v': 11}, {'u': 8, 'v': 12}, {'u': 4, 'v': 1}, {'u': 4, 'v': 2}, {'u': 4, 'v': 10}, {'u': 9, 'v': 1}, {'u': 9, 'v': 2}, {'u': 9, 'v': 5}, {'u': 9, 'v': 11}, {'u': 2, 'v': 5}, {'u': 2, 'v': 6}, {'u': 5, 'v': 6}, {'u': 10, 'v': 1}], 'source_file': 'wv2010.mtx', 'density': 0.3181818181818182, 'viz_instance': 'generated_data/MIS/viz/MIS_S/instance_0049.png', 'viz_solution': 'generated_data/MIS/viz/MIS_S/solution_0049.png', 'edge_connectivity': 2}","[3, 4, 6, 8, 9]",5.0,"{'num_nodes': 12, 'num_edges': 21, 'edges': [{'u': 'G', 'v': 'A'}, {'u': 'G', 'v': 'C'}, {'u': 'G', 'v': 'I'}, {'u': 'G', 'v': 'J'}, {'u': 'G', 'v': 'K'}, {'u': 'C', 'v': 'K'}, {'u': 'C', 'v': 'L'}, {'u': 'H', 'v': 'E'}, {'u': 'H', 'v': 'K'}, {'u': 'H', 'v': 'L'}, {'u': 'D', 'v': 'A'}, {'u': 'D', 'v': 'B'}, {'u': 'D', 'v': 'J'}, {'u': 'I', 'v': 'A'}, {'u': 'I', 'v': 'B'}, {'u': 'I', 'v': 'E'}, {'u': 'I', 'v': 'K'}, {'u': 'B', 'v': 'E'}, {'u': 'B', 'v': 'F'}, {'u': 'E', 'v': 'F'}, {'u': 'J', 'v': 'A'}]}","['C', 'D', 'F', 'H', 'I']",50,csv,names
|