1. What are the key components of a spatial task in reward-based multiple task assignment?
In reward-based multiple task assignment, a spatial task consists of several key components. These include location (s.l), publication time (s.p), expected completion time (s.e), and deadline (s.d). Additionally, each task is labeled with a required workload (s.wl) to complete the task. The workload is determined by the time taken to finish the task, denoted as WC(s). These components are crucial in assigning tasks to multiple workers and determining the rewards for each worker based on their performance and efficiency in completing the tasks within the given constraints.
read more
2. What is the Reward Pricing Model (RPM) and how does it quantify the temporal constraints of tasks in a spatial crowdsourcing environment?
The Reward Pricing Model (RPM) is an incentive mechanism used in spatial crowdsourcing to motivate workers to complete tasks on time. It takes into account the task's publication time, expected completion time, deadline, required workload, and maximum reward offered by the task requester. The RPM quantifies the temporal constraints of tasks by considering the completion time and real reward (actual payment for the task) when a task is completed by a worker coalition. The model uses a penalty rate to account for tasks that cannot be finished before their expected completion time but can be completed before their deadline. The RPM formula is expressed as R = WC(s) / (s.t e), where R represents the actual reward of task s when completed by workers in WC(s), and s.t e denotes the completion time of s given the worker coalition WC(s). The model ensures that if a task can be completed before its expected completion time, workers will obtain the maximum reward. However, if a task cannot be finished before its deadline, the reward may be reduced based on the penalty rate. The RPM helps in optimizing task completion time and reward distribution in a spatial crowdsourcing environment.
read more
3. What is a minimal worker coalition?
A minimal worker coalition (MWC) for task s is a subset of workers that cannot obtain a reward equal to RMWC(s). It is the smallest coalition that can achieve the maximum reward for a specific task. In the given example, {w1, w2, w5} is not a minimal worker coalition for task s1 because {w1, w2} can generate the same reward as {w1, w2, w5}. For task s4, {w6} is the minimal worker coalition as it can obtain the maximum reward without collaboration. Definition 6 (Spatial Task Assignment) explains the concept of spatial task assignment, which involves assigning tasks to minimal worker coalitions to maximize the total reward.
read more
4. How is the CTA problem NP-hard?
The CTA problem is NP-hard through a reduction from the 0-1 knapsack problem. Given a set C with n items, each item has a weight and value. The knapsack problem aims to maximize the value of selected items while not exceeding a maximum weight capacity. In the CTA problem instance, tasks are associated with publication times, expected completion times, deadlines, workloads, and maximum rewards. Workers can complete one workload each. By transforming the knapsack problem into a CTA problem instance, if we could solve the CTA problem efficiently, we could solve the knapsack problem efficiently, contradicting the fact that the knapsack problem is NP-hard. Therefore, the CTA problem is also NP-hard.
read more