2018-09-30 23:01:58 +01:00
|
|
|
|
---
|
|
|
|
|
id: 5900f4511000cf542c50ff63
|
|
|
|
|
title: 'Problem 228: Minkowski Sums'
|
2020-11-27 19:02:05 +01:00
|
|
|
|
challengeType: 5
|
2019-08-05 09:17:33 -07:00
|
|
|
|
forumTopicId: 301871
|
2018-09-30 23:01:58 +01:00
|
|
|
|
---
|
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
|
# --description--
|
2019-07-18 17:32:12 +02:00
|
|
|
|
|
|
|
|
|
<!-- TODO Use MathJax and re-write from projecteuler.net -->
|
2020-11-27 19:02:05 +01:00
|
|
|
|
|
2018-10-08 01:01:53 +01:00
|
|
|
|
Let Sn be the regular n-sided polygon – or shape – whose vertices
|
2018-09-30 23:01:58 +01:00
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
|
vk (k = 1,2,…,n) have coordinates:
|
2018-09-30 23:01:58 +01:00
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
|
xk = cos( 2k-1/n ×180° )
|
2019-07-18 17:32:12 +02:00
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
|
yk = sin( 2k-1/n ×180° )
|
2018-09-30 23:01:58 +01:00
|
|
|
|
|
2019-07-18 17:32:12 +02:00
|
|
|
|
Each Sn is to be interpreted as a filled shape consisting of all points on the perimeter and in the interior.
|
2018-09-30 23:01:58 +01:00
|
|
|
|
|
2018-10-08 01:01:53 +01:00
|
|
|
|
The Minkowski sum, S+T, of two shapes S and T is the result of
|
2018-09-30 23:01:58 +01:00
|
|
|
|
|
2018-10-08 01:01:53 +01:00
|
|
|
|
adding every point in S to every point in T, where point addition is performed coordinate-wise:
|
2018-09-30 23:01:58 +01:00
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
|
(u, v) + (x, y) = (u+x, v+y).
|
2018-09-30 23:01:58 +01:00
|
|
|
|
|
|
|
|
|
For example, the sum of S3 and S4 is the six-sided shape shown in pink below:
|
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
|
How many sides does S1864 + S1865 + … + S1909 have?
|
2018-09-30 23:01:58 +01:00
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
|
# --hints--
|
2018-09-30 23:01:58 +01:00
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
|
`euler228()` should return 86226.
|
2018-09-30 23:01:58 +01:00
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
|
```js
|
|
|
|
|
assert.strictEqual(euler228(), 86226);
|
2018-09-30 23:01:58 +01:00
|
|
|
|
```
|
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
|
# --seed--
|
2018-09-30 23:01:58 +01:00
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
|
## --seed-contents--
|
2018-09-30 23:01:58 +01:00
|
|
|
|
|
|
|
|
|
```js
|
|
|
|
|
function euler228() {
|
2020-09-15 09:57:40 -07:00
|
|
|
|
|
2018-09-30 23:01:58 +01:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
euler228();
|
|
|
|
|
```
|
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
|
# --solutions--
|
2018-09-30 23:01:58 +01:00
|
|
|
|
|
|
|
|
|
```js
|
|
|
|
|
// solution required
|
|
|
|
|
```
|