首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
2247专题
UVa 443 / POJ 2247 Humble Numbers (4因子-丑数STL灵活运用)
443 - Humble Numbers Time limit: 3.000 seconds http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=24&page=show_problem&problem=384 http://poj.org/problem?id=2247 A
阅读更多...
poj 2247 1338指针的滞后性
#include<stdio.h>#define MIN(a,b) ((a>b)? (b):(a)) //宏定义函数const int MAIX=5850;int main(){int n;int v1,v2,v3,v4;int p1,p2,p3,p4;int a[MAIX];a[1]=1;p1=p2=p3=p4=1;for(int i=2;i<MAIX;i++){v1=a[p1]*2;
阅读更多...
2247: 【区赛】[宁波32届小学生]买玩具
题目描述 玩具店有个活动,买2个送1个: 3个玩具只要付较贵的2个玩具的钱就可以了。举个例子: 10 3 2 4 6 4 9,如果这样组合(10, 3, 2), (4, 6, 4), (9),就在第一个括号中省下2元,第二个括号 中省下4元,但第三个括号不能省了,因为只有一个玩具。 小星星是个懂事的孩子,他想尽可能的为家里省钱,他能成功吗? (注意:玩具组合的数量可以是1或者2或者3 )
阅读更多...