Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

This article is a Private article. Only a writer and users who know the URL can access it.
Please change open range to public in publish setting if you want to share this article with other users.

More than 3 years have passed since last update.

Pythonデータ解析お百度参り30:和が m になる取り出し方

Last updated at Posted at 2020-06-23

代表的なアルゴリズム

ここから先いくつかの課題では、代表的なアルゴリズムについて学べる課題に取り組んでいただきます。

多重ループを用いた総当たり探索

次の2つのコードを動かして、挙動の違いを確認してみてください。

X = [0, 1, 2, 3, 4]
Y = [5, 6, 7, 8, 9]

for x in X:
    for y in Y:
        print(x, y)
X = [0, 1, 2, 3, 4]
Y = [5, 6, 7, 8, 9]

for x, y in zip(X, Y):
    print(x, y)

課題30:和が m になる取り出し方

自然数 k1, k2, ..., kn が書かれた n 枚の紙片が袋に入っています。この袋から紙片を取り出し、数字を見て袋に戻すことを4回行います。その4つの数字の和が m になる取り出し方が存在するかどうか計算し、存在すれば True、 存在しなければ False と出力する関数を作成してください。

ただし、

  • n ≤ 50
  • 1 ≤ m ≤ 104
  • 1 ≤ ki ≤ 103

とします。

  • 例1
n = 10
m =  36
k =  [13, 39, 63, 70, 18, 87, 46, 99, 68, 47]
False
  • 例2
n = 10
m =  66
k =  [60, 45, 73, 100, 57, 82, 2, 85, 43, 8]
True
  • 例3
n = 20
m =  496
k =  [240, 471, 143, 482, 231, 127, 482, 145, 195, 336, 31, 83, 450, 376, 108, 133, 118, 340, 400, 170]
True

課題提出方法

  • 基本的にGoogle Colaboratoryを用いてプログラミングしてください。どうしても Google Colaboratory を用いることができない場合のみ、Jupyter Notebook または Jupyter Lab を用いてください。

  • 課題1つごとに、ノートブックを新規作成してください。1つのノートブックで複数の課題を解かないでください。

  • ノートブックを新規作成すると「Untitled.ipynb」のような名前になりますが、それを「学籍番号・氏名・課題番号」のような名前に変更してください。

  • 質問・感想・要望などございましたらぜひ書き込んでください。

  • もし課題を解くにあたって参考になったウェブサイトがあれば、それについても触れてください。

  • 課題を計算し終わった ipynb ファイルを提出するときは、指定したメールアドレスに Google Drive で共有する形で授業担当者に提出してください。


* [次の課題に進む](https://qiita.com/maskot1977/private/20c027b1e3d4a0db0c3a) * [前の課題に戻る](https://qiita.com/maskot1977/private/81c417e03ff54cf8a480)
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?