72 lines
2.1 KiB
Markdown
72 lines
2.1 KiB
Markdown
![]() |
---
|
|||
|
id: 5900f49a1000cf542c50ffac
|
|||
|
challengeType: 5
|
|||
|
title: 'Problem 300: Protein folding'
|
|||
|
---
|
|||
|
|
|||
|
## Description
|
|||
|
<section id='description'>
|
|||
|
In a very simplified form, we can consider proteins as strings consisting of hydrophobic (H) and polar (P) elements, e.g. HHPPHHHPHHPH.
|
|||
|
For this problem, the orientation of a protein is important; e.g. HPP is considered distinct from PPH. Thus, there are 2n distinct proteins consisting of n elements.
|
|||
|
|
|||
|
When one encounters these strings in nature, they are always folded in such a way that the number of H-H contact points is as large as possible, since this is energetically advantageous.
|
|||
|
As a result, the H-elements tend to accumulate in the inner part, with the P-elements on the outside.
|
|||
|
Natural proteins are folded in three dimensions of course, but we will only consider protein folding in two dimensions.
|
|||
|
|
|||
|
The figure below shows two possible ways that our example protein could be folded (H-H contact points are shown with red dots).
|
|||
|
|
|||
|
|
|||
|
|
|||
|
The folding on the left has only six H-H contact points, thus it would never occur naturally.
|
|||
|
On the other hand, the folding on the right has nine H-H contact points, which is optimal for this string.
|
|||
|
|
|||
|
Assuming that H and P elements are equally likely to occur in any position along the string, the average number of H-H contact points in an optimal folding of a random protein string of length 8 turns out to be 850 / 28=3.3203125.
|
|||
|
|
|||
|
What is the average number of H-H contact points in an optimal folding of a random protein string of length 15?
|
|||
|
Give your answer using as many decimal places as necessary for an exact result.
|
|||
|
</section>
|
|||
|
|
|||
|
## Instructions
|
|||
|
<section id='instructions'>
|
|||
|
|
|||
|
</section>
|
|||
|
|
|||
|
## Tests
|
|||
|
<section id='tests'>
|
|||
|
|
|||
|
```yml
|
|||
|
- text: <code>euler300()</code> should return 8.0540771484375.
|
|||
|
testString: 'assert.strictEqual(euler300(), 8.0540771484375, "<code>euler300()</code> should return 8.0540771484375.");'
|
|||
|
|
|||
|
```
|
|||
|
|
|||
|
</section>
|
|||
|
|
|||
|
## Challenge Seed
|
|||
|
<section id='challengeSeed'>
|
|||
|
|
|||
|
<div id='js-seed'>
|
|||
|
|
|||
|
```js
|
|||
|
function euler300() {
|
|||
|
// Good luck!
|
|||
|
return true;
|
|||
|
}
|
|||
|
|
|||
|
euler300();
|
|||
|
```
|
|||
|
|
|||
|
</div>
|
|||
|
|
|||
|
|
|||
|
|
|||
|
</section>
|
|||
|
|
|||
|
## Solution
|
|||
|
<section id='solution'>
|
|||
|
|
|||
|
```js
|
|||
|
// solution required
|
|||
|
```
|
|||
|
</section>
|