游戏王残局简化版

Check-in [6a4a8a79e5]
Login

Check-in [6a4a8a79e5]

Overview
Comment:0.0.2549
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 6a4a8a79e5ca22cc48862cece40b0f16b162d93e4c5f5755503a6fe32773c0e7
User & Date: 顽雨沉风 on 2023-09-15 02:57:45
Other Links: manifest | tags
Context
2023-09-15
02:59
0.0.2550 check-in: 155e05e63e user: 顽雨沉风 tags: trunk
02:57
0.0.2549 check-in: 6a4a8a79e5 user: 顽雨沉风 tags: trunk
02:44
0.0.2548 check-in: d975a7f729 user: 顽雨沉风 tags: trunk
Changes

Modified 解法参考/MH-20210116.html from [23211c273c] to [2230dae9cd].

59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<p>由指数爆炸性可知,只需要考虑 2 3 4</p>
<p>取 2 3 4 的最小公倍数 12</p>
<p>拆分 12 可得</p>
<pre><code>2 ^ 6 = 64

3 ^ 4 = 81

4 ^ 3 = 48</code></pre>
<p>至此,4 被淘汰</p>
<p>最优解为 3</p>
<p>但考虑到有些整数不能被 3 整数,故也需要 2</p>
<script>

document.onclick = function(event) {








|







59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<p>由指数爆炸性可知,只需要考虑 2 3 4</p>
<p>取 2 3 4 的最小公倍数 12</p>
<p>拆分 12 可得</p>
<pre><code>2 ^ 6 = 64

3 ^ 4 = 81

4 ^ 3 = 64</code></pre>
<p>至此,4 被淘汰</p>
<p>最优解为 3</p>
<p>但考虑到有些整数不能被 3 整数,故也需要 2</p>
<script>

document.onclick = function(event) {

Modified 解法参考/MH-20210116.md from [1c8c412380] to [967a3bfbea].

31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
拆分 12 可得

~~~
2 ^ 6 = 64

3 ^ 4 = 81

4 ^ 3 = 48
~~~

至此,4 被淘汰

最优解为 3

但考虑到有些整数不能被 3 整数,故也需要 2







|







31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
拆分 12 可得

~~~
2 ^ 6 = 64

3 ^ 4 = 81

4 ^ 3 = 64
~~~

至此,4 被淘汰

最优解为 3

但考虑到有些整数不能被 3 整数,故也需要 2