House allocation problem

From HandWiki

In economics and computer science, the house allocation problem is the problem of assigning objects to people with different preferences, such that each person receives exactly one object. The name "house allocation" comes from the main motivating application, which is assigning dormitory houses to students.[1] Other commonly used terms are assignment problem and one-sided matching. When agents already own houses (and may trade them with other agents), the problem is often called a housing market.[2] In house allocation problems, it is assumed that monetary transfers are not allowed; the variant in which monetary transfers are allowed is known as rental harmony.

Definitions

There are n people (also called: agents), and m objects (also called: houses). The agents may have different preferences over the houses. They may express their preferences in various ways:

  • Binary valuations: each agent values each house at either 1 (which means that the agent likes the house), or 0 (which means that the agent dislikes the house).
  • Preference ranking: each agent ranks the houses from best to worst. The ranking may be strict (no indifferences) or weak (indifferences allowed).
  • Cardinal utility: each agent assigns a non-negative numeric value to each house.

Several considerations may be important in designing algorithms for house allocation.

  • Pareto efficiency (PE) - no other allocation is better for some agents and not worse to all agents.
  • Fairness - can be defined in various ways, for example, envy-freeness (EF) - no agent should envy another agent.
  • Strategyproofness (SP) - each agent has an incentive to report his/her true preferences to the algorithm.
  • Individual rationality (IR) - no agent should lose from participating in the algorithm.

Efficient allocations

In economics, the primary efficiency requirement in house allocation is PE. There are various algorithms attaining a PE allocation in various settings.

Probably the simplest algorithm for house allocation is serial dictatorship: the agents are ordered in some arbitrary order (e.g. by seniority), and each agent in turn picks the best remaining house by his/her preferences. This algorithm is obviously SP. If the agents' preferences are strict, then it finds a PE allocation. However, it may be very unfair towards the agents who pick last. It can be made fairer (in expectation) by choosing the order uniformly at random; this leads to the mechanism called random serial dictatorship. The mechanism is PE ex-post, but it is not PE ex-ante; see fair random assignment for other randomized mechanisms which are ex-ante PE.

When each agent already owns a house, fairness considerations are less important, it is more important to guarantee to agents that they will not lose from participating (IR). The top trading cycle algorithm is the unique algorithm which guarantees IR, PE and SP. With strict preferences, TTC finds the unique core-stable allocation.[3]

Abdulkadiroglu and Sönmez[1] consider an extended setting in which some agents already own a house while some others are house-less. Their mechanism is IR, PE and SP. They present two algorithms that implement this mechanism.

Ergin[4] considers rules that are also consistent, that is, their predictions do not depend of the order in which the assignments are realized.

In computer science and operations research, the primary efficiency requirement is maximizing the sum of utilities. Finding a house allocation maximizing the sum of utilities is equivalent to finding a maximum-weight matching in a weighted bipartite graph; it is also called the assignment problem.

Fair allocations

Algorithmic problems related to fairness of the matching have been studied in several contexts.

When agents have binary valuations, their "like" relations define a bipartite graph on the sets of agents and houses. An envy-free house allocation corresponds to an envy-free matching in this graph. The following algorithmic problems have been studied.

  • Deciding whether a complete EF allocation exists. This holds iff there exists a matching that saturates all the agents; this can be decided in polynomial time by just finding a maximum cardinality matching in the bipartite graph.
  • Finding a partial EF allocation of maximum cardinality. Aigner-Horev and Segal-Halevi[5]:Thm.1.6(a) present a polytime algorithm.
  • Finding a partial EF allocation of maximum cardinality and minimum cost (where each edge has a pre-specified cost for society). Aigner-Horev and Segal-Halevi[5]:Thm.1.6(b) present a polytime algorithm.
  • Finding a complete EF allocation, in which the number of envious agents is minimized. Kamiyama, Manurangsi and Suksompong[6]:Thm.3.5prove that it is NP-hard. The proof is by reduction from the minimum coverage (aka bipartite expansion) problem. Madathil, Misra and Sethia[7] prove that it is NP-hard even when each agent values at most 2 houses, and W[1]-hard when parameterized by the number of envious agents. The proof is by reduction from Maximum clique problem. However, the problem is fixed-parameter tractable when parameterized by the total number of house types and agent types, and can be solved efficiently when agents have "extremal intervals" preferences.
  • Finding a complete EF allocation, in which the maximum number of agents envied by a single agent is minimized. Madathil, Misra and Sethia[7] prove that it is NP-hard even when each agent values at most 2 houses, every house is approved by a constant number of agents, and the maximum allowed envy is just 1. The proof is by reduction from Maximum independent set on cubic graphs. However, the problem is fixed-parameter tractable when parameterized by the total number of house types and agent types, and can be solved efficiently when agents have "extremal intervals" preferences.

When agents have cardinal valuations, the graph of agents and houses becomes a weighted bipartite graph. The following algorithmic problems have been studied.

  • Deciding whether a complete EF allocation exists.
    • When m=n, all houses must be assigned, so an allocation is EF iff each agent gets a house with a highest value. Therefore, it is possible to reduce the original graph to an unweighted graph, in which each agent is adjacent only to his highest-valued houses, and look for a perfect matching in this graph.
    • When m>n, the above algorithm may not work, since not all houses must be assigned: even if a single house is most-preferred by all agents, there may exist a complete EF allocation in which this specific house is not assigned. Gan, Suksompong and Voudouris[8] present a polynomial-time algorithm that decides, in polynomial time, whether a complete EF allocation exists for any mn. Their algorithm uses, as a subroutine, an algorithm for finding an inclusion-minimal Hall violator.
  • Deciding whether a complete local-envy-free allocation exists. Local envy-freeness means that the agents are located on a social network, and they only envy their neighbors in that network. Beynier, Chevaleyre, Gourves, Harutyunyan, Lesca, Maudet and Wilczynski[9] study the problem of deciding whether a complete local-envy-free allocation exists for m=n, for various network structures.
  • Finding a complete EF allocation, in which the number of non-envious agents is maximized. Kamiyama, Manurangsi and Suksompong.[6]:Thm.3.1 prove that, under common complexity theoretic assumption, this problem is hard to approximate. In particular, if NP cannot be solved in subexponential time, then it cannot be approximated to within a factor of [math]\displaystyle{ n^{\gamma} }[/math] for some [math]\displaystyle{ \gamma \gt 0 }[/math]; if the small set expansion hypothesis is true, then it cannot be approximated to within a factor of [math]\displaystyle{ n^{\gamma} }[/math] for any [math]\displaystyle{ \gamma \lt 1 }[/math] (for [math]\displaystyle{ \gamma =1 }[/math] it is trivial to approximate: just give one agent his favorite house, and allocate the other agents arbitrarily). The proof is by reduction from the maximum balanced biclique problem.
  • Deciding whether a complete proportional allocation exists. Kamiyama, Manurangsi and Suksompong[6]:Thm.4.1 prove that it is NP-complete, by reduction from exact 3-set cover.
  • Deciding whether a complete equitable allocation exists. Kamiyama, Manurangsi and Suksompong[6]:Thm.5.1 present a polytime algorithm.
  • Finding a partial EF allocation of maximum cardinality. The runtime complexity of this problem is open.[5]:open question 2

Related problems

  • Assignment problem - each agent must get a single object. The goal is to maximize the sum of valuations, or minimize the sum of costs.
  • Fair random assignment - each agent must get a single object. Randomization is allowed. The allocation should be fair and efficient in expectation.
  • Rental harmony - each agent must get a single object and pay a price; the allocation of objects+prices should be envy-free.
  • Envy-free matching - some agents may remain unallocated, as long as they do not like any of the allocated houses.
  • Fair item allocation - each agent may get any number of objects.

References

  1. 1.0 1.1 Abdulkadiroğlu, Atila; Sönmez, Tayfun (1999-10-01). "House Allocation with Existing Tenants" (in en). Journal of Economic Theory 88 (2): 233–260. doi:10.1006/jeth.1999.2553. ISSN 0022-0531. https://www.sciencedirect.com/science/article/abs/pii/S002205319992553X. 
  2. Aziz, Haris; Keijzer, Bart de (2012). "Housing Markets with Indifferences: A Tale of Two Mechanisms" (in en). Proceedings of the AAAI Conference on Artificial Intelligence 26 (1): 1249–1255. doi:10.1609/aaai.v26i1.8239. ISSN 2374-3468. https://ojs.aaai.org/index.php/AAAI/article/view/8239. 
  3. Roth, Alvin E. (1982-01-01). "Incentive compatibility in a market with indivisible goods" (in en). Economics Letters 9 (2): 127–132. doi:10.1016/0165-1765(82)90003-9. ISSN 0165-1765. 
  4. Ergin, Haluk İ. (2000-08-01). "Consistency in house allocation problems" (in en). Journal of Mathematical Economics 34 (1): 77–97. doi:10.1016/S0304-4068(99)00038-5. ISSN 0304-4068. https://www.sciencedirect.com/science/article/abs/pii/S0304406899000385. 
  5. 5.0 5.1 5.2 Segal-Halevi, Erel; Aigner-Horev, Elad (2022). "Envy-free matchings in bipartite graphs and their applications to fair division" (in en). Information Sciences 587: 164–187. doi:10.1016/j.ins.2021.11.059. 
  6. 6.0 6.1 6.2 6.3 Kamiyama, Naoyuki; Manurangsi, Pasin; Suksompong, Warut (2021-07-01). "On the complexity of fair house allocation" (in en). Operations Research Letters 49 (4): 572–577. doi:10.1016/j.orl.2021.06.006. ISSN 0167-6377. https://www.sciencedirect.com/science/article/abs/pii/S0167637721000900. 
  7. 7.0 7.1 Madathil, Jayakrishnan; Misra, Neeldhara; Sethia, Aditi (2023-05-30). "The Complexity of Minimizing Envy in House Allocation". Proceedings of the 2023 International Conference on Autonomous Agents and Multiagent Systems. AAMAS '23 (Richland, SC: International Foundation for Autonomous Agents and Multiagent Systems): 2673–2675. ISBN 978-1-4503-9432-1. https://dl.acm.org/doi/abs/10.5555/3545946.3599039. 
  8. Gan, Jiarui; Suksompong, Warut; Voudouris, Alexandros A. (2019-09-01). "Envy-freeness in house allocation problems" (in en). Mathematical Social Sciences 101: 104–106. doi:10.1016/j.mathsocsci.2019.07.005. ISSN 0165-4896. https://www.sciencedirect.com/science/article/abs/pii/S0165489619300599. 
  9. Beynier, Aurélie; Chevaleyre, Yann; Gourvès, Laurent; Harutyunyan, Ararat; Lesca, Julien; Maudet, Nicolas; Wilczynski, Anaëlle (2019-09-01). "Local envy-freeness in house allocation problems" (in en). Autonomous Agents and Multi-Agent Systems 33 (5): 591–627. doi:10.1007/s10458-019-09417-x. ISSN 1573-7454. https://doi.org/10.1007/s10458-019-09417-x.