码迷,mamicode.com
首页 > 其他好文 > 详细

Greedy:Graveyard Design(POJ 2100)

时间:2016-01-24 15:34:34      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:

              技术分享

               墓地

  题目大意,给定一个整数,要你找出他的平方和组合

  太简单了。。。。不过一开始我储存平方和想降低时间,后来发现会超内存,直接用时间换空间了,游标卡尺法

  

 1 #include <iostream>
 2 #include <functional>
 3 #include <algorithm>
 4 #define MAX_N 10000001
 5 
 6 using namespace std;
 7 typedef long long LL_INT; 
 8 
 9 static int store[MAX_N][2];//只储存开始和结尾
10 
11 void Inivilize(void);
12 
13 int main(void)
14 {
15     LL_INT n, sum, tmp;
16     int    s, t, num;
17 
18     while (~scanf("%lld", &n))
19     {
20         sum = num = 0; s = t = 1;
21         while (1)
22         {
23             while ((tmp = (LL_INT)t*(LL_INT)t) <= n && sum < n)
24             {
25                 sum += tmp;
26                 t++;
27             }
28             if (sum == n)
29             {
30                 store[num][0] = s; store[num][1] = t;
31                 num++;
32             }
33             if (sum < n)
34                 break;
35             sum -= (LL_INT)s*(LL_INT)s; s++;
36         }
37         printf("%d\n", num);
38         for (int i = 0; i < num; i++)
39         {
40             printf("%d ", store[i][1] - store[i][0]);
41             for (int j = store[i][0]; j < store[i][1]; j++)
42                 printf("%d ", j);
43             printf("\n");
44         }
45     }
46     return EXIT_SUCCESS;
47 }

  技术分享

Greedy:Graveyard Design(POJ 2100)

标签:

原文地址:http://www.cnblogs.com/Philip-Tell-Truth/p/5155131.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!