MOOC 程序设计与基础(二)算法基础
文章平均质量分 62
黑衣骑士兴
这个作者很懒,什么都没留下…
展开
-
一、枚举法(例题1)完美立方(POJ 2810)
2810:完美立方 总时间限制: 1000ms 内存限制: 65536kB 描述 形如a3= b3+ c3+ d3的等式被称为完美立方等式。例如123= 63+ 83+ 103。编写一个程序,对任给的正整数N (N≤100),寻找所有的四元组(a, b, c, d),使得a3= b3+ c3+ d3,其中a,b,c,d 大于 1, 小于等于N,且b<=c<=d。 输入 一个正整数N (N≤100)。 输出 每行输出一个完美立方。输出格式为: Cube...原创 2021-05-01 11:35:19 · 331 阅读 · 0 评论 -
一、枚举法(例题4)熄灯问题(POJ 1222)
1222:EXTENDED LIGHTS OUT 总时间限制: 1000ms 内存限制: 65536kB 描述 In an extended version of the game Lights Out, is a puzzle with 5 rows of 6 buttons each (the actual puzzle has 5 rows of 5 buttons each). Each button has a light. When a button is pressed, t...原创 2021-05-01 10:35:35 · 143 阅读 · 1 评论