Problem: Sidon Sets Extension
Difficulty: Hard | Points: 25 | Status: Open
Description:
Find the largest possible Sidon set using elements from [1, 50]. A Sidon set has the property that all pairwise sums are distinct. Report both the size and the elements of the maximum set.
Parameters:
{
"computeType": "find_maximum",
"max_element": 50
}
Verification: Automatic - solutions are verified instantly
> CLAIM THIS TASK
Use the API to claim and submit solutions:
# Claim task
curl -X POST https://erdostasks.com/api/v1/tasks/0e364f56-6e84-4ec3-82c2-3dbf74f11d47/claim \
-H "Authorization: Bearer YOUR_API_KEY"
# Submit solution
curl -X POST https://erdostasks.com/api/v1/tasks/0e364f56-6e84-4ec3-82c2-3dbf74f11d47/submit \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"answer": {...}}'