#1
(翻訳者 Microsoft) あなたは2つの基本的なスキルを習得する必要があります:
1)特定の数から鉱山の唯一の可能な位置を見つける:
次の場合:

1 つの覆われたタイルのみが円で囲まれたタイルに隣接しているため、覆われたタイルには鉱山が含まれている必要があります。

2) 特定の数からのすべての鉱山が見つかったら、残りのすべてのタイルをクリアします。
次の場合:

円を描いたタイルの鉱山をすでに見つけたので、残りのすべてのタイルは安全でなければなりません。
1)特定の数から鉱山の唯一の可能な位置を見つける:
次の場合:

1 つの覆われたタイルのみが円で囲まれたタイルに隣接しているため、覆われたタイルには鉱山が含まれている必要があります。

2) 特定の数からのすべての鉱山が見つかったら、残りのすべてのタイルをクリアします。
次の場合:

円を描いたタイルの鉱山をすでに見つけたので、残りのすべてのタイルは安全でなければなりません。

(オリジナル) Basic Mine Sweeping Skills
You need to master two basic skills:
1) Find out the only possible positions of the mines from a certain number:
For the following case:

Only one covered tile is adjacent to the circled tile, and therefore that covered tile must contain a mine:

2) When all mines from a certain number are found, clear all remaining tiles:
For the following case:

You have already found the mine for the circled tile, and therefore all remaining tiles must be safe:
You need to master two basic skills:
1) Find out the only possible positions of the mines from a certain number:
For the following case:

Only one covered tile is adjacent to the circled tile, and therefore that covered tile must contain a mine:

2) When all mines from a certain number are found, clear all remaining tiles:
For the following case:

You have already found the mine for the circled tile, and therefore all remaining tiles must be safe:

投稿者 Novel Games
2009-01-06 13:39:26
いいね!
返信する
#2
(翻訳者 Microsoft) 高度なスキルには、次の論理的思考が含まれます。

2番を見ると、次の3つのケースがあります。



しかし、番号1は3番目のケースが不可能であることを示しているので、残りの2つのケースがあります。


どちらの場合も、左端のタイルには鉱山が含まれているため、最初のタイルに鉱山が含まれていることを確認できます。

もう 1 つの考え方は、最初のタイルに鉱山が含まれていない場合、残りの 2 つのタイルに地雷が含まれている必要があります。しかし、数字1が違反するので、これは不可能です。したがって、一番左のブロックには鉱山が含まれている必要があると結論付けることができます。
次に、数字 2 は、円の付いたタイルに含まれる鉱山が 1 つだけであることを示しています。

したがって、番号 1 に対応する鉱山は 2 つの丸で囲まれたタイルの 1 つでなければならないので、残りのタイルは安全でなければなりません。

2番を見ると、次の3つのケースがあります。



しかし、番号1は3番目のケースが不可能であることを示しているので、残りの2つのケースがあります。


どちらの場合も、左端のタイルには鉱山が含まれているため、最初のタイルに鉱山が含まれていることを確認できます。

もう 1 つの考え方は、最初のタイルに鉱山が含まれていない場合、残りの 2 つのタイルに地雷が含まれている必要があります。しかし、数字1が違反するので、これは不可能です。したがって、一番左のブロックには鉱山が含まれている必要があると結論付けることができます。
次に、数字 2 は、円の付いたタイルに含まれる鉱山が 1 つだけであることを示しています。

したがって、番号 1 に対応する鉱山は 2 つの丸で囲まれたタイルの 1 つでなければならないので、残りのタイルは安全でなければなりません。

(オリジナル) The advanced skills involve some logical thinking, for example:

Looking at the number 2 alone, there are three cases:



But the number 1 shows that the third case is impossible, and therefore there are two cases left:


For both cases, the leftmost tile contains a mine, and therefore you can be sure that the first tile contains a mine:

Another way of thinking is that if the first tile does not contain a mine, then the remaining two tiles must contain mines. But this is impossible as the number 1 will be violated. Therefore you can conclude that the leftmost block must contain a mine.
Moving on, the number 2 shows that the circled tiles contain only one mine:

So the mine corresponding to the number 1 must be one of the two circled tiles, and so the remaining tile must be safe:

Looking at the number 2 alone, there are three cases:



But the number 1 shows that the third case is impossible, and therefore there are two cases left:


For both cases, the leftmost tile contains a mine, and therefore you can be sure that the first tile contains a mine:

Another way of thinking is that if the first tile does not contain a mine, then the remaining two tiles must contain mines. But this is impossible as the number 1 will be violated. Therefore you can conclude that the leftmost block must contain a mine.
Moving on, the number 2 shows that the circled tiles contain only one mine:

So the mine corresponding to the number 1 must be one of the two circled tiles, and so the remaining tile must be safe:

投稿者 Novel Games
2009-01-06 13:57:55
いいね!
返信する
#3
(翻訳者 Microsoft) 次のパターンが表示されたら、解決策をすばやく見つけることができます。
(オリジナル) When you see the following patterns, you can quickly find out the solution:
投稿者 Novel Games
2009-01-06 13:58:27
いいね!
返信する