Files
python/TangDou/ShuLun/SL_17_剪绳子公式.txt
HuangHai 1f397eca87 'commit'
2025-08-30 18:35:01 +08:00

14 lines
594 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

剪绳问题核心公式
https://haokan.baidu.com/v?vid=18048810765923159607&pd=bjh&fr=bjhauthor&type=video
一根绳连续对折N 次,从中M刀,则被剪成了(2^N×M+1)段。
一、基本题型
【例题1】将一根绳子对折一次然后每隔一定长度剪一刀共剪2刀。问这样操作后
原来的绳子被剪成了几段?
A.3 B.4 C.5 D.6
答案2^1*2+1=5--->C
【例题2】将一根绳子对折三次然后每隔一定长度剪一刀共剪6刀。问这样操作后原来的绳子被剪成了几段?
A.18 B.49 C.42 D.52
答案2^3*6+1=49--->B