POJ
文章平均质量分 71
lauflower
这个作者很懒,什么都没留下…
展开
-
POJ1002
DescriptionBusinesses like to have memorable telephone numbers. One way to make a telephone number memorable is to have it spell a memorable word or phrase. For example, you can call the Universit原创 2014-08-11 17:30:45 · 416 阅读 · 0 评论 -
POJ1004
代码如下#include using namespace std;int main(){ const int size=12; double Num[size]={0.0}; for(int i=0;i cin>>Num[i]; double sum=0; for(int i=0;i sum+=N原创 2014-08-12 15:51:36 · 430 阅读 · 0 评论 -
POJ1008
//Memory 248k248K16MS原创 2014-08-13 17:31:16 · 422 阅读 · 0 评论 -
POJ1006
代码如下://memory 24KB//time原创 2014-08-12 17:43:06 · 395 阅读 · 0 评论 -
POJ1005
//#include using namespace std;const double PI=3.1415926;int main(){ double x,y,area; int test,Restyear; cin>>test; for(int i=0;i { cin>>x>>y;原创 2014-08-12 16:44:06 · 534 阅读 · 0 评论 -
POJ1007
//memory236K原创 2014-08-13 15:42:57 · 427 阅读 · 0 评论 -
POJ1009
大致题意:某种卫星使用一种叫做“run length encoding”的方式来储存大尺寸图片,有一种简单的 edge detection 算法 是将 图像中的每一个点的值与他周围的八个点相减,然后记录下绝对值最大的,上面的右图是左图经过这种算法转换之后的结果。现在你的任务就是实现这个算法,输入的图片是以 run length encoding 的形式表示的,同时也要求转换转载 2014-08-14 16:50:02 · 728 阅读 · 0 评论